:root {
    --primary: #0F172A;
    --primary-soft: #1E2A45;
    --gold: #C5A059;
    --gold-light: #DFBF7D;
    --bg-light: #F8F9FA;
    --bg-cream: #FBF8F3;
    --text-dark: #1E293B;
    --text-muted: #64748B;
    --white: #FFFFFF;
    --border-soft: #E7E2D8;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.65;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: 0.2px;
}

p {
    font-weight: 300;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: inherit;
}

/* Disclaimer strip */
.disclaimer-bar {
    background-color: var(--primary);
    color: #CBD5E1;
    font-size: 0.8rem;
    text-align: center;
    padding: 9px 20px;
    letter-spacing: 0.2px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.35);
}

.disclaimer-bar strong {
    color: var(--gold-light);
    font-weight: 600;
}

/* Header */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 16px rgba(15, 23, 42, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 84px;
    position: relative;
}

.nav-toggle-checkbox {
    display: none;
}

.nav-toggle-label {
    display: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* Logo superpuesto: se sale del header y "cuelga" sobre el hero,
   sin afectar la altura de la barra de navegacion. */
.logo-overlay {
    position: absolute;
    left: 24px;
    top: 84px;
    transform: translateY(-50%);
    height: 168px;
    display: flex;
    align-items: center;
    z-index: 5;
}

.logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 6px 14px rgba(15,23,42,0.25));
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
    transition: color 0.3s;
    position: relative;
}

.main-nav a:not(.btn-nav)::after {
    content: "";
    position: absolute;
    left: 0; bottom: -6px;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.3s;
}

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

.main-nav a:hover {
    color: var(--gold);
}

.btn-nav {
    background-color: var(--primary);
    color: var(--white) !important;
    padding: 11px 24px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.btn-nav:hover {
    background-color: var(--gold);
}

/* Hero Section (video) */
.hero-section {
    height: 92vh;
    min-height: 620px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    padding: 0 20px;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,23,42,0.72) 0%, rgba(15,23,42,0.55) 45%, rgba(15,23,42,0.82) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.78rem;
    color: var(--gold-light);
    font-weight: 600;
    margin-bottom: 18px;
}

.hero-content h1 {
    font-size: 3.6rem;
    line-height: 1.15;
    margin-bottom: 22px;
    max-width: 820px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #E2E8F0;
    max-width: 620px;
    font-weight: 300;
}

/* Buscador */
.search-box {
    background: var(--white);
    padding: 22px;
    border-radius: 8px;
    display: flex;
    gap: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    width: 100%;
    max-width: 820px;
}

.search-field {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #EEF0F2;
    padding-right: 15px;
}

.search-field:last-of-type {
    border-right: none;
}

.search-field label {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 5px;
    font-weight: 600;
}

.search-field input {
    border: none;
    outline: none;
    font-size: 1rem;
    color: var(--text-dark);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-search {
    background-color: var(--gold);
    color: var(--white);
    border: none;
    padding: 0 34px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    letter-spacing: 0.3px;
}

.btn-search:hover {
    background-color: var(--primary);
}

/* Section titles (shared) */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-eyebrow {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
}

.section-title h2 {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-title p {
    color: var(--text-muted);
}

/* Trust / features strip */
.trust-section {
    background-color: var(--bg-cream);
    padding: 70px 0;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 36px;
}

.trust-item {
    text-align: center;
}

.trust-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: var(--gold);
    font-size: 1.3rem;
    box-shadow: 0 6px 16px rgba(15,23,42,0.05);
}

.trust-item h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.trust-item p {
    font-size: 0.92rem;
    color: var(--text-muted);
}

/* Propiedades Destacadas */
.properties-section {
    padding: 110px 0;
}

.example-tag {
    display: inline-block;
    font-size: 0.72rem;
    color: var(--text-muted);
    background: var(--bg-light);
    border: 1px solid var(--border-soft);
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 22px;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 34px;
}

.property-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(15,23,42,0.07);
    transition: transform 0.35s, box-shadow 0.35s;
    border: 1px solid var(--border-soft);
}

.property-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15,23,42,0.12);
}

.property-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 15px;
}

