:root {
    --blue-900: #063a72;
    --blue-700: #075ca8;
    --green-700: #12885f;
    --green-500: #35b779;
    --yellow-400: #f4c832;
    --coral-500: #ec7357;
    --ink: #17212f;
    --muted: #667085;
    --line: #d8e0ea;
    --paper: #ffffff;
    --wash: #f6f8fb;
    --blue-wash: #eaf4ff;
    --soft-sky: #f2f8ff;
    --mint: #e8f6ef;
    --shadow: 0 22px 70px rgba(20, 35, 55, 0.14);
    --radius: 8px;
    --container: 1180px;
    --header-height: 76px;
    --font: Arial, Helvetica, sans-serif;
    --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
    --motion-fast: 180ms var(--ease-out);
    --motion-soft: 320ms var(--ease-out);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 14px);
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background:
        linear-gradient(180deg, #ffffff 0%, var(--soft-sky) 28%, #ffffff 58%, var(--blue-wash) 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

.skip-link {
    position: fixed;
    left: 12px;
    top: 12px;
    z-index: 80;
    padding: 10px 12px;
    border-radius: 8px;
    background: var(--blue-900);
    color: var(--paper);
    font-weight: 800;
    transform: translateY(-160%);
    transition: transform var(--motion-fast);
}

.skip-link:focus-visible {
    transform: translateY(0);
}

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



a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(100% - 40px, var(--container));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 30;
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(216, 224, 234, 0.65);
    backdrop-filter: blur(18px);
    transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 10px 34px rgba(20, 35, 55, 0.08);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    width: 156px;
    min-height: 62px;
    transition: transform var(--motion-fast), filter var(--motion-fast);
}

.brand-logo {
    width: 100%;
    height: auto;
    max-height: 62px;
    object-fit: contain;
    transition: transform var(--motion-soft);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.92rem;
    font-weight: 800;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    color: var(--blue-900);
    transition: transform var(--motion-fast), background var(--motion-fast), color var(--motion-fast), box-shadow var(--motion-fast);
}

.site-nav a:hover,
.site-nav a.is-active {
    background: var(--mint);
    color: var(--green-700);
}

.site-nav .nav-cta {
    background: var(--blue-900);
    color: var(--paper);
    box-shadow: 0 10px 24px rgba(6, 58, 114, 0.16);
}

.site-nav .nav-cta:hover {
    background: var(--green-700);
    color: var(--paper);
}

/* Ocultar elementos mobile no desktop */
.nav-header,
.nav-footer,
.nav-link-icon,
.nav-close {
    display: none;
}

.nav-toggle {
    display: none;
    min-width: 92px;
    height: 46px;
    border: 1px solid rgba(6, 58, 114, 0.18);
    border-radius: 999px;
    background: linear-gradient(180deg, #0a4a8f 0%, #063a72 100%);
    color: var(--paper);
    cursor: pointer;
    position: relative;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 16px;
    box-shadow: 0 10px 22px rgba(6, 58, 114, 0.22);
}

.nav-toggle-lines {
    display: grid;
    gap: 5px;
    width: 20px;
}

.nav-toggle-lines span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
    transition: transform var(--motion-fast), opacity var(--motion-fast), width var(--motion-fast);
}

.nav-toggle-lines span:nth-child(2) {
    width: 72%;
    justify-self: end;
}

.nav-toggle-label {
    color: currentColor;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

body.nav-open .nav-toggle-lines span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle-lines span:nth-child(2) {
    opacity: 0;
}

body.nav-open .nav-toggle-lines span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 28;
    border: 0;
    padding: 0;
    margin: 0;
    background: rgba(8, 20, 39, 0.52);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--motion-soft);
}

body.nav-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
}

.hero {
    position: relative;
    min-height: 88svh;
    padding: calc(var(--header-height) + 70px) 0 74px;
    display: flex;
    align-items: flex-end;
    isolation: isolate;
    overflow: hidden;
    background: var(--blue-900);
}

.hero-bg,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
}

.hero-overlay {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(5, 39, 76, 0.88) 0%, rgba(5, 39, 76, 0.68) 42%, rgba(5, 39, 76, 0.2) 100%),
        linear-gradient(0deg, rgba(5, 39, 76, 0.68) 0%, rgba(5, 39, 76, 0) 42%);
}

