/*
|--------------------------------------------------------------------------
| CLIMATEC - CSS
|--------------------------------------------------------------------------
|
| Identidade visual:
| - Verde/turquesa
| - Azul muito escuro
| - Branco
| - Cinza suave
|
|--------------------------------------------------------------------------
*/


:root {

    --climatec-primary: #18c99a;
    --climatec-primary-dark: #0da77d;

    --climatec-dark: #061714;
    --climatec-dark-2: #0b2420;
    --climatec-dark-3: #102f2a;

    --climatec-text: #182522;
    --climatec-muted: #65736f;

    --climatec-light: #f5f9f8;
    --climatec-white: #ffffff;

    --climatec-border: #e2ebe8;

    --climatec-shadow:
        0 20px 60px rgba(6, 23, 20, .10);

    --climatec-radius: 20px;
}


/*
|--------------------------------------------------------------------------
| BASE
|--------------------------------------------------------------------------
*/

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}


body {

    margin: 0;

    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: var(--climatec-text);

    background:
        var(--climatec-white);

    overflow-x: hidden;
}


a {
    text-decoration: none;
}


img {
    max-width: 100%;
}


/*
|--------------------------------------------------------------------------
| NAVBAR
|--------------------------------------------------------------------------
*/

.climatec-navbar {

    padding: 16px 0;

    background:
        rgba(6, 23, 20, .92);

    backdrop-filter: blur(14px);

    border-bottom:
        1px solid rgba(255,255,255,.08);

    transition:
        all .3s ease;

}


.climatec-logo {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: white;

}


.climatec-logo:hover {
    color: white;
}


.climatec-logo .logo-icon {

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background:
        rgba(24, 201, 154, .15);

    color:
        var(--climatec-primary);

    font-size: 23px;

}


.climatec-logo strong {

    display: block;

    font-size: 1.25rem;

    line-height: 1;

}


.climatec-logo small {

    display: block;

    margin-top: 3px;

    color:
        rgba(255,255,255,.55);

    font-size: .68rem;

    text-transform: uppercase;

    letter-spacing: 1.5px;

}


.navbar-nav .nav-link {

    color:
        rgba(255,255,255,.75);

    font-size: .92rem;

    transition:
        color .2s ease;

}


.navbar-nav .nav-link:hover {

    color:
        var(--climatec-primary);

}


.navbar-toggler {

    border-color:
        rgba(255,255,255,.2);

}


.navbar-toggler-icon {

    filter:
        invert(1);

}


/*
|--------------------------------------------------------------------------
| BOTÕES
|--------------------------------------------------------------------------
*/

.btn-climatec {

    background:
        var(--climatec-primary);

    border:
        1px solid var(--climatec-primary);

    color:
        #032019;

    font-weight: 700;

    border-radius: 12px;

    box-shadow:
        0 10px 25px rgba(24, 201, 154, .20);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;

}


.btn-climatec:hover {

    background:
        var(--climatec-primary-dark);

    border-color:
        var(--climatec-primary-dark);

    color: white;

    transform:
        translateY(-2px);

    box-shadow:
        0 14px 30px rgba(24, 201, 154, .28);

}


/*
|--------------------------------------------------------------------------
| HERO
|--------------------------------------------------------------------------
*/

.hero-section {

    position: relative;

    min-height: 100vh;

    color: white;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 80% 30%,
            rgba(24,201,154,.16),
            transparent 35%
        ),

        radial-gradient(
            circle at 10% 80%,
            rgba(24,201,154,.08),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            #061714 0%,
            #0a211d 55%,
            #071b18 100%
        );

}


.hero-section::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -220px;
    top: 100px;

    border-radius: 50%;

    border:
        1px solid rgba(24,201,154,.15);

    box-shadow:
        0 0 0 80px rgba(24,201,154,.025),
        0 0 0 160px rgba(24,201,154,.018);

}


