/* ========================================
   MAJESTIC CONDOMINIO RESORT
   Estilos Globales y Responsive Design
   ======================================== */

/* 1. VARIABLES Y COLORES */
:root {
    /* Colores principales del branding - Extraído del logo oficial */
    --color-primary: #001a3d;           /* Azul oscuro del logo */
    --color-dark: #000f1f;              /* Azul más oscuro */
    --color-light: #e8f4f9;             /* Azul muy claro (cielo del logo) */
    --color-accent: #0066cc;            /* Azul medio */
    --color-accent-light: #5DADE2;      /* Azul claro del logo */
    --color-yellow: #FFD700;            /* Amarillo del logo */
    --color-gold-soft: #f6d67b;
    --color-sand: #f5efe2;
    --color-success: #27ae60;
    --color-text: #001a3d;              /* Azul oscuro para textos */
    --color-text-light: #666666;
    --color-border: #d0dce8;
    --color-white: #ffffff;
    --gradient-premium: linear-gradient(135deg, rgba(0, 26, 61, 0.96) 0%, rgba(0, 61, 92, 0.92) 50%, rgba(7, 117, 143, 0.84) 100%);
    --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.94) 0%, rgba(232, 244, 249, 0.9) 100%);
    --glass-border: 1px solid rgba(255, 255, 255, 0.18);

    /* Tipografías */
    --font-title: 'Archivo Black', sans-serif;
    --font-title-light: 'DM Sans', sans-serif;
    --font-subtitle: 'Futura PT', sans-serif;
    --font-body: 'Futura PT', sans-serif;
    --font-script: 'Merriweather', serif;

    /* Espaciados */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;

    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);

    /* Transiciones */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;

    /* Breakpoints para responsive */
    --mobile: 320px;
    --tablet: 768px;
    --desktop: 1024px;
    --large: 1280px;
}

/* 2. RESET Y ESTILOS BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    background:
        radial-gradient(circle at top left, rgba(93, 173, 226, 0.14), transparent 30%),
        radial-gradient(circle at top right, rgba(255, 215, 0, 0.08), transparent 20%),
        var(--color-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 3. CONTENEDOR GENERAL */
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* 4. HEADER Y NAVEGACIÓN */
.header {
    background: rgba(0, 22, 50, 0.76);
    padding: var(--spacing-md) 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 26, 61, 0.3);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-lg);
}

.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

/* Navegación principal */
.nav {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.95rem;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 4px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffb700, #ff8c00);
    transition: width 0.3s ease;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hamburger menu (móvil) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--color-white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* 5. SECCIÓN HERO */
.hero {
    display: grid;
    grid-template-columns: 1fr 420px;
    min-height: calc(100vh - 80px);
    margin-top: 80px;
}

.hero-left {
    position: relative;
    background: url('assets/images/portada.jpeg') center / cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px 160px;
    overflow: hidden;
    color: #fff;
}

.hero-right {
    background: #00081e;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 36px;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video-bg video,
.hero-video-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 15, 40, 0.48);
    z-index: 1;
}

.hero-orb {
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    filter: blur(6px);
    opacity: 0.55;
}

.hero-orb-left {
    width: 280px;
    height: 280px;
    top: 14%;
    left: -60px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.48) 0%, rgba(255, 215, 0, 0) 72%);
}

.hero-orb-right {
    width: 340px;
    height: 340px;
    right: -70px;
    bottom: 18%;
    background: radial-gradient(circle, rgba(93, 173, 226, 0.44) 0%, rgba(93, 173, 226, 0) 72%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1200px, 100%);
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 420px);
    gap: clamp(24px, 4vw, 56px);
    align-items: center;
    color: var(--color-white);
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-copy {
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    margin-bottom: var(--spacing-md);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: var(--glass-border);
    backdrop-filter: blur(14px);
    font-family: var(--font-title-light);
    font-size: 0.92rem;
    letter-spacing: 0.04em;
}

.hero-badge i {
    color: var(--color-gold-soft);
}

.hero-title {
    font-family: var(--font-title);
    font-size: clamp(3rem, 6vw, 5.4rem);
    font-weight: 900;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    max-width: 10ch;
}

.hero-subtitle {
    font-family: var(--font-subtitle);
    font-size: clamp(1.2rem, 2vw, 1.65rem);
    font-weight: 500;
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.02em;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    max-width: 58ch;
    margin-bottom: var(--spacing-xl);
    font-size: 1.03rem;
    color: rgba(255, 255, 255, 0.84);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 620px;
}