.hero-content {
    color: var(--paper);
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--green-700);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: var(--yellow-400);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 760px;
    margin-bottom: 18px;
    font-size: clamp(3rem, 8vw, 7.2rem);
    line-height: 0.92;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 18px;
    color: var(--blue-900);
    font-size: clamp(2rem, 4.3vw, 4.15rem);
    line-height: 1;
    letter-spacing: 0;
}

h3 {
    color: var(--blue-900);
    font-size: 1.12rem;
    line-height: 1.2;
}

.hero-lead {
    max-width: 600px;
    margin-bottom: 30px;
    font-size: clamp(1.08rem, 2vw, 1.45rem);
    color: rgba(255, 255, 255, 0.92);
}

.hero-actions,
.contact-list,
.offer-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 760px;
    margin-top: 24px;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.9rem;
    font-weight: 800;
    backdrop-filter: blur(12px);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    font-weight: 900;
    cursor: pointer;
    transition: transform var(--motion-fast), background var(--motion-fast), color var(--motion-fast), box-shadow var(--motion-fast);
}

.btn:hover {
    transform: translateY(-2px) scale(1.02);
}

.btn:active {
    transform: translateY(0) scale(0.98);
}

.btn-primary {
    background: var(--green-500);
    color: var(--paper);
    box-shadow: 0 12px 28px rgba(18, 136, 95, 0.28);
}

.btn-primary:hover {
    background: var(--green-700);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.14);
    color: var(--paper);
    border: 1px solid rgba(255, 255, 255, 0.34);
}

.btn-ghost:hover {
    background: var(--paper);
    color: var(--blue-900);
}

.quick-facts {
    position: relative;
    z-index: 2;
    margin-top: -38px;
    background: transparent;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.facts-grid div {
    min-height: 112px;
    padding: 24px 28px;
    border-right: 1px solid var(--line);
}

.facts-grid div:last-child {
    border-right: 0;
}

.facts-grid span,
.space-card span {
    display: block;
    margin-bottom: 5px;
    color: var(--coral-500);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.facts-grid strong {
    display: block;
    color: var(--blue-900);
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    line-height: 1.15;
}

.section {
    padding: 108px 0;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 72px;
    align-items: center;
}

.split-layout-reverse {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
}

.section-copy p:not(.eyebrow),
.section-heading p,
.food-panel p,
.visit-copy p,
.site-footer p,
.site-footer a {
    color: var(--muted);
    font-size: 1.06rem;
}

.intro-section .section-copy,
.integral-section .section-copy,
.visit-copy {
    padding: 28px;
    border: 1px solid rgba(216, 224, 234, 0.82);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 16px 42px rgba(20, 35, 55, 0.06);
    backdrop-filter: blur(10px);
}

.section-copy p {
    max-width: 620px;
}

.image-stack {
    position: relative;
    min-height: 620px;
}

.image-stack-main,
.feature-photo img {
    width: 74%;
    height: 560px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform var(--motion-soft), box-shadow var(--motion-soft), filter var(--motion-soft);
}

.image-stack-main {
    margin-left: auto;
}

.image-stack-small {
    position: absolute;
    left: 0;
    bottom: 36px;
    width: 45%;
    height: 300px;
    object-fit: cover;
    border: 10px solid var(--paper);
    border-radius: var(--radius);
    box-shadow: 0 18px 48px rgba(20, 35, 55, 0.18);
    transition: transform var(--motion-soft), box-shadow var(--motion-soft), filter var(--motion-soft);
}

.intro-section {
    background:
        radial-gradient(circle at 8% 18%, rgba(53, 183, 121, 0.12), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, var(--soft-sky) 100%);
}

.values-section {
    background:
        linear-gradient(135deg, #ffffff 0%, var(--soft-sky) 45%, var(--blue-wash) 100%);
}

.food-section {
    background:
        linear-gradient(180deg, #ffffff 0%, var(--blue-wash) 100%);
}

.spaces-section {
    background:
        linear-gradient(180deg, var(--soft-sky) 0%, #ffffff 52%, var(--soft-sky) 100%);
}

.choice-section {
    background:
        radial-gradient(circle at 82% 12%, rgba(53, 183, 121, 0.12), transparent 32%),
        linear-gradient(180deg, var(--soft-sky) 0%, #ffffff 100%);
}

.integral-section {
    background:
        radial-gradient(circle at 90% 20%, rgba(244, 200, 50, 0.16), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, var(--soft-sky) 100%);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 42px;
}

.section-heading-wide {
    max-width: 920px;
}

.values-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
    gap: 44px;
    align-items: stretch;
}

.values-media {
    position: relative;
    min-height: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--blue-900);
}

.values-media img {
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover;
    transition: transform 520ms var(--ease-out), filter var(--motion-soft);
}

.values-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.values-content .section-heading {
    margin-bottom: 28px;
    padding: 26px;
    border: 1px solid rgba(216, 224, 234, 0.82);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 16px 42px rgba(20, 35, 55, 0.06);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.value-card {
    position: relative;
    min-height: 250px;
    padding: 28px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--motion-soft), border-color var(--motion-soft), box-shadow var(--motion-soft), background var(--motion-soft);
}

.value-card:hover {
    transform: translateY(-4px);
    border-color: rgba(53, 183, 121, 0.45);
    box-shadow: 0 18px 42px rgba(20, 35, 55, 0.1);
}

.value-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-500), var(--yellow-400), var(--coral-500));
}

.value-index {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 24px;
    border-radius: 50%;
    background: var(--mint);
    color: var(--green-700);
    font-size: 0.86rem;
    font-weight: 900;
}

.value-card p,
.space-card p,
.form-note {
    color: var(--muted);
}

.choice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.choice-card {
    position: relative;
    min-height: 250px;
    padding: 28px;
    border: 1px solid rgba(216, 224, 234, 0.9);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 16px 42px rgba(20, 35, 55, 0.07);
    overflow: hidden;
    transition: transform var(--motion-soft), box-shadow var(--motion-soft), border-color var(--motion-soft);
}

.choice-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-700), var(--green-500), var(--yellow-400));
}

