/* css/style.css - Fuera Máscaras */
/* Immersive scrollytelling | fondo oscuro + acentos dorados */

:root {
    --bg-dark: #0a0704;
    --bg-card: #14100c;
    --text-light: #f7f1e5;
    --gold: #cda461;
    --gold-dark: #b58a4a;
    --border-glow: rgba(205, 164, 97, 0.3);
    --font-head: 'Space Grotesk', 'Inter', sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Tipografía personalizada */
h1, h2, h3, h4, .navbar-brand, .logo-text, .section-tag {
    font-family: var(--font-head);
    font-weight: 600;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 60%, var(--gold) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.gold-text {
    color: var(--gold);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

/* NAVBAR siempre visible - efecto glass */
.navbar {
    background: rgba(10, 7, 4, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(205, 164, 97, 0.25);
    padding: 0.8rem 0;
    transition: all 0.2s ease;
}

.navbar .container {
    max-width: 1200px;
}

.logo-img {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}

.logo-text {
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #f7f1e5 0%, var(--gold) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 0.2rem;
    transition: 0.2s;
    font-size: 0.9rem;
    letter-spacing: -0.2px;
}

.nav-link:hover {
    color: var(--gold) !important;
    border-bottom: 1px solid var(--gold);
}

.btn-outline-facebook, .btn-outline-email {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 40px;
    padding: 0.4rem 1rem;
    font-weight: 500;
    transition: 0.2s;
}

.btn-outline-facebook:hover, .btn-outline-email:hover {
    background: var(--gold);
    color: #1a0e02;
    border-color: var(--gold);
}

/* HERO */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 30% 20%, #1e170f 0%, #020100 100%);
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 800" opacity="0.1"><path fill="%23cda461" d="M400,100 L500,300 L700,350 L550,500 L600,700 L400,600 L200,700 L250,500 L100,350 L300,300 Z"/></svg>');
    background-repeat: repeat;
    background-size: 60px;
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    background: rgba(205, 164, 97, 0.2);
    backdrop-filter: blur(4px);
    padding: 0.4rem 1.2rem;
    border-radius: 40px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--gold);
    border: 1px solid var(--gold-dark);
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
}

.hero-underline {
    width: 80px;
    height: 4px;
    background: var(--gold);
    margin: 1rem auto;
    border-radius: 4px;
}

.hero-lead {
    font-size: 1.2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    background: var(--gold);
    border: none;
    color: #1a0e02;
    font-weight: 700;
    border-radius: 40px;
}

.btn-primary:hover {
    background: #b38f4b;
    transform: translateY(-3px);
}

.btn-outline-light {
    border: 1px solid var(--text-light);
    color: var(--text-light);
    border-radius: 40px;
    transition: 0.2s;
}

.btn-outline-light:hover {
    background: rgba(247, 241, 229, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    display: flex;
    gap: 8px;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* secciones generales */
section {
    padding: 100px 0;
    border-bottom: 1px solid rgba(205, 164, 97, 0.1);
}

.section-sticky {
    background: var(--bg-dark);
}

.section-dark-alt {
    background: #0b0805;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 600;
    border-left: 3px solid var(--gold);
    padding-left: 12px;
}

.separator-gold {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 1rem auto 2rem;
}

/* imágenes modernas */
.img-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 35px -12px rgba(0,0,0,0.6);
    transition: all 0.3s;
}

.modern-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease, filter 0.4s;
    filter: brightness(0.92) contrast(1.05);
}

.img-wrapper:hover .modern-img {
    transform: scale(1.02);
    filter: brightness(1) contrast(1.08);
}

/* cards cobertura */
.card-cobertura {
    background: var(--bg-card);
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.25s ease;
    border: 1px solid rgba(205, 164, 97, 0.2);
    backdrop-filter: blur(2px);
}

.card-cobertura:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 30px -15px rgba(0,0,0,0.5);
}

.card-img-custom {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: 0.3s;
}

.card-body-custom {
    padding: 1.5rem;
}

.icon-card {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    display: inline-block;
}

.card-cobertura h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.card-cobertura p {
    font-size: 0.9rem;
    opacity: 0.85;
}

/* sección comunidad */
.section-community {
    background: linear-gradient(145deg, #0f0b07 0%, #030201 100%);
    padding: 100px 0;
}

.community-icon {
    font-size: 4rem;
    color: var(--gold);
}

.card-cta {
    background: rgba(20, 16, 12, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 40px;
    padding: 2rem;
    border: 1px solid rgba(205,164,97,0.3);
    transition: 0.2s;
}

.card-cta:hover {
    border-color: var(--gold);
    background: rgba(26, 14, 2, 0.6);
}

.btn-facebook-cta, .btn-email-cta {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 40px;
    padding: 0.6rem 1.2rem;
    font-weight: 500;
    transition: 0.2s;
}

.btn-facebook-cta:hover, .btn-email-cta:hover {
    background: var(--gold);
    color: #1a0e02;
}

.disclaimer {
    font-size: 0.8rem;
    opacity: 0.7;
    border-top: 1px dashed var(--gold);
    display: inline-block;
    padding-top: 1rem;
}

/* footer */
.footer {
    background: #050302;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(205, 164, 97, 0.2);
}

.footer-logo {
    filter: drop-shadow(0 2px 2px black);
}

.footer-brand {
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--gold);
}

.social-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}

.social-link:hover {
    color: var(--gold);
}

.footer-hr {
    border-color: rgba(205, 164, 97, 0.2);
    margin: 1.5rem 0;
}

.back-to-top {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.85rem;
}

.back-to-top:hover {
    color: white;
}

/* responsive */
@media (max-width: 992px) {
    h2 {
        font-size: 2rem;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    section {
        padding: 70px 0;
    }
    .navbar-collapse {
        background: rgba(0,0,0,0.9);
        padding: 1rem;
        border-radius: 20px;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .hero-buttons .btn {
        width: 100%;
        margin: 0.3rem 0;
    }
    .card-cobertura {
        margin-bottom: 1rem;
    }
}

/* efecto sutil en texto seleccionado */
::selection {
    background: var(--gold);
    color: #1a0e02;
}