/* ==========================================================
LOCA SONO
STYLE.CSS
========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');


/* ==========================================================
RESET
========================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Manrope',sans-serif;

    background:#ffffff;

    color:#123F7F;

    line-height:1.7;

    overflow-x:hidden;

    -webkit-font-smoothing:antialiased;

}

img{

    display:block;

    max-width:100%;

}

a{

    color:inherit;

    text-decoration:none;

}

ul{

    list-style:none;

}

button{

    border:none;

    background:none;

    cursor:pointer;

    font-family:inherit;

}



/* ==========================================================
VARIÁVEIS
========================================================== */

:root{

    --azul:#123F7F;

    --azul2:#255DAA;

    --amarelo:#FDB913;

    --texto:#5F6F87;

    --cinza:#F6F8FB;

    --borda:#E8EDF4;

    --branco:#ffffff;

    --shadow:0 20px 60px rgba(18,63,127,.10);

}



/* ==========================================================
CONTAINER
========================================================== */

.container{

    width:min(1180px,92%);

    margin:auto;

}



/* ==========================================================
TÍTULOS
========================================================== */

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    display:inline-block;

    color:var(--amarelo);

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.section-title h2{

    font-size:52px;

    line-height:1.15;

    font-weight:800;

    color:var(--azul);

    margin-bottom:20px;

}

.section-title p{

    max-width:760px;

    margin:auto;

    font-size:19px;

    color:var(--texto);

}



/* ==========================================================
HEADER
========================================================== */

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:90px;

    background:rgba(255,255,255,.94);

    backdrop-filter:blur(12px);

    border-bottom:1px solid rgba(0,0,0,.05);

    z-index:999;

}

header .container{

    height:90px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.logo img{

    height:58px;

}

nav{

    display:flex;

    gap:34px;

}

nav a{

    font-size:15px;

    font-weight:700;

    transition:.25s;

}

nav a:hover{

    color:var(--amarelo);

}

.header-btn{

    display:flex;

    align-items:center;

    gap:8px;

    padding:12px 22px;

    border:2px solid var(--azul);

    background:transparent;

    color:var(--azul);

    border-radius:999px;

    font-weight:700;

    transition:.3s;

}

.header-btn:hover{

    background:var(--azul);

    color:#fff;

}

.header-btn:hover{

    transform:translateY(-3px);

}
/* ===============================
HEADER ACTIONS
=============================== */

.header-actions{

    display:flex;

    align-items:center;

    gap:18px;

}

.header-social{

    display:flex;

    align-items:center;

    gap:8px;

    color:var(--azul);

    font-size:16px;

    font-weight:700;

    transition:.30s ease;

}

.header-social i{

    font-size:18px;

}

.header-social:hover{

    color:var(--amarelo);

}

/* ==========================================================
HOME PREMIUM
========================================================== */

.hero{

    padding:80px 0 80px;

    background:#fff;

    position:relative;

    overflow:hidden;

}

.hero-grid{

    display:grid;

    grid-template-columns:46% 54%;

    align-items:center;

    gap:0;

}

.hero-tag{

    display:inline-block;

    margin-bottom:25px;

    font-size:15px;

    font-weight:800;

    letter-spacing:1.5px;

    color:var(--azul);

}

.hero h1{

    font-size:82px;

    line-height:.95;

    letter-spacing:-3px;

    margin-bottom:20px;

}

.hero h1 .blue{

    color:var(--azul);

}

.hero h1 .yellow{

    color:var(--amarelo);

}

.hero p{

    max-width:540px;

    font-size:23px;

    line-height:1.7;

    margin:35px 0;

}

.hero-benefits{

    display:flex;

    justify-content:flex-start;

    gap:60px;

    margin-bottom:45px;

}

.benefit{

    display:flex;

    flex-direction:column;

    align-items:flex-start;

    text-align:left;

    gap:15px;

}

.benefit i{

    font-size:36px;

    color:var(--azul);

}

.benefit span{

    font-size:16px;

    font-weight:600;

    color:#43526d;

    line-height:1.5;

}

.hero .btn-primary{

    width:320px;

    height:70px;

    border-radius:60px;

    font-size:22px;

    display:flex;

    justify-content:flex-start;

    align-items:center;

    gap:14px;

    margin-left:0;

}

.hero-right{

    position:relative;

    height:990px;

    margin-top:-210px;

    margin-right:-220px;

}

.hero-right img{

    width:100%;

    height:100%;

    object-fit:cover;

    border-radius:0 0 0 80px;

}

.hero-right::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:220px;

    height:100%;

    background:linear-gradient(
        90deg,
        #ffffff 0%,
        rgba(255,255,255,.95) 20%,
        rgba(255,255,255,.70) 40%,
        rgba(255,255,255,0) 100%
    );

    z-index:2;

}
/* ==========================================================
SERVIÇOS
========================================================== */