.choice-card span {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 24px;
    border-radius: 50%;
    background: var(--blue-wash);
    color: var(--blue-900);
    font-size: 0.84rem;
    font-weight: 900;
}

.choice-card p {
    color: var(--muted);
}

.choice-card-cta {
    background: var(--blue-900);
}

.choice-card-cta h3,
.choice-card-cta p {
    color: var(--paper);
}

.choice-card-cta .btn {
    margin-top: 8px;
}

.spaces-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px;
    gap: 18px;
}

.space-card {
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--blue-900);
    isolation: isolate;
}

.space-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(0deg, rgba(5, 39, 76, 0.86), rgba(5, 39, 76, 0.2) 62%);
}

.space-card img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 520ms var(--ease-out), filter var(--motion-soft);
}

.space-card:hover img {
    transform: scale(1.05);
}

.space-card div {
    width: 100%;
    padding: 24px;
}

.space-card h3,
.space-card p {
    color: var(--paper);
}

.space-card h3 {
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.space-card p {
    margin-bottom: 0;
}

.space-card-large {
    grid-column: span 2;
    grid-row: span 2;
}

.space-card-large h3 {
    max-width: 420px;
    font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.space-card-large p {
    max-width: 420px;
    font-size: 1.08rem;
}

.feature-photo img {
    width: 100%;
    height: 620px;
}

.feature-photo {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.offer-list {
    display: grid;
    gap: 10px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.offer-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    padding: 11px 14px;
    border: 1px solid rgba(216, 224, 234, 0.95);
    border-radius: var(--radius);
    color: var(--blue-900);
    font-weight: 800;
    background: var(--paper);
    transition: transform var(--motion-fast), border-color var(--motion-fast), box-shadow var(--motion-fast);
}

.offer-list i {
    color: var(--green-700);
}

.food-panel {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: center;
    padding: 48px;
    background: var(--blue-900);
    border-radius: var(--radius);
}

.food-panel h2,
.food-panel p {
    color: var(--paper);
}

.food-panel .eyebrow {
    color: var(--yellow-400);
}

.food-panel p {
    margin-bottom: 0;
}

.gallery-section {
    padding-top: 0;
    background: linear-gradient(180deg, var(--soft-sky) 0%, #ffffff 100%);
}

.faq-section {
    background:
        radial-gradient(circle at 10% 10%, rgba(244, 200, 50, 0.14), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, var(--soft-sky) 100%);
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 52px;
    align-items: start;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list details {
    border: 1px solid rgba(216, 224, 234, 0.92);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 30px rgba(20, 35, 55, 0.06);
    overflow: hidden;
}

.faq-list summary {
    cursor: pointer;
    padding: 20px 22px;
    color: var(--blue-900);
    font-weight: 900;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    float: right;
    color: var(--green-700);
    font-size: 1.3rem;
    line-height: 1;
}

.faq-list details[open] summary::after {
    content: "-";
}

.faq-list p {
    margin: -4px 22px 20px;
    color: var(--muted);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr 1fr 0.9fr;
    gap: 18px;
}

.gallery-grid img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius);
    transition: transform var(--motion-soft), box-shadow var(--motion-soft), filter var(--motion-soft);
}

.gallery-grid img:nth-child(even) {
    margin-top: 48px;
}

.visit-section {
    background:
        radial-gradient(circle at 12% 24%, rgba(53, 183, 121, 0.12), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, var(--soft-sky) 44%, var(--blue-wash) 100%);
}

.visit-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 54px;
    align-items: start;
}

.visit-copy {
    position: sticky;
    top: 108px;
}

.contact-list {
    margin-top: 26px;
    flex-direction: column;
}

.contact-list span {
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--blue-900);
    font-weight: 800;
}

.contact-list i {
    margin-top: 4px;
    color: var(--green-700);
}

.visit-form {
    display: grid;
    gap: 18px;
    padding: 34px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

label {
    display: grid;
    gap: 8px;
    color: var(--blue-900);
    font-size: 0.9rem;
    font-weight: 900;
}

.consent-field {
    display: grid;
    grid-template-columns: 20px 1fr;
    align-items: start;
    gap: 10px;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.45;
}

.consent-field input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--green-700);
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--wash);
    color: var(--ink);
    outline: none;
}

