/* ============================================
   RESET 2026 - VARIABLES Y CONFIGURACIÓN
   ============================================ */
:root {
    /* PALETA DE COLORES 2026 - INSPIRADA EN NATURALEZA + TECH */
    --primary-deep: #0A2F1C;
    --primary-main: #1A8C4F;
    --primary-light: #2BC77D;
    --primary-glow: rgba(43, 199, 125, 0.3);
    
    --secondary-dark: #FF9E00;
    --secondary-main: #FFC145;
    --secondary-light: #FFD789;
    
    --accent-tech: #8A2BE2;
    --accent-water: #00C2FF;
    --accent-sun: #FF6B35;
    
    --dark-bg: #0A0F0C;
    --dark-card: #121A15;
    --dark-surface: #1A2420;
    
    --light-bg: #FAFDF9;
    --light-card: #FFFFFF;
    --light-surface: #F0F7F3;
    
    --text-primary: #E6F2EC;
    --text-secondary: #A3C6B8;
    --text-light: #5A7D6E;
    
    --gradient-primary: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-main) 50%, var(--primary-light) 100%);
    --gradient-tech: linear-gradient(135deg, var(--accent-tech) 0%, var(--accent-water) 100%);
    --gradient-sunset: linear-gradient(135deg, var(--accent-sun) 0%, var(--secondary-main) 100%);
    
    --shadow-soft: 0 8px 32px rgba(10, 47, 28, 0.08);
    --shadow-medium: 0 12px 48px rgba(10, 47, 28, 0.12);
    --shadow-glow: 0 0 40px var(--primary-glow);
    
    --border-radius-sm: 12px;
    --border-radius-md: 20px;
    --border-radius-lg: 32px;
    --border-radius-xl: 48px;
    
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    color: var(--text-light);
    background: var(--light-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.dark-mode {
    background: var(--dark-bg);
    color: var(--text-secondary);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

/* ============================================
   HEADER 2026 - MODERNO CON LOGO
   ============================================ */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1400px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-soft);
    z-index: 1000;
    padding: 0 30px;
    transition: var(--transition-smooth);
}

.dark-mode .header {
    background: rgba(10, 15, 12, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.header.scrolled {
    top: 10px;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px) saturate(200%);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0;
}

/* LOGO CON IMAGEN - DISEÑO 2026 */
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    padding: 10px 0;
}

.logo-img {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}

.logo-img::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    animation: logo-shine 3s infinite linear;
}

@keyframes logo-shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.logo-img svg {
    width: 30px;
    height: 30px;
    fill: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h1 {
    color: var(--primary-deep);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 0;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-main) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dark-mode .logo-text h1 {
    background: linear-gradient(135deg, var(--primary-light) 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-text span {
    color: var(--primary-main);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 3px;
}

.dark-mode .logo-text span {
    color: var(--primary-light);
}

/* NAVEGACIÓN 2026 - ESTILO FUTURISTA */
.main-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 5px;
    margin: 0;
    padding: 0;
    background: var(--light-surface);
    border-radius: var(--border-radius-lg);
    padding: 5px;
}

.dark-mode .main-nav ul {
    background: var(--dark-surface);
}

.main-nav ul li {
    position: relative;
}

.main-nav ul li a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 24px;
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav ul li a:hover {
    color: var(--primary-main);
    background: rgba(26, 140, 79, 0.1);
}

.main-nav ul li a.active {
    color: white;
    background: var(--gradient-primary);
    box-shadow: var(--shadow-glow);
}

.main-nav ul li a.active::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--secondary-main);
    border-radius: 2px;
}

/* BOTÓN CONTACTO ESPECIAL */
.btn-contacto {
    background: var(--gradient-tech);
    color: white !important;
    padding: 14px 28px !important;
    border-radius: var(--border-radius-lg);
    margin-left: 10px;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth) !important;
    border: none;
}

.btn-contacto::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-contacto:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3);
}

.btn-contacto:hover::before {
    left: 100%;
}

/* BOTÓN MODO OSCURO */
.theme-toggle {
    background: var(--light-surface);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: 15px;
    transition: var(--transition-smooth);
    color: var(--primary-main);
}

.dark-mode .theme-toggle {
    background: var(--dark-surface);
    color: var(--primary-light);
}

.theme-toggle:hover {
    transform: rotate(15deg);
    background: var(--gradient-primary);
    color: white;
}

