/* =========================================================================
   GRUPO THERMAS — Página Acqua Thermas Park (Em Breve)
   ========================================================================= */

/* -------- BADGE EM BREVE gigante -------- */
.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem 0.75rem 1.25rem;
    background: rgba(247, 103, 7, 0.18);
    border: 2px solid var(--c-orange);
    border-radius: 100px;
    font-family: var(--f-display);
    font-size: 1rem;
    letter-spacing: 0.2em;
    color: var(--c-white);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.coming-soon-badge-dot {
    width: 10px;
    height: 10px;
    background: var(--c-orange);
    border-radius: 50%;
    animation: pulseBig 1.6s infinite;
}

@keyframes pulseBig {
    0% { box-shadow: 0 0 0 0 rgba(247, 103, 7, 0.7); transform: scale(1); }
    70% { box-shadow: 0 0 0 20px rgba(247, 103, 7, 0); transform: scale(1.3); }
    100% { box-shadow: 0 0 0 0 rgba(247, 103, 7, 0); transform: scale(1); }
}

/* -------- HERO ACQUA -------- */
.hero--acqua {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
    color: var(--c-white);
    padding: 8rem 0 5rem;
}

.hero--acqua .hero__bg {
    background-image: url("../assets/acqua/acqua-fachada-1.jpg");
    background-size: cover;
    background-position: center;
}

.hero--acqua .hero__overlay {
    background:
        radial-gradient(ellipse at 50% 30%, rgba(247, 103, 7, 0.2) 0%, transparent 50%),
        linear-gradient(180deg, rgba(5, 26, 46, 0.65) 0%, rgba(5, 26, 46, 0.85) 50%, rgba(5, 26, 46, 0.95) 100%);
}

.hero--acqua .hero__title-accent {
    background: linear-gradient(135deg, #1abc9c 0%, #2abdef 50%, #f76707 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero--acqua .hero__title {
    margin-bottom: 2.5rem;
    line-height: 1.15;
}

.hero--acqua .hero__title span {
    display: block;
}

.hero--acqua .hero__title span + span {
    margin-top: 0.25em;
}

.hero__subtitle {
    font-family: var(--f-body);
    font-size: clamp(1.4rem, 2.2vw, 1.7rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
    max-width: 62rem;
    margin: 0 auto 1.25rem;
    font-weight: 300;
}

.hero__subtitle--secondary {
    margin-bottom: 3rem;
    max-width: 58rem;
    color: rgba(255, 255, 255, 0.82);
}

.hero__subtitle strong {
    color: var(--c-white);
    font-weight: 600;
}

.hero--acqua .hero__actions {
    margin-top: 0.5rem;
    gap: 1.25rem;
}

.hero__acqua-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 3.5rem;
    flex-wrap: wrap;
}

.hero__acqua-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 1.35rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 100px;
    font-family: var(--f-body);
    font-size: 0.95rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.88);
}

.hero__acqua-meta-item svg { color: var(--c-sky); }

/* -------- O QUE SERÁ CONSTRUÍDO -------- */
.build-features {
    padding: var(--s-10) 0;
    background: var(--c-deep);
    color: var(--c-white);
    position: relative;
    overflow: hidden;
}

.build-features::before,
.build-features::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.18;
    pointer-events: none;
}

.build-features::before {
    top: -180px;
    left: -180px;
    background: var(--c-sky);
}

.build-features::after {
    bottom: -180px;
    right: -180px;
    background: var(--c-orange);
}

.build-features__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    text-align: center;
    position: relative;
    z-index: 1;
}

.build-features__label {
    font-family: var(--f-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-sky);
    margin-bottom: 1.25rem;
}

.build-features__title {
    font-family: var(--f-display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.build-features__lead {
    font-family: var(--f-body);
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 52rem;
    margin: 0 auto 4rem;
}

.build-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: left;
}

.build-features__card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 1.75rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.2rem;
    transition: transform var(--t-med) var(--ease-out), border-color var(--t-med) var(--ease), background var(--t-med) var(--ease);
}

.build-features__card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(42, 189, 239, 0.35);
}

.build-features__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 1rem;
    background: rgba(42, 189, 239, 0.12);
    color: var(--c-sky);
}

.build-features__icon svg {
    width: 2.6rem;
    height: 2.6rem;
}

.build-features__name {
    font-family: var(--f-display);
    font-size: 1.8rem;
    line-height: 1.2;
    color: var(--c-white);
}

.build-features__desc {
    font-family: var(--f-body);
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
    flex: 1;
}