input,
select {
    height: 48px;
    padding: 0 14px;
}

textarea {
    min-height: 120px;
    resize: vertical;
    padding: 14px;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--green-500);
    box-shadow: 0 0 0 4px rgba(53, 183, 121, 0.16);
    background: var(--paper);
}

.form-submit {
    width: 100%;
}

.form-submit:disabled {
    cursor: wait;
    opacity: 0.72;
    transform: none;
}

.form-note {
    margin: -6px 0 0;
    font-size: 0.86rem;
}

.form-status {
    display: none;
    margin: -4px 0 0;
    padding: 12px 14px;
    border-radius: var(--radius);
    font-size: 0.92rem;
    font-weight: 800;
}

.form-status:not(:empty) {
    display: block;
}

.form-status[data-status="pending"] {
    background: var(--blue-wash);
    color: var(--blue-900);
}

.form-status[data-status="success"] {
    background: var(--mint);
    color: var(--green-700);
}

.form-status[data-status="error"] {
    background: #fff1ee;
    color: #b23320;
}

.site-footer {
    background: var(--blue-900);
    color: var(--paper);
    padding-top: 62px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.65fr 1fr;
    gap: 54px;
    padding-bottom: 52px;
}

.footer-brand {
    margin-bottom: 18px;
    width: 180px;
    min-height: 72px;
    padding: 0;
}

.site-footer h2 {
    margin-bottom: 12px;
    color: var(--paper);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.site-footer p,
.site-footer a {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.78);
}

.site-footer a:hover {
    color: var(--yellow-400);
}

.footer-bottom {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.9rem;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 45;
    display: inline-grid;
    place-items: center;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(14, 46, 31, 0.34);
    transition: transform var(--motion-fast), box-shadow var(--motion-fast), filter var(--motion-fast);
    animation: whatsapp-pulse 2.1s ease-out infinite;
}

.whatsapp-icon {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
}

.whatsapp-icon svg {
    width: 27px;
    height: 27px;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.38), 0 14px 30px rgba(14, 46, 31, 0.34);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), 0 14px 30px rgba(14, 46, 31, 0.34);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 14px 30px rgba(14, 46, 31, 0.34);
    }
}