.hero-stat {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: var(--glass-border);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 42px rgba(0, 14, 34, 0.18);
}

.hero-stat strong {
    display: block;
    font-family: var(--font-title-light);
    font-size: 1.3rem;
    color: var(--color-white);
}

.hero-stat span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
}

.hero-panel {
    position: relative;
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
    border: var(--glass-border);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 60px rgba(0, 8, 27, 0.28);
}

.hero-panel::after {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.hero-panel-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.hero-panel-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.74);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-panel-chip {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 215, 0, 0.18);
    color: var(--color-gold-soft);
    font-weight: 700;
    font-size: 0.82rem;
}

.hero-panel-card {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    align-items: start;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-panel-card:first-of-type {
    border-top: none;
    padding-top: 0;
}

.hero-panel-card h3 {
    font-family: var(--font-title-light);
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.hero-panel-card p {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.95rem;
}

.hero-panel-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.18), rgba(255, 255, 255, 0.08));
    color: var(--color-gold-soft);
    font-size: 1.3rem;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.14);
}

.hero-highlight-bar {
    position: absolute;
    left: 50%;
    bottom: 72px;
    transform: translateX(-50%);
    width: min(1180px, calc(100% - 48px));
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: var(--glass-border);
    backdrop-filter: blur(14px);
    box-shadow: 0 16px 48px rgba(0, 8, 27, 0.24);
}

.hero-highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-white);
    font-size: 0.95rem;
}

.hero-highlight-item i {
    color: var(--color-gold-soft);
    font-size: 1.1rem;
}
}

/* 6. BOTONES */
.btn {
    padding: 12px 32px;
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    display: inline-block;
    font-family: var(--font-subtitle);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-yellow) 0%, #FFC700 100%);
    color: var(--color-primary);
    box-shadow: var(--shadow-md);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

.btn-secondary:hover {
    background: var(--color-light);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
    display: block;
}

.btn-expandir,
.btn-play {
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-primary);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-expandir:hover,
.btn-play:hover {
    background: var(--color-white);
    transform: scale(1.1);
}

/* 7. INDICADOR DE SCROLL */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-white);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* 8. SECCIONES GENERALES */
section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-header::after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    margin: 18px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0), rgba(255, 215, 0, 0.92), rgba(0, 102, 204, 0));
}

.section-header h2 {
    font-family: var(--font-title);
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.subtitle {
    font-family: var(--font-subtitle);
    font-size: 1.3rem;
    color: var(--color-text-light);
    font-weight: 300;
}

/* 9. SECCIÓN UBICACIÓN */
.ubicacion {
    background: linear-gradient(135deg, var(--color-light) 0%, var(--color-white) 100%);
    padding: 36px 0;
}

.ubicacion .section-header {
    margin-bottom: 20px;
}

.ubicacion-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
    gap: 24px;
    align-items: stretch;
}

.ubicacion-texto {
    overflow-y: visible;
}

.ubicacion-texto h3 {
    font-family: var(--font-title);
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.ubicacion-texto p {
    color: var(--color-text-light);
    margin-bottom: 8px;
    line-height: 1.5;
    font-size: 0.9rem;
}

.ubicacion-list {
    list-style: none;
    margin-top: 10px;
}

.ubicacion-list li {
    padding: 4px 0;
    color: var(--color-text);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.ubicacion-list i {
    color: var(--color-accent);
    font-size: 1rem;
}

.ubicacion-mapa {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
}

.ubicacion-mapa iframe {
    display: block;
    width: 100%;
    height: 100% !important;
    min-height: unset !important;
}

.ubicacion-reel {
    border-radius: 12px;
    overflow: visible;
    box-shadow: var(--shadow-lg);
}

.ubicacion-reel .instagram-media {
    width: 100% !important;
    min-width: unset !important;
    margin: 0 !important;
}

.ubicacion-reel iframe {
    width: 100% !important;
}

/* 10. SECCIÓN PROPUESTA DE VALOR - ESTILO BRANDING */
.propuesta-valor {
    background: linear-gradient(135deg, #003d5c 0%, #001a3d 100%);
    color: var(--color-white);
    padding: 36px 0;
    position: relative;
    overflow: hidden;
}

.propuesta-valor::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.propuesta-valor .section-header {
    margin-bottom: 20px;
}

.propuesta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    position: relative;
    z-index: 1;
}

.propuesta-item {
    text-align: center;
    padding: 18px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    box-shadow: 0 10px 24px rgba(0, 10, 25, 0.15);
}

.propuesta-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.3);
}