.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 8px 14px;

    margin-bottom: 25px;

    border-radius: 50px;

    background:
        rgba(24,201,154,.10);

    border:
        1px solid rgba(24,201,154,.25);

    color:
        var(--climatec-primary);

    font-size: .85rem;

    font-weight: 700;

}


.hero-section h1 {

    max-width: 800px;

    margin-bottom: 25px;

    font-size:
        clamp(2.7rem, 6vw, 5.4rem);

    line-height: 1.02;

    font-weight: 800;

    letter-spacing: -3px;

}


.hero-section h1 span {

    display: block;

    color:
        var(--climatec-primary);

}


.hero-description {

    max-width: 650px;

    margin-bottom: 35px;

    color:
        rgba(255,255,255,.72);

    font-size:
        clamp(1rem, 2vw, 1.2rem);

    line-height: 1.8;

}


.hero-description strong {

    color: white;

}


.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;

}


.hero-trust {

    display: flex;

    flex-wrap: wrap;

    gap: 25px;

    margin-top: 35px;

    color:
        rgba(255,255,255,.65);

    font-size: .9rem;

}


.hero-trust i {

    margin-right: 6px;

    color:
        var(--climatec-primary);

}


/*
|--------------------------------------------------------------------------
| HERO CARD
|--------------------------------------------------------------------------
*/

.hero-card {

    position: relative;

    padding: 45px;

    border-radius:
        28px;

    background:
        rgba(255,255,255,.06);

    border:
        1px solid rgba(255,255,255,.12);

    backdrop-filter:
        blur(15px);

    box-shadow:
        0 30px 80px rgba(0,0,0,.20);

}


.hero-card-icon {

    width: 70px;
    height: 70px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border-radius: 20px;

    background:
        rgba(24,201,154,.12);

    color:
        var(--climatec-primary);

    font-size: 35px;

}


.small-label {

    color:
        var(--climatec-primary);

    font-size: .75rem;

    font-weight: 800;

    letter-spacing: 2px;

}


.hero-card h2 {

    margin:
        10px 0 20px;

    font-size: 2rem;

    line-height: 1.2;

}


.hero-card h2 strong {

    color:
        var(--climatec-primary);

}


.hero-card p {

    color:
        rgba(255,255,255,.65);

    line-height: 1.8;

}


.hero-card-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 15px;

    color:
        var(--climatec-primary);

    font-weight: 700;

}


.hero-card-link:hover {

    color: white;

}


/*
|--------------------------------------------------------------------------
| TRUST
|--------------------------------------------------------------------------
*/

.trust-section {

    padding: 28px 0;

    background:
        var(--climatec-light);

    border-bottom:
        1px solid var(--climatec-border);

}


.trust-item {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 13px;

}


.trust-item > i {

    color:
        var(--climatec-primary-dark);

    font-size: 25px;

}


.trust-item strong,
.trust-item span {

    display: block;

}


.trust-item strong {

    font-size: .9rem;

}


.trust-item span {

    color:
        var(--climatec-muted);

    font-size: .78rem;

}


/*
|--------------------------------------------------------------------------
| SEÇÕES
|--------------------------------------------------------------------------
*/

.section-padding {

    padding:
        110px 0;

}


.section-heading {

    max-width: 750px;

}


.section-kicker {

    display: inline-block;

    margin-bottom: 12px;

    color:
        var(--climatec-primary-dark);

    font-size: .78rem;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;

}


.section-heading h2,
section h2 {

    font-size:
        clamp(2rem, 4vw, 3.4rem);

    line-height: 1.15;

    letter-spacing: -1.5px;

    font-weight: 800;

}


.section-heading h2 span,
section h2 span {

    color:
        var(--climatec-primary-dark);

}


.section-heading p {

    margin-top: 18px;

    color:
        var(--climatec-muted);

    line-height: 1.8;

}


/*
|--------------------------------------------------------------------------
| SERVIÇOS
|--------------------------------------------------------------------------
*/

.services-section {

    background:
        white;

}


.service-card {

    height: 100%;

    padding: 30px;

    border:
        1px solid var(--climatec-border);

    border-radius:
        var(--climatec-radius);

    background:
        white;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;

}


