/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", "Segoe UI", sans-serif;
    color: #183b4d;
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    display: flex;
    flex-direction: row;
    gap: .5rem;
    align-items: center;
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

.whatsapp-icon {
    color: var(--white);
    height: 1rem;
}


/* =========================================================
   VARIÁVEIS
========================================================= */

:root {
    --primary: #0b6fa4;
    --primary-dark: #07577f;
    --primary-light: #eaf7fc;

    --secondary: #F47C20;
    --secondary-hover: #fc8123;
    --secondary-light: #ffdabd;

    --text: #4A4A6A;
    --text-light: #607d8b;
    --section-title: #0d5a9e;

    --white: #ffffff;
    --light: #FFFFFFcc;
    --green: #25D366;
    --green-hover: #1da851;
    --background: #f7fbfd;
    --border: #dcebf1;

    --shadow: 0 15px 40px rgba(14, 83, 113, 0.50);

    --container: 1180px;

    --radius: 18px;

}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto;
    padding-bottom: 1rem;
    padding-left: 4rem;
    padding-right: 4rem;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    height: 50px;

    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;

    position: fixed;
    top: 0;
    left: 0;


    width: 100%;

    z-index: 1000;

    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);

    transition:
        background 0.2s ease,
        backdrop-filter 0.2s ease,
        box-shadow 0.2s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.92);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
}

.header-container {
    height: 100%;
    width: 90%;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.logo {
    height: 70%;
    display: inline-flex;
    align-items: center;
}

.logo img {
    height: 100%;
    width: auto;
}

.nav {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
}

.nav a {
    position: relative;

    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;

    transition: color 0.25s ease;
}

.nav a:not(.nav-button)::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -7px;

    width: 0;
    height: 2px;

    background: var(--white);

    transition: width 0.25s ease;
}

.nav a:not(.nav-button):hover {
    color: var(--white);
}

.nav a:not(.nav-button):hover::after {
    width: 100%;
}

.nav-button {
    justify-content: center;
    padding: 4px 20px;

    color: var(--white) !important;
    background: var(--green);

    border-radius: 50px;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.nav-button:hover {
    background: var(--green-hover);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    background: transparent;
}

.menu-toggle span {
    display: block;

    width: 24px;
    height: 2px;

    margin: 5px auto;

    background: #ffffff;
    transition:
        background 0.3s ease,
        transform 0.3s ease,
        opacity 0.3s ease;
}

.header.scrolled .menu-toggle span {
    background: var(--primary-dark);
}

.header.scrolled .nav a {
    color: var(--text);
}

.header.scrolled .nav a:not(.nav-button)::after {
    background-color: var(--text);
}

.page-about a {
    color: var(--text);
}

/* WAVES*/

.reviews-section {
    position: relative;
}

.waves {
    z-index: -1;
    position: absolute;
    width: 100%;
    top: -20rem;
    opacity: .5;
}

/* HIDROMETRO */

.hidro-section {
    position: absolute;
    top: -10rem;
    right: 4rem;
    background: rgba(255, 255, 255, 0);
    min-height: 9rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    padding-left: 10rem;
    z-index: 2
}

.hidro-card {
    padding: .5rem;
    border-radius: var(--radius);
    background:
        linear-gradient(135deg,
            var(--primary-light),
            var(--primary));

    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.hidro-card span {
    font-weight: bold;
    font-size: 1.2rem;
}

.hidro-card p {
    font-size: 1rem;
    font-weight: 500;
}

.hidro,
.meio {
    left: 1rem;
    top: .5rem;
    position: absolute;
    height: 8rem;
}


/* =========================================================
   HERO
========================================================= */


.hero {
    position: relative;
    overflow: hidden;
    height: 90vh;
    padding: 0;
}

/* VÍDEO */

.hero-video {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    z-index: 0;
}

/* ESCURECIMENTO DO VÍDEO */

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(-90deg,
            rgba(13, 59, 110, .5),
            rgba(13, 59, 110, 0),
            rgba(13, 59, 110, .5));

    z-index: 1;
}

/* CONTEÚDO */

.hero-content {
    margin-top: 2rem;
    margin-left: 5rem;

    height: 80%;

    position: relative;

    z-index: 2;

    color: white;
}

/* =========================================================
   LUZ SUBMERSA FUNDO
========================================================= */

.hero-light {
    position: absolute;
    inset: -30%;

    z-index: 0;

    opacity: 0.55;

    background:
        linear-gradient(35deg,
            transparent 0%,
            transparent 18%,
            rgba(255, 255, 255, 0.3) 25%,
            transparent 33%,
            transparent 48%,
            rgba(255, 255, 255, 0.3) 55%,
            transparent 64%,
            transparent 78%,
            rgba(255, 255, 255, 0.3) 85%,
            transparent 92%);

    filter: blur(12px);

    transform: rotate(-4deg) scale(1.2);

    animation: underwaterLight 12s ease-in-out infinite alternate;
}

@keyframes underwaterLight {

    0% {
        transform:
            translate3d(-4%, -2%, 0) rotate(-5deg) scale(1.2);
    }

    50% {
        transform:
            translate3d(3%, 2%, 0) rotate(-2deg) scale(1.25);
    }

    100% {
        transform:
            translate3d(-2%, 4%, 0) rotate(-6deg) scale(1.2);
    }
}

.hero-light::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(35deg,
            transparent 0%,
            transparent 30%,
            rgba(255, 255, 255, 0.3) 35%,
            transparent 42%,
            transparent 60%,
            rgba(255, 255, 255, 0.2) 66%,
            transparent 73%);

    filter: blur(8px);

    animation: lightRays 5s ease-in-out infinite alternate;
}