.propuesta-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 1.5rem;
    color: var(--color-yellow);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.propuesta-item h3 {
    font-family: var(--font-title);
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--color-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.propuesta-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* 11. SECCIÓN LÍNEAS DE CONSTRUCCIÓN */
.lineas-construccion {
    background: var(--color-white);
}

.lineas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.linea-card {
    background: var(--color-white);
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.linea-img {
    width: 100%;
    height: 160px;
    overflow: hidden;
    position: relative;
}

.linea-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.linea-card:hover .linea-img img {
    transform: scale(1.07);
}

.linea-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-accent);
    box-shadow: 0 12px 36px rgba(0,0,0,0.13);
}

.linea-card .linea-body {
    padding: var(--spacing-sm);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.linea-icon {
    font-size: 2rem;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.linea-card h3 {
    font-family: var(--font-subtitle);
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.linea-card p {
    color: var(--color-text-light);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.linea-features {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--color-border);
    padding-top: var(--spacing-md);
}

.linea-features li {
    padding: 0.45rem 0;
    color: var(--color-text);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.linea-features li::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
    flex-shrink: 0;
}

.construccion-cta {
    text-align: center;
    background: var(--color-light);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 12px;
    border-left: 4px solid var(--color-accent);
}

.construccion-cta p {
    font-family: var(--font-subtitle);
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

/* 11. SECCIÓN AMENIDADES */
.amenidades {
    background: var(--color-white);
}

.amenidades-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    justify-content: center;
}

.amenidades-grid .amenidad-card {
    flex: 0 0 calc(20% - 25.6px);
}

.amenidad-card {
    background: var(--gradient-card);
    padding: var(--spacing-lg);
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 102, 204, 0.08);
    box-shadow: 0 18px 38px rgba(0, 26, 61, 0.08);
    position: relative;
    overflow: hidden;
}

.amenidad-card::before {
    content: '';
    position: absolute;
    inset: auto -15% -40% auto;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.14), transparent 70%);
}

.amenidad-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-accent);
    box-shadow: var(--shadow-lg);
}

.amenidad-icon {
    font-size: 2rem;
    color: var(--color-accent);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 84px;
    width: 84px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, rgba(93, 173, 226, 0.16), rgba(255, 215, 0, 0.14));
    border-radius: 24px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.amenidad-card h3 {
    font-family: var(--font-subtitle);
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.amenidad-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 11. SECCIÓN LOTES */
.lotes {
    background: var(--color-white);
}

.lotes-caracteristicas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.lote-caracteristicas {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

.caracteristica {
    background: var(--color-light);
    padding: var(--spacing-lg);
    border-radius: 16px;
    border-left: 4px solid var(--color-accent);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-align: center;
}

.caracteristica:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 76, 151, 0.12);
}

.caracteristica-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.caracteristica-icon i {
    font-size: 1.4rem;
    color: #fff;
}

.caracteristica h3 {
    font-family: var(--font-subtitle);
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.caracteristica .numero {
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: var(--color-accent);
    font-weight: 900;
    margin-bottom: var(--spacing-xs);
}

.caracteristica p:last-child {
    color: var(--color-text-light);
    font-size: 0.92rem;
    line-height: 1.5;
}

.lotes-mapa h3 {
    font-family: var(--font-subtitle);
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
}

.mapa-svg {
    width: 100%;
    height: auto;
    background: var(--color-light);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.lote {
    cursor: pointer;
    transition: var(--transition);
}

.lote.disponible:hover {
    fill: #b0d9ff !important;
    filter: brightness(1.1);
}

.mapa-nota {
    text-align: center;
    color: var(--color-text-light);
    margin-top: var(--spacing-md);
    font-size: 0.9rem;
}

/* 12. SECCIÓN AVANCES */
.avances {
    background: linear-gradient(135deg, var(--color-light) 0%, var(--color-white) 100%);
}

.avances-timeline {
    margin-bottom: var(--spacing-xl);
    position: relative;
    padding: var(--spacing-lg) 0;
}

.avances-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--color-accent), var(--color-primary));
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    align-items: center;
}

.timeline-item:nth-child(even) {
    direction: rtl;
}

.timeline-item:nth-child(even) .timeline-content {
    direction: ltr;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--color-accent);
    border: 4px solid var(--color-white);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: var(--shadow-md);
}