/* MENÚ MÓVIL */
.mobile-menu-btn {
    display: none;
    background: var(--gradient-primary);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    margin: 5px auto;
    transition: var(--transition-smooth);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ============================================
   HERO SLIDER 2026 - IMPACTO VISUAL
   ============================================ */
.hero-slider {
    height: 100vh;
    min-height: 800px;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    border-radius: 0 0 var(--border-radius-xl) var(--border-radius-xl);
    background: var(--dark-bg);
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    visibility: hidden;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.7) saturate(140%);
}

.slide-content {
    position: relative;
    z-index: 10;
    color: var(--text-primary);
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 60px;
    background: radial-gradient(circle at 30% 50%, rgba(10, 47, 28, 0.4) 0%, transparent 70%);
}

.slide-content .container {
    max-width: 800px;
    position: relative;
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    background: var(--gradient-sunset);
    color: white;
    padding: 10px 24px;
    border-radius: var(--border-radius-lg);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    gap: 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.slide-badge::before {
    content: '⚡';
    font-size: 1.2rem;
}

.slide-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.slide-subtitle {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 600px;
}

.slide-price {
    font-size: 3.5rem;
    margin: 30px 0;
    display: flex;
    align-items: baseline;
    gap: 20px;
    flex-wrap: wrap;
}

.price-total {
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.price-total::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.price-m2 {
    font-size: 2.2rem;
    color: var(--secondary-main);
    font-weight: 600;
    background: rgba(255, 193, 69, 0.1);
    padding: 8px 20px;
    border-radius: var(--border-radius-md);
}

.slide-desc {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 600px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.slide-features {
    list-style: none;
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.slide-features li {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slide-features li::before {
    content: '✨';
    font-size: 1.2rem;
}

.property-features {
    display: flex;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: var(--border-radius-md);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 600;
    transition: var(--transition-smooth);
}

.feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

/* CONTROLES SLIDER MODERNOS */
.slider-controls {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 20;
    padding: 0 60px;
}

.slider-controls button {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-controls button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    border-color: var(--primary-light);
}

.slider-dots {
    display: flex;
    gap: 12px;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.dot.active {
    background: var(--primary-light);
    transform: scale(1.3);
    box-shadow: 0 0 20px var(--primary-glow);
}

.dot.active::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid var(--primary-light);
    border-radius: 50%;
    animation: dot-pulse 2s infinite;
}

@keyframes dot-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
}

/* ============================================
   BOTONES 2026 - ESTILO FUTURISTA
   ============================================ */
.btn-primary, .btn-secondary, .btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    padding: 18px 40px;
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(26, 140, 79, 0.3);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: var(--gradient-tech);
    color: white;
}

.btn-secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--primary-main);
    border: 2px solid var(--primary-main);
}

.btn-ghost:hover {
    background: var(--primary-main);
    color: white;
    transform: translateY(-5px);
}

.btn-large {
    padding: 22px 50px;
    font-size: 1.2rem;
    border-radius: var(--border-radius-xl);
}

.btn-icon {
    font-size: 1.2rem;
}

/* ============================================
   SECCIONES GENERALES 2026
   ============================================ */
section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-main) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.dark-mode .section-header h2 {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-water) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.dark-mode .section-subtitle {
    color: var(--text-secondary);
}

.section-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--primary-glow);
    filter: blur(80px);
    z-index: -1;
    opacity: 0.3;
}

/* ============================================
   SECCIÓN NOSOTROS 2026 - CARDS NEOMORFICAS
   ============================================ */
.section-about {
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.dark-mode .section-about {
    background: var(--dark-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 30px;
    color: var(--text-light);
}

.dark-mode .about-text p {
    color: var(--text-secondary);
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.highlight {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-card);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 1px solid rgba(26, 140, 79, 0.1);
}

.dark-mode .highlight {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.highlight:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-light);
}

.highlight-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1;
}

.highlight p {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
    margin: 0;
}

.checklist {
    list-style: none;
    margin-top: 30px;
    display: grid;
    gap: 15px;
}

.checklist li {
    padding: 15px 20px;
    padding-left: 50px;
    position: relative;
    background: var(--light-surface);
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
}

.dark-mode .checklist li {
    background: var(--dark-surface);
}

.checklist li:hover {
    transform: translateX(10px);
    background: rgba(26, 140, 79, 0.1);
}

.checklist li::before {
    content: '✅';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
}

.about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-xl);
    z-index: -1;
    opacity: 0.3;
    transition: var(--transition-smooth);
}

.about-image:hover img {
    transform: translate(-10px, -10px);
}

.about-image:hover::after {
    transform: translate(10px, 10px);
}

/* ============================================
   SECCIÓN SERVICIOS 2026 - GLASSMORPHISM
   ============================================ */
.section-services {
    background: var(--light-surface);
    position: relative;
    overflow: hidden;
}

