/* ==========================================================
   ACTIVA VOIP - WEBSITE 2.0
   Arquivo: style.css
========================================================== */

/* ==========================
   RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#f7f9fc;
    color:#1f2937;
    line-height:1.7;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* ==========================
   CONTAINER
========================== */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ==========================
   HEADER
========================== */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:rgba(6,57,112,.92);
    backdrop-filter:blur(10px);
    box-shadow:0 3px 15px rgba(0,0,0,.08);
}

header .container{
    height:82px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    height:68px;
}

nav ul{
    display:flex;
    gap:35px;
}

nav a{
    color:#fff;
    font-weight:500;
    transition:.3s;
}

nav a:hover{
    color:#4fc3ff;
}

/* ==========================
   BOTÕES
========================== */

.btn-portal,
.btn-primary,
.btn-secondary{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:14px 30px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;
}

.btn-portal{

    background:#1fa2ff;

    color:#fff;

    padding:11px 22px;

    font-size:15px;

}

.btn-portal:hover{

    background:#0d8be8;

}

.btn-primary{

    background:#063970;

    color:#fff;

}

.btn-primary:hover{

    transform:translateY(-3px);

    box-shadow:0 10px 30px rgba(6,57,112,.25);

}

.btn-secondary{

    border:2px solid #063970;

    color:#063970;

}

.btn-secondary:hover{

    background:#063970;

    color:#fff;

}

/* ==========================
   HERO
========================== */

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    padding-top:90px;

    background:linear-gradient(135deg,#f7fbff,#eef5fd);

}

.hero-content{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.tag{

    display:inline-block;

    background:#d9ecff;

    color:#063970;

    padding:8px 18px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    margin-bottom:25px;

}

.hero h1{

    font-size:58px;

    line-height:1.15;

    color:#063970;

    margin-bottom:25px;

}

.hero p{

    font-size:20px;

    color:#5d6b82;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

/* ==========================
   EMPRESA
========================== */

.empresa{

    padding:100px 0;

    background:#fff;

}

.empresa h2{

    font-size:40px;

    color:#063970;

    margin-bottom:30px;

    text-align:center;

}

.empresa p{

    max-width:950px;

    margin:0 auto 20px;

    text-align:center;

    font-size:18px;

    color:#555;

}

/* ==========================
   FOOTER
========================== */

footer{

    background:#063970;

    color:#fff;

    text-align:center;

    padding:35px 0;

}

footer img{

    height:55px;

    margin:0 auto 20px;

}

/* ==========================================================
   SEÇÃO TÍTULOS
========================================================== */

.section-title{

    text-align:center;

    max-width:850px;

    margin:0 auto 60px;

}

.section-title span{

    color:#1fa2ff;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

}

.section-title h2{

    color:#063970;

    font-size:40px;

    line-height:1.2;

    margin:15px 0;

}

.section-title p{

    color:#64748b;

    font-size:18px;

}


/* ==========================================================
   SOLUÇÕES
========================================================== */

.solucoes{

    padding:100px 0;

    background:#f7f9fc;

}


.cards{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}


.card{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    transition:.35s;

}


.card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.12);

}


.card .icon{

    font-size:40px;

    margin-bottom:20px;

}


.card h3{

    color:#063970;

    font-size:22px;

    margin-bottom:15px;

}


.card p{

    color:#64748b;

}



/* ==========================================================
   DIFERENCIAIS
========================================================== */


.diferenciais{

    padding:100px 0;

    background:#fff;

}


.diferenciais-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}


.item{

    padding:30px;

    border-left:4px solid #1fa2ff;

    background:#f8fbff;

    border-radius:10px;

}


.numero{

    font-size:32px;

    font-weight:800;

    color:#1fa2ff;

}


.item h3{

    color:#063970;

    margin:15px 0;

}


.item p{

    color:#64748b;

}



/* ==========================================================
   INFRAESTRUTURA
========================================================== */


.infraestrutura{

    padding:100px 0;

    background:#063970;

    color:#fff;

}


.infra-content{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}


.infra-text span{

    color:#4fc3ff;

    font-weight:700;

}


.infra-text h2{

    font-size:42px;

    line-height:1.2;

    margin:20px 0;

}


.infra-text p{

    color:#dbeafe;

    margin-bottom:20px;

}


.infra-text ul{

    margin-top:25px;

}


.infra-text li{

    margin-bottom:12px;

}



.infra-box{

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:25px;

}