.build-features__tag {
    display: inline-block;
    align-self: flex-start;
    padding: 0.4rem 1rem;
    background: rgba(247, 103, 7, 0.15);
    border: 1px solid rgba(247, 103, 7, 0.35);
    border-radius: 100px;
    font-family: var(--f-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--c-orange);
}

@media (max-width: 991px) {
    .build-features__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .build-features__grid {
        grid-template-columns: 1fr;
    }

    .build-features__lead {
        margin-bottom: 3rem;
    }

    .hero__acqua-meta {
        flex-direction: column;
        align-items: stretch;
        margin-top: 2.5rem;
        gap: 0.85rem;
    }

    .hero__acqua-meta-item {
        justify-content: center;
        text-align: center;
        font-size: 0.9rem;
        padding: 0.7rem 1rem;
    }

    .hero__subtitle {
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }

    .hero__subtitle--secondary {
        margin-bottom: 2rem;
    }

    .coming-soon-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.25rem;
        margin-bottom: 1.5rem;
    }
}

/* -------- MANIFESTO -------- */
.manifesto {
    padding: var(--s-10) 0;
    background: var(--c-sand);
}

.manifesto .section-eyebrow {
    color: var(--c-deep);
}

.manifesto__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.manifesto__content p {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--c-text-soft);
    margin-bottom: 1.75rem;
}

.manifesto__content strong { color: var(--c-deep); font-weight: 600; }

.manifesto__pull {
    margin: 1.5rem 0;
    padding: 1.5rem 2rem;
    border-left: 3px solid var(--c-orange);
    background: var(--c-white);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-family: var(--f-sub);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--c-deep);
    font-style: italic;
    box-shadow: var(--c-shadow);
}

.manifesto__visual {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--c-shadow-lg);
}

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

.manifesto__visual-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(5, 26, 46, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--c-white);
    padding: 1.25rem;
    border-radius: var(--radius);
}

.manifesto__visual-badge strong {
    display: block;
    font-family: var(--f-display);
    font-size: 1.25rem;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.manifesto__visual-badge span {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--f-sub);
    font-size: 0.85rem;
}

@media (max-width: 960px) {
    .manifesto__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .manifesto__visual {
        aspect-ratio: 16 / 10;
        max-width: 600px;
        margin: 0 auto;
    }
}

/* -------- EVEREST FEATURE -------- */
.everest-feature {
    padding: var(--s-10) 0;
    background: linear-gradient(135deg, var(--c-deep) 0%, #001f3a 100%);
    color: var(--c-white);
    position: relative;
    overflow: hidden;
}

.everest-feature::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../assets/acqua/acqua-everest.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.35;
}

.everest-feature__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    position: relative;
    z-index: 1;
}

.everest-feature__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.everest-feature__content {
    max-width: 540px;
}

.everest-feature__tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--c-orange);
    border-radius: 100px;
    font-family: var(--f-sub);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.everest-feature__title {
    font-family: var(--f-display);
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 0.95;
    margin-bottom: 1.5rem;
}

.everest-feature__title span {
    color: var(--c-white);
    display: inline-block;
}

.everest-feature__lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
}

.everest-feature__lead strong { color: var(--c-white); font-weight: 600; }

.everest-feature__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.everest-feature__stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.everest-feature__stat-num {
    font-family: var(--f-display);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    color: var(--c-orange);
}

.everest-feature__stat-num span {
    font-size: 0.4em;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 0.2em;
    font-weight: 400;
}

.everest-feature__stat-label {
    font-family: var(--f-sub);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.everest-feature__visual {
    aspect-ratio: 1 / 1.2;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--c-shadow-lg);
    position: relative;
}

.everest-feature__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.everest-feature__visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 26, 46, 0) 60%, rgba(5, 26, 46, 0.5) 100%);
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 960px) {
    .everest-feature__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .everest-feature__visual {
        aspect-ratio: 16 / 12;
        max-width: 600px;
        margin: 0 auto;
    }
}

/* -------- SHOWCASE / RENDERIZAÇÕES -------- */
.render {
    padding: var(--s-10) 0;
    background: var(--c-cream);
}

.render .section-eyebrow {
    color: var(--c-deep);
}

.render .section-eyebrow::before {
    display: none;
}

.render__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 280px 280px;
    gap: 1rem;
    margin-top: 3rem;
}

.render__item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    background: var(--c-deep);
}

.render__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}

.render__item:hover img {
    transform: scale(1.06);
}