.dark-mode .section-services {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #0E1612 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 50px 40px;
    border-radius: var(--border-radius-xl);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.dark-mode .service-card {
    background: rgba(26, 36, 32, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover {
    transform: translateY(-20px);
    box-shadow: var(--shadow-medium);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.service-card h3 {
    color: var(--primary-deep);
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 800;
}

.dark-mode .service-card h3 {
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.service-card ul {
    list-style: none;
    margin-top: 25px;
}

.service-card ul li {
    padding: 10px 0;
    padding-left: 35px;
    position: relative;
    color: var(--text-light);
    font-size: 1.05rem;
}

.service-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-main);
    font-weight: bold;
    font-size: 1.3rem;
    transition: transform 0.3s;
}

.service-card ul li:hover::before {
    transform: translateX(5px);
}

/* ============================================
   SECCIÓN TERRENO DESTACADO 2026
   ============================================ */
.section-featured {
    background: var(--light-bg);
    position: relative;
}

.dark-mode .section-featured {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #111C17 100%);
}

.property-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.property-gallery {
    position: sticky;
    top: 120px;
}

.main-image {
    margin-bottom: 20px;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    position: relative;
}

.main-image::before {
    content: '✨ Vista Premium';
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-tech);
    color: white;
    padding: 8px 16px;
    border-radius: var(--border-radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
}

.main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.main-image:hover img {
    transform: scale(1.05);
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.thumbnail-gallery img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    filter: brightness(0.9);
}

.thumbnail-gallery img:hover {
    transform: scale(1.05);
    border-color: var(--primary-light);
    filter: brightness(1.1);
}

.property-header {
    margin-bottom: 35px;
}

.property-header h1 {
    color: var(--primary-deep);
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 900;
}

.dark-mode .property-header h1 {
    color: var(--text-primary);
}

.property-price {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.price-main {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-m2 {
    font-size: 1.8rem;
    color: var(--text-light);
    font-weight: 600;
    background: var(--light-surface);
    padding: 10px 25px;
    border-radius: var(--border-radius-lg);
}

.dark-mode .price-m2 {
    background: var(--dark-surface);
}

.property-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.tag {
    padding: 10px 22px;
    border-radius: var(--border-radius-lg);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tag::before {
    font-size: 1.1rem;
}

.tag-featured {
    background: linear-gradient(135deg, #FF9E00 0%, #FFC145 100%);
    color: #333;
}

.tag-featured::before {
    content: '🔥';
}

.tag-legal {
    background: linear-gradient(135deg, #00C2FF 0%, #8A2BE2 100%);
    color: white;
}

.tag-legal::before {
    content: '⚖️';
}

.tag-investment {
    background: linear-gradient(135deg, #1A8C4F 0%, #2BC77D 100%);
    color: white;
}

.tag-investment::before {
    content: '📈';
}

.property-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    background: var(--light-card);
    padding: 40px;
    border-radius: var(--border-radius-xl);
    margin: 35px 0;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(26, 140, 79, 0.1);
}

.dark-mode .property-features-grid {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature {
    text-align: center;
    padding: 25px 15px;
    transition: var(--transition-smooth);
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-label {
    display: block;
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-value {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.property-description h3 {
    color: var(--primary-deep);
    margin: 35px 0 20px;
    font-size: 1.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
}

.property-description h3::before {
    content: '📋';
    font-size: 1.5rem;
}

.dark-mode .property-description h3 {
    color: var(--text-primary);
}

.property-description h4 {
    color: var(--primary-main);
    margin: 25px 0 15px;
    font-size: 1.4rem;
    font-weight: 700;
}

.property-description p, .property-description li {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.property-description ul {
    list-style: none;
    padding-left: 25px;
}

.property-description li {
    padding: 12px 0;
    position: relative;
    padding-left: 35px;
}

.property-description li::before {
    content: '🌿';
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 1.2rem;
}

.property-cta {
    display: flex;
    gap: 25px;
    margin-top: 50px;
    flex-wrap: wrap;
}

/* ============================================
   SECCIÓN CONTACTO 2026 - INTERACTIVA
   ============================================ */
.section-contact {
    background: linear-gradient(135deg, var(--primary-deep) 0%, #0E3A27 100%);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.section-contact::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" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.03)" d="M0,0 L100,0 L100,100 Z"/></svg>');
    background-size: cover;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.contact-info h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 25px;
    font-weight: 900;
}

.contact-info p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.9;
    max-width: 500px;
}

.contact-methods {
    margin-top: 50px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 35px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.contact-icon {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    
    background-clip: text;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
}

.contact-method h4 {
    color: white;
    margin-bottom: 8px;
    font-size: 1.2rem;
    font-weight: 700;
}

.contact-method a, .contact-method p {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.contact-method a:hover {
    color: var(--secondary-main);
    text-decoration: underline;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px 40px;
    border-radius: var(--border-radius-xl);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
}

.dark-mode .contact-form {
    background: rgba(26, 36, 32, 0.95);
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 20px 25px;
    border: 2px solid rgba(26, 140, 79, 0.2);
    border-radius: var(--border-radius-lg);
    font-size: 1.1rem;
    font-family: inherit;
    transition: var(--transition-smooth);
    background: white;
    color: var(--text-light);
}

.dark-mode .form-group input,
.dark-mode .form-group select,
.dark-mode .form-group textarea {
    background: var(--dark-surface);
    color: var(--text-secondary);
    border-color: rgba(255, 255, 255, 0.1);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-main);
    box-shadow: 0 0 0 4px rgba(26, 140, 79, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group label {
    position: absolute;
    top: 20px;
    left: 25px;
    color: var(--text-light);
    transition: var(--transition-smooth);
    pointer-events: none;
    background: white;
    padding: 0 10px;
}

.dark-mode .form-group label {
    background: var(--dark-surface);
    color: var(--text-secondary);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:not([value=""]) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 15px;
    font-size: 0.9rem;
    color: var(--primary-main);
    font-weight: 600;
}

/* ============================================
   FOOTER 2026 - ESTILO PREMIUM
   ============================================ */
.footer {
    background: var(--dark-bg);
    color: var(--text-secondary);
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-main), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo .logo-container {
    justify-content: flex-start;
}

.footer-logo p {
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 400px;
    font-size: 1.1rem;
}

.footer-links h4,
.footer-keywords h4 {
    color: var(--text-primary);
    margin-bottom: 25px;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links h4::before {
    content: '🔗';
    font-size: 1.2rem;
}

.footer-keywords h4::before {
    content: '🔍';
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 15px;
}

.footer-links a:hover::before {
    opacity: 1;
}

.keyword-tags {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.keyword-tags a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 10px;
}

.keyword-tags a:hover {
    background: rgba(26, 140, 79, 0.2);
    color: var(--primary-light);
    transform: translateX(10px);
}

.keyword-tags a::before {
    content: '#';
    color: var(--primary-main);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--text-secondary);
    text-decoration: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--primary-main);
    color: white;
    transform: translateY(-5px);
}

/* ============================================
   RESPONSIVE DESIGN 2026
   ============================================ */
@media (max-width: 1200px) {
    .slide-title {
        font-size: 3.5rem;
    }
    
    .section-header h2 {
        font-size: 2.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .header {
        top: 10px;
        width: 100%;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .hero-slider {
        border-radius: 0;
    }
    
    .slide-content {
        padding: 0 30px;
    }
    
    .slide-title {
        font-size: 3rem;
    }
    
    .about-content,
    .property-detail,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .property-gallery {
        position: static;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 25px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 15, 12, 0.98);
        backdrop-filter: blur(30px);
        padding: 100px 40px 40px;
        transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        background: transparent;
        padding: 0;
    }
    
    .main-nav ul li {
        margin-bottom: 10px;
    }
    
    .main-nav ul li a {
        padding: 20px 30px;
        font-size: 1.2rem;
        justify-content: center;
        border-radius: var(--border-radius-lg);
    }
    
    .theme-toggle,
    .btn-contacto {
        margin: 20px auto;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-slider {
        height: 90vh;
        min-height: 700px;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-price {
        font-size: 2.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .price-m2 {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    section {
        padding: 80px 0;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
    }
    
    .property-features-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px;
    }
    
    .thumbnail-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .property-cta {
        flex-direction: column;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 40px 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .logo-text h1 {
        font-size: 1.5rem;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .property-features-grid {
        grid-template-columns: 1fr;
    }
    
    .property-header h1 {
        font-size: 2rem;
    }
    
    .price-main {
        font-size: 2.5rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .slider-controls {
        padding: 0 20px;
    }
    
    .slider-controls button {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* ============================================
   ANIMACIONES ESPECIALES 2026
   ============================================ */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

.shimmer-text {
    background: linear-gradient(90deg, var(--primary-light) 25%, var(--accent-water) 50%, var(--primary-light) 75%);
    background-size: 1000px 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s infinite linear;
}

/* SCROLLBAR PERSONALIZADA */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

.dark-mode ::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 6px;
    border: 3px solid transparent;
    background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-main);
}

/* SELECTION COLOR */
::selection {
    background: var(--primary-light);
    color: white;
}

::-moz-selection {
    background: var(--primary-light);
    color: white;
}