/* =========================================================
   RESET
========================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:"DM Sans",Arial,sans-serif;
    color:#10233d;
    background:#fff;
    overflow-x:hidden;
}

a{
    text-decoration:none;
    color:inherit;
}

button{
    font-family:inherit;
}

img{
    max-width:100%;
    display:block;
}

.container{
    width:min(1180px, calc(100% - 40px));
    margin:auto;
}

:root {

    --blue: #08B5E5;

    --blue-dark: #073B5C;

    --blue-light: #EAF9FD;

    --yellow: #FFB914;

    --yellow-light: #FFF7DD;

    --white: #ffffff;

    --gray: #647B88;

    --gray-light: #F5F9FB;

    --border: #E2EEF2;
}


/* =========================================================
   HEADER
========================================================= */

.header {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 100;

    padding: 22px 5%;
}

.header-inner {

    max-width: 1250px;

    margin: auto;

    background: rgba(255,255,255,.94);

    backdrop-filter: blur(12px);

    border: 1px solid rgba(7,59,92,.08);

    border-radius: 18px;

    min-height: 70px;

    padding: 0 20px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    box-shadow: 0 10px 35px rgba(7,59,92,.08);
}


/* =========================================================
   LOGO
========================================================= */

.logo {

    display: flex;

    align-items: center;

    gap: 11px;

    font-weight: 900;

    font-size: 21px;

    color: var(--blue-dark);
}

.logo-symbol {

    width: 118px;
    height: 118px;

    border-radius: 50%;

    position: relative;
    background-image: url(../imgs/climao-ar-condicionado-sp-fulldyamic.webp);
    background-position: center; background-repeat: no-repeat; background-size: 70%;
}


/* =========================================================
   NAV
========================================================= */

.nav {

    display: flex;

    align-items: center;

    gap: 30px;

    font-size: 14px;

    font-weight: 700;
}

.nav a {

    color: var(--blue-dark);

    transition: .25s;
}

.nav a:hover {

    color: var(--blue);
}

.nav-cta {

    background: var(--blue);

    color: white !important;

    padding: 13px 21px;

    border-radius: 10px;

    box-shadow: 0 8px 20px rgba(8,181,229,.22);
}

.nav-cta:hover {

    background: var(--blue-dark);

    transform: translateY(-2px);
}


/* =========================================================
   MENU MOBILE
========================================================= */

.menu-button {

    display: none;

    border: 0;

    background: transparent;

    cursor: pointer;

    width: 42px;
    height: 42px;
}

.menu-button span {

    display: block;

    width: 23px;
    height: 2px;

    background: var(--blue-dark);

    margin: 5px auto;
}


/* =========================================================
   HERO
========================================================= */

.hero {

    min-height: 780px;

    position: relative;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 78% 30%,
            rgba(8,181,229,.12),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            #F5FCFE 0%,
            #ffffff 65%
        );

    display: flex;

    align-items: center;

    padding: 150px 6% 90px;
}

.hero-inner {

    max-width: 1250px;

    width: 100%;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 50px;
}


/* =========================================================
   HERO TEXT
========================================================= */

.hero-label {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 9px 14px;

    border-radius: 50px;

    background: var(--yellow-light);

    color: #9A6800;

    font-size: 12px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .7px;

    margin-bottom: 22px;
}

.hero-label i {

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--yellow);
}

.hero h1 {

    font-size: clamp(45px, 5.2vw, 72px);

    line-height: 1.02;

    letter-spacing: -3px;

    color: var(--blue-dark);

    margin-bottom: 25px;
}

.hero h1 strong {

    color: var(--blue);

    display: block;
}

