/* =====================================================
   MIND IT SOLUTIONS
   STYLE.CSS V2
   Desenvolvido por Rodrigo Caires
===================================================== */


/* =====================================================
   GOOGLE FONTS
===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Poppins:wght@400;500;600;700;800&display=swap');


/* =====================================================
   VARIÁVEIS
===================================================== */

:root{

    --primary:#2563EB;

    --primary-dark:#1D4ED8;

    --secondary:#020C2B;

    --dark:#111827;

    --gray:#6B7280;

    --light:#F5F7FA;

    --white:#FFFFFF;

    --radius:20px;

    --transition:.35s ease;

}


/* =====================================================
   RESET
===================================================== */

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}


html{

    scroll-behavior:smooth;

}


body{

    background:var(--light);

    color:var(--dark);

    font-family:'Inter',sans-serif;

    overflow-x:hidden;

}


/* =====================================================
   TIPOGRAFIA
===================================================== */

h1,
h2,
h3,
h4,
h5,
.nav-link{

    font-family:'Poppins',sans-serif;

}


h1{

    font-size:78px;

    font-weight:800;

    line-height:1.15;

}


h2{

    font-size:54px;

    font-weight:700;

}


h3{

    font-size:34px;

    font-weight:700;

}


p{

    color:var(--gray);

    line-height:1.8;

}


/* =====================================================
   LINKS
===================================================== */

a{

    text-decoration:none;

    transition:var(--transition);

}


a:hover{

    text-decoration:none;

}


/* =====================================================
   BOTÕES
===================================================== */

.btn{

    border-radius:12px;

    padding:15px 35px;

    font-weight:600;

    transition:.3s;

}


.btn-primary{

    background:var(--primary);

    border:none;

}


.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-3px);

}


.btn-outline-light{

    border:2px solid white;

}


.btn-outline-light:hover{

    background:white;

    color:var(--secondary);

}


/*==================================================
=                 NAVBAR                          =
==================================================*/

.navbar{

    background:#FFFFFF;

    padding:18px 0;

    box-shadow:0 3px 15px rgba(0,0,0,.05);

    position:sticky;

    top:0;

    z-index:9999;

}

.navbar .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.navbar-brand{

    display:flex;

    align-items:center;

    margin:0;

    padding:0;

}

.navbar-brand img{

    display:block;

    height:65px;

    width:auto;

    max-width:100%;

    object-fit:contain;

}

.navbar-nav{

    gap:18px;

}

.nav-link{

    font-family:'Poppins',sans-serif;

    font-size:17px;

    font-weight:600;

    color:#1E293B !important;

    position:relative;

    transition:.3s;

}

.nav-link:hover{

    color:#2563EB !important;

}

.nav-link.active{

    color:#2563EB !important;

}

.nav-link.active::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:100%;

    height:3px;

    border-radius:20px;

    background:#2563EB;

}

/* =====================================================
   HERO PADRÃO
===================================================== */

.hero,
.about-hero,
.services-hero{

    display:flex;

    align-items:center;

    min-height:850px;

    color:white;

}


.hero .container,
.about-hero .container,
.services-hero .container{

    position:relative;

    z-index:5;

}


/* =====================================================
   HERO HOME
===================================================== */

.hero{

    background:

        linear-gradient(

            rgba(2,12,43,.82),

            rgba(2,12,43,.82)

        ),

        url("../img/home-bg.png");

    background-size:cover;

    background-position:center;

}


.hero h1{

    color:white;

}


.hero-text{

    font-size:24px;

    color:#D1D5DB;

    max-width:700px;

    margin:35px 0 45px;

}

/* =====================================================
   HERO - SOBRE
===================================================== */

.about-hero{

    background:
        linear-gradient(
            rgba(2,12,43,.82),
            rgba(2,12,43,.82)
        ),
        url("../img/sobre-bg.png");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}


.about-hero h1{

    color:#FFF;

    max-width:650px;

}


.about-text{

    color:#E5E7EB;

    font-size:22px;

    line-height:1.9;

    max-width:700px;

}


/* =====================================================
   HERO - SERVIÇOS
===================================================== */

.services-hero{

    background:
        linear-gradient(
            rgba(2,12,43,.84),
            rgba(2,12,43,.84)
        ),
        url("../img/bgservicos.png");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}


.hero-tag{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:12px 24px;

    background:rgba(37,99,235,.18);

    border:1px solid rgba(255,255,255,.15);

    backdrop-filter:blur(15px);

    color:white;

    border-radius:50px;

    margin-bottom:30px;

    letter-spacing:1px;

    font-size:14px;

    font-weight:600;

}


.services-hero h1{

    color:white;

    max-width:700px;

}


.services-hero h1 span{

    color:#60A5FA;

}


.services-hero .hero-text{

    color:#D1D5DB;

    max-width:720px;

}


.hero-buttons{

    display:flex;

    gap:20px;

    margin-top:50px;

    flex-wrap:wrap;

}


/* =====================================================
   CARDS
===================================================== */

.services{

    padding:120px 0;

}


.services h2{

    text-align:center;

    margin-bottom:70px;

}


.service-card{

    background:rgba(255,255,255,.95);

    border-radius:22px;

    padding:45px;

    min-height:260px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    transition:.35s;

    box-shadow:

        0 10px 40px rgba(15,23,42,.08);

    border:1px solid rgba(0,0,0,.04);

}


.service-card:hover{

    transform:translateY(-12px);

    box-shadow:

        0 30px 60px rgba(37,99,235,.18);

}


.service-card h4{

    font-size:22px;

    margin-bottom:20px;

    color:#020C2B;

}


.service-card p{

    font-size:16px;

    color:#6B7280;

}


/* =====================================================
   GLASS CARD
===================================================== */

.glass{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.12);

    border-radius:25px;

}


/* =====================================================
   MISSÃO
===================================================== */

.mission{

    padding:120px 0;

    background:#F8FAFC;

}


.mission .service-card{

    min-height:280px;

}


.mission h3{

    color:#020C2B;

    margin-bottom:25px;

}


.mission p{

    font-size:17px;

}


/* =====================================================
   CALL TO ACTION
===================================================== */

.cta{

    background:

    linear-gradient(

        135deg,

        #020C2B,

        #0F172A

    );

    padding:120px 0;

    text-align:center;

    color:white;

}


.cta h2{

    color:white;

    margin-bottom:25px;

}


.cta p{

    color:#CBD5E1;

    font-size:22px;

    max-width:850px;

    margin:auto;

}


.cta .btn{

    margin-top:40px;

}


/* =====================================================
   FOOTER
===================================================== */

footer{

    background:#010816;

    color:white;

    padding:80px 0 30px;

}


footer h4{

    color:white;

    margin-bottom:25px;

}


footer p{

    color:#CBD5E1;

}


.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    margin-top:50px;

    padding-top:25px;

    text-align:center;

    color:#94A3B8;

}


/* =====================================================
   ANIMAÇÕES
===================================================== */

.fade-up{

    animation:fadeUp .8s ease;

}


@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(50px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}


.float{

    animation:float 5s ease-in-out infinite;

}


@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}


/* =====================================================
   SOMBRAS
===================================================== */

.shadow-soft{

    box-shadow:0 15px 40px rgba(15,23,42,.08);

}

.shadow-large{

    box-shadow:0 25px 70px rgba(15,23,42,.15);

}

/* =====================================================
   HERO - CONTATO
===================================================== */

.contact-hero{

    background:
        linear-gradient(
            rgba(2,12,43,.85),
            rgba(2,12,43,.85)
        ),
        url("../img/contato-bg.png");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    min-height:700px;

    display:flex;

    align-items:center;

    color:#FFF;

}

.contact-hero h1{

    color:#FFF;

    max-width:700px;

}

.contact-hero .hero-text{

    color:#D1D5DB;

    max-width:700px;

    font-size:22px;

    line-height:1.9;

}


/* =====================================================
   CONTATO
===================================================== */

.contact-section{

    padding:120px 0;

    background:#F8FAFC;

}


.contact-card{

    background:#FFF;

    border-radius:24px;

    padding:45px;

    height:100%;

    border:1px solid rgba(0,0,0,.05);

    box-shadow:0 20px 60px rgba(15,23,42,.08);

    transition:.35s;

}


.contact-card:hover{

    transform:translateY(-8px);

    box-shadow:0 30px 80px rgba(37,99,235,.12);

}


.contact-card h2{

    color:#020C2B;

    font-size:34px;

    margin-bottom:15px;

}


.contact-card p{

    color:#6B7280;

}


/* =====================================================
   HERO - CONTATO
===================================================== */

.contact-hero{

    background:
        linear-gradient(
            rgba(2,12,43,.86),
            rgba(2,12,43,.86)
        ),
        url("../img/bgservicos.png");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    min-height:700px;

    display:flex;

    align-items:center;

    color:#FFF;

    position:relative;

    overflow:hidden;

}


/* =====================================================
   BOTÃO
===================================================== */

.btn-contact{

    width:100%;

    min-height:60px;

    background:#2563EB;

    border:none;

    color:#FFF;

    font-size:18px;

    font-weight:600;

    border-radius:14px;

    transition:.3s;

}


.btn-contact:hover{

    background:#1D4ED8;

    transform:translateY(-3px);

}


/* =====================================================
   INFORMAÇÕES
===================================================== */

.contact-item{

    display:flex;

    align-items:center;

    gap:18px;

    padding:18px 0;

    border-bottom:1px solid #ECECEC;

    font-size:17px;

    color:#374151;

}


.contact-item:last-child{

    border:none;

}


.contact-item i{

    width:42px;

    height:42px;

    background:#EFF6FF;

    color:#2563EB;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:18px;

}


/* =====================================================
   MAPA
===================================================== */

.ratio{

    border-radius:24px;

    overflow:hidden;

    box-shadow:0 20px 60px rgba(15,23,42,.08);

}


/* =====================================================
   CTA
===================================================== */

.cta{

    background:

    linear-gradient(

        135deg,

        #020C2B,

        #08142F

    );

    color:#FFF;

    padding:110px 0;

}


.cta h2{

    color:#FFF;

    margin-bottom:25px;

}


.cta p{

    color:#CBD5E1;

    font-size:22px;

    max-width:800px;

    margin:auto;

}


.cta .btn{

    margin-top:40px;

}


/* =====================================================
   RESPONSIVO
===================================================== */

@media(max-width:991px){

    .contact-hero{

        min-height:520px;

        text-align:center;

        padding:100px 0;

    }

    .contact-hero h1{

        font-size:46px;

    }

    .contact-card{

        padding:30px;

    }

    .contact-item{

        font-size:16px;

    }

    .cta h2{

        font-size:38px;

    }

    .cta p{

        font-size:18px;

    }

}


/* =====================================================
   SOLUÇÕES
===================================================== */

.services-grid-section{

    padding:120px 0;

    background:#F8FAFC;

}

.section-title{

    text-align:center;

    margin-bottom:80px;

}

.section-title h2{

    font-size:56px;

    font-weight:700;

    color:#111827;

    margin-bottom:20px;

}

.section-title p{

    max-width:760px;

    margin:auto;

    color:#6B7280;

    font-size:20px;

    line-height:1.8;

}

/* ===========================
   GRID
=========================== */

.services-grid{

    display:grid;

    grid-template-columns:repeat(4,minmax(0,1fr));

    gap:35px;

}

/* ===========================
   CARD
=========================== */

.service-card{

    position:relative;

    overflow:hidden;

    display:flex;

    flex-direction:column;

    align-items:flex-start;

    justify-content:flex-start;

    min-height:370px;

    padding:38px;

    background:#FFFFFF;

    border-radius:24px;

    border:1px solid #E5E7EB;

    text-decoration:none;

    color:#111827;

    transition:all .35s ease;

    box-shadow:0 15px 45px rgba(15,23,42,.08);

}

/* Barra superior */

.service-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:6px;

    background:linear-gradient(
        90deg,
        #2563EB,
        #60A5FA
    );

}

/* Hover */

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 70px rgba(37,99,235,.18);

}

/* ===========================
   ÍCONE
=========================== */

.service-icon{

    width:90px;

    height:90px;

    background:#EFF6FF;

    border-radius:22px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:30px;

    overflow:hidden;

    transition:.35s ease;

}

.service-icon img{

    width:64px;

    height:64px;

    object-fit:contain;

    display:block;

    transition:.35s ease;

}

.service-card:hover .service-icon{

    background:#DBEAFE;

}

.service-card:hover .service-icon img{

    transform:scale(1.08);

}

/* ===========================
   TÍTULO
=========================== */

.service-card h3{

    font-size:25px;

    font-weight:700;

    color:#111827;

    margin-bottom:18px;

    line-height:1.3;

}

/* ===========================
   TEXTO
=========================== */

.service-card p{

    flex:1;

    color:#6B7280;

    font-size:16px;

    line-height:1.8;

    margin-bottom:28px;

}

/* ===========================
   LINK
=========================== */

.service-link{

    display:flex;

    align-items:center;

    gap:8px;

    font-weight:700;

    color:#2563EB;

    transition:.3s;

}

.service-card:hover .service-link{

    transform:translateX(8px);

}

/* ===========================
   RESPONSIVO
=========================== */

@media (max-width:1400px){

    .services-grid{

        grid-template-columns:repeat(2,minmax(0,1fr));

    }

}

@media (max-width:768px){

    .section-title h2{

        font-size:40px;

    }

    .section-title p{

        font-size:18px;

    }

    .services-grid{

        grid-template-columns:1fr;

    }

    .service-card{

        min-height:auto;

    }

}

.service-list{

    list-style:none;

    padding:0;

    margin:0 0 30px;

    width:100%;

    flex:1;

}

.service-list li{

    padding:10px 0;

    border-bottom:1px solid #EEF2F7;

    color:#4B5563;

    font-size:15px;

}

.service-list li:last-child{

    border-bottom:none;

}

.service-list li::before{

    content:"✓";

    color:#2563EB;

    font-weight:bold;

    margin-right:10px;

}


