/* ═══════════════════════════════════════════════
   SANTA TEREZA V2 — Design Editorial Premium
═══════════════════════════════════════════════ */

:root {
    --gold:     #C9A84C;
    --gold-2:   #A8872A;
    --dark:     #0C0C0C;
    --dark-2:   #141414;
    --dark-3:   #1C1C1C;
    --white:    #FFFFFF;
    --off:      #F4F1EB;
    --gray:     #777;
    --border:   rgba(201,168,76,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ─── REVEAL ANIMATIONS ──────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ─── HEADER ─────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 999;
    padding: 16px 0;
    background: rgba(12,12,12,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo-link {
    display: flex;
    align-items: center;
    gap: 14px;
}
.site-logo {
    height: 56px;
    width: auto;
}
.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 5px;
}
.logo-sub {
    font-size: 8px;
    color: rgba(201,168,76,0.5);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 3px;
}
.header-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}
.header-nav a {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    transition: color 0.2s;
}
.header-nav a:hover { color: var(--gold); }
.header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--gold) !important;
    padding: 10px 22px;
    border-radius: 2px;
    font-size: 11px !important;
    letter-spacing: 2px !important;
    transition: background 0.2s, border-color 0.2s !important;
}
.header-cta:hover {
    background: var(--gold) !important;
    color: var(--dark) !important;
    border-color: var(--gold) !important;
}
.header-cta svg { width: 14px; height: 14px; fill: currentColor; }

/* ─── HERO FULL-SCREEN ───────────────────────── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 40%;
    transform: scale(1.04);
    transition: transform 7s ease;
}
.hero-bg img.loaded { transform: scale(1); }

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0.08) 100%),
        linear-gradient(to right, rgba(0,0,0,0.3) 0%, transparent 60%);
}

.hero-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 60px 120px;
    gap: 48px;
}

/* Texto esquerdo */
.hero-text { flex: 1; max-width: 680px; }

.hero-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.4);
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 5.5vw, 78px);
    font-weight: 600;
    font-style: normal;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-text h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 12px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-tag {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 7px 18px;
    border-radius: 2px;
    transition: border-color 0.2s, color 0.2s;
}
.hero-tag:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Bloco WhatsApp direito */
.hero-wa {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
    flex-shrink: 0;
}

.hero-wa-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

.hero-wa-line {
    width: 1px;
    height: 28px;
    background: rgba(201,168,76,0.4);
}

.hero-wa-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 0 rgba(37,211,102,0.4);
    animation: waPulse 2.5s ease-in-out infinite;
    transition: transform 0.2s;
}
.hero-wa-btn:hover { transform: scale(1.08); }
.hero-wa-btn svg { width: 36px; height: 36px; fill: white; }

@keyframes waPulse {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.45); }
    70%  { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.hero-scroll {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255,255,255,0.25);
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    animation: heroScroll 2.2s ease-in-out infinite;
}
.hero-scroll svg {
    width: 18px; height: 18px;
    stroke: currentColor; fill: none;
    stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
@keyframes heroScroll {
    0%,100% { transform: translateX(-50%) translateY(0); opacity: 0.25; }
    50%      { transform: translateX(-50%) translateY(7px); opacity: 0.6; }
}

/* ─── CONCEITO ───────────────────────────────── */
.section-conceito {
    background: var(--dark);
    padding: 140px 0;
    text-align: center;
    position: relative;
}
.section-conceito::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 1px; height: 80px;
    background: linear-gradient(to bottom, transparent, var(--gold));
}
.conceito-numero {
    font-family: 'Inter', sans-serif;
    font-size: clamp(80px, 12vw, 160px);
    font-weight: 200;
    color: var(--gold);
    line-height: 0.9;
    opacity: 0.9;
    letter-spacing: -4px;
}
.conceito-unidade {
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    margin-top: 12px;
    margin-bottom: 56px;
}
.conceito-texto {
    max-width: 640px;
    margin: 0 auto 64px;
}
.conceito-texto h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 400;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 24px;
}
.conceito-texto p {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    line-height: 1.85;
}
.conceito-stats {
    display: flex;
    justify-content: center;
    gap: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    max-width: 700px;
    margin: 0 auto;
}
.stat-item {
    flex: 1;
    padding: 36px 24px;
    border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 300;
    color: var(--gold);
    display: block;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}