.hero-description {

    max-width: 580px;

    font-size: 18px;

    line-height: 1.7;

    color: var(--gray);

    margin-bottom: 32px;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons {

    display: flex;

    align-items: center;

    gap: 13px;

    flex-wrap: wrap;
}

.button {

    min-height: 53px;

    padding: 0 24px;

    border-radius: 11px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    font-size: 14px;

    font-weight: 800;

    transition: .25s;
}

.button-primary {

    background: var(--blue);

    color: white;

    box-shadow: 0 12px 25px rgba(8,181,229,.24);
}

.button-primary:hover {

    background: var(--blue-dark);

    transform: translateY(-3px);
}

.button-secondary {

    border: 1px solid var(--border);

    background: white;

    color: var(--blue-dark);
}

.button-secondary:hover {

    border-color: var(--blue);

    color: var(--blue);

    transform: translateY(-3px);
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {

    min-height: 510px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* grande círculo */

.air-circle {

    width: min(430px, 75vw);

    height: min(430px, 75vw);

    border-radius: 50%;

    background:

        radial-gradient(
            circle at center,
            white 0 34%,
            transparent 35%
        ),

        conic-gradient(
            from 20deg,
            var(--blue) 0deg 65deg,
            transparent 65deg 82deg,
            var(--yellow) 82deg 150deg,
            transparent 150deg 170deg,
            var(--blue) 170deg 245deg,
            transparent 245deg 265deg,
            var(--yellow) 265deg 330deg,
            transparent 330deg 360deg
        );

    box-shadow:

        0 35px 70px rgba(7,59,92,.12);

    position: relative;

    animation: floatCircle 6s ease-in-out infinite;
}

.air-circle::before {

    content: "";

    position: absolute;

    width: 145px;
    height: 145px;

    border-radius: 50%;

    background: white;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    box-shadow: 0 10px 35px rgba(7,59,92,.08);
}

.air-circle::after {

    content: "CLIMÃO";

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    font-size: 20px;

    font-weight: 900;

    color: var(--blue-dark);

    letter-spacing: 1px;
}

@keyframes floatCircle {

    0%,100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-12px) rotate(4deg);
    }
}


.fullFULL {position: absolute !important; width: 0 !important; height: 0 !important; visibility: hidden; overflow: hidden !important;}


/* =========================================================
   FLOATING CARDS
========================================================= */

.visual-card {

    position: absolute;

    background: white;

    border-radius: 15px;

    padding: 17px 20px;

    box-shadow: 0 18px 45px rgba(7,59,92,.13);

    border: 1px solid rgba(7,59,92,.06);

    display: flex;

    align-items: center;

    gap: 13px;

    z-index: 3;
}

.visual-card-icon {

    width: 42px;
    height: 42px;

    border-radius: 12px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 20px;

    background: var(--blue-light);
}

.visual-card strong {

    display: block;

    font-size: 14px;

    color: var(--blue-dark);

    margin-bottom: 3px;
}

.visual-card span {

    display: block;

    color: var(--gray);

    font-size: 11px;
}

.card-one {

    top: 65px;
    right: 15px;
}

.card-two {

    bottom: 65px;
    left: 15px;
}

.card-three {

    bottom: 20px;
    right: 35px;

    background: var(--yellow);

    color: var(--blue-dark);
}

.card-three .visual-card-icon {

    background: rgba(255,255,255,.5);
}


/* =========================================================
   DECORATIVE SHAPES
========================================================= */

.shape-one {

    position: absolute;

    width: 100px;
    height: 100px;

    border: 2px solid rgba(8,181,229,.15);

    border-radius: 50%;

    top: 130px;
    right: 4%;
}

.shape-two {

    position: absolute;

    width: 22px;
    height: 22px;

    background: var(--yellow);

    border-radius: 50%;

    bottom: 130px;
    left: 5%;
}


/* =========================================================
   TRUST BAR
========================================================= */

.trust-bar {

    background: var(--blue-dark);

    color: white;

    padding: 25px 6%;
}

.trust-inner {

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);
}

.trust-item {

    padding: 5px 25px;

    border-right: 1px solid rgba(255,255,255,.12);
}

.trust-item:last-child {

    border-right: none;
}

.trust-number {

    color: var(--yellow);

    font-size: 25px;

    font-weight: 900;

    margin-bottom: 5px;
}