.render__item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(5, 26, 46, 0.8) 100%);
}

.render__item-label {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
    z-index: 1;
}

.render__item-label strong {
    display: block;
    font-family: var(--f-display);
    font-size: 1.5rem;
    color: var(--c-white);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.render__item-label span {
    display: block;
    font-family: var(--f-sub);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.render__item--fachada { grid-column: span 7; grid-row: span 1; }
.render__item--praia { grid-column: span 5; grid-row: span 1; }
.render__item--piscina { grid-column: span 5; grid-row: span 1; }
.render__item--toboaguas { grid-column: span 7; grid-row: span 1; }
.render__item--cabanas { grid-column: span 6; }
.render__item--kids { grid-column: span 6; }

@media (max-width: 768px) {
    .render__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1rem;
    }
    .render__item {
        aspect-ratio: 16 / 10;
        min-height: 18rem;
    }
    .render__item--fachada,
    .render__item--praia,
    .render__item--piscina,
    .render__item--toboaguas,
    .render__item--cabanas,
    .render__item--kids {
        grid-column: span 1;
        grid-row: auto;
    }
}

/* -------- INTEREST FORM (manifestar interesse) -------- */
.interest {
    padding: var(--s-10) 0;
    background: var(--c-deep);
    color: var(--c-white);
    position: relative;
    overflow: hidden;
}

.interest::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26, 188, 156, 0.2), transparent 70%);
    border-radius: 50%;
}

.interest__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.interest__content .section-title {
    color: var(--c-white);
}

.interest__content .section-eyebrow {
    color: var(--c-sky);
}

.interest__lead {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.interest__perks {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.interest__perk {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--f-sub);
    font-size: 0.95rem;
}

.interest__perk-icon {
    width: 28px;
    height: 28px;
    background: rgba(26, 188, 156, 0.2);
    border-radius: 8px;
    color: var(--c-turquoise);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.interest__form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.interest__form h3 {
    font-family: var(--f-display);
    font-size: 1.75rem;
    color: var(--c-white);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.interest__form p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.form-field {
    margin-bottom: 1rem;
}

.form-field label {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--f-sub);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.form-field input,
.form-field select {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    color: var(--c-white);
    font-family: var(--f-body);
    font-size: 1rem;
    transition: border-color var(--t-med) var(--ease), background var(--t-med) var(--ease);
}

.form-field input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-field input:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--c-orange);
    background: rgba(255, 255, 255, 0.12);
}

.form-field select option {
    background: var(--c-deep);
    color: var(--c-white);
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 1rem 0 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.5;
}

.form-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 0.2rem;
    flex-shrink: 0;
    accent-color: var(--c-orange);
}

.interest__success {
    display: none;
    padding: 2rem;
    text-align: center;
    background: rgba(26, 188, 156, 0.15);
    border: 1px solid var(--c-turquoise);
    border-radius: var(--radius);
    color: var(--c-white);
}

.interest__success.is-visible { display: block; }

.interest__success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: var(--c-turquoise);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-deep);
}

.interest__success h4 {
    font-family: var(--f-display);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.interest__success p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

@media (max-width: 960px) {
    .interest__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* -------- CONTATO DIRETO -------- */
.contato-direto {
    padding: var(--s-10) 0;
    background: var(--c-white);
}

.contato-direto__header {
    margin-bottom: 4.5rem;
}

.contato-direto__header .section-title {
    margin-bottom: 1.25rem;
}

.contato-direto__subtitle {
    margin: 0 auto;
    line-height: 1.75;
    max-width: 56rem;
}

.contato-direto .section-eyebrow-line {
    display: inline-block;
    width: 4rem;
    height: 0.2rem;
    background: var(--c-orange);
    flex-shrink: 0;
}

.contato-direto .section-eyebrow::before {
    display: none;
}

.contato-direto__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 110rem;
    margin: 0 auto;
}

.contato-direto__btn {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 1.75rem;
    background: var(--c-cream);
    border: 1px solid rgba(1, 62, 127, 0.1);
    border-radius: 1.2rem;
    text-decoration: none;
    color: inherit;
    transition: transform var(--t-med) var(--ease-out), border-color var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), background var(--t-med) var(--ease);
}

.contato-direto__btn:hover {
    transform: translateY(-3px);
    background: var(--c-white);
    border-color: rgba(42, 189, 239, 0.35);
    box-shadow: 0 1.2rem 3rem rgba(1, 62, 127, 0.1);
}