@keyframes lightRays {

    0% {
        transform:
            translateX(-5%) skewX(-3deg);
    }

    100% {
        transform:
            translateX(5%) skewX(3deg);
    }
}


.hero-container {
    height: 100%;

    position: relative;
    z-index: 2;
    min-height: calc(100vh - 78px);

    display: flex;

    align-items: start;

    gap: 50px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 6px 16px;

    margin-bottom: 24px;

    color: var(--white);
    background: var(--secondary);

    border-radius: 999px;

    font-size: 0.875rem;
    font-weight: 600;

    line-height: 1.4;
}

.hero-dots {
    position: absolute;

    bottom: 25px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;
    align-items: center;
    gap: 8px;

    z-index: 100;
}

.hero-dot {
    width: 9px;
    height: 9px;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.25);

    cursor: pointer;

    transition:
        width 0.3s ease,
        background 0.3s ease,
        opacity 0.3s ease;
}

.hero-dot.active {
    width: 24px;

    border-radius: 10px;

    background: rgba(255, 255, 255, 0.9);
}


.section-label {
    display: inline-block;

    margin-bottom: 16px;

    color: var(--primary-dark);

    font-size: 0.85rem;
    font-weight: 700;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1 {
    text-align: left;

    color: var(--white);

    line-height: 0.9;

    font-weight: 500;

    font-size: 3rem;

    letter-spacing: -0.05em;
}

.hero h1 strong {
    height: 6rem;

    margin-top: 1rem;

    display: block;

    color: transparent;

    background: linear-gradient(100deg, #64CEFB 30%, #ffffff 50%, #64CEFB 70%);

    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;

    animation: shinyText 8s linear infinite;
}

@keyframes shinyText {

    0% {
        background-position: 200% center;
    }

    100% {
        background-position: -200% center;
    }
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    display: flex;
    align-items: center;

    position: absolute;
    inset: 0;

    opacity: 0;
    visibility: hidden;

    transition: .6s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-media {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 0;
}

.hero-prev,
.hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 50px;
    height: 50px;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(8px);

    color: #fff;
    font-size: 22px;

    cursor: pointer;
    z-index: 20;
}

.hero-prev {
    left: 30px;
}

.hero-next {
    right: 30px;
}

/* CORPO DOS TEXTOS DAS SEÇÕES*/

.hero p,
.experience-header p,
.reviews-header p,
.resource-header p,
.resource-content p,
.benefits-header p,
.reviews-header p,
.section-header p,
.contact-header p,
.cta-header p {
    font-weight: 500;

    max-width: 36rem;

    margin-bottom: 1rem;

    color: var(--white);

    font-size: 1rem;

    line-height: 1.625;

    text-align: left;
}

/* TEXTOS COM FONTE ESCURA*/

.experience-header p,
.reviews-header p,
.resource-header p,
.resource-content p,
.benefits-header p,
.contact-header p {
    color: var(--text);
}

.hero-buttons {
    margin-top: 1rem;

    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 14px;
}

.hero-image {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    height: 75vh;
    width: 100%;
    max-width: 580px;

    object-fit: contain;

    animation: heroFloat 5s ease-in-out infinite;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* =========================
    SEÇÃO EYEBROW
======================*/

.section-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    color: #F47C20;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 18px;
}

.eyebrow-line {
    width: 40px;
    height: 2px;
    background: #F47C20;
}


/* =========================
   HEADER DAS SEÇÕES
========================= */

.experience-header,
.resource-header,
.reviews-header,
.benefits-header,
.faq-header,
.cta-header {
    text-align: center;
    margin: 0 auto 1rem;
}


/* =========================
   STATUS DA EMPRESA
========================= */

.stats-grid {
    display: grid;

    grid-template-columns: repeat(3, 100px);
    justify-content: center;

    gap: .5rem;

    width: 100%;
}

.stat-card {
    width: 100px;
    min-height: 80px;

    background: #ffffff;

    border-radius: 18px;

    padding: .5rem;

    display: flex;
    flex-direction: column;

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

    text-align: center;

    border: 1px solid rgba(13, 90, 158, 0.08);

    box-shadow:
        0 8px 25px rgba(13, 90, 158, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(13, 90, 158, 0.14);
}

.stat-card strong {
    color: #0D5A9E;

    font-size: 1.2rem;
    line-height: 1;

    font-weight: 800;

    margin-bottom: 10px;
}

.stat-card span {
    color: #4A4A6A;
    text-align: left;

    font-size: .8rem;
    line-height: 1;
}

.stat-card .stat-star {
    color: #F47C20;

    font-size: 30px;

    margin-left: 3px;
}

/* =========================
   CARROSSEL
========================= */

.reviews-carousel {
    padding: 1rem 0;
    width: 100%;
    overflow: hidden;
}

.reviews-track {
    display: flex;

    gap: 20px;

    width: max-content;

    animation:
        reviews-marquee 35s linear infinite;
}

.reviews-carousel:hover .reviews-track {
    animation-play-state: paused;
}

@keyframes reviews-marquee {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* =========================
   CARD
========================= */

.review-card {
    width: 340px;

    min-height: 260px;

    background: #ffffff;

    border-radius: 18px;

    padding: 26px;

    flex-shrink: 0;

    display: flex;
    flex-direction: column;

    box-shadow:
        0 5px 18px rgba(13, 90, 158, 0.10);

    border: 1px solid rgba(13, 90, 158, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 15px 35px rgba(13, 90, 158, 0.18);
}


/* =========================
   ESTRELAS
========================= */

.stars {
    color: #F47C20;

    font-size: 20px;

    letter-spacing: 2px;

    margin-bottom: 18px;
}


/* =========================
   TEXTO
========================= */

.review-text {
    color: #4A4A6A;

    font-size: 15px;

    line-height: 1.65;

    font-style: italic;

    margin-bottom: 25px;

    flex: 1;
}


/* =========================
   CLIENTE
========================= */

.review-footer {
    display: flex;

    align-items: center;

    gap: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            #1A73C1,
            #0D5A9E);

    color: #ffffff;

    display: flex;

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

    font-weight: 800;
}

.review-author {
    color: #0D5A9E;

    font-size: 15px;

    font-weight: 700;
}

.review-source {
    color: #777;

    font-size: 11px;

    margin-top: 2px;
}


/* =========================
   BOTÃO
========================= */

.reviews-button-wrapper {
    text-align: center;

    margin-top: 50px;
}

.reviews-button {
    display: inline-flex;

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

    gap: 12px;

    background: #F47C20;

    color: #ffffff;

    text-decoration: none;

    font-size: 15px;
    font-weight: 700;

    padding: 15px 28px;

    border-radius: 50px;

    transition: all 0.3s ease;
}

.reviews-button:hover {
    background: #e06a10;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(244, 124, 32, 0.25);
}

/* =========================================================
   HERO - ESTATÍSTICAS
========================================================= */

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 16px;

    max-width: 28rem;

    margin-top: 2.5rem;
}

.hero-stat {
    color: #ffffff;
    text-align: center;
}

.hero-stat svg {
    width: 20px;
    height: 20px;

    margin-bottom: 4px;

    color: #f47c20;

    stroke-width: 2.2;
}

.hero-stat-number {
    color: #ffffff;

    font-size: 1.5rem;
    font-weight: 500;

    line-height: 1.1;

    letter-spacing: -0.025em;
}

.hero-stat-label {
    color: rgba(255, 255, 255, 0.7);

    font-size: 0.75rem;

    line-height: 1.4;
}


/* =========================================================
   BOTÕES
========================================================= */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 50px;

    padding: 13px 26px;

    border-radius: 50px;

    font-size: 0.95rem;
    font-weight: 700;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;

    min-width: 176px;
}

.button:hover {
    transform: translateY(-3px);
}

.button-primary {
    color: var(--white);
    background: var(--secondary);

    box-shadow: 0 10px 25px rgba(11, 111, 164, 0.22);
}

.button-primary:hover {
    background: var(--secondary-hover);

    box-shadow: 0 14px 30px rgba(11, 111, 164, 0.28);
}

.button-secondary {
    color: var(--white);

    background: transparent;

    border: 1px solid var(--white);
}

.button-secondary:hover {
    color: var(--primary-dark);
    background: var(--white);
}

.button-light {
    color: var(--primary);
    background: var(--white);

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

.button-light:hover {
    background: #f4fbfe;
}


/* =========================================================
   SEÇÕES
========================================================= */

section {
    background-image: linear-gradient(180deg,
            transparent 0%,
            transparent 3%,
            var(--light) 80%,
            var(--secondary-light) 100%);
    scroll-margin-top: 1.5rem;
    padding-top: 1.5rem;
}

/* =======================
    TITULOS DAS SEÇÕES
========================*/

.section-header h2,
.experience-header h2,
.reviews-header h2,
.resource-header h2,
.benefits-header h2,
.reviews-header h2,
.contact-header h2,
.cta-header h2 {
    margin-bottom: 18px;

    color: var(--section-title);

    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1.15;
    letter-spacing: -0.03em;

    text-align: left;
}

/* STRONGS */

.resource-header h2 strong,
.benefits-header h2 strong {
    color: #F47C20;
}

.cta-header h2 {
    color: white;
}

/* =========================================================
   SERVICE BADGE
========================================================= */

.service-badge {
    position: absolute;

    right: 0px;
    bottom: -30px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 16px 20px;

    background: #ffffff;

    border: 1px solid #f3f4f6;
    border-radius: 1rem;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);

    z-index: 5;
}


/* Ícone */

.service-badge-icon {
    width: 44px;
    height: 44px;

    flex-shrink: 0;

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

    border-radius: 50%;

    background: linear-gradient(135deg,
            #F47C20,
            #E06A10);
}

.service-badge-icon svg {
    width: 24px;
    height: 24px;

    color: #ffffff;

    fill: #ffffff;

    stroke-width: 0;
}


/* Texto */

.service-badge-title {
    color: #0D5A9E;

    font-size: 0.875rem;

    font-weight: 600;

    letter-spacing: -0.025em;
}

.service-badge-description {
    color: #4A4A6A;

    font-size: 0.75rem;

    line-height: 1.4;
}

.alerts {
    margin-top: 1.5rem;

    display: flex;
    flex-direction: column;

    gap: .5rem;

    padding: .5rem;
}

.alert {
    display: flex;

    gap: 1.5rem;

    align-items: center;
}

/*.alert-number {
    width: 48px;
    height: 48px;

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

    color: var(--primary);

    background: var(--primary-light);

    border-radius: 50%;

    font-size: 0.85rem;
    font-weight: 800;
}*/

.alert-icon {
    color: #F47C20;

    stroke-width: 2.5;
}

.alert h3 {
    margin-bottom: 5px;

    font-size: 1rem;
}

.alert p {
    color: var(--text-light);
    font-size: .8rem;
}

.feature-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem;

    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -4px rgba(0, 0, 0, 0.1);

    border: 1px solid #f3f4f6;
}

.feature-card h3 {
    display: flex;
    align-items: center;
    gap: 8px;

    font-family: "Display", sans-serif;
    font-weight: 700;
    color: var(--section-title);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text);
    font-size: 0.875rem;
    line-height: 1.625;
}

/* =========================================
   BENEFÍCIOS / PROBLEMAS
========================================= */

.benefits-section {
    padding: 100px 20px;
    background: #ffffff;
}


/* =========================================
   CABEÇALHO
========================================= */

.section-label {
    display: inline-block;

    margin-bottom: 15px;

    color: #F47C20;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
}


/* =========================================
   CARD INVERTIDO
========================================= */

.benefit-card-reverse .benefit-image {
    order: 2;
}

.benefit-card-reverse .benefit-content {
    order: 1;
}

.benefit-card-reverse .benefit-number {
    left: auto;
    right: 20px;
}

/* =========================
   PROBLEMA + SOLUÇÃO
========================= */

.resource-main {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;

    margin-bottom: 80px;
}


/* =========================
   CONTEÚDO
========================= */

.problem-label {
    display: inline-block;

    margin-bottom: 18px;

    padding: 7px 12px;

    border-radius: 50px;

    background: #FFF1E8;

    color: #F47C20;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;
}

.resource-header h3 {
    color: #0D5A9E;

    font-size: 1.5rem;

    line-height: 1.2;

    margin-top: 1rem;
}

.resource-header h3 span {
    color: #F47C20;
}


/* =========================
   LISTA DE PROBLEMAS
========================= */

.problem-list {
    display: flex;

    flex-direction: column;

    gap: 18px;
}

.problem-item {
    display: flex;

    align-items: center;

    gap: 15px;
}

.problem-icon {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: flex;

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

    border-radius: 50%;

    background: #FFF1E8;

    color: #F47C20;

    font-size: 16px;

    font-weight: 800;
}

.problem-item strong {
    display: block;

    margin-bottom: 2px;

    color: #0D5A9E;

    font-size: 15px;
}

.problem-item span {
    color: #4A4A6A;

    font-size: 13px;
}


/* =========================
   IMAGEM
========================= */

.water-solution-image {
    position: relative;

    height: 500px;

    overflow: hidden;

    border-radius: 28px;

    box-shadow:
        0 20px 50px rgba(13, 90, 158, 0.18);
}

.water-solution-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(180deg,
            transparent 55%,
            rgba(13, 59, 110, 0.45));

    pointer-events: none;
}

.water-solution-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


/* =========================
   BADGE
========================= */

.solution-badge {
    position: relative;
    margin-top: 1rem;

    left: 0px;
    bottom: 0px;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px 18px;

    background: #ffffff;

    border-radius: 14px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.15);
}