.trust-text {

    color: rgba(255,255,255,.72);

    font-size: 12px;

    line-height: 1.5;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.section {

    padding: 100px 6%;
}

.section-inner {

    max-width: 1200px;

    margin: auto;
}

.section-heading {

    max-width: 680px;

    margin-bottom: 50px;
}

.section-tag {

    display: inline-block;

    color: var(--blue);

    font-size: 12px;

    font-weight: 900;

    text-transform: uppercase;

    letter-spacing: 1.3px;

    margin-bottom: 13px;
}

.section-heading h2 {

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.08;

    letter-spacing: -2px;

    color: var(--blue-dark);

    margin-bottom: 17px;
}

.section-heading p {

    color: var(--gray);

    line-height: 1.7;

    font-size: 16px;
}

/* =========================================================
   SEÇÕES
========================================================= */

.section{
    padding:95px 0;
}

.section-light{
    background:var(--light);
}

.section-head{
    max-width:700px;
    margin-bottom:48px;
}

.eyebrow{
    display:block;
    color:var(--blue);
    text-transform:uppercase;
    font-size:12px;
    font-weight:800;
    letter-spacing:2px;
    margin-bottom:12px;
}

.section-title{
    font-family:"Manrope",sans-serif;
    font-size:42px;
    line-height:1.12;
    letter-spacing:-1.5px;
    color:var(--navy);
    margin-bottom:15px;
}

.section-description{
    color:var(--muted);
    line-height:1.7;
    font-size:16px;
}

/* =========================================================
   SERVIÇOS
========================================================= */

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.service-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:30px;
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-7px);
    box-shadow:0 18px 45px rgba(20,70,100,.10);
    border-color:#ccebf4;
}

.service-icon{
    width:54px;
    height:54px;
    border-radius:15px;
    background:#e9faff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    margin-bottom:22px;
}

.service-card h3{
    font-family:"Manrope",sans-serif;
    font-size:19px;
    margin-bottom:10px;
}

.service-card p{
    color:var(--muted);
    line-height:1.65;
    font-size:14px;
}

/* =========================================================
   NOVA SEÇÃO DE FOTOS
========================================================= */

.projects-section{
    background:#fff;
}

.projects-head{
    display:flex;
    align-items:end;
    justify-content:space-between;
    gap:30px;
    margin-bottom:42px;
}

.projects-head .section-head{
    margin-bottom:0;
}

.projects-link{
    color:var(--blue);
    font-size:14px;
    font-weight:700;
    white-space:nowrap;
}

.projects-link:hover{
    color:var(--blue-dark);
}

.gallery{
    display:grid;
    grid-template-columns:repeat(12,1fr);
    grid-auto-rows:220px;
    gap:16px;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    cursor:pointer;
    background:#eaf6fa;
}