.stat-desc {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ─── EMPREENDIMENTO (SPLIT) ─────────────────── */
.section-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 680px;
}
.section-split.reverse { direction: rtl; }
.section-split.reverse > * { direction: ltr; }
.split-photo {
    position: relative;
    overflow: hidden;
}
.split-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.split-photo:hover img { transform: scale(1.04); }
.split-content {
    background: var(--dark-2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 72px;
}
.split-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.split-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
}
.split-divider {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 28px;
}
.split-content p {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.9;
    margin-bottom: 36px;
}
.feature-list { list-style: none; margin-bottom: 40px; }
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    min-width: 5px;
    background: var(--gold);
    border-radius: 50%;
    margin-top: 6px;
}
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.25s;
    align-self: flex-start;
}
.btn-gold:hover {
    background: var(--gold);
    color: var(--dark);
}
.btn-gold svg { width: 16px; height: 16px; fill: currentColor; transition: transform 0.2s; }
.btn-gold:hover svg { transform: translateX(4px); }

/* ─── VÍDEO ──────────────────────────────────── */
.section-video {
    background: var(--dark-2);
    padding: 120px 0;
    text-align: center;
}
.section-eyebrow {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.section-video h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3.5vw, 50px);
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}
.section-video p {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    max-width: 500px;
    margin: 0 auto 56px;
    line-height: 1.8;
}
.video-frame {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    max-width: 960px;
    margin: 0 auto 48px;
    overflow: hidden;
}
.video-frame iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}
.btn-outline {
    display: inline-block;
    padding: 14px 40px;
    border: 1px solid var(--border);
    color: rgba(255,255,255,0.6);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.25s;
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ─── GALERIA EDITORIAL ──────────────────────── */
.section-galeria {
    background: var(--dark);
    padding: 120px 0;
}
.galeria-header {
    text-align: center;
    margin-bottom: 64px;
}
.galeria-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3.5vw, 50px);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 14px;
}
.galeria-header p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.5px;
}
.galeria-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    grid-template-rows: 380px 280px;
    gap: 4px;
}
.galeria-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--dark-3);
}
.galeria-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.galeria-item:hover img { transform: scale(1.06); }
.galeria-item.tall { grid-row: span 2; }
.galeria-right-col {
    display: grid;
    grid-template-rows: 380px 280px;
    gap: 4px;
}
.galeria-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    grid-column: 1 / -1;
}
.galeria-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: rgba(255,255,255,0.75);
    padding: 32px 20px 16px;
    font-size: 12px;
    letter-spacing: 0.5px;
    opacity: 0;
    transition: opacity 0.3s;
}
.galeria-item:hover .galeria-caption { opacity: 1; }

/* ─── CONDIÇÕES ──────────────────────────────── */
.section-condicoes {
    background: var(--dark-2);
    padding: 120px 0;
}
.condicoes-header {
    text-align: center;
    margin-bottom: 80px;
}
.condicoes-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3.5vw, 50px);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 16px;
}
.condicoes-header p {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.8;
}
.condicoes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
}
.condicao-card {
    background: var(--dark-2);
    padding: 48px 36px;
    transition: background 0.3s;
}
.condicao-card:hover { background: var(--dark-3); }
.condicao-num {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 200;
    color: var(--gold);
    opacity: 0.6;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.condicao-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--white);
    margin-bottom: 14px;
    font-weight: 600;
}
.condicao-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.8;
}

/* ─── LOCALIZAÇÃO ────────────────────────────── */
.section-localizacao {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}
.localizacao-mapa { position: relative; }
.localizacao-mapa iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: grayscale(40%) contrast(1.1) brightness(0.85);
}
.localizacao-content {
    background: var(--dark-2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 72px;
    border-left: 1px solid var(--border);
}
.localizacao-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}
.localizacao-content p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.9;
    margin-bottom: 36px;
}
.distancia-list { list-style: none; margin-bottom: 40px; }
.distancia-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}
.distancia-list li:last-child { border-bottom: none; }
.distancia-list li span.dest {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: var(--white);
    flex: 1;
}
.distancia-list li span.tempo {
    color: var(--gold);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
}

/* ─── AVALIAÇÕES GOOGLE ──────────────────────── */
.section-avaliacoes {
    background: var(--dark);
    padding: 120px 0;
}
.avaliacoes-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 64px;
    gap: 24px;
    flex-wrap: wrap;
}
.avaliacoes-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
}
.avaliacoes-header h2 em {
    font-style: italic;
    color: var(--gold);
}
.google-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}
.google-logo { width: 40px; height: 40px; }
.google-badge-info { display: flex; flex-direction: column; }
.google-rating-num {
    font-family: 'Inter', sans-serif;
    font-size: 34px;
    font-weight: 200;
    color: var(--white);
    line-height: 1;
    letter-spacing: -1px;
}
.google-stars {
    color: #FBBC04;
    font-size: 16px;
    letter-spacing: 3px;
    margin: 5px 0 4px;
}
.google-rating-label {
    font-size: 10px;
    color: rgba(255,255,255,0.35);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.avaliacoes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    margin-bottom: 48px;
}
.avaliacao-card {
    background: var(--dark-2);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: background 0.3s;
}
.avaliacao-card:hover { background: var(--dark-3); }
.avaliacao-topo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.avaliacao-avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: white;
}
.avaliacao-author { flex: 1; min-width: 0; }
.avaliacao-nome {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.avaliacao-data {
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.3px;
}
.google-g-icon { width: 20px; height: 20px; flex-shrink: 0; }
.avaliacao-stars {
    color: #FBBC04;
    font-size: 15px;
    letter-spacing: 2px;
}
.avaliacao-texto {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.85;
    flex: 1;
}
.avaliacoes-cta { text-align: center; }

/* ─── CTA FINAL ──────────────────────────────── */
.section-cta {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.cta-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://santaterezatoledo.com/wp-content/themes/santa-tereza/assets/images/foto1.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.25);
}
.cta-content {
    position: relative;
    z-index: 1;
    padding: 80px 24px;
}
.cta-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 400;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.cta-content h2 em {
    font-style: italic;
    color: var(--gold);
}
.cta-content p {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 48px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 52px;
    background: var(--gold);
    color: var(--dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    transition: background 0.2s;
}
.btn-cta:hover { background: var(--gold-2); }
.btn-cta svg { width: 18px; height: 18px; fill: currentColor; }

/* ─── FOOTER ─────────────────────────────────── */
.site-footer {
    background: var(--dark-2);
    border-top: 1px solid var(--border);
    padding: 80px 0 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 56px;
    margin-bottom: 64px;
}
.footer-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 5px;
    margin-bottom: 6px;
}
.footer-brand-sub {
    font-size: 9px;
    letter-spacing: 3px;
    color: rgba(201,168,76,0.4);
    margin-bottom: 20px;
    text-transform: uppercase;
}
.footer-tagline {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    line-height: 1.9;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
}
.footer-col h4 {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.footer-col a,
.footer-col p {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    line-height: 2.2;
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: rgba(255,255,255,0.2);
}

/* ─── FLOAT WA ───────────────────────────────── */
.float-wa {
    position: fixed;
    bottom: 32px; right: 32px;
    z-index: 998;
    width: 52px; height: 52px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(37,211,102,0.35);
    transition: transform 0.2s;
}
.float-wa:hover { transform: scale(1.1); }
.float-wa svg { width: 26px; height: 26px; fill: white; }

/* ─── ADMIN BAR (logado no WordPress) ───────── */
.admin-bar .site-header { top: 32px; }

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
    .section-split, .section-localizacao { grid-template-columns: 1fr; }
    .section-split.reverse { direction: ltr; }
    .split-photo, .localizacao-mapa { height: 400px; }
    .localizacao-content { padding: 60px 40px; }
    .condicoes-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .galeria-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .galeria-item.tall { grid-row: span 1; }
    .galeria-item { height: 300px; }
    .galeria-right-col { display: contents; }
    .galeria-bottom { grid-column: auto; }
    .hero-bottom { padding: 0 40px 48px; }
    .avaliacoes-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
    .container { padding: 0 24px; }
    .hero-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 24px 36px;
        gap: 20px;
    }
    .hero-text h1 { font-size: clamp(32px, 9vw, 52px); }
    .hero-wa {
        flex-direction: row;
        align-items: center;
        gap: 14px;
        width: 100%;
    }
    .hero-wa-line { width: 28px; height: 1px; }
    .hero-wa-btn { width: 60px; height: 60px; }
    .hero-wa-btn svg { width: 28px; height: 28px; }
    .hero-tags { gap: 8px; }
    .hero-tag { font-size: 10px; padding: 6px 12px; }
    .split-content { padding: 56px 28px; }
    .localizacao-content { padding: 56px 28px; }
    .condicoes-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .header-nav { display: none; }
    .instagram-header { flex-direction: column; align-items: flex-start; }
    .galeria-bottom { grid-template-columns: 1fr; }
    .avaliacoes-grid { grid-template-columns: 1fr; }
    .avaliacoes-header { flex-direction: column; align-items: flex-start; }
}