.service-card:hover {

    transform:
        translateY(-7px);

    border-color:
        rgba(24,201,154,.35);

    box-shadow:
        var(--climatec-shadow);

}


.service-icon {

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 16px;

    background:
        rgba(24,201,154,.10);

    color:
        var(--climatec-primary-dark);

    font-size: 27px;

}


.service-card h3 {

    font-size: 1.15rem;

    font-weight: 750;

}


.service-card p {

    min-height: 82px;

    color:
        var(--climatec-muted);

    font-size: .92rem;

    line-height: 1.7;

}


.service-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color:
        var(--climatec-primary-dark);

    font-size: .88rem;

    font-weight: 750;

}


.service-link:hover {

    color:
        var(--climatec-dark);

}


/*
|--------------------------------------------------------------------------
| PROBLEMAS
|--------------------------------------------------------------------------
*/

.problem-section {

    padding:
        100px 0;

    color: white;

    background:
        var(--climatec-dark);

}


.problem-section h2 span {

    color:
        var(--climatec-primary);

}


.problem-section p {

    color:
        rgba(255,255,255,.62);

    line-height: 1.8;

}


.problem-card {

    display: flex;

    gap: 15px;

    height: 100%;

    padding: 23px;

    border-radius:
        17px;

    background:
        rgba(255,255,255,.045);

    border:
        1px solid rgba(255,255,255,.08);

}


.problem-card > i {

    flex-shrink: 0;

    color:
        var(--climatec-primary);

    font-size: 23px;

}


.problem-card h3 {

    margin: 0 0 6px;

    font-size: 1rem;

}


.problem-card p {

    margin: 0;

    font-size: .82rem;

    line-height: 1.6;

}


/*
|--------------------------------------------------------------------------
| SOBRE / DIFERENCIAIS
|--------------------------------------------------------------------------
*/

.about-visual {

    position: relative;

    min-height: 500px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 30px;

    background:

        radial-gradient(
            circle at center,
            rgba(24,201,154,.15),
            transparent 50%
        ),

        var(--climatec-light);

    overflow: hidden;

}


.about-circle {

    width: 260px;
    height: 260px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        var(--climatec-dark);

    color:
        var(--climatec-primary);

    font-size: 90px;

    box-shadow:
        0 30px 80px rgba(6,23,20,.20);

}


.about-floating-card {

    position: absolute;

    right: 30px;
    bottom: 35px;

    display: flex;

    flex-direction: column;

    padding: 20px 24px;

    border-radius: 17px;

    background:
        white;

    box-shadow:
        var(--climatec-shadow);

}


.about-floating-card i {

    color:
        var(--climatec-primary-dark);

    font-size: 25px;

}


.about-floating-card strong {

    margin-top: 8px;

}


.about-floating-card span {

    color:
        var(--climatec-muted);

    font-size: .8rem;

}


.lead-text {

    color:
        var(--climatec-muted);

    line-height: 1.8;

}


.feature-list {

    margin-top: 35px;

}


.feature-item {

    display: flex;

    gap: 17px;

    margin-bottom: 25px;

}


.feature-icon {

    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background:
        rgba(24,201,154,.10);

    color:
        var(--climatec-primary-dark);

}


.feature-item h3 {

    margin: 0 0 5px;

    font-size: 1rem;

}


.feature-item p {

    margin: 0;

    color:
        var(--climatec-muted);

    font-size: .88rem;

    line-height: 1.6;

}


/*
|--------------------------------------------------------------------------
| CTA
|--------------------------------------------------------------------------
*/

.cta-section {

    padding:
        30px 0;

}


.cta-box {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding:
        45px;

    border-radius:
        25px;

    color: white;

    background:
        linear-gradient(
            120deg,
            #0a2721,
            #123b32
        );

}


.cta-box span {

    color:
        var(--climatec-primary);

    font-size: .75rem;

    font-weight: 800;

    letter-spacing: 2px;

}