.badge {
    background-color: var(--gold);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.property-info {
    padding: 26px;
}

.property-info h3 {
    font-size: 1.45rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.location {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 16px;
}

.property-details {
    display: flex;
    justify-content: space-between;
    font-size: 0.84rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    padding: 15px 0;
    margin-bottom: 20px;
}

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.price strong {
    color: var(--primary);
    font-size: 1.2rem;
}

.btn-detail {
    background-color: var(--primary);
    color: var(--white);
    text-decoration: none;
    padding: 9px 22px;
    border-radius: 4px;
    font-size: 0.88rem;
    font-weight: 500;
    transition: background 0.3s;
}

.btn-detail:hover {
    background-color: var(--gold);
}

/* Galeria */
.gallery-section {
    padding: 0 0 110px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap: 14px;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.gallery-grid a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid a:nth-child(4) { grid-column: span 2; }

.gallery-grid a {
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-grid img {
    transition: transform 0.5s;
}

.gallery-grid a:hover img {
    transform: scale(1.06);
}

/* Experiencia Disney */
.experience-section {
    background-color: var(--bg-cream);
    padding: 110px 0;
}

.experience-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.experience-text {
    flex: 1;
}

.experience-text h2 {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.experience-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.experience-disclaimer {
    font-size: 0.82rem;
    color: var(--text-muted);
    background: var(--white);
    border-left: 3px solid var(--gold);
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.btn-gold {
    background-color: var(--gold);
    color: var(--white);
    padding: 13px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background 0.3s;
    letter-spacing: 0.3px;
}

.btn-gold:hover {
    background-color: var(--primary);
}

.experience-image img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(15,23,42,0.14);
}

/* FAQ */
.faq-section {
    padding: 110px 0;
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-soft);
    padding: 22px 0;
}

.faq-item summary {
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--primary);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.faq-item summary::after {
    content: "+";
    font-size: 1.4rem;
    color: var(--gold);
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-left: 20px;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    margin-top: 14px;
    color: var(--text-muted);
    font-size: 0.98rem;
    max-width: 700px;
}

/* CTA final */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-soft) 100%);
    color: var(--white);
    padding: 90px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.cta-section p {
    color: #CBD5E1;
    max-width: 560px;
    margin: 0 auto 32px;
}

/* Footer */
.site-footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 46px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-col p {
    color: #94A3B8;
    font-size: 0.92rem;
    margin-bottom: 15px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1.05rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 0.3px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    color: var(--white);
    background-color: rgba(255,255,255,0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.social-icons a:hover {
    background-color: var(--gold);
}

.footer-disclaimer {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 26px 0;
    text-align: center;
}

.footer-disclaimer p {
    color: #94A3B8;
    font-size: 0.8rem;
    max-width: 780px;
    margin: 0 auto;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    color: #64748B;
    font-size: 0.82rem;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-bottom a {
    color: #94A3B8;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--gold);
}

/* Breadcrumb (legal pages) */
.breadcrumb {
    background: var(--bg-cream);
    padding: 18px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-soft);
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb span {
    color: var(--primary);
}

/* Legal pages */
.legal-page {
    max-width: 780px;
    margin: 0 auto;
    padding: 70px 24px 120px;
}

.legal-page h1 {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.legal-updated {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 1.35rem;
    color: var(--primary);
    margin: 42px 0 14px;
}

.legal-page p, .legal-page li {
    color: var(--text-muted);
    font-size: 0.98rem;
    margin-bottom: 14px;
}

.legal-page ul, .legal-page ol {
    padding-left: 22px;
    margin-bottom: 14px;
}

.legal-page strong {
    color: var(--text-dark);
}

.legal-notice-box {
    background: var(--bg-cream);
    border-left: 3px solid var(--gold);
    padding: 18px 22px;
    border-radius: 4px;
    margin: 26px 0;
}

.legal-notice-box p {
    margin-bottom: 0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* Responsivo básico */
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid a:nth-child(1) { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 768px) {
    .nav-toggle-label { display: block; }

    .logo-overlay { height: 78px; left: 16px; top: 74px; }

    .main-nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        position: absolute;
        top: 84px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 22px 24px 28px;
        box-shadow: 0 16px 30px rgba(15,23,42,0.12);
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        pointer-events: none;
        transition: max-height 0.3s ease, opacity 0.3s ease;
    }

    .nav-toggle-checkbox:checked ~ .main-nav,
    .main-nav.is-open {
        max-height: 420px;
        opacity: 1;
        pointer-events: auto;
    }

    .main-nav .btn-nav {
        width: 100%;
        text-align: center;
    }

    .hero-content h1 { font-size: 2.3rem; }
    .search-box { flex-direction: column; }
    .search-field { border-right: none; border-bottom: 1px solid #EEF0F2; padding-bottom: 12px; }
    .experience-container { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; }
}
