/* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif; /* Puedes cambiarla por una Google Font más geométrica luego */
}

/* VARIABLES DE COLOR (Basadas en las fotos) */
:root {
    --bg-dark: #121212;
    --text-light: #F5F5F5;
    --accent: #E0E0E0; /* Gris claro para detalles */
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

/* HERO SECTION */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    /* Aquí va tu imagen de fondo principal (ej. el barbero cortando) */
    background: url('../assets/img/hero-bg.png') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 18, 0.85); /* Fondo oscuro transparente para leer bien el texto */
    z-index: 1;
}

/* NAVBAR BÁSICO (Dentro del Hero) */
.navbar {
    position: relative;
    z-index: 2;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-width: 180px;
    height: auto;
}

/* CONTENIDO DEL HERO */
.hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title .highlight {
    color: var(--text-light);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    display: block;
    margin-top: 0.5rem;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 2.5rem;
    color: var(--accent);
    line-height: 1.5;
}

/* BOTÓN CTA (Estilo agresivo/moderno como el logo) */
.cta-button {
    background-color: var(--text-light);
    color: var(--bg-dark);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%); /* Corte diagonal leve para ese toque agresivo/barber */
}

.cta-button:hover {
    background-color: #ffffff;
    transform: scale(1.05);
}
/* --- SECCIÓN DE SERVICIOS - EXPERIENCIA TRIPLE --- */
:root {
    --gold: #d4af37;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --vip-gold: #f9d976; /* Un dorado más claro y brillante para el VIP */
    --vip-glow: rgba(249, 217, 118, 0.6);
    --bg-card: #121212; /* Tarjetas más oscuras */
}