.cta-box h2 {

    margin:
        8px 0;

    font-size:
        clamp(1.6rem, 3vw, 2.5rem);

}


.cta-box p {

    margin: 0;

    color:
        rgba(255,255,255,.65);

}


/*
|--------------------------------------------------------------------------
| COMO FUNCIONA
|--------------------------------------------------------------------------
*/

.how-section {

    background:
        var(--climatec-light);

}


.step-card {

    position: relative;

    height: 100%;

    padding: 32px;

    background: white;

    border:
        1px solid var(--climatec-border);

    border-radius:
        var(--climatec-radius);

}


.step-number {

    position: absolute;

    top: 20px;
    right: 22px;

    color:
        #dbe8e4;

    font-size: 2.5rem;

    font-weight: 900;

}


.step-card > i {

    display: block;

    margin-bottom: 25px;

    color:
        var(--climatec-primary-dark);

    font-size: 32px;

}


.step-card h3 {

    font-size: 1.1rem;

}


.step-card p {

    margin: 0;

    color:
        var(--climatec-muted);

    font-size: .9rem;

    line-height: 1.7;

}


/*
|--------------------------------------------------------------------------
| PÚBLICOS
|--------------------------------------------------------------------------
*/

.audience-section {

    padding:
        30px 0 110px;

}


.audience-card {

    min-height: 360px;

    padding: 45px;

    border-radius:
        27px;

    color: white;

    display: flex;

    flex-direction: column;

    justify-content: center;

}


.audience-card.residential {

    background:
        linear-gradient(
            135deg,
            #0b3028,
            #0e4b3e
        );

}


.audience-card.commercial {

    background:
        linear-gradient(
            135deg,
            #101e1c,
            #172d28
        );

}


.audience-icon {

    width: 60px;
    height: 60px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border-radius: 17px;

    background:
        rgba(255,255,255,.08);

    color:
        var(--climatec-primary);

    font-size: 28px;

}


.audience-card > span {

    color:
        var(--climatec-primary);

    font-size: .75rem;

    font-weight: 800;

    letter-spacing: 2px;

}


.audience-card h2 {

    margin:
        10px 0 15px;

}


.audience-card h2 span {

    color:
        var(--climatec-primary);

}


.audience-card p {

    max-width: 500px;

    color:
        rgba(255,255,255,.65);

    line-height: 1.7;

}


.audience-card a {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 10px;

    color:
        var(--climatec-primary);

    font-weight: 700;

}


/*
|--------------------------------------------------------------------------
| FAQ
|--------------------------------------------------------------------------
*/

.faq-section {

    background:
        var(--climatec-light);

}


.climatec-accordion {

    max-width: 850px;

}


.climatec-accordion .accordion-item {

    margin-bottom: 12px;

    border:
        1px solid var(--climatec-border) !important;

    border-radius:
        14px !important;

    overflow: hidden;

    background: white;

}


.climatec-accordion .accordion-button {

    padding: 22px;

    color:
        var(--climatec-text);

    font-weight: 700;

    background: white;

    box-shadow: none;

}


.climatec-accordion .accordion-button:not(.collapsed) {

    color:
        var(--climatec-primary-dark);

    background:
        rgba(24,201,154,.05);

}


.climatec-accordion .accordion-body {

    color:
        var(--climatec-muted);

    line-height: 1.8;

}


/*
|--------------------------------------------------------------------------
| CTA FINAL
|--------------------------------------------------------------------------
*/

.final-cta {

    padding:
        120px 0;

    color: white;

    background:
        var(--climatec-dark);

}


.final-cta-content {

    max-width: 800px;

    margin: auto;

}


.final-cta h2 span {

    color:
        var(--climatec-primary);

}


.final-cta p {

    max-width: 650px;

    margin:
        20px auto 30px;

    color:
        rgba(255,255,255,.65);

    line-height: 1.8;

}


/*
|--------------------------------------------------------------------------
| FOOTER
|--------------------------------------------------------------------------
*/