.services{

    padding:50px 0;

    background:#ffffff;

}

.cards{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:34px;

}

.card{

    background:#fff;

    border-radius:30px;

    overflow:hidden;

    border:1px solid var(--borda);

    box-shadow:var(--shadow);

    transition:.35s;

}

.card:hover{

    transform:translateY(-10px);

    box-shadow:0 28px 70px rgba(18,63,127,.15);

}

.card-image{

    overflow:hidden;

}

.card-image img{

    width:100%;

    height:280px;

    object-fit:cover;

    transition:.45s;

}

.card:hover .card-image img{

    transform:scale(1.05);

}

.card-content{

    padding:42px 34px 34px;

    position:relative;

}

.card-icon{

    position:absolute;

    top:-36px;

    left:34px;

    width:74px;

    height:74px;

    border-radius:50%;

    background:var(--azul);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    border:6px solid #fff;

    box-shadow:0 15px 35px rgba(18,63,127,.18);

}

.card-content h3{

    margin-top:20px;

    margin-bottom:16px;

    font-size:30px;

    font-weight:800;

    color:var(--azul);

}

.card-content p{

    font-size:17px;

    color:var(--texto);

    line-height:1.8;

}



/* ==========================================================
POR QUE ESCOLHER
========================================================== */

.why-us{

    padding:120px 0;

    background:var(--cinza);

}

.why-header{

    text-align:center;

    margin-bottom:70px;

}

.why-header span{

    display:inline-block;

    color:var(--amarelo);

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.why-header h2{

    font-size:52px;

    line-height:1.15;

    font-weight:800;

    color:var(--azul);

}
.why-subtitle{

    max-width:760px;

    margin:20px auto 0;

    font-size:19px;

    line-height:1.7;

    font-weight:400;

    color:var(--texto);

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:28px;

}

.why-card{

    background:#fff;

    border-radius:24px;

    padding:42px 28px;

    text-align:center;

    box-shadow:0 12px 30px rgba(18,63,127,.08);

    transition:.30s;

}

.why-card:hover{

    transform:translateY(-8px);

}

.why-icon{

    width:74px;

    height:74px;

    margin:0 auto 24px;

    border-radius:50%;

    background:var(--amarelo);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    color:var(--azul);

}

.why-card h3{

    font-size:22px;

    margin-bottom:14px;

    color:var(--azul);

    font-weight:800;

}

.why-card p{

    font-size:16px;

    color:var(--texto);

    line-height:1.8;

}



/* ==========================================================
CONFORTO
========================================================== */

.comfort{

    padding:150px 0;

    background:#ffffff;

}

.comfort-box{

    text-align:center;

    max-width:900px;

    margin:auto;

}

.comfort-box svg{

    margin:auto;

    margin-bottom:34px;

}

.comfort-box h2{

    max-width:700px;

    margin:0 auto;

    font-size:64px;

    line-height:1.08;

    font-weight:800;

    letter-spacing:-2px;

    color:var(--azul);

}



/* ==========================================================
ÁREAS DE ATENDIMENTO
========================================================== */

.service-area{

    padding:120px 0;

    background:#F7F9FC;

}

.service-area-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:22px;

    margin-top:60px;

}

.service-area-grid div{

    background:#ffffff;

    border:1px solid var(--borda);

    border-radius:18px;

    padding:22px;

    text-align:center;

    font-size:17px;

    font-weight:700;

    color:var(--azul);

    transition:.30s;

}

.service-area-grid div:hover{

    background:var(--azul);

    color:#ffffff;

    transform:translateY(-4px);

}



/* ==========================================================
SEO
========================================================== */

.seo-content{

    padding:110px 0;

    background:#ffffff;

}

.seo-content-inner{

    max-width:960px;

    margin:auto;

    text-align:center;

}

.seo-content h2{

    font-size:42px;

    font-weight:800;

    line-height:1.2;

    color:var(--azul);

    margin-bottom:30px;

}

.seo-content p{

    font-size:18px;

    line-height:2;

    color:var(--texto);

    margin-bottom:24px;

}

.seo-content strong{

    color:var(--azul);

}



/* ==========================================================
FAQ
========================================================== */

.faq{

    padding:120px 0;

    background:#F7F9FC;

}

.faq-list{

    max-width:900px;

    margin:auto;

    display:flex;

    flex-direction:column;

    gap:20px;

}

.faq details{

    background:#ffffff;

    border-radius:22px;

    padding:28px 32px;

    border:1px solid var(--borda);

    box-shadow:0 12px 25px rgba(18,63,127,.05);

    transition:.30s;

}

.faq details:hover{

    transform:translateY(-3px);

}

.faq summary{

    cursor:pointer;

    font-size:20px;

    font-weight:700;

    color:var(--azul);

    list-style:none;

}

.faq summary::-webkit-details-marker{

    display:none;

}