@media (hover: hover) and (pointer: fine) {
    .brand:hover {
        transform: translateY(-1px);
        filter: drop-shadow(0 10px 18px rgba(6, 58, 114, 0.12));
    }

    .brand:hover .brand-logo {
        transform: scale(1.03);
    }

    .site-nav a:hover {
        transform: translateY(-1px);
    }

    .site-nav .nav-cta:hover {
        box-shadow: 0 14px 28px rgba(18, 136, 95, 0.22);
    }

    .image-stack-main:hover,
    .image-stack-small:hover,
    .gallery-grid img:hover {
        transform: scale(1.035);
        filter: saturate(1.04) contrast(1.02);
        box-shadow: 0 24px 64px rgba(20, 35, 55, 0.2);
    }

    .values-media:hover img,
    .feature-photo:hover img {
        transform: scale(1.045);
        filter: saturate(1.04) contrast(1.02);
    }

    .offer-list li:hover {
        transform: translateY(-2px);
        border-color: rgba(53, 183, 121, 0.42);
        box-shadow: 0 12px 26px rgba(20, 35, 55, 0.08);
    }

    .choice-card:hover,
    .faq-list details:hover {
        transform: translateY(-4px);
        border-color: rgba(53, 183, 121, 0.42);
        box-shadow: 0 22px 54px rgba(20, 35, 55, 0.12);
    }

    .visit-form:hover {
        box-shadow: 0 28px 76px rgba(20, 35, 55, 0.17);
    }

    .whatsapp-float:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 36px rgba(14, 46, 31, 0.42);
        filter: saturate(1.05);
    }

}

.brand:active .brand-logo,
.image-stack-main:active,
.image-stack-small:active,
.gallery-grid img:active,
.value-card:active,
.space-card:active,
    .offer-list li:active {
    transform: scale(0.985);
}

.values-media:active img,
.feature-photo:active img,
.space-card:active img {
    transform: scale(1.025);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(244, 200, 50, 0.9);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@media (max-width: 1020px) {
    .site-header {
        min-height: var(--header-height);
    }

    .nav-shell {
        gap: 14px;
    }

    .nav-toggle {
        display: inline-flex;
        z-index: 42;
        width: auto;
        min-width: 96px;
        height: 46px;
        border: 1px solid rgba(6, 58, 114, 0.16);
        border-radius: 999px;
        background: linear-gradient(180deg, #0a4a8f 0%, #063a72 100%);
        color: var(--paper);
        box-shadow: 0 12px 24px rgba(6, 58, 114, 0.24);
        transition: transform var(--motion-fast), box-shadow var(--motion-fast), border-color var(--motion-fast), background var(--motion-fast), color var(--motion-fast);
    }

    .nav-toggle:active {
        transform: scale(0.96);
    }

    body.nav-open .nav-toggle {
        border-color: rgba(6, 58, 114, 0.16);
        background: linear-gradient(180deg, #0a4a8f 0%, #063a72 100%);
        color: var(--paper);
        box-shadow: 0 12px 24px rgba(6, 58, 114, 0.24);
        transform: scale(1);
    }

    .site-nav {
        position: fixed;
        inset: 0;
        width: 100%;
        min-height: 100svh;
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 18px clamp(18px, 5vw, 34px) 26px;
        border: 0;
        border-radius: 0;
        background:
            linear-gradient(180deg, #ffffff 0%, #f6f8fb 52%, #eaf4ff 100%);
        box-shadow: none;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        z-index: 60;
        transition: transform 360ms var(--ease-out), opacity 240ms ease;
        overflow-y: auto;
        overscroll-behavior: contain;
        scrollbar-width: none; /* Firefox */
    }

    .site-nav::-webkit-scrollbar {
        display: none; /* Safari/Chrome */
    }

    .site-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    /* Mostrar elementos mobile */
    .nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        margin-bottom: 12px;
        min-height: var(--header-height);
        padding: 0 0 16px;
        border-bottom: 1px solid rgba(6, 58, 114, 0.1);
    }

    .nav-logo {
        width: 126px;
        height: auto;
        max-height: 50px;
        object-fit: contain;
    }

    .nav-motto {
        margin: 0;
        font-size: 0.76rem;
        font-weight: 700;
        line-height: 1.35;
        color: var(--muted);
        letter-spacing: 0.01em;
    }

    .nav-close {
        display: inline-flex;
        place-items: center;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        width: 48px;
        height: 48px;
        border: 1px solid rgba(6, 58, 114, 0.16);
        border-radius: 999px;
        background: linear-gradient(180deg, #0a4a8f 0%, #063a72 100%);
        color: var(--paper);
        font-size: 1.28rem;
        cursor: pointer;
        box-shadow: 0 12px 24px rgba(6, 58, 114, 0.22);
        transition: transform var(--motion-fast), background var(--motion-fast), color var(--motion-fast);
    }

    .nav-close:active {
        transform: scale(0.96);
    }

    .nav-link-icon {
        display: inline-block;
        font-size: 1.25rem;
        margin-right: 12px;
        transition: transform var(--motion-fast);
    }

    /* Cores dedicadas para ícones */
    .site-nav a[href="#essencia"] .nav-link-icon { color: var(--green-700); }
    .site-nav a[href="#porque"] .nav-link-icon { color: var(--coral-500); }
    .site-nav a[href="#espacos"] .nav-link-icon { color: var(--blue-700); }
    .site-nav a[href="#integral"] .nav-link-icon { color: var(--yellow-400); }
    .site-nav a.nav-cta .nav-link-icon { color: var(--paper); }

    .site-nav a {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        min-height: 62px;
        padding: 0 18px;
        font-size: 1rem;
        font-weight: 800;
        color: var(--blue-900);
        border: 1px solid rgba(216, 224, 234, 0.9);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.94);
        box-shadow: 0 12px 28px rgba(6, 58, 114, 0.06);
        transition: transform var(--motion-fast), background var(--motion-fast), border-color var(--motion-fast), color var(--motion-fast), box-shadow var(--motion-fast);
    }

    .site-nav a:hover,
    .site-nav a.is-active {
        background: var(--soft-sky);
        border-color: rgba(7, 92, 168, 0.28);
        color: var(--blue-700);
        transform: translateX(4px);
    }

    .site-nav a[href="#essencia"]:hover,
    .site-nav a[href="#essencia"].is-active {
        background: var(--mint);
        border-color: rgba(53, 183, 121, 0.28);
        color: var(--green-700);
    }

    .site-nav .nav-cta {
        margin-top: 8px;
        background: var(--blue-900);
        border-color: var(--blue-900);
        color: var(--paper) !important;
        box-shadow: 0 14px 28px rgba(6, 58, 114, 0.2);
        justify-content: center;
        font-weight: 900;
        min-height: 58px;
    }

    .site-nav .nav-cta:hover {
        background: var(--green-700);
        border-color: var(--green-700);
        color: var(--paper) !important;
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(18, 136, 95, 0.24);
    }

    /* Rodapé com canais de contato e WhatsApp rápido */
    .nav-footer {
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin-top: 10px;
        padding-top: 20px;
        border-top: 1px solid rgba(6, 58, 114, 0.08);
    }

    .nav-footer-title {
        display: block;
        font-size: 0.72rem;
        font-weight: 900;
        color: var(--muted);
        text-transform: uppercase;
        letter-spacing: 0.08em;
        margin-bottom: -2px;
    }

    .nav-whatsapp-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-height: 48px;
        background: #25d366 !important;
        color: var(--paper) !important;
        border: 0 !important;
        border-radius: 12px !important;
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.26) !important;
        font-weight: 900 !important;
        font-size: 0.94rem !important;
        transition: all var(--motion-fast) !important;
    }

    .nav-whatsapp-btn:hover {
        background: #20ba59 !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 10px 24px rgba(37, 211, 102, 0.36) !important;
    }

    .wa-icon {
        width: 22px;
        height: 22px;
    }

    .nav-contact-info {
        display: grid;
        gap: 10px;
        padding: 14px;
        border-radius: 12px;
        background: var(--soft-sky);
        border: 1px solid rgba(7, 92, 168, 0.08);
    }

    .nav-contact-item {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        color: var(--blue-900);
        font-size: 0.82rem;
        font-weight: 750;
        line-height: 1.4;
    }

    .nav-contact-item i {
        font-size: 1.05rem;
        color: var(--green-700);
        margin-top: 1px;
    }

    /* Efeito de stagger fade-in na abertura do menu */
    @keyframes navLinkFadeIn {
        from {
            opacity: 0;
            transform: translateY(15px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .site-nav.is-open .nav-header {
        animation: navLinkFadeIn 0.35s ease forwards;
        animation-delay: 0.05s;
        opacity: 0;
    }
    .site-nav.is-open a:nth-of-type(1) {
        animation: navLinkFadeIn 0.35s ease forwards;
        animation-delay: 0.1s;
        opacity: 0;
    }
    .site-nav.is-open a:nth-of-type(2) {
        animation: navLinkFadeIn 0.35s ease forwards;
        animation-delay: 0.15s;
        opacity: 0;
    }
    .site-nav.is-open a:nth-of-type(3) {
        animation: navLinkFadeIn 0.35s ease forwards;
        animation-delay: 0.2s;
        opacity: 0;
    }
    .site-nav.is-open a:nth-of-type(4) {
        animation: navLinkFadeIn 0.35s ease forwards;
        animation-delay: 0.25s;
        opacity: 0;
    }
    .site-nav.is-open a:nth-of-type(5) {
        animation: navLinkFadeIn 0.35s ease forwards;
        animation-delay: 0.3s;
        opacity: 0;
    }
    .site-nav.is-open .nav-footer {
        animation: navLinkFadeIn 0.4s ease forwards;
        animation-delay: 0.35s;
        opacity: 0;
    }

    .facts-grid,
    .split-layout,
    .split-layout-reverse,
    .values-layout,
    .values-grid,
    .choice-grid,
    .faq-layout,
    .visit-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .image-stack {
        min-height: auto;
    }

    .image-stack-main,
    .image-stack-small {
        position: static;
        width: 100%;
        height: 420px;
        border: 0;
    }

    .image-stack {
        display: grid;
        grid-template-columns: 1fr 0.8fr;
        gap: 18px;
    }

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

    .food-panel,
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .visit-copy {
        position: static;
    }
}

@media (max-width: 720px) {
    :root {
        --header-height: 68px;
    }

    .container {
        width: min(100% - 28px, var(--container));
    }

    .site-header {
        background: rgba(255, 255, 255, 0.94);
    }

    .nav-shell {
        min-height: var(--header-height);
    }

    .brand {
        width: 122px;
        min-height: 48px;
    }

    .brand-logo {
        max-height: 48px;
    }

    .nav-toggle {
        width: auto;
        min-width: 92px;
        height: 46px;
        border-radius: 999px;
    }

    .site-nav {
        inset: 0;
        width: 100%;
        min-height: 100svh;
        max-height: none;
        padding: 14px 18px 24px;
        border-radius: 0;
    }

    .nav-contact-info {
        padding: 12px;
    }

    .hero {
        min-height: 74svh;
        padding: calc(var(--header-height) + 28px) 0 36px;
        align-items: flex-end;
    }

    .hero-bg {
        object-position: 58% center;
    }

    .hero-overlay {
        background:
            linear-gradient(180deg, rgba(5, 39, 76, 0.44) 0%, rgba(5, 39, 76, 0.84) 48%, rgba(5, 39, 76, 0.96) 100%),
            linear-gradient(90deg, rgba(5, 39, 76, 0.86) 0%, rgba(5, 39, 76, 0.54) 100%);
    }

    .hero .eyebrow {
        margin-bottom: 9px;
        font-size: 0.72rem;
        letter-spacing: 0.06em;
    }

    h1 {
        margin-bottom: 14px;
        font-size: clamp(2.65rem, 14vw, 4.25rem);
        line-height: 0.98;
    }

    h2 {
        margin-bottom: 14px;
        font-size: clamp(1.95rem, 9vw, 2.7rem);
        line-height: 1.05;
    }

    .hero-lead {
        margin-bottom: 22px;
        max-width: 33rem;
        font-size: 1.02rem;
        line-height: 1.52;
    }

    .hero-actions,
    .hero-actions .btn {
        width: 100%;
    }

    .hero-actions {
        gap: 10px;
    }

    .hero-actions .btn {
        min-height: 52px;
        border-radius: 16px;
    }

    .hero-proof {
        gap: 8px;
        margin-top: 18px;
    }

    .hero-proof span {
        min-height: 32px;
        padding: 0 10px;
        font-size: 0.78rem;
    }

    .facts-grid {
        margin-top: 0;
    }

    .facts-grid div {
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .facts-grid div:last-child {
        border-bottom: 0;
    }

    .section {
        padding: 58px 0;
    }

    .section-heading {
        margin-bottom: 26px;
    }

    .section-copy p:not(.eyebrow),
    .section-heading p,
    .food-panel p,
    .visit-copy p,
    .site-footer p,
    .site-footer a {
        font-size: 0.98rem;
        line-height: 1.58;
    }

    .intro-section .section-copy,
    .integral-section .section-copy,
    .visit-copy {
        padding: 22px;
        border-radius: 14px;
    }

    .split-layout,
    .split-layout-reverse {
        gap: 26px;
    }

    .values-grid,
    .choice-grid,
    .spaces-grid,
    .food-panel,
    .gallery-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        min-height: auto;
        padding: 22px;
    }

    .choice-card {
        min-height: auto;
        padding: 22px;
    }

    .values-media img {
        height: 280px;
        min-height: 280px;
    }

    .image-stack {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .image-stack-main,
    .image-stack-small,
    .feature-photo img,
    .gallery-grid img {
        height: 240px;
        border-radius: 14px;
    }

    .image-stack-small {
        border: 0;
    }

    .spaces-grid {
        grid-auto-rows: 238px;
        gap: 12px;
    }

    .space-card-large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .space-card div {
        padding: 18px;
    }

    .space-card h3,
    .space-card-large h3 {
        font-size: 1.22rem;
        line-height: 1.18;
    }

    .food-panel,
    .visit-form {
        padding: 22px;
        border-radius: 16px;
    }

    .offer-list li {
        font-size: 0.92rem;
    }

    .gallery-grid img:nth-child(even) {
        margin-top: 0;
    }

    .site-footer {
        padding-top: 48px;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-icon {
        width: 38px;
        height: 38px;
    }

    .whatsapp-icon svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 430px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

    .nav-shell {
        gap: 10px;
    }

    .brand {
        width: 114px;
        min-height: 46px;
    }

    .brand-logo {
        max-height: 46px;
    }

    .nav-toggle {
        width: auto;
        min-width: 88px;
        height: 44px;
        padding: 0 14px;
        border-radius: 999px;
    }

    .site-nav {
        inset: 0;
        width: 100%;
        min-height: 100svh;
        max-height: none;
        padding: 12px 14px 22px;
        border-radius: 0;
    }

    .nav-header {
        gap: 10px;
        padding-bottom: 12px;
    }

    .nav-logo {
        width: 116px;
        max-height: 46px;
    }

    .nav-motto {
        font-size: 0.72rem;
        line-height: 1.32;
    }

    .nav-close {
        width: 46px;
        height: 46px;
        border-radius: 999px;
    }

    .nav-link-icon {
        margin-right: 10px;
        font-size: 1.14rem;
    }

    .site-nav a {
        min-height: 56px;
        padding: 0 14px;
        font-size: 0.92rem;
    }

    .nav-whatsapp-btn {
        min-height: 46px;
        font-size: 0.9rem !important;
    }

    .nav-contact-item,
    .nav-contact-item span,
    .contact-list span {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .hero {
        min-height: 70svh;
        padding: calc(var(--header-height) + 24px) 0 30px;
    }

    h1 {
        font-size: clamp(2.25rem, 10.2vw, 3.25rem);
    }

    .hero-lead {
        margin-bottom: 18px;
        font-size: 0.96rem;
        line-height: 1.48;
    }

    .hero-actions .btn {
        min-height: 50px;
        border-radius: 14px;
    }

    .hero-proof span {
        min-height: 30px;
        font-size: 0.74rem;
    }

    .facts-grid strong {
        font-size: clamp(1.02rem, 5vw, 1.24rem);
    }

    .section {
        padding: 52px 0;
    }

    .section-heading {
        margin-bottom: 22px;
    }

    .values-media img {
        height: 250px;
        min-height: 250px;
    }

    .image-stack-main,
    .image-stack-small,
    .feature-photo img,
    .gallery-grid img {
        height: 220px;
    }

    .spaces-grid {
        grid-auto-rows: 220px;
    }

    .space-card div {
        padding: 14px;
    }

    .space-card h3,
    .space-card-large h3 {
        font-size: 1.08rem;
    }

    .food-panel,
    .visit-form {
        padding: 18px;
    }
}