.climatec-footer {

    padding:
        70px 0 25px;

    color:
        white;

    background:
        #04110f;

}


.footer-logo {

    margin-bottom: 20px;

}


.footer-description {

    max-width: 450px;

    color:
        rgba(255,255,255,.55);

    line-height: 1.8;

}


.climatec-footer h3 {

    margin-bottom: 20px;

    font-size: .9rem;

    text-transform: uppercase;

    letter-spacing: 1px;

}


.climatec-footer ul {

    padding: 0;

    margin: 0;

    list-style: none;

}


.climatec-footer li {

    margin-bottom: 12px;

    color:
        rgba(255,255,255,.55);

    font-size: .88rem;

}


.climatec-footer a {

    color:
        rgba(255,255,255,.55);

}


.climatec-footer a:hover {

    color:
        var(--climatec-primary);

}


.climatec-footer hr {

    margin:
        50px 0 25px;

    border-color:
        rgba(255,255,255,.1);

}


.footer-bottom {

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color:
        rgba(255,255,255,.4);

    font-size: .75rem;

}


/*
|--------------------------------------------------------------------------
| WHATSAPP FLUTUANTE
|--------------------------------------------------------------------------
*/

.whatsapp-floating {

    position: fixed;

    z-index: 999;

    right: 22px;
    bottom: 22px;

    width: 62px;
    height: 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        #25d366;

    color: white;

    font-size: 30px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.20);

}


.whatsapp-floating:hover {

    color: white;

    transform:
        translateY(-3px);

}


.whatsapp-tooltip {

    position: absolute;

    right: 75px;

    padding: 8px 12px;

    white-space: nowrap;

    border-radius: 7px;

    color: white;

    background:
        var(--climatec-dark);

    font-size: .75rem;

    opacity: 0;

    pointer-events: none;

    transition:
        opacity .2s ease;

}


.whatsapp-floating:hover .whatsapp-tooltip {

    opacity: 1;

}


.whatsapp-pulse {

    position: absolute;

    inset: 0;

    border-radius: 50%;

    border:
        2px solid #25d366;

    animation:
        whatsappPulse 2s infinite;

}


@keyframes whatsappPulse {

    0% {
        transform: scale(1);
        opacity: .8;
    }

    70% {
        transform: scale(1.35);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }

}


/*
|--------------------------------------------------------------------------
| RESPONSIVIDADE
|--------------------------------------------------------------------------
*/

@media (max-width: 991px) {

    .navbar-collapse {

        margin-top: 15px;

        padding: 20px;

        border-radius: 15px;

        background:
            var(--climatec-dark-2);

    }


    .navbar-nav {

        align-items: stretch !important;

    }


    .navbar-nav .nav-link {

        padding: 10px 0;

    }


    .hero-section {

        min-height: auto;

        padding-top: 100px;

    }


    .hero-section .min-vh-100 {

        min-height: auto !important;

    }


    .hero-card {

        margin-top: 50px;

    }


    .about-visual {

        min-height: 400px;

    }

}


@media (max-width: 767px) {

    .section-padding {

        padding:
            75px 0;

    }


    .hero-section h1 {

        letter-spacing:
            -2px;

    }


    .hero-buttons {

        flex-direction: column;

    }


    .hero-buttons .btn {

        width: 100%;

    }


    .hero-trust {

        gap: 12px;

        flex-direction: column;

    }


    .hero-card {

        padding: 30px;

    }


    .cta-box {

        padding: 30px;

        flex-direction: column;

        align-items: flex-start;

    }


    .audience-card {

        padding: 30px;

    }


    .about-circle {

        width: 190px;
        height: 190px;

        font-size: 65px;

    }


    .about-floating-card {

        right: 15px;
        bottom: 15px;

    }


    .footer-bottom {

        flex-direction: column;

    }


    .whatsapp-floating {

        width: 56px;
        height: 56px;

        right: 16px;
        bottom: 16px;

        font-size: 26px;

    }

}