.timeline-content {
    background: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.timeline-content h3 {
    font-family: var(--font-subtitle);
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.timeline-content p {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
}

.timeline-date {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.avances-galeria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.avance-foto {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-md);
}

.avance-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.avance-foto:hover img {
    transform: scale(1.08);
}

.overlay-texto {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.8));
    padding: var(--spacing-lg) var(--spacing-md);
    color: var(--color-white);
    transform: translateY(20px);
    transition: var(--transition);
}

.avance-foto:hover .overlay-texto {
    transform: translateY(0);
}

.overlay-texto p {
    font-family: var(--font-subtitle);
    font-weight: 600;
    font-size: 1.1rem;
}

/* 15. SECCIÓN GALERÍA */
.galeria {
    background: var(--color-white);
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

/* ── Visor del Plano de Lotes ──────────────────────────────── */
.plano-viewer-wrap {
    margin: var(--spacing-lg) 0;
    border: 1.5px solid var(--border-soft);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #fff;
}

.plano-viewer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px 20px;
    background: var(--navy);
    color: #fff;
}

.plano-viewer-title {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #fff;
}

.plano-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.plano-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.plano-btn:hover {
    background: rgba(255,255,255,0.22);
}

.plano-btn--download {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.plano-btn--download:hover {
    filter: brightness(1.1);
}

/* Imagen/canvas del plano (preview) */
.plano-img-wrap {
    position: relative;
    background: #f7f5f0;
    cursor: zoom-in;
    overflow: hidden;
    min-height: 200px;
}

.plano-img-wrap::after {
    content: '\f065';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(11,30,58,0.75);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.plano-img-wrap:hover::after {
    opacity: 1;
}

#plano-canvas {
    display: block;
    width: 100%;
    height: auto;
}

.plano-loading {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 0.9rem;
    font-weight: 600;
    gap: 8px;
    background: #f7f5f0;
}

.plano-loading.hidden {
    display: none;
}

/* Lightbox fullscreen */
.plano-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(5,13,26,0.96);
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: auto;
}

.plano-lightbox.open {
    display: flex;
}

.plano-lightbox-close {
    position: fixed;
    top: 16px;
    right: 20px;
    z-index: 9001;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.plano-lightbox-close:hover {
    background: rgba(255,255,255,0.25);
}

.plano-lightbox-inner {
    max-width: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plano-lightbox-inner img,
.plano-lightbox-inner canvas {
    max-width: 96vw;
    max-height: 92vh;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    display: block;
}

.galeria-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    group: 'galeria';
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.galeria-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.galeria-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.3);
}

.galeria-item:hover .galeria-overlay {
    opacity: 1;
}

/* 14. SECCIÓN TESTIMONIOS */
.testimonios {
    background: linear-gradient(135deg, #003d5c 0%, #001a3d 100%);
    color: var(--color-white);
}

.testimonios .section-header h2 {
    color: var(--color-white);
}

.testimonios .subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.testimonio-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--spacing-lg);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.testimonio-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
}

.testimonio-stars {
    color: #ffc107;
    margin-bottom: var(--spacing-md);
    font-size: 1.2rem;
}

.testimonio-texto {
    font-style: italic;
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.testimonio-autor {
    font-weight: 600;
    font-family: var(--font-subtitle);
    margin-bottom: var(--spacing-xs);
}

.testimonio-ubicacion {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* 20. SECCIÓN CARACTERÍSTICAS DESTACADAS */
.caracteristicas-destacadas {
    background: var(--color-white);
    padding: var(--spacing-lg) 0;
}

.caracteristicas-flex {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.caracteristica-destacada {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    background: linear-gradient(145deg, var(--color-white) 0%, rgba(232, 244, 249, 0.92) 100%);
    padding: var(--spacing-md);
    border-radius: 16px;
    border: 1px solid rgba(0, 102, 204, 0.08);
    position: relative;
    transition: var(--transition);
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 26, 61, 0.07);
}

.caracteristica-destacada::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08), transparent);
    border-radius: 50%;
}

.caracteristica-destacada:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-emoji {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.12), rgba(255, 215, 0, 0.16));
    font-size: 1.3rem;
    color: var(--color-primary);
    transition: var(--transition);
}

.caracteristica-destacada:hover .feature-emoji {
    transform: scale(1.1);
}

.feat-body {
    flex: 1;
    min-width: 0;
}

.numero-badge {
    font-family: var(--font-title);
    font-size: 0.75rem;
    color: var(--color-yellow);
    font-weight: 900;
    letter-spacing: 1px;
    opacity: 0.85;
    display: block;
    margin-bottom: 2px;
}

.caracteristica-destacada h3 {
    font-family: var(--font-title);
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.feature-text {
    color: var(--color-text-light);
    font-size: 0.88rem;
    line-height: 1.5;
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

/* 15. SECCIÓN CONTACTO */
.contacto {
    background: var(--color-white);
}

.contacto-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.contacto-left {
    display: flex;
    flex-direction: column;
}

.contacto-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: start;
}

.info-item {
    display: flex;
    gap: var(--spacing-md);
}

.info-item i {
    font-size: 1.2rem;
    color: var(--color-accent);
    min-width: 44px;
    text-align: center;
}

.info-item h4 {
    font-family: var(--font-subtitle);
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.info-item p,
.info-item a {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.info-item a {
    color: var(--color-accent);
    font-weight: 600;
    transition: var(--transition);
}

.info-item a:hover {
    text-decoration: underline;
}

/* Formulario de contacto */
.formulario-contacto {
    background: linear-gradient(145deg, rgba(232, 244, 249, 0.92), rgba(255, 255, 255, 0.98));
    padding: var(--spacing-lg);
    border-radius: 22px;
    border: 1px solid rgba(0, 102, 204, 0.08);
    box-shadow: 0 20px 44px rgba(0, 26, 61, 0.08);
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--color-primary);
    font-family: var(--font-subtitle);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 8px 12px;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-nota {
    text-align: center;
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-top: var(--spacing-sm);
}

/* 16. FOOTER */
.footer {
    background: linear-gradient(135deg, #003d5c 0%, #001a3d 100%);
    color: var(--color-white);
    padding: 32px 0 16px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: 20px;
}

.footer-section h4 {
    font-family: var(--font-subtitle);
    margin-bottom: 10px;
    font-size: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 6px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--color-white);
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--color-accent);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 14px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom i {
    color: #ff4757;
}

/* 17. MODALES */
.modal-galeria {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 900px;
    max-height: 80vh;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 45px;
    color: var(--color-white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: #bbb;
}

.modal-prev,
.modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.5);
    color: var(--color-primary);
    border: none;
    padding: var(--spacing-md) var(--spacing-sm);
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition);
    border-radius: 4px;
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

.modal-prev:hover,
.modal-next:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Modal Cotización */
.modal-cotiza {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-body {
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.modal-body .modal-close {
    top: 15px;
    right: 15px;
}

.modal-body h3 {
    font-family: var(--font-title);
    color: var(--color-primary);
    margin-bottom: var(--spacing-lg);
}

/* 18. ANIMACIONES */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 19. RESPONSIVE DESIGN */

/* Tablets (768px) */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 24px;
        --spacing-xl: 32px;
    }

    .caracteristicas-flex {
        grid-template-columns: 1fr 1fr;
    }

    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .header {
        padding: var(--spacing-sm) 0;
    }

    .hamburger {
        display: flex;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--color-dark);
        padding: var(--spacing-lg);
        gap: var(--spacing-md);
        animation: slideInRight 0.3s ease;
    }

    .nav.active {
        display: flex;
    }

    .hero {
        grid-template-columns: 1fr;
        margin-top: 60px;
    }

    .hero-left {
        min-height: 70vh;
        padding: 80px 24px 160px;
    }

    .hero-right {
        padding: 40px 24px 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-copy {
        max-width: none;
    }

    .hero-title {
        max-width: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats,
    .hero-highlight-bar {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        max-width: 560px;
        margin: 0 auto;
        text-align: left;
    }

    .hero-highlight-bar {
        bottom: 58px;
        width: min(560px, calc(100% - 32px));
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .ubicacion-content,
    .contacto-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .lotes-caracteristicas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .avances-timeline::before {
        left: 20px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        direction: ltr !important;
    }

    .timeline-item .timeline-dot {
        left: 20px;
    }

    .timeline-content {
        margin-left: 50px;
    }

    .amenidades-grid .amenidad-card {
        flex: 0 0 calc(50% - 16px);
    }

    .testimonios-grid,
    .reels-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .modal-close {
        top: 15px;
        right: 15px;
        font-size: 30px;
    }

    .modal-prev,
    .modal-next {
        padding: var(--spacing-sm) var(--spacing-xs);
        font-size: 1.2rem;
    }
}

/* Móviles (max 480px) */
@media (max-width: 480px) {
    :root {
        --spacing-md: 16px;
        --spacing-lg: 20px;
        --spacing-xl: 24px;
    }

    .lotes-caracteristicas-grid {
        grid-template-columns: 1fr;
    }

    .caracteristicas-flex {
        grid-template-columns: 1fr;
    }

    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .container {
        padding: 0 var(--spacing-sm);
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-badge {
        font-size: 0.78rem;
        padding: 9px 14px;
    }

    .hero-panel {
        padding: 18px;
        border-radius: 22px;
    }

    .hero-panel-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-panel-card {
        grid-template-columns: 48px 1fr;
        gap: 12px;
    }

    .hero-panel-icon {
        width: 48px;
        height: 48px;
        border-radius: 16px;
    }

    .hero-stat {
        padding: 14px;
    }

    .hero-highlight-item {
        align-items: flex-start;
    }

    .hero-buttons {
        gap: var(--spacing-sm);
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .logo-img {
        height: 40px;
    }

    .nav-link {
        font-size: 0.85rem;
        padding: var(--spacing-xs) var(--spacing-xs);
    }

    .amenidad-card,
    .testimonio-card {
        padding: var(--spacing-md);
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-section {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .mapa-svg {
        height: 300px;
    }

    .modal-prev,
    .modal-next {
        padding: var(--spacing-sm) var(--spacing-xs);
    }

    .scroll-indicator span {
        font-size: 0.8rem;
    }
}

/* =============================================
   VER MÁS / VER MENOS — MÓVIL
   ============================================= */
.ver-mas-hidden {
    display: none !important;
}

.btn-ver-mas {
    display: none; /* Solo visible en móvil vía JS */
}

@media (max-width: 768px) {
    .btn-ver-mas {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin: 20px auto 0;
        padding: 13px 32px;
        background: var(--color-primary);
        color: #fff;
        border: none;
        border-radius: 50px;
        font-family: var(--font-title-light);
        font-size: 0.92rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        cursor: pointer;
        transition: var(--transition);
        box-shadow: 0 4px 18px rgba(0,0,0,0.18);
        width: fit-content;
    }
    .btn-ver-mas:hover,
    .btn-ver-mas:focus {
        background: var(--color-accent);
        transform: translateY(-2px);
        box-shadow: 0 6px 24px rgba(0,0,0,0.22);
        outline: none;
    }
    .btn-ver-mas i {
        transition: transform 0.25s ease;
    }
    .btn-ver-mas.expanded i {
        transform: rotate(180deg);
    }
}

/* =============================================
   MEJORAS GENERALES MÓVIL (max 768px)
   ============================================= */
@media (max-width: 768px) {

    /* Propuesta de valor */
    .propuesta-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 14px !important;
    }

    /* Amenidades */
    .amenidades-grid {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 12px !important;
        overflow: visible !important;
    }
    .amenidad-card {
        flex: 0 0 calc(50% - 6px) !important;
        min-width: 0 !important;
        padding: 18px 14px !important;
    }

    /* Líneas de construcción */
    .lineas-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    /* Lotes cards */
    .lotes-cards-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
    }

    /* Características destacadas */
    .caracteristicas-flex {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    /* Proceso de inversión */
    .proceso-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
    }
    .paso-card {
        padding: 20px 14px !important;
    }

    /* Estadísticas band */
    .stats-band-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }

    /* Sección ubicación reel */
    .ubicacion-reel {
        display: none; /* Ocultar embed de Instagram en ubicación en móvil */
    }

    /* Botones hero a full width */
    .hero-buttons .btn {
        width: 100% !important;
        justify-content: center !important;
    }

    /* Showcase de lotes */
    .lotes-showcase {
        grid-template-columns: 1fr !important;
    }
    .lotes-kpis {
        grid-template-columns: 1fr 1fr 1fr !important;
    }
}

/* =============================================
   MEJORAS EXTRA MÓVIL PEQUEÑO (max 480px)
   ============================================= */
@media (max-width: 480px) {
    .propuesta-grid {
        grid-template-columns: 1fr !important;
    }
    .amenidad-card {
        flex: 0 0 100% !important;
    }
    .lotes-cards-grid {
        grid-template-columns: 1fr !important;
    }
    .proceso-grid {
        grid-template-columns: 1fr !important;
    }
    .stats-band-grid {
        grid-template-columns: 1fr 1fr !important;
    }
    .lotes-kpis {
        grid-template-columns: 1fr 1fr !important;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .scroll-indicator,
    .btn {
        display: none;
    }

    body {
        line-height: 1.5;
    }

    section {
        page-break-inside: avoid;
    }
}