.tiered-experience-section {
    /* FONDO CON TEXTURA SUTIL (Patrón de puntos) */
    background-color: #0a0a0a;
    background-image: radial-gradient(#222 1px, transparent 1px);
    background-size: 20px 20px;
    padding: 6rem 5%;
}

.main-container { max-width: 1300px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 5rem; }
.experience-title { font-size: clamp(2.2rem, 5vw, 3.5rem); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 1rem; color: var(--text-light); font-weight: 900; }
.experience-desc { color: #888; font-size: 1.2rem; max-width: 700px; margin: 0 auto; }

/* GRID */
.tiers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2.5rem; justify-content: center; align-items: stretch; }

/* TARJETAS BASE */
.tier-card {
    background-color: var(--bg-card);
    border-radius: 8px;
    position: relative;
    border: 1px solid #2a2a2a; /* Borde base */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.tier-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.8); }

.card-inner {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 2;
    background: var(--bg-card); /* Oculta animación de fondo si no es VIP */
    border-radius: 7px;
}

/* TEXTOS Y LISTAS */
.tier-label { font-size: 0.8rem; color: #666; letter-spacing: 2px; display: block; }
.tier-name { font-size: 2.2rem; font-weight: 900; color: #ddd; margin-bottom: 1rem; }
.tier-divider { height: 2px; background: #333; margin-bottom: 2rem; }
.tier-features { list-style: none; flex-grow: 1; margin-bottom: 2rem; }
.tier-features li { color: #aaa; font-size: 1rem; margin-bottom: 1rem; padding-left: 20px; position: relative; }
.tier-features li::before { content: '→'; position: absolute; left: 0; color: #555; }
.tier-price-container { border-top: 1px solid #2a2a2a; padding-top: 1.5rem; margin-bottom: 1.5rem; text-align: center; }
.price { font-size: 3.5rem; font-weight: 900; color: #eee; }
.currency { color: #888; margin-right: 5px; }

/* BOTONES DE TARJETAS */
.tier-btn { width: 100%; padding: 1rem; font-weight: bold; text-transform: uppercase; border: none; cursor: pointer; transition: all 0.3s ease; clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%); }
.btn-base { background: #333; color: #fff; }
.btn-base:hover { background: #444; }

/* ESTILOS PREMIUM */
.premium-card { border-color: #554a2a; }
.highlight-tier { color: var(--gold); }
.divider-gold { background: linear-gradient(90deg, var(--gold), transparent); }
.premium-card .tier-features li::before { color: var(--gold); }
.highlight-price { color: var(--gold); }
.btn-gold { background: var(--gold); color: #000; }
.btn-gold:hover { background: #e6c243; box-shadow: 0 0 15px var(--gold-glow); }

/* --- LA BESTIA: ESTILOS V.I.P. --- */
.featured-vip {
    transform: scale(1.05); /* Ligeramente más grande */
    border: none;
    z-index: 10;
}
.featured-vip:hover { transform: scale(1.08) translateY(-5px); }

/* La animación dorada intensa del borde */
.featured-vip .card-border-animation {
    position: absolute; top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(45deg, var(--vip-gold), #ff8a00, #e52e71, var(--vip-gold));
    background-size: 400%;
    z-index: 0;
    animation: glowing 20s linear infinite;
    border-radius: 9px;
}
@keyframes glowing { 0% { background-position: 0 0; } 50% { background-position: 400% 0; } 100% { background-position: 0 0; } }

.featured-vip .card-inner { background: #0a0a0a; /* Aún más oscuro por dentro */ }
.highlight-vip { color: var(--vip-gold); text-shadow: 0 0 15px var(--vip-glow); }
.divider-vip { background: linear-gradient(90deg, var(--vip-gold), #ff8a00); }
.featured-vip .tier-features li { color: #ddd; } /* Texto más blanco */
.featured-vip .tier-features li::before { content: '★'; color: var(--vip-gold); } /* Estrella en vez de flecha */
.btn-vip { background: linear-gradient(90deg, var(--vip-gold), #ff8a00); color: #000; }
.btn-vip:hover { box-shadow: 0 0 20px var(--vip-glow); }

/* Cinta VIP */
.ribbon {
    position: absolute; top: -10px; right: -10px; z-index: 20;
    overflow: hidden; width: 150px; height: 150px;
}
.ribbon span {
    position: absolute; display: block; width: 225px; padding: 10px 0;
    background: var(--vip-gold); color: #000; box-shadow: 0 5px 10px rgba(0,0,0,0.5);
    font-weight: 900; font-size: 0.8rem; text-transform: uppercase; text-align: center;
    right: -55px; top: 45px; transform: rotate(45deg); letter-spacing: 2px;
}

/* BANNER OTROS SERVICIOS (Integrado) */
.other-services-banner {
    margin-top: 6rem; /* Un poco más de aire arriba */
    text-align: center;
    padding: 3rem 0;
    /* Eliminamos el background sólido y los bordes duros */
    background: transparent; 
    border: none;
    position: relative;
}

/* Agregamos una línea divisoria sutil y elegante con degradado */
.other-services-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent); /* Un toque de dorado muy tenue */
}

.other-services-banner p { 
    color: #888; 
    margin-bottom: 1.5rem; 
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* El botón lo hacemos un poco más "premium" para que combine */
.btn-outline { 
    background: transparent; 
    border: 1px solid rgba(232, 232, 232, 0.4); 
    color: #E8E8E8;
    padding: 1rem 2.5rem; 
    cursor: pointer; 
    transition: all 0.3s ease; 
    text-transform: uppercase; 
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-radius: 4px; /* Opciones: 0px para cuadrado, o igual al de las tarjetas */
}

.btn-outline:hover { 
    background: rgba(255, 255, 255, 0.05); 
    border-color: #fff; 
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}


/* --- SECCIÓN LA EXPERIENCIA (SHOWCASE) --- */
.experience-showcase {
    background-color: #0d0d0d;
    padding: 8rem 5%;
    position: relative;
    overflow: hidden;
}

.experience-showcase::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 70%; /* Detrás de donde irán las imágenes */
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.showcase-container {
    position: relative;
    z-index: 1;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 5rem;
}

/* BLOQUE DE TEXTO */
.showcase-content {
    flex: 1;
    max-width: 500px;
}

.section-kicker {
    color: #d1bfae; /* Un tono café/crema muy desaturado y elegante */
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: bold;
    display: block;
    margin-bottom: 1rem;
}

.showcase-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 900;
    /* Magia aquí: Degradado metálico en el texto */
    background: linear-gradient(135deg, #ffffff 0%, #888888 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 4px 15px rgba(255, 255, 255, 0.1);
}

.showcase-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #FFFFFF, #888888);
    margin-bottom: 2rem;
}

.showcase-text {
    color: #a0a0a0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

/* BLOQUE DE IMÁGENES (EL COLLAGE) */
.showcase-gallery {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.gallery-img-main {
    width: 80%;
    position: relative;
    z-index: 1;
    box-shadow: -15px 15px 0px rgba(255, 255, 255, 0.05); 
}

.gallery-img-sub {
    position: absolute;
    bottom: -15%;
    left: 0;
    width: 45%;
    z-index: 2;
    border: 5px solid #0d0d0d; /* Borde del mismo color del fondo para separar */
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
}

.img-fluid {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(30%); /* Un toque cinemático */
    transition: filter 0.5s ease;
}

.showcase-gallery:hover .img-fluid {
    filter: grayscale(0%);
}

/* RESPONSIVE (Móvil) */
@media (max-width: 992px) {
    .showcase-container {
        flex-direction: column;
        gap: 4rem;
    }

    .showcase-content {
        max-width: 100%;
        text-align: center;
    }

    .showcase-divider {
        margin: 0 auto 2rem auto; /* Centrar el separador */
    }

    .showcase-gallery {
        justify-content: center;
        width: 100%;
        padding-bottom: 3rem; /* Espacio extra para la imagen superpuesta */
    }

    .gallery-img-main {
        width: 90%;
        box-shadow: -10px 10px 0px rgba(212, 175, 55, 0.1);
    }

    .gallery-img-sub {
        width: 50%;
        bottom: -10%;
        left: -5%;
    }
}




/* --- SECCIÓN RESEÑAS --- */
.reviews-section {
    background-color: #080808; 
    padding: 6rem 5%;
    overflow: hidden; 
}

.reviews-container {
    max-width: 1300px;
    margin: 0 auto;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.carousel-track {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;  
    scrollbar-width: none;  
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

/* Tarjetas de Reseña con PROFUNDIDAD */
.review-card {
    flex: 0 0 calc(33.333% - 1.5rem); 
    min-width: 320px; 
    /* Magia aquí: Degradado sutil para matar lo plano */
    background: linear-gradient(145deg, #161616 0%, #0a0a0a 100%);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); /* Sombra para despegarla del fondo */
    scroll-snap-align: center;
    position: relative;
    overflow: hidden; /* Para que la comilla no se salga */
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.review-card:hover {
    transform: translateY(-8px);
    border-color: #444;
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.05); /* Brillo sutil al pasar el mouse */
}

/* Comillas gigantes de fondo (Textura) */
.quote-bg {
    position: absolute;
    top: -20px;
    right: 10px;
    font-size: 10rem;
    line-height: 1;
    font-family: serif;
    color: rgba(255, 255, 255, 0.03); /* Casi invisibles, solo textura */
    z-index: 0;
    pointer-events: none;
}

.review-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Estrellas color Google para matar la monotonía */
.stars {
    color: #fbbc04; /* Amarillo Google Maps */
    font-size: 1.4rem;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(251, 188, 4, 0.2);
}

.review-text {
    color: #E8E8E8; /* Texto principal más brillante y legible */
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.review-footer {
    border-top: 1px solid #222;
    padding-top: 1rem;
}

.review-author {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.review-source {
    color: #888; /* Un gris más claro para que se lea bien */
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

/* Responsivo */
@media (max-width: 992px) {
    .review-card {
        flex: 0 0 calc(50% - 1rem); 
    }
}

@media (max-width: 600px) {
    .review-card {
        flex: 0 0 85%; 
    }
}



/* --- SECCIÓN GALERÍA INTERACTIVA 3D - COMPACTO (4 IMÁGENES) --- */
.gallery-3d-section.tight-layout {
    background-color: #050505; 
    padding: 6rem 5% 4rem 5%; /* Un poco menos de padding inferior para que no se separe tanto */
    overflow: hidden; 
    position: relative;
}

.gallery-container {
    max-width: 1300px;
    margin: 0 auto;
}

/* Contenedor de Perspectiva */
.perspective-wrapper {
    width: 100%;
    margin-top: 3rem;
    position: relative;
    perspective: 1500px; 
}

/* El Grid - NUEVO 2x2 COMPACTO */
.gallery-grid-compact {
    display: grid;
    /* Fuerza un grid de 2 columnas exactas */
    grid-template-columns: 1fr 1fr;
    /* Espacio mínimo absoluto entre imágenes, sutil pero metálico */
    gap: 0.5rem; 
    transition: transform 0.1s ease-out; 
    transform-style: preserve-3d;
}

/* Ítems individuales con profundidad */
.compact-item {
    position: relative;
    border-radius: 4px; /* Un poco más cuadrado/industrial */
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #1a1a1a;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    /* Fuerza a que sean cuadrados perfectos */
    aspect-ratio: 1 / 1; 
}

.item-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

/* Imagen dramática */
.img-3d {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%) brightness(0.7) contrast(1.1); /* Dramatismo metálico */
    transition: filter 0.5s ease, transform 0.5s ease;
}

/* Info del corte Pop-out */
.item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, transparent 100%);
    opacity: 0;
    transform: translateY(20px) translateZ(30px);
    transition: opacity 0.3s ease, transform 0.4s ease-out;
    z-index: 2;
}

.item-info h3 {
    color: #E8E8E8; /* El plateado premium */
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.3rem;
    font-weight: 900;
}

.item-info p {
    color: #a0a0a0;
    font-size: 1rem;
    font-style: italic;
}

/* --- EFECTOS HOVER --- */
.compact-item:hover {
    transform: translateZ(50px) scale(1.05); /* Se "despega" mucho más */
    border-color: rgba(255, 255, 255, 0.6); /* Brillo metálico */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9);
}

.compact-item:hover .img-3d {
    filter: grayscale(0%) brightness(1) contrast(1); /* Recupera el color */
}

.compact-item:hover .item-info {
    opacity: 1;
    transform: translateY(0) translateZ(30px);
}

/* --- RESPONSIVE MÓVIL --- */
@media (max-width: 992px) {
    /* Desactiva efecto 3D */
    .perspective-wrapper {
        perspective: none;
    }
    
    .gallery-grid-compact {
        transform: none !important;
        /* En tablet/móvil, una sola columna dramática */
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    .gallery-grid-compact {
        grid-auto-rows: 400px;
    }
}

/* VARIABLES GLOBALES (Asegúrate de tenerlas en tu :root) */
:root {
    --bg-dark: #000000; /* Negro puro */
    --text-light: #F5F5F5;
    --plateado: #E8E8E8; /* El plateado premium */
    --plateado-dim: rgba(232, 232, 232, 0.5);
}

/* --- SECCIÓN UBICACIÓN (SUAVE) --- */
.location-section {
    background-color: var(--bg-dark); /* Volvemos al negro puro para máximo contraste */
    padding: 8rem 5% 4rem 5%; /* Más espacio arriba, menos abajo */
    position: relative;
}

/* Suavizar la transición inferior con un degradado */
.location-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px; /* Zona de fusión */
    background: linear-gradient(to bottom, transparent, var(--bg-dark));
    z-index: 1;
}

.location-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem; /* Más espacio entre columnas */
    align-items: center;
    position: relative;
    z-index: 2; /* Sobre el degradado de fusión */
}

.location-logo {
    max-width: 180px;
    margin-bottom: 3rem;
    filter: brightness(0) invert(1); /* Logo blanco */
}

.info-block { margin-bottom: 2.5rem; }

.info-title {
    color: var(--plateado);
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    border-bottom: 1px solid #222;
    padding-bottom: 0.5rem;
    display: inline-block;
    text-transform: uppercase;
}

.info-text, .hours-list li {
    color: #999; /* Gris suave */
    font-size: 1rem;
    line-height: 1.7;
}

.hours-list { list-style: none; }
.hours-list li { display: flex; justify-content: space-between; margin-bottom: 0.6rem; }
.hours-list li span:last-child { color: #ccc; font-weight: bold; }

/* Redes Sociales Refinadas */
.social-links { display: flex; gap: 1.8rem; margin-top: 1.5rem; align-items: center; }
.social-icon { color: #666; transition: all 0.3s ease; display: inline-flex; }
.social-icon:hover { color: var(--plateado); transform: translateY(-3px); filter: drop-shadow(0px 0px 8px var(--plateado-dim)); }

/* Mapa Elegante */
.location-map {
    width: 100%;
    height: 450px; 
    border-radius: 4px;
    overflow: hidden;
    filter: grayscale(100%) brightness(0.7) contrast(1.2); /* Mapa oscuro y metálico */
    transition: all 0.5s ease;
    border: 1px solid #1a1a1a;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}
.location-map:hover { filter: grayscale(0%) brightness(1) contrast(1); border-color: #333; }

/* --- MEGA FOOTER CTA (EL GRAN CIERRE CON REFLECTOR) --- */
.mega-footer-cta {
    /* Magia aquí: EFECTO SPOTLIGHT (Reflector Radial) */
    background-color: var(--bg-dark);
    background-image: radial-gradient(circle at center, #1a1a1a 0%, var(--bg-dark) 70%);
    position: relative;
    padding-top: 10rem; /* Mucho aire arriba para el efecto */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

/* Línea separadora sutil y desvanecida */
.mega-footer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #222, transparent);
}

.footer-cta-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

.final-cta-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem); /* Título imponente */
    color: var(--plateado);
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    line-height: 1.1;
    /* Efecto de iluminación metálica en el texto */
    background: linear-gradient(135deg, #fff 0%, #aaa 50%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.final-cta-desc {
    color: #aaa;
    font-size: 1.25rem;
    margin-bottom: 3.5rem;
    line-height: 1.7;
    font-weight: 300;
}

/* El Botón Final - El punto más brillante */
.final-btn {
    font-size: 1.2rem;
    padding: 1.25rem 3.5rem;
    background-color: var(--plateado);
    color: #000;
    clip-path: polygon(3% 0, 100% 0, 97% 100%, 0% 100%); /* Ángulo agresivo */
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.final-btn:hover {
    background-color: #fff;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255,255,255,0.25);
}

/* El Copyright al fondo (Fuera del reflector, más tenue) */
.footer-bottom {
    max-width: 1300px;
    width: 100%;
    margin: 8rem auto 0 auto; /* Mucho aire arriba */
    padding: 2.5rem 5%;
    border-top: 1px solid #111; /* Línea casi invisible */
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.footer-bottom p { color: #444; font-size: 0.85rem; }
.dev-signature a, .dev-signature strong { color: #666; text-decoration: none; transition: all 0.3s ease; }
.dev-signature a:hover, .dev-signature strong:hover { color: var(--plateado); }

/* Responsive */
@media (max-width: 992px) {
    .location-container { grid-template-columns: 1fr; gap: 4rem; text-align: center; }
    .location-info { max-width: 100%; }
    .info-title { display: block; }
    .social-links { justify-content: center; }
    .final-cta-title { font-size: clamp(2rem, 8vw, 3rem); }
    .footer-bottom { flex-direction: column; text-align: center; gap: 1rem; }
}