.faq details p{

    margin-top:20px;

    color:var(--texto);

    font-size:17px;

    line-height:1.9;

}



/* ==========================================================
FOOTER
========================================================== */

footer{

    background:var(--azul);

    color:#ffffff;

    padding:90px 0 35px;

}

.footer-top{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:50px;

    margin-bottom:60px;

}

.footer-brand img{

    height:62px;

    margin-bottom:24px;

}

.footer-brand p{

    max-width:360px;

    font-size:16px;

    line-height:1.9;

    opacity:.90;

}

.footer-links h3,

.footer-contact h3{

    margin-bottom:22px;

    font-size:22px;

    font-weight:800;

}

.footer-links a,

.footer-contact a{

    display:block;

    margin-bottom:14px;

    transition:.30s;

    opacity:.90;

}

.footer-links a:hover,

.footer-contact a:hover{

    color:var(--amarelo);

    opacity:1;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.15);

    padding-top:28px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:15px;

    font-size:15px;

    opacity:.85;

}


/* ==========================================================
NUVEM WHATSAPP
========================================================== */

.whatsapp-tooltip{

    position:fixed;

    right:100px;
    bottom:38px;

    display:flex;
    align-items:center;
    gap:12px;

    padding:16px 20px;

    background:#ffffff;

    border:2px solid #123F7F;

    border-radius:28px;

    box-shadow:0 18px 45px rgba(18,63,127,.18);

    z-index:998;

    transition:.30s ease;

    animation:floatBubble 2.5s infinite;

}

.whatsapp-tooltip:hover{

    transform:translateY(-4px) scale(1.03);

}

.whatsapp-tooltip i{

    font-size:26px;

    color:#123F7F;

}

.whatsapp-tooltip strong{

    display:block;

    color:#123F7F;

    font-size:16px;

    font-weight:800;

}

.whatsapp-tooltip small{

    display:block;

    color:#6E7D97;

    font-size:13px;

}

/* rabinho da nuvem */

.whatsapp-tooltip::after{

    content:"";

    position:absolute;

    right:-10px;

    bottom:18px;

    width:18px;

    height:18px;

    background:#fff;

    border-right:2px solid #123F7F;

    border-bottom:2px solid #123F7F;

    transform:rotate(-45deg);

}

/* animação */

@keyframes floatBubble{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-6px);

    }

    100%{

        transform:translateY(0);

    }

}

@media(max-width:768px){

    .whatsapp-tooltip{

        display:none;

    }

}

@media(max-width:768px){

    .whatsapp-tooltip{

        display:none;

    }

}
/* ==========================================================
BOTÃO WHATSAPP
========================================================== */

.floating-whatsapp{

    position:fixed;

    right:28px;

    bottom:28px;

    width:68px;

    height:68px;

    border-radius:50%;

    background:#25D366;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    color:#ffffff;

    box-shadow:0 18px 45px rgba(37,211,102,.35);

    z-index:999;

    transition:.30s;

}

.floating-whatsapp:hover{

    transform:scale(1.08);

}



/* ==========================================================
RESPONSIVO
========================================================== */

@media(max-width:1100px)

    .hero-grid{

    display:grid;

    grid-template-columns:620px 1fr;

   align-items:flex-start;

}
.hero-left{

    padding-top:50px;

}

    .hero-left p{

        margin:auto auto 40px;

    }

    .hero-buttons{

        justify-content:center;
   padding-top:70px;

    }

   .hero-right{

    position:relative;

    height:720px;

    margin-top:-70px;

    width:calc(100% + (100vw - 1180px) / 2);

    margin-right:calc((100vw - 1180px) / -2);

}



@media(max-width:768px){

    header{

        height:76px;

    }

    header .container{

        height:76px;

    }

    nav{

        display:none;

    }

    .header-btn{

        display:none;

    }

    .hero{

        padding-top:130px;

        padding-bottom:80px;

    }

    .hero-left h1{

        font-size:46px;

    }

    .hero-left p{

        font-size:18px;

    }

    .section-title h2,

    .why-header h2,

    .seo-content h2{

        font-size:34px;

    }

    .comfort-box h2{

        font-size:46px;

    }

    .cta-box{

        padding:45px 30px;

    }

    .cta-box h2{

        font-size:34px;

    }

    .service-area-grid,

    .why-grid{

        grid-template-columns:1fr;

    }

    .footer-top{

        grid-template-columns:1fr;

        text-align:center;

    }

    .footer-brand img{

        margin:auto auto 24px;

    }

    .footer-brand p{

        margin:auto;

    }

    .footer-bottom{

        flex-direction:column;

        text-align:center;

    }

    .floating-whatsapp{

        width:60px;

        height:60px;

        font-size:30px;

        right:18px;

        bottom:18px;

    }


.comfort-logo{

    width:90px;

    height:auto;

    display:block;

    margin:0 auto 30px;