.gallery-item:nth-child(1){
    grid-column:span 6;
    grid-row:span 2;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(3){
    grid-column:span 3;
}

.gallery-item:nth-child(4),
.gallery-item:nth-child(5){
    grid-column:span 3;
}

.gallery-item:nth-child(6){
    grid-column:span 6;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.gallery-item:hover img{
    transform:scale(1.07);
}

.gallery-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(transparent 40%,rgba(7,25,45,.75));
    display:flex;
    align-items:flex-end;
    padding:22px;
    opacity:0;
    transition:.3s;
}

.gallery-item:hover .gallery-overlay{
    opacity:1;
}

.gallery-overlay strong{
    color:#fff;
    font-size:15px;
}

.gallery-overlay span{
    display:block;
    color:#dcecf5;
    font-size:12px;
    margin-top:4px;
}

/* =========================================================
   MODAL DAS FOTOS
========================================================= */

.modal{
    position:fixed;
    inset:0;
    background:rgba(3,18,30,.9);
    z-index:3000;
    display:none;
    align-items:center;
    justify-content:center;
    padding:25px;
}

.modal.active{
    display:flex;
}

.modal-content{
    max-width:1000px;
    max-height:90vh;
    position:relative;
}

.modal-content img{
    max-width:100%;
    max-height:85vh;
    object-fit:contain;
    border-radius:10px;
}

.modal-close{
    position:absolute;
    right:-10px;
    top:-48px;
    width:40px;
    height:40px;
    border:0;
    border-radius:50%;
    background:#fff;
    color:#10233d;
    font-size:22px;
    cursor:pointer;
}

.modal-caption{
    color:#fff;
    text-align:center;
    margin-top:12px;
    font-size:14px;
}

/* =========================================================
   SOBRE
========================================================= */

.about-grid{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:75px;
    align-items:center;
}

.about-visual{
    position:relative;
    min-height:420px;
}

.about-box{
    width:100%;
    height:420px;
    border-radius:25px;
    background:
        url("../imgs/bairros/sao-paulo-climao-ar-condicionado.webp")
        center/cover;
}

.about-number{
    position:absolute;
    bottom:-25px;
    right:-25px;
    width:160px;
    padding:25px;
    background:var(--yellow);
    border-radius:18px;
}

.about-number strong{
    display:block;
    font-family:"Manrope",sans-serif;
    font-size:35px;
    color:var(--navy);
}

.about-number span{
    font-size:12px;
    color:#30435b;
}

.about-content p{
    color:var(--muted);
    line-height:1.8;
    margin-bottom:18px;
}

.check-list{
    list-style:none;
    display:grid;
    gap:13px;
    margin-top:25px;
}

.check-list li{
    display:flex;
    align-items:center;
    gap:10px;
    color:#344c65;
    font-size:14px;
}

.check-list li::before{
    content:"✓";
    width:23px;
    height:23px;
    background:#e8faff;
    color:var(--blue);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
}

/* =========================================================
   COMO FUNCIONA
========================================================= */

.steps{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.step{
    position:relative;
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    padding:28px;
}

.step-number{
    font-family:"Manrope",sans-serif;
    color:var(--blue);
    font-size:34px;
    font-weight:800;
    margin-bottom:18px;
}

.step h3{
    font-size:17px;
    margin-bottom:9px;
}

.step p{
    font-size:13px;
    line-height:1.6;
    color:var(--muted);
}

/* =========================================================
   DEPOIMENTOS
========================================================= */

.testimonials{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.testimonial{
    padding:28px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
}

.stars{
    color:var(--yellow);
    letter-spacing:3px;
    margin-bottom:18px;
}

.testimonial p{
    color:#526b82;
    line-height:1.7;
    font-size:14px;
    margin-bottom:20px;
}

.client{
    font-weight:700;
    font-size:14px;
}

/* =========================================================
   CTA
========================================================= */

.cta{
    padding:80px 0;
    background:
        radial-gradient(circle at 85% 20%,rgba(255,255,255,.12),transparent 25%),
        var(--blue);
    color:#fff;
    position:relative;
    overflow:hidden;
}

.cta::after{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    border:1px solid rgba(255,255,255,.15);
    border-radius:50%;
    right:-180px;
    top:-180px;
}

.cta-content{
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

.cta h2{
    font-family:"Manrope",sans-serif;
    font-size:38px;
    max-width:650px;
    line-height:1.15;
}

.cta p{
    margin-top:12px;
    color:rgba(255,255,255,.85);
}

.btn-white{
    background: #30435b; padding: .7em 1rem; border-radius: .7rem;
    color:var(--navy);
    white-space:nowrap;
}

.btn-white:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(0,0,0,.15);
}

/* =========================================================
   FOOTER
========================================================= */

footer{
    background:#0c1d31;
    color:#fff;
    padding:55px 0 25px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr;
    gap:50px;
    padding-bottom:40px;
    border-bottom:1px solid rgba(255,255,255,.1);
}

.footer-logo{
    color:#fff;
}

.footer-description{
    color:#9db0c2;
    font-size:14px;
    line-height:1.7;
    max-width:400px;
    margin-top:18px;
}

footer h4{
    margin-bottom:17px;
}

footer ul{
    list-style:none;
}

footer li{
    margin-bottom:11px;
}

footer li a{
    color:#9db0c2;
    font-size:13px;
}

footer li a:hover{
    color:#fff;
}

.copyright{
    padding-top:22px;
    color:#71869a;
    font-size:12px;
}

/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp{
    position:fixed;
    z-index:1500;
    right:25px;
    bottom:22px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#16cf70;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    box-shadow:0 10px 30px rgba(22,207,112,.35);
    transition:.3s;
}

.whatsapp:hover{
    transform:scale(1.08);
}

/* =========================================================
   RESPONSIVO
========================================================= */

@media(max-width:1000px){

   .nav {

        display: none;

        position: absolute;

        top: 82px;

        left: 5%;
        right: 5%;

        background: white;

        border-radius: 15px;

        padding: 20px;

        flex-direction: column;

        align-items: stretch;

        box-shadow: 0 20px 40px rgba(7,59,92,.15);
    }

    .nav.active {

        display: flex;
    }

    .nav a {

        padding: 10px;
    }

    .menu-button {

        display: block;
    }

    .hero {

        padding-top: 140px;
    }

    .hero-inner {

        grid-template-columns: 1fr;
    }

    .hero-content {

        text-align: center;

        margin: auto;
    }

    .hero-description {

        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {

        justify-content: center;
    }

    .hero-visual {

        min-height: 430px;
    }

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .steps{
        grid-template-columns:repeat(2,1fr);
    }

    .about-grid{
        gap:40px;
    }
}

@media(max-width:780px){

    .container{
        width:min(100% - 30px,600px);
    }

    .navbar{
        min-height:70px;
    }

    .mobile-menu{
        display:block;
    }

    .menu{
        display:none;
        position:absolute;
        top:70px;
        left:0;
        width:100%;
        background:#fff;
        border-bottom:1px solid #e7eef2;
        padding:20px;
        flex-direction:column;
        align-items:stretch;
        gap:0;
        box-shadow:0 15px 30px rgba(0,0,0,.08);
    }

    .menu.active{
        display:flex;
    }

    .menu a{
        padding:14px 5px;
        border-bottom:1px solid #eef2f4;
    }

    .menu-button{
        text-align:center;
        margin-top:10px;
    }

    .hero{
        min-height:auto;
    }

    .hero-grid{
        grid-template-columns:1fr;
        gap:0;
    }

    .hero-content{
        padding:65px 0 30px;
    }

    .hero h1{
        font-size:46px;
        letter-spacing:-2px;
    }

    .hero-text{
        font-size:16px;
    }

    .hero-visual{
        height:450px;
        margin-bottom:25px;
    }

    .hero-image{
        width:310px;
        height:410px;
    }

    .hero-card{
        left:0;
        bottom:5px;
    }

    .hero-badge{
        right:0;
    }

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .stat:nth-child(2){
        border-right:0;
    }

    .stat{
        border-bottom:1px solid rgba(255,255,255,.1);
    }

    .section{
        padding:70px 0;
    }

    .section-title{
        font-size:34px;
    }

    .projects-head{
        display:block;
    }

    .projects-link{
        display:inline-block;
        margin-top:15px;
    }

    .gallery{
        display:grid;
        grid-template-columns:1fr 1fr;
        grid-auto-rows:190px;
    }

    .gallery-item:nth-child(n){
        grid-column:span 1;
        grid-row:span 1;
    }

    .gallery-item:first-child{
        grid-column:span 2;
        grid-row:span 2;
    }

    .gallery-item:last-child{
        grid-column:span 2;
    }

    .gallery-overlay{
        opacity:1;
    }

    .about-grid{
        grid-template-columns:1fr;
    }

    .about-visual{
        min-height:350px;
    }

    .about-box{
        height:350px;
    }

    .about-number{
        right:10px;
    }

    .testimonials{
        grid-template-columns:1fr;
    }

    .cta-content{
        flex-direction:column;
        align-items:flex-start;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:30px;
    }
}

@media(max-width:480px){

   .header {

        padding: 12px 4%;
    }

    .header-inner {

        min-height: 62px;
    }

    .logo {

        font-size: 17px;
    }

    .logo-symbol {

        width: 34px;
        height: 34px;
    }

    .hero {

        padding: 125px 5% 60px;

        min-height: auto;
    }

    .hero h1 {

        font-size: 45px;

        letter-spacing: -2px;
    }

    .hero-description {

        font-size: 15px;
    }

    .hero-visual {

        min-height: 360px;
    }

    .air-circle {

        width: 300px;
        height: 300px;
    }

    .air-circle::before {

        width: 100px;
        height: 100px;
    }

    .air-circle::after {

        font-size: 15px;
    }

    .visual-card {

        padding: 12px;

        gap: 8px;
    }

    .visual-card-icon {

        width: 34px;
        height: 34px;

        font-size: 16px;
    }

    .visual-card strong {

        font-size: 12px;
    }

    .visual-card span {

        font-size: 9px;
    }

    .card-one {

        top: 25px;

        right: 0;
    }

    .card-two {

        bottom: 25px;

        left: 0;
    }

    .card-three {

        display: none;
    }

    .trust-inner {

        grid-template-columns: repeat(2,1fr);
    }

    .trust-item {

        padding: 15px;

        border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .section {

        padding: 70px 5%;
    }

    .services-grid{
        grid-template-columns:1fr;
    }

    .steps{
        grid-template-columns:1fr;
    }

    .gallery{
        grid-auto-rows:150px;
    }

    .cta h2{
        font-size:30px;
    }

    .whatsapp{
        width:54px;
        height:54px;
        right:18px;
        bottom:18px;
    }
}