.contato-direto__btn--primary {
    background: linear-gradient(135deg, rgba(2, 186, 91, 0.08) 0%, rgba(2, 186, 91, 0.14) 100%);
    border-color: rgba(2, 186, 91, 0.25);
}

.contato-direto__btn--primary:hover {
    border-color: rgba(2, 186, 91, 0.45);
    box-shadow: 0 1.2rem 3rem rgba(2, 186, 91, 0.15);
}

.contato-direto__btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5.6rem;
    height: 5.6rem;
    flex-shrink: 0;
    border-radius: 1rem;
    background: var(--c-white);
    color: var(--c-deep);
    box-shadow: 0 0.4rem 1.2rem rgba(1, 62, 127, 0.08);
}

.contato-direto__btn--primary .contato-direto__btn-icon {
    background: #02ba5b;
    color: var(--c-white);
}

.contato-direto__btn-body {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    flex: 1;
    min-width: 0;
}

.contato-direto__btn-label {
    font-family: var(--f-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-text-mute);
}

.contato-direto__btn-value {
    font-family: var(--f-display);
    font-size: 1.7rem;
    line-height: 1.2;
    color: var(--c-deep);
    font-weight: 500;
    word-break: break-word;
}

.contato-direto__btn-meta {
    font-family: var(--f-body);
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--c-text-soft);
}

.contato-direto__btn-arrow {
    flex-shrink: 0;
    color: var(--c-orange);
    opacity: 0.7;
    transition: transform var(--t-med) var(--ease), opacity var(--t-med) var(--ease);
}

.contato-direto__btn:hover .contato-direto__btn-arrow {
    transform: translateX(4px);
    opacity: 1;
}

@media (max-width: 991px) {
    .contato-direto__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 52rem;
    }
}

@media (max-width: 600px) {
    .contato-direto__btn {
        flex-wrap: wrap;
        padding: 1.75rem 1.5rem;
    }

    .contato-direto__btn-arrow {
        margin-left: auto;
    }
}

/* -------- AVISO LEGAL -------- */
.legal-notice {
    padding: 2rem 0 var(--s-9);
    background: var(--c-white);
}

.legal-notice__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2.5rem 3rem;
    background: var(--c-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--c-shadow);
    border-left: 4px solid var(--c-orange);
}

.legal-notice__title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--f-display);
    font-size: 1.5rem;
    color: var(--c-deep);
    margin-bottom: 1rem;
    line-height: 1;
}

.legal-notice__title svg {
    color: var(--c-orange);
}

.legal-notice p {
    color: var(--c-text-soft);
    line-height: 1.75;
    font-size: 1rem;
}

.legal-notice p + p { margin-top: 1rem; }

/* -------- Responsivo -------- */
@media (max-width: 960px) {
    .hero--acqua {
        min-height: auto;
        padding: 12rem 0 4.5rem;
    }

    .everest-feature__grid {
        gap: 3rem;
    }

    .everest-feature__content {
        max-width: none;
    }

    .everest-feature__title {
        font-size: clamp(2.8rem, 10vw, 5rem);
    }

    .everest-feature__stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .manifesto__grid {
        gap: 3rem;
    }

    .manifesto__visual-badge {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .build-features,
    .manifesto,
    .everest-feature,
    .render,
    .contato-direto,
    .legal-notice {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .everest-feature__stats {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .everest-feature__stat-num {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }

    .render__item-label strong {
        font-size: 1.3rem;
    }

    .render__item-label span {
        font-size: 0.95rem;
    }

    .contato-direto__btn-value {
        font-size: 1.45rem;
        word-break: break-word;
    }

    .legal-notice__container {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 1.25rem; }
    .section-title { font-size: clamp(2rem, 10vw, 3rem); }

    .hero--acqua {
        padding: 11rem 0 3.5rem;
        min-height: auto;
    }

    .hero--acqua .hero__title {
        font-size: clamp(2.2rem, 11vw, 3.5rem);
    }

    .hero__actions {
        gap: 0.85rem;
    }

    .build-features__card {
        padding: 1.75rem 1.5rem;
    }

    .build-features__name {
        font-size: 1.6rem;
    }

    .coming-soon-badge {
        font-size: 0.8rem;
        letter-spacing: 0.12em;
    }

    .everest-feature__lead {
        font-size: 1rem;
    }

    .contato-direto__header {
        margin-bottom: 3rem;
    }

    .contato-direto__btn-icon {
        width: 4.8rem;
        height: 4.8rem;
    }
}