.solution-badge-icon {
    width: 38px;
    height: 38px;

    display: flex;

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

    border-radius: 50%;

    background: #E8F4FD;

    color: #1A73C1;

    font-size: 18px;

    font-weight: 800;
}

.solution-badge strong {
    display: block;

    color: #0D5A9E;

    font-size: 14px;
}

.solution-badge span {
    display: block;

    margin-top: 2px;

    color: #4A4A6A;

    font-size: 11px;
}


/* =========================
   BENEFÍCIOS
========================= */

.water-benefits {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 1px;

    overflow: hidden;

    border: 1px solid #E4EDF5;

    border-radius: 22px;

    background: #E4EDF5;
}

.water-benefit {
    display: flex;

    gap: 20px;

    padding: 30px;

    background: #ffffff;

    transition:
        background 0.3s ease;
}

.water-benefit:hover {
    background: #F8FBFE;
}

.water-benefit h3 {
    margin-bottom: 8px;

    color: #0D5A9E;

    font-size: 18px;
}

.water-benefit p {
    color: #4A4A6A;

    font-size: 14px;

    line-height: 1.6;
}


/* =========================
   RECURSOS
========================= */

.resource-cta {
    margin-top: 1rem;

    display: flex;
    flex-direction: column;

    align-items: center;

    justify-content: space-between;

    padding: 30px 35px;

    border-radius: 20px;

    background:
        linear-gradient(135deg,
            var(--primary-light),
            var(--primary));

    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.resource-cta>div span {
    color: #BFDDF3;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;
}

.resource-cta h3 {
    margin-top: 5px;

    color: #ffffff;

    font-size: 22px;
}

.resource-cta a {

    margin-top: 1rem;
    display: inline-flex;

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

    gap: 10px;

    flex-shrink: 0;

    padding: .5rem 1rem;

    border-radius: 50px;

    background: #F47C20;

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition: all 0.3s ease;
}

.resource-cta a:hover {
    background: #e06a10;

    transform: translateY(-2px);
}


/* =========================================================
   CTA
========================================================= */

.cta {
    background: url("../assets/water-ripples.jpg") center / cover no-repeat;
    color: var(--white);
}

/*.cta-container {
    
}*/

.cta .section-label {
    color: rgba(255, 255, 255, 0.75);
}

.cta p {
    color: rgba(255, 255, 255, 0.8);
}

.cta-list {
    display: flex;
    flex-direction: row;
    padding: 1rem;
    gap: .5rem;
    justify-content: center;
    align-items: center;
}

.cta-list span {
    display: flex;
    gap: .5rem;
}

/* =========================================================
   CTA - DIAGNÓSTICO
========================================================= */

.diagnostic-cta {

    background: linear-gradient(90deg,
            #F47C20 0%,
            #E06A10 100%);

    border-radius: 1rem;

    padding: 1.5rem;

    display: flex;
    flex-direction: column;

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

    gap: 1.5rem;

    box-shadow:
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -4px rgba(0, 0, 0, 0.1);
}


/* Texto */

.diagnostic-cta p {
    color: #ffffff;

    font-size: 1rem;

    font-weight: 600;

    line-height: 1.5;

    text-align: center;

    margin: 0;
}


/* Botão */

.diagnostic-button {
    display: inline-flex;

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

    gap: 0.5rem;

    padding: 0.875rem 1.75rem;

    background: #ffffff;

    color: #F47C20;

    border-radius: 999px;

    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


/* Ícone */

.diagnostic-button .whatsapp-icon {
    display: block;

    color: #F47C20;
    fill: #F47C20;
}


/* Hover */

.diagnostic-button:hover {
    background: #f3f4f6;

    transform: translateY(-2px);

    box-shadow:
        0 10px 20px rgba(0, 0, 0, 0.15);
}


/* =========================================================
   CONTATO
========================================================= */

.contact-container {
    display: flex;
    flex-direction: column;
}

.contact-wrapper {
    display: grid;

    grid-template-columns: 0.75fr 1.25fr;

    gap: 30px;

    align-items: start;
}

.contact-info {
    width: 100%;
}

.contact-info h3 {
    margin-bottom: 12px;

    font-size: 2rem;
    font-weight: 400;

    color: var(--text-dark);
}

.contact-info>p {
    margin-bottom: 30px;

    color: var(--text-light);
}

.social-links {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;

    gap: 15px;

    padding: 14px;

    border-radius: var(--radius);

    background: var(--primary-light);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    width: 100%;

}

.social-link:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: translateX(5px);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border-radius: 50%;

    background: var(--salmon-light);

    color: var(--salmon-dark);

    font-size: 0.65rem;
    font-weight: 700;
}

.social-link strong {
    display: block;

    color: var(--text-dark);
}

.social-link small {
    color: var(--text-light);
}

/* =========================================================
   FORM
========================================================= */

.contact-form-wrapper {
    padding: 20px;

    border-radius: var(--radius);

    background:
        linear-gradient(135deg,
            var(--primary-light),
            var(--primary));

    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.contact-form {
    display: flex;
    flex-direction: column;

    gap: 20px;
}

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;

    gap: 2px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;

    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;

    padding: 7px 14px;

    border: 1px solid var(--border);
    border-radius: 10px;

    outline: none;

    background: var(--background);

    color: var(--text);

    resize: vertical;

    transition:
        border var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    background: #ffffff;

    border-color: var(--salmon);

    box-shadow:
        0 0 0 3px rgba(223, 166, 154, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa09c;
}

.form-submit {
    align-self: flex-start;

    margin-top: 5px;
}

/* =========================================================
   FOOTER
========================================================= */

.footer {
    color: #d9edf5;
    background: #082d3d;
}

.footer-container {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    gap: 60px;

    padding: 70px 0;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: 18px;
}

.footer-brand .logo img {
    max-height: 45px;
}

.footer-brand p {
    color: rgba(217, 237, 245, 0.7);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    flex-direction: column;

    align-items: flex-start;

    gap: 10px;
}

.footer-links h3 {
    margin-bottom: 10px;

    color: var(--white);

    font-size: 1rem;
}

.footer-links a {
    color: rgba(217, 237, 245, 0.7);

    font-size: 0.9rem;

    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .container {
    min-height: 70px;

    display: flex;

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

    gap: 20px;
}

.footer-bottom p {
    color: rgba(217, 237, 245, 0.55);
    font-size: 0.8rem;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: rgba(217, 237, 245, 0.55);

    font-size: 0.8rem;
}

.legal-links a:hover {
    color: var(--white);
}


/* =========================================================
   WHATSAPP FLUTUANTE
========================================================= */

.whatsapp-floating {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 900;

    width: 58px;
    height: 58px;

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

    background: #25d366;

    border-radius: 50%;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.whatsapp-floating img {
    width: 30px;
    height: 30px;
}

.whatsapp-floating:hover {
    transform: scale(1.08);

    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.23);
}

/* =========================================================
   ANIMAÇÃO DE SCROLL
========================================================= */

.scroll-animation {
    opacity: 0;
    transform: translateY(25px);

    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.scroll-animation.visible {
    opacity: 1;
    transform: translateY(0);
}

/* CARROSSEL ANTES X DEPOIS */

.before-after-carousel {
    position: relative;
}

.comparison-slide {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.carousel-track {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.comparison-card {
    flex: 1;
    display: block;
}

.comparison-card img {
    border-radius: 1rem;
}


/* Botões escondidos no desktop */

.carousel-btn {
    display: none;
}

/* SEÇÃO SOBRE */

.about {
    padding-top: 70px;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-gallery {
    position: relative;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
}

.about-slide {
    position: absolute;
    inset: 0;

    opacity: 0;
    transition: .6s;
}

.about-slide.active {
    opacity: 1;
}

.about-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;
    gap: 8px;
}

.about-dots span {
    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .4);
}

.about-dots span.active {
    background: white;
}

.about-list {
    padding: 1rem;
}

/* ========================================
   FAQ
======================================== */

.faq {
    padding: 100px 0;
    background: #f8fbff;
}

.faq-header h2 {
    font-size: 3rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.faq-header p {
    color: var(--text);
    line-height: 1.7;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #fff;

    border-radius: 20px;

    border: 1px solid rgba(13, 90, 158, .12);

    overflow: hidden;

    transition: .3s;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.faq-question {
    width: 100%;

    border: none;
    background: transparent;

    padding: 24px 28px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    cursor: pointer;

    font-size: 1.1rem;
    font-weight: 700;

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

.faq-icon {
    font-size: 1.8rem;
    color: var(--secondary);

    transition: .3s;
}

.faq-answer {
    max-height: 0;

    overflow: hidden;

    transition:
        max-height .35s ease,
        padding .35s ease;

    padding: 0 28px;
}

.faq-answer p {
    color: var(--text);
    line-height: 1.8;

    padding-bottom: 24px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

@media(max-width:768px) {

    .faq {
        padding: 70px 0;
    }

    .faq-header h2 {
        font-size: 2rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 20px;
    }

    .faq-answer {
        padding: 0 20px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .carousel-track {
        display: block;
    }

    .comparison-card {
        display: none;
        width: 100%;
    }

    .comparison-card.active {
        display: block;
        animation: comparisonFade .4s ease;
    }

    .carousel-btn {
        display: flex;

        position: absolute;
        top: 50%;
        transform: translateY(-50%);

        width: 46px;
        height: 46px;

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

        border: none;
        border-radius: 50%;

        background: #0D5A9E;
        color: #fff;

        cursor: pointer;

        z-index: 10;

        box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
    }

    .prev {
        left: -15px;
    }

    .next {
        right: -15px;
    }

}

@keyframes comparisonFade {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* =========================================================
   RESPONSIVIDADE
========================================================= */

/* VERIFICAR NECESSIDADE DE MANTER PARA 1050 */

@media (max-width: 1050px) {

    .nav {
        gap: 20px;
    }

    .how-container,
    .about-container {
        gap: 50px;
    }

}

/* TABLETS */


@media (max-width: 992px) {
    .benefits-section {
        padding: 70px 20px;
    }

    .benefit-card,
    .benefit-card-reverse {
        grid-template-columns: 1fr;

        gap: 40px;

        margin-bottom: 80px;
    }

    .benefit-card-reverse .benefit-image {
        order: 1;
    }

    .benefit-card-reverse .benefit-content {
        order: 2;
    }

    .benefit-image {
        height: 350px;
    }

    .benefit-number,
    .benefit-card-reverse .benefit-number {
        right: auto;
    }

    .benefit-content {
        max-width: none;
    }

    .nav {
        position: absolute;

        top: 50px;
        left: 0;

        width: 100%;

        display: none;
        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 15px 20px 25px;

        background: var(--white);

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

        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    }

    .nav.active {
        display: flex;
        height: auto;
    }

    .nav a {
        padding: 13px 5px;
    }

    .nav-button {
        margin-top: 8px;

        text-align: center;
    }

    .menu-toggle {
        display: block;
    }

    .hero-container {
        min-height: auto;

        grid-template-columns: 1fr;

        text-align: center;
    }

    .hero-content {
        max-width: 700px;
        margin: auto;
    }

    .hero p {
        margin-inline: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        max-width: 450px;
    }

    .how-container,
    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .how-image {
        order: -1;
    }

    .how-image img,
    .about-image img {
        max-width: 600px;
    }

    .how-content,
    .about-content {
        max-width: 700px;
        margin-inline: auto;
    }

    .cta-container {
        flex-direction: column;

        text-align: center;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

}

/* MOBILE */

@media (max-width: 768px) {

    .hero h1 {
        font-size: 2.55rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;

        width: 100%;
    }

    .hero-buttons .button {
        width: 100%;
    }

    .how-container,
    .about-container {
        gap: 40px;
    }

    .footer-container {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom .container {
        flex-direction: column;

        justify-content: center;

        padding: 20px 0;

        text-align: center;
    }

    .legal-links {
        flex-wrap: wrap;

        justify-content: center;
    }

    .whatsapp-floating {
        right: 18px;
        bottom: 18px;

        width: 54px;
        height: 54px;
    }

    .hero-image {
        display: none;
    }

    .diagnostic-cta {
        flex-direction: column;

        padding: 2rem;
    }

    .diagnostic-cta p {
        text-align: left;

        font-size: 1.125rem;

        max-width: 650px;
    }

    .service-badge {

        padding: 12px 14px;
    }

    .service-badge-icon {
        width: 40px;
        height: 40px;
    }

    .service-badge-icon svg {
        width: 21px;
        height: 21px;
    }

    .solutions {
        padding: 50px 0;
    }

    .solutions .container {
        padding: 0 24px;
    }

    .solutions-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .solutions-grid {
        display: flex;

        gap: 16px;

        overflow-x: auto;

        padding: 10px 16px 24px;

        margin: 0 -16px;

        scroll-snap-type: x mandatory;

        scroll-behavior: smooth;

        overscroll-behavior-x: contain;

        -webkit-overflow-scrolling: touch;

        scrollbar-width: none;
    }

    .solutions-grid::-webkit-scrollbar {
        display: none;
    }


    .solution-card {
        flex: 0 0 85%;

        width: 85%;

        scroll-snap-align: center;

        scroll-snap-stop: always;
    }

    .nav a {
        color: var(--text);
    }

    .resource-main {
        grid-template-columns: 1fr;

        gap: 45px;

        margin-bottom: 50px;
    }

    .resource-content h3 {
        font-size: 2rem;
    }

    .water-solution-image {
        height: 380px;
    }

    .water-benefits {
        grid-template-columns: 1fr;
    }

    .resource-cta {
        flex-direction: column;

        align-items: flex-start;

        padding: 25px;
    }

    .resource-cta a {
        width: 100%;
    }

    .benefit-image {
        height: 280px;
    }

    .benefit-content h3 {
        font-size: 30px;
    }

    .resource-header h3 {
        text-align: left;
    }

    .solution-badge {
        position: absolute;
        margin-top: none;
    }
}

/* =========================
   BENEFITS
========================= */

.benefits-container {
    display: flex;
    flex-direction: column;
}

.benefits-header {
    max-width: 700px;
    margin-bottom: 45px;
}


/* =========================
   CARDS DESKTOP
========================= */

.benefits-carousel {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.benefit-card {
    display: grid;
    grid-template-columns: 42% 58%;

    height: 300px;

    background: #fff;
    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 8px 25px rgba(13, 90, 158, 0.10);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(13, 90, 158, 0.16);
}


/* CARD INVERTIDO */

.benefit-card-reverse {
    grid-template-columns: 58% 42%;
}

.benefit-card-reverse .benefit-image {
    order: 2;
}

.benefit-card-reverse .benefit-content {
    order: 1;
}


/* =========================
   IMAGEM
========================= */

.benefit-image {
    position: relative;
    min-height: 300px;
    overflow: hidden;
}

.benefit-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.5s ease;
}

.benefit-card:hover .benefit-image img {
    transform: scale(1.04);
}


/* =========================
   NÚMERO
========================= */

.benefit-number {
    position: absolute;

    top: 15px;
    left: 15px;

    z-index: 2;

    width: 48px;
    height: 48px;

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

    background: #F47C20;
    color: white;

    border-radius: 12px;

    font-size: 16px;
    font-weight: 800;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}


/* =========================
   CONTEÚDO
========================= */

.benefit-content {
    padding: 30px 35px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefit-tag {
    color: #F47C20;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1px;

    margin-bottom: 8px;
}

.benefit-content h3 {
    color: #0D5A9E;

    font-size: 27px;
    line-height: 1.15;

    margin-bottom: 12px;
}

.benefit-content p {
    color: #4A4A6A;

    font-size: 1rem;
    line-height: 1.5;

    margin-bottom: 8px;
}

.benefit-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    width: fit-content;

    margin-top: 8px;

    color: #1A73C1;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: gap 0.3s ease;
}

.benefit-link:hover {
    gap: 13px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

    .benefits {
        overflow: hidden;
    }

    .benefits-header {
        margin-bottom: 30px;
    }


    /* =========================
       CARROSSEL
    ========================= */

    .benefits-carousel {

        display: flex;
        flex-direction: row;

        gap: 16px;

        width: 100%;

        overflow-x: auto;
        overflow-y: hidden;

        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;

        scrollbar-width: none;

        padding-bottom: 15px;
    }

    .benefits-carousel::-webkit-scrollbar {
        display: none;
    }


    /* =========================
       CARD
    ========================= */

    .benefit-card {

        flex: 0 0 85vw;

        width: 85vw;

        display: flex;
        flex-direction: column;

        min-height: 0;

        scroll-snap-align: center;
        scroll-snap-stop: always;

        border-radius: 18px;

        height: fit-content;
    }


    /* Remove inversão no mobile */

    .benefit-card-reverse {
        flex-direction: column;
    }

    .benefit-card-reverse .benefit-image {
        order: initial;
    }

    .benefit-card-reverse .benefit-content {
        order: initial;
    }


    /* =========================
       IMAGEM
    ========================= */

    .benefit-image {
        height: 190px;
        min-height: 190px;
    }


    /* =========================
       CONTEÚDO
    ========================= */

    .benefit-content {
        padding: 20px;
    }

    .benefit-tag {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .benefit-content h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .benefit-content p {
        font-size: 1rem;
        line-height: 1.45;

        margin-bottom: 7px;
    }

    .benefit-link {
        font-size: 13px;
        margin-top: 8px;
    }

    .hero-prev,
    .hero-next {
        display: none;
    }

    .hero {
        height: 66vh;
    }

    .waves {
        top: 0;
    }

    .hidro-section {
        position: relative;
        justify-content: center;
        padding-left: 9rem;
        top: inherit;
        right: inherit;
    }

    .container {
        padding-left: inherit;
        padding-right: inherit;
    }

    .contact-wrapper {
        display: flex;
        flex-direction: column;
    }

    .cta-list {
    flex-direction: column;
    align-items: center;
}

}