.cloud-card{

    background:rgba(255,255,255,.12);

    padding:40px;

    border-radius:25px;

    text-align:center;

    font-size:45px;

}


.cloud-card strong{

    display:block;

    font-size:24px;

}


.cloud-card small{

    font-size:16px;

}



.aws-card{

    background:#fff;

    color:#063970;

    font-size:42px;

    font-weight:800;

    padding:25px 70px;

    border-radius:20px;

}



/* ==========================================================
   CTA
========================================================== */


.cta{

    padding:90px 0;

    text-align:center;

    background:#eef6ff;

}


.cta h2{

    color:#063970;

    font-size:40px;

    margin-bottom:20px;

}


.cta p{

    max-width:700px;

    margin:0 auto 35px;

    color:#64748b;

    font-size:18px;

}

/* ==========================================================
   MENU MOBILE
========================================================== */


.menu-mobile{

    display:none;

    width:35px;

    cursor:pointer;

}


.menu-mobile span{

    display:block;

    height:3px;

    background:#fff;

    margin:6px 0;

    border-radius:5px;

    transition:.3s;

}


@media(max-width:900px){


    .menu-mobile{

        display:block;

    }


    header .container{

        flex-direction:row;

        justify-content:space-between;

    }


    nav{

        position:fixed;

        top:0;

        right:-100%;

        width:280px;

        height:100vh;

        background:#063970;

        padding-top:100px;

        transition:.4s;

        box-shadow:-10px 0 30px rgba(0,0,0,.2);

    }


    nav.active{

        right:0;

    }


    nav ul{

        flex-direction:column;

        align-items:center;

    }


    nav a{

        font-size:18px;

    }


}

/* ==========================================================
   FOOTER MODERNO
========================================================== */


footer{

    background:#032852;

    color:#fff;

    padding-top:70px;

}


.footer-content{

    display:grid;

    grid-template-columns:1fr 2fr;

    gap:60px;

    padding-bottom:50px;

}


.footer-brand img{

    height:60px;

    margin-bottom:25px;

}


.footer-brand p{

    color:#cbd5e1;

    max-width:320px;

}



.footer-links{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:40px;

}


.footer-links h3{

    margin-bottom:20px;

    font-size:18px;

}


.footer-links a{

    display:block;

    color:#cbd5e1;

    margin-bottom:12px;

    transition:.3s;

}


.footer-links a:hover{

    color:#4fc3ff;

    transform:translateX(5px);

}



.footer-bottom{

    border-top:1px solid rgba(255,255,255,.15);

    text-align:center;

    padding:25px 0;

}


.footer-bottom p{

    color:#cbd5e1;

    font-size:14px;

}

.hero h1 span{

    color:#7dd3fc;

}

.blog-header{

    padding:60px 0 20px;

    text-align:center;

}


.blog-header .section-title{

    margin-bottom:0;

}

/* =====================================
   ACTIVA VOIP
   CARROSSEL CLIENTES PARCEIROS
===================================== */

.clientes{
    padding:70px 0;
    background:#fff;
}

.clientes h2{
    text-align:center;
    margin-bottom:40px;
    color:#063970;
    font-size:36px;
}

.carrossel-wrapper{
    width:100%;
    overflow:hidden;
}

.carrossel-track{
    display:flex;
    align-items:center;
    width:max-content;
    animation:scrollClientes 30s linear infinite;
}

.carrossel-track:hover{
    animation-play-state:paused;
}

.cliente-item{
    flex:0 0 auto;
    width:180px;
    height:100px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 25px;
}

.cliente-item img{
    max-width:160px;
    max-height:80px;
    object-fit:contain;
    transition:.3s;
}

.cliente-item img:hover{
    transform:scale(1.08);
}

@keyframes scrollClientes{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

/* =====================================
   CARROSSEL CLIENTES - CELULAR
===================================== */

@media (max-width: 768px){

    .carrossel-wrapper{
        width:100%;
        overflow:hidden;
    }

    .carrossel-track{
        display:flex !important;
        flex-wrap:nowrap !important;
        width:max-content !important;
        align-items:center;
        animation:scrollClientes 30s linear infinite;
    }

    .cliente-item{
        flex:0 0 180px !important;
        width:180px !important;
        height:100px;
        margin:0 15px;
        display:flex !important;
        align-items:center;
        justify-content:center;
    }

    .cliente-item img{
        max-width:160px;
        max-height:80px;
        width:auto;
        height:auto;
        object-fit:contain;
    }
}