/* ============================================================
   Villa Urbana — CSS
   Paleta: creme quente · cobre/âmbar · tinta escura
   Tipografia: Cormorant Garamond (títulos) · DM Sans (corpo)
   ============================================================ */

:root {
    --cream:       #FAF7F2;
    --cream-dark:  #F0EBE0;
    --cream-mid:   #E8DED2;
    --ink:         #1A1714;
    --ink-light:   #6B6360;
    --copper:      #B87333;
    --copper-dark: #8B5820;
    --gold:        #D4A853;
    --white:       #FFFFFF;
    --wa-green:    #25D366;
    --wa-dark:     #1FAD54;
    --shadow-sm:   0 2px 12px rgba(26,23,20,.08);
    --shadow-md:   0 6px 30px rgba(26,23,20,.12);
    --shadow-lg:   0 16px 60px rgba(26,23,20,.16);
    --radius:      10px;
    --transition:  all .3s ease;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--cream);
    color: var(--ink);
    line-height: 1.65;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: 96px 0; }

/* ── Eyebrow / Labels ────────────────────────────────────── */
.section-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 48px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--copper);
    margin-top: 14px;
}

.section-title[style*="center"]::after { margin-left: auto; margin-right: auto; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--copper);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 6px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: .95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: .02em;
}
.btn-primary:hover {
    background: var(--copper-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184,115,51,.35);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    padding: 13px 26px;
    border-radius: 6px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: .95rem;
    border: 1.5px solid rgba(255,255,255,.55);
    cursor: pointer;
    transition: var(--transition);
}
.btn-ghost:hover {
    background: rgba(255,255,255,.12);
    border-color: var(--white);
    color: var(--white);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--ink);
    padding: 12px 24px;
    border-radius: 6px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: .9rem;
    border: 1.5px solid var(--cream-mid);
    cursor: pointer;
    transition: var(--transition);
}
.btn-outline:hover {
    border-color: var(--copper);
    color: var(--copper);
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--wa-green);
    color: var(--white);
    padding: 14px 22px;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    width: 100%;
    justify-content: center;
}
.btn-whatsapp:hover {
    background: var(--wa-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,.3);
}
.btn-whatsapp i { font-size: 1.2rem; }

.full-width { width: 100%; justify-content: center; }

/* ── Announcement Bar ────────────────────────────────────── */
.announcement-bar {
    background: var(--ink);
    color: rgba(255,255,255,.85);
    text-align: center;
    padding: 10px 20px;
    font-size: .82rem;
    font-weight: 400;
    position: relative;
    z-index: 1001;
}
.announcement-bar .avail-dot {
    display: inline-block;
    width: 7px; height: 7px;
    background: var(--wa-green);
    border-radius: 50%;
    margin-right: 6px;
    animation: pulse 2s infinite;
}
.announcement-bar a {
    color: var(--gold);
    font-weight: 600;
}
.announcement-bar a:hover { text-decoration: underline; }

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .4; }
}

/* ── Header ──────────────────────────────────────────────── */
#header {
    position: fixed;
    top: 0;
    left: 0; width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
}
#header.scrolled {
    background: rgba(250,247,242,.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}
#header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo { display: flex; flex-direction: column; gap: 1px; }
.logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    transition: var(--transition);
}
.logo-sub {
    font-size: .68rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.65);
    transition: var(--transition);
}
#header.scrolled .logo-main { color: var(--ink); }
#header.scrolled .logo-sub  { color: var(--ink-light); }

#nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
}
#nav ul li a {
    font-size: .88rem;
    font-weight: 500;
    color: rgba(255,255,255,.85);
    position: relative;
    transition: var(--transition);
}
#nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1.5px;
    background: var(--copper);
    transition: var(--transition);
}
#nav ul li a:hover { color: var(--white); }
#nav ul li a:hover::after { width: 100%; }
#header.scrolled #nav ul li a { color: var(--ink-light); }
#header.scrolled #nav ul li a:hover { color: var(--ink); }

.nav-cta a {
    background: var(--copper) !important;
    color: var(--white) !important;
    padding: 9px 18px;
    border-radius: 6px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-cta a::after { display: none; }
.nav-cta a:hover {
    background: var(--copper-dark) !important;
    transform: translateY(-1px);
}

#btn-mobile { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
#hamburger {
    display: block; width: 22px;
    border-top: 2px solid var(--white);
    transition: var(--transition);
}
#header.scrolled #hamburger { border-top-color: var(--ink); }
#hamburger::before, #hamburger::after {
    content: ''; display: block;
    width: 22px; height: 2px;
    background: var(--white);
    margin-top: 5px;
    transition: .3s;
}
#header.scrolled #hamburger::before,
#header.scrolled #hamburger::after { background: var(--ink); }
#btn-mobile[aria-expanded="true"] #hamburger { border-top-color: transparent; }
#btn-mobile[aria-expanded="true"] #hamburger::before { transform: rotate(135deg); }
#btn-mobile[aria-expanded="true"] #hamburger::after  { transform: rotate(-135deg); top: -7px; position: relative; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    transform: scale(1.04);
    transition: transform 8s ease;
}
.hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26,23,20,.78) 0%,
        rgba(26,23,20,.55) 60%,
        rgba(26,23,20,.35) 100%
    );
}
.hero .container { position: relative; z-index: 1; padding-top: 80px; }
.hero-content { max-width: 680px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(212,168,83,.15);
    border: 1px solid rgba(212,168,83,.35);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
}
.hero-content h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero-sub {
    font-size: clamp(1.15rem, 2.5vw, 1.45rem);
    color: rgba(255,255,255,.88);
    margin-bottom: 36px;
    max-width: 480px;
    line-height: 1.5;
    font-weight: 300;
    letter-spacing: .01em;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    border-radius: var(--radius);
    width: fit-content;
    flex-wrap: wrap;
}
.stat-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 80px;
}
.stat-item strong {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}
.stat-item span {
    font-size: .72rem;
    color: rgba(255,255,255,.6);
    text-transform: uppercase;
    letter-spacing: .08em;
}
.stat-sep {
    width: 1px; height: 36px;
    background: rgba(255,255,255,.2);
    flex-shrink: 0;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.5);
    font-size: 1.2rem;
    animation: bounce 2s infinite;
    z-index: 1;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── Included Strip ──────────────────────────────────────── */
.strip-included {
    background: var(--ink);
    padding: 20px 0;
}
.strip-included .container {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.strip-label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
    flex-shrink: 0;
}
.strip-items {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.strip-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: rgba(255,255,255,.8);
    padding: 5px 12px;
    background: rgba(255,255,255,.07);
    border-radius: 100px;
    white-space: nowrap;
}
.strip-item i { color: var(--copper); font-size: .75rem; }

/* ── Sobre ───────────────────────────────────────────────── */
.sobre-section { background: var(--cream); }
.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.sobre-img-wrap {
    position: relative;
    border-radius: 12px;
    overflow: visible;
}
.sobre-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}
.sobre-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: var(--copper);
    color: var(--white);
    padding: 12px 18px;
    border-radius: 8px;
    font-size: .8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-md);
    max-width: 220px;
}

.sobre-text { display: flex; flex-direction: column; gap: 0; }
.sobre-text p { color: var(--ink-light); margin-bottom: 16px; line-height: 1.75; }
.sobre-text .section-title { margin-bottom: 20px; }

.sobre-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 24px 0 32px;
}
.sobre-highlight {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.sobre-highlight i {
    color: var(--copper);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}
.sobre-highlight strong {
    display: block;
    font-size: .95rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 2px;
}
.sobre-highlight span { font-size: .85rem; color: var(--ink-light); }

/* ── Estrutura ───────────────────────────────────────────── */
.estrutura-section { background: var(--cream-dark); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 22px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--cream-mid);
}
.feature-icon {
    width: 52px; height: 52px;
    background: rgba(184,115,51,.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--copper);
    font-size: 1.3rem;
    margin-bottom: 16px;
}
.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: 'DM Sans', sans-serif;
}
.feature-card p { font-size: .85rem; color: var(--ink-light); line-height: 1.6; margin: 0; }

/* Apt Card */
.apt-card {
    background: var(--white);
    border-radius: 14px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--cream-mid);
}
.apt-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--cream-dark);
    flex-wrap: wrap;
}
.apt-card-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.apt-card-header p { font-size: .88rem; color: var(--ink-light); margin: 0; }

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}
.amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .88rem;
    color: var(--ink);
}
.amenity-item i {
    color: var(--copper);
    width: 16px;
    flex-shrink: 0;
}

.apt-included-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(184,115,51,.07);
    border: 1px solid rgba(184,115,51,.2);
    border-radius: 8px;
    padding: 16px 20px;
}
.apt-included-note i { color: var(--copper); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.apt-included-note p { margin: 0; font-size: .88rem; color: var(--ink); line-height: 1.6; }

/* ── Galeria / Slideshow ─────────────────────────────────── */
.galeria-section {
    background: var(--ink);
    padding: 80px 0 0;
}
.galeria-section .section-eyebrow { color: var(--gold); }
.galeria-section .section-title   { color: var(--white); }
.galeria-section .section-title::after { background: var(--copper); }

.slideshow { width: 100%; margin-top: 40px; }

/* Stage — imagem principal */
.slide-stage {
    position: relative;
    width: 100%;
    background: #0d0b09;
    overflow: hidden;
}
.slide-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 8;
    overflow: hidden;
}
#slide-img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity .45s ease, transform .45s ease;
    user-select: none;
}
#slide-img.transitioning {
    opacity: 0;
    transform: scale(1.03);
}

/* Caption overlay */
.slide-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 32px 40px 22px;
    background: linear-gradient(to top, rgba(10,8,6,.75) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}
.slide-caption {
    font-family: 'DM Sans', sans-serif;
    font-size: .88rem;
    font-weight: 500;
    color: rgba(255,255,255,.85);
    letter-spacing: .04em;
}
.slide-counter {
    font-family: 'DM Sans', sans-serif;
    font-size: .78rem;
    color: rgba(255,255,255,.45);
    white-space: nowrap;
    flex-shrink: 0;
}

/* Arrows */
.slide-arrow {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    color: var(--white);
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
    backdrop-filter: blur(6px);
    z-index: 2;
}
.slide-arrow:hover {
    background: var(--copper);
    border-color: var(--copper);
    transform: translateY(-50%) scale(1.08);
}
.slide-prev { left: 24px; }
.slide-next { right: 24px; }

/* Progress bar */
.slide-progress-bar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: rgba(255,255,255,.12);
}
.slide-progress-fill {
    height: 100%;
    background: var(--copper);
    width: 0%;
    transition: width linear;
}

/* Thumbnails */
.slide-thumbs-wrap {
    background: #0d0b09;
    padding: 16px 0 20px;
    overflow: hidden;
}
.slide-thumbs {
    display: flex;
    gap: 10px;
    padding: 0 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.slide-thumbs::-webkit-scrollbar { display: none; }

.slide-thumb {
    flex-shrink: 0;
    width: 100px;
    height: 68px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    opacity: .5;
}
.slide-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}
.slide-thumb:hover  { opacity: .8; border-color: rgba(184,115,51,.5); }
.slide-thumb.active { opacity: 1; border-color: var(--copper); }

/* ── Avaliações ──────────────────────────────────────────── */
.avaliacoes-section { background: var(--cream-dark); }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
.review-card {
    background: var(--white);
    border-radius: 12px;
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--cream-mid);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.review-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }
.review-card p {
    font-size: .9rem;
    color: var(--ink-light);
    line-height: 1.7;
    flex: 1;
    font-style: italic;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .82rem;
    color: var(--ink-light);
    font-weight: 500;
    margin-top: auto;
}
.review-avatar {
    width: 32px; height: 32px;
    background: var(--copper);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.reviews-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.google-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.google-stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 2px; }
.google-rating span { font-size: .8rem; color: var(--ink-light); }

/* ── Localização ─────────────────────────────────────────── */
.localizacao-section { background: var(--cream); }
.loc-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: start;
}
.loc-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 24px;
    font-family: 'Cormorant Garamond', serif;
}
.loc-places { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.loc-place {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .9rem;
    color: var(--ink-light);
    padding: 10px 14px;
    background: var(--cream-dark);
    border-radius: 8px;
}
.loc-place i { color: var(--copper); width: 16px; flex-shrink: 0; }
.loc-place strong { color: var(--ink); }

.loc-address {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: rgba(184,115,51,.07);
    border: 1px solid rgba(184,115,51,.2);
    border-radius: 10px;
}
.loc-address i { color: var(--copper); margin-top: 3px; flex-shrink: 0; }
.loc-address div { display: flex; flex-direction: column; gap: 2px; }
.loc-address strong { font-size: .95rem; color: var(--ink); }
.loc-address span { font-size: .82rem; color: var(--ink-light); }

.loc-map { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-md); height: 440px; }
.loc-map iframe { width: 100%; height: 100%; border: 0; }

/* ── Contato ─────────────────────────────────────────────── */
.contato-section { background: var(--cream-dark); }
.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.wa-block {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}
.wa-icon {
    width: 56px; height: 56px;
    background: var(--wa-green);
    color: var(--white);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}
.wa-text h3 { font-size: 1.25rem; margin-bottom: 4px; font-family: 'DM Sans', sans-serif; font-weight: 700; }
.wa-text p { font-size: .85rem; color: var(--ink-light); margin: 0; }

.wa-buttons { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }

.contato-outros { display: flex; flex-direction: column; gap: 12px; }
.contato-detalhe {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .87rem;
    color: var(--ink-light);
}
.contato-detalhe i { color: var(--copper); width: 16px; }

.contato-form-wrap {
    background: var(--white);
    border-radius: 14px;
    padding: 36px;
    box-shadow: var(--shadow-md);
}
.contato-form-wrap h3 {
    font-size: 1.3rem;
    margin-bottom: 24px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
}

.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--cream-mid);
    border-radius: 7px;
    font-family: 'DM Sans', sans-serif;
    font-size: .9rem;
    color: var(--ink);
    background: var(--cream);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--copper);
    box-shadow: 0 0 0 3px rgba(184,115,51,.1);
}
.form-group textarea { resize: vertical; }

/* ── Footer ──────────────────────────────────────────────── */
footer {
    background: var(--ink);
    color: rgba(255,255,255,.75);
    padding: 64px 0 24px;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}
.footer-brand p { font-size: .85rem; line-height: 1.65; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.08);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.7);
    font-size: .95rem;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--copper); color: var(--white); }

footer h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav ul li a {
    font-size: .87rem;
    color: rgba(255,255,255,.6);
    transition: var(--transition);
}
.footer-nav ul li a:hover { color: var(--white); }
.footer-contato p { font-size: .87rem; margin-bottom: 8px; }
.footer-contato a { color: rgba(255,255,255,.75); }
.footer-contato a:hover { color: var(--gold); }

.footer-bottom {
    text-align: center;
    font-size: .78rem;
    color: rgba(255,255,255,.35);
}

/* ── Floating WhatsApp ───────────────────────────────────── */
.wa-float {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--wa-green);
    color: var(--white);
    padding: 12px 20px 12px 14px;
    border-radius: 50px;
    box-shadow: 0 6px 24px rgba(37,211,102,.4);
    font-size: .9rem;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
}
.wa-float i { font-size: 1.5rem; }
.wa-float:hover {
    background: var(--wa-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(37,211,102,.5);
}
.wa-float span { white-space: nowrap; }

/* ── Responsivo ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .sobre-grid { grid-template-columns: 1fr; gap: 40px; }
    .sobre-img-wrap img { height: 380px; }
    .loc-grid { grid-template-columns: 1fr; }
    .loc-map { height: 340px; }
}

@media (max-width: 900px) {
    .reviews-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .contato-grid { grid-template-columns: 1fr; }
    .apt-card { padding: 28px; }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section { padding: 64px 0; }
    .section-title { margin-bottom: 32px; }

    /* Header mobile */
    #btn-mobile { display: block; }
    #header { top: 0; }
    .announcement-bar { display: none; }

    #nav ul {
        display: none;
        position: absolute;
        top: 100%; left: 0;
        width: 100%;
        background: var(--cream);
        padding: 16px 24px 24px;
        box-shadow: var(--shadow-md);
        flex-direction: column;
        gap: 4px;
    }
    #nav ul.open { display: flex; }
    #nav ul li a {
        display: block;
        padding: 12px 0;
        color: var(--ink) !important;
        font-size: 1rem;
        border-bottom: 1px solid var(--cream-dark);
    }
    .nav-cta { margin-top: 8px; }
    .nav-cta a {
        display: flex !important;
        justify-content: center;
        padding: 13px !important;
        background: var(--copper) !important;
        color: var(--white) !important;
        border-radius: 8px;
        border-bottom: none !important;
    }

    /* Hero */
    .hero .container { padding-top: 100px; }
    .hero-content h1 { font-size: 2.4rem; }
    .hero-badge { font-size: .68rem; }

    /* Strip */
    .strip-included .container { flex-direction: column; align-items: flex-start; gap: 12px; }
    .strip-items { gap: 6px; }
    .strip-item { font-size: .75rem; }

    /* Sobre */
    .sobre-img-wrap img { height: 260px; }
    .sobre-badge { font-size: .75rem; padding: 10px 14px; bottom: -12px; right: -8px; }

    /* Estrutura */
    .features-grid { grid-template-columns: 1fr 1fr; }
    .apt-card-header { flex-direction: column; align-items: flex-start; }
    .amenities-grid { grid-template-columns: 1fr; }

    /* Slideshow */
    .slide-img-wrap { aspect-ratio: 4 / 3; }
    .slide-info { padding: 20px 16px 14px; }

    /* Footer */
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .wa-float span { display: none; }
    .wa-float { padding: 14px; border-radius: 50%; }
}

@media (max-width: 480px) {
    .section { padding: 48px 0; }
    .hero-content h1 { font-size: 2rem; }
    .hero-ctas { flex-direction: column; }
    .btn-ghost { text-align: center; justify-content: center; }
    .features-grid { grid-template-columns: 1fr; }
    .apt-card { padding: 20px; }
    .amenities-grid { grid-template-columns: 1fr; }
    .slide-img-wrap { aspect-ratio: 1 / 1; }
    .slide-arrow { width: 36px; height: 36px; font-size: .8rem; }
    .slide-prev { left: 8px; }
    .slide-next { right: 8px; }
    .slide-thumb { width: 64px; height: 44px; }
    .loc-map { height: 260px; }
    .contato-form-wrap { padding: 24px 20px; }
    .reviews-grid { grid-template-columns: 1fr; }
}
