/* =========================================
   VARIABLES Y RESET
   ========================================= */
:root {
    /* Paleta Hexadecimal Solicitada */
    --negro-profundo: #040006;
    --negro-violeta: #0D0314;
    --violeta-oscuro: #1B0826;
    --violeta-mistico: #2B0932;
    --purpura-humo: #6E1EAA;
    --purpura-brillante: #A855F7;
    --fucsia-suave: #E9BAF4;
    --dorado-principal: #F6C86F;
    --dorado-claro: #F7D184;
    --dorado-brillante: #FFE3A8;
    --dorado-oscuro: #C8892E;
    --ambar-vela: #FFB84D;
    --naranja-llama: #FF7B1A;
    --blanco-calido: #F5EDFF;
    --blanco-perlado: #FFF7E6;
    --verde-wa: #25D366;
    --verde-wa-oscuro: #128C4A;

    /* Usos Recomendados */
    --bg-principal: var(--negro-profundo);
    --bg-bloques: rgba(0, 0, 0, 0.70); /* 70% opacidad */
    --borde-dorado: rgba(246, 200, 111, 0.30); /* F6C86F al 30% */
    --text-general: var(--blanco-calido);
    --text-emocional: var(--fucsia-suave);

    /* Degradado para Títulos Destacados y CTAs */
    --gradiente-dorado: linear-gradient(to right, var(--dorado-claro), var(--dorado-brillante), var(--dorado-oscuro));

    /* Fuentes */
    --font-heading: 'Cinzel', serif;
    --font-text: 'Cormorant Garamond', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-text);
    color: var(--text-general);
    background-color: var(--bg-principal);
    font-weight: 400; /* Textos generales regulares */
    font-size: 1.1rem; /* Aumentado ligeramente porque Cormorant Garamond es visualmente más pequeña */
    min-height: 100vh;
    overflow-x: hidden;
}

/* =========================================
   FONDO ADAPTATIVO
   ========================================= */
.background-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background-image: url('../img/fondo-movil.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (min-width: 768px) {
    .background-wrapper {
        background-image: url('../img/fondo-pc.webp');
    }
}

.background-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 0, 6, 0.6); /* Tono oscurecido basado en negro profundo */
}

/* =========================================
   HEADER Y NAVEGACIÓN
   ========================================= */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    background: rgba(13, 3, 20, 0.95); /* Negro violeta */
    backdrop-filter: blur(10px);
    padding: 10px 0;
    border-bottom: 1px solid var(--borde-dorado);
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

/* Navegación - Cinzel SemiBold */
.nav-links a {
    text-decoration: none;
    color: var(--dorado-principal);
    font-family: var(--font-heading);
    font-weight: 600; 
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--dorado-brillante);
    text-shadow: 0 0 8px rgba(246, 200, 111, 0.6);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--dorado-principal);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .navbar {
        justify-content: flex-end;
    }
    
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 250px;
        background: var(--bg-bloques);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        border-left: 1px solid var(--borde-dorado);
    }

    .nav-links.active {
        right: 0;
    }
}

/* =========================================
   SECCIÓN HERO (INICIO) - REESTRUCTURADO
   ========================================= */
.hero-section {
    padding-top: 140px;
    padding-bottom: 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-left: 5%;
    padding-right: 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-content-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Título Principal - Cinzel Bold con Degradado */
.hero-text h1 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 1.3;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--gradiente-dorado);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.separator {
    width: 60px;
    height: 1px;
    background-color: var(--dorado-principal);
    border: none;
    margin: 20px 0;
    box-shadow: 0 0 8px var(--dorado-principal);
}

/* Frase Emocional Hero - Cormorant Garamond Italic */
.hero-text p {
    font-family: var(--font-text);
    font-weight: 400;
    font-style: italic;
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-emocional);
    max-width: 600px;
    text-shadow: 0 1px 5px rgba(0,0,0,0.8);
}

.hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: calc(25% - 25px);
    min-width: 120px;
}

.feature-item svg {
    width: 35px;
    height: 35px;
    color: var(--dorado-principal);
    margin-bottom: 15px;
    filter: drop-shadow(0 0 5px var(--dorado-principal));
}

.feature-item span {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--blanco-calido);
    letter-spacing: 1px;
    line-height: 1.4;
}

/* =========================================
   BOTONES Y CTA (WhatsApp)
   ========================================= */
.hero-cta-wrapper {
    margin-top: 20px;
}

.whatsapp-card {
    max-width: 70%;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-bloques);
    border: 1px solid var(--dorado-principal);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8), 0 4px 15px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

/* Hover con Degradado CTA Dorado */
.whatsapp-card:hover {
    border-color: transparent;
    background: linear-gradient(var(--bg-bloques), var(--bg-bloques)) padding-box,
                var(--gradiente-dorado) border-box;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8), 0 0 20px rgba(246, 200, 111, 0.3);
    transform: translateY(-2px);
}

.wa-icon svg {
    width: 45px;
    height: 45px;
    color: var(--verde-wa);
    filter: drop-shadow(0 0 8px var(--verde-wa-oscuro));
}

.wa-text {
    display: flex;
    flex-direction: column;
}

.wa-subtitle {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.7rem;
    color: var(--blanco-perlado);
    letter-spacing: 2px;
}

.wa-number {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--dorado-principal);
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(246, 200, 111, 0.3);
}

.wa-footer {
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--text-general);
    letter-spacing: 1px;
}

/* Estilos de la nueva columna del logo */
.hero-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    animation: levitacionMistica 5s ease-in-out infinite; 
}

.hero-logo-img {
    width: 100%;
    max-width: 540px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 25px rgba(168, 85, 247, 0.25)) drop-shadow(0 0 45px rgba(246, 200, 111, 0.15));
}

@keyframes levitacionMistica {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 110px;
        align-items: flex-start;
        text-align: center;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        align-items: center;
    }

    .hero-content-left {
        align-items: center;
        gap: 30px;
    }

    .hero-logo-container {
        order: -1;
        margin-bottom: 10px;
    }

    .hero-logo-img {
        max-width: 260px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .separator {
        margin: 20px auto;
    }

    .hero-features {
        justify-content: center;
        gap: 20px;
    }

    .feature-item {
        width: calc(50% - 20px);
    }

    .whatsapp-card {
        max-width: 100%;
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 10px;
    }

    .wa-number {
        font-size: 1.8rem;
    }
}

/* =========================================
   SECCIÓN TRABAJOS ESPIRITUALES
   ========================================= */
.services-section {
    padding: 60px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.title-line {
    height: 1px;
    flex: 1;
    max-width: 250px;
    background: linear-gradient(to right, transparent, var(--dorado-principal), transparent);
}

/* Títulos de Sección - Cinzel SemiBold con Degradado */
.section-title-wrapper h2 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.6rem;
    letter-spacing: 2px;
    text-align: center;
    background: var(--gradiente-dorado);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(246, 200, 111, 0.2);
}

.services-container {
    background: var(--bg-bloques);
    border-top: 1px solid var(--borde-dorado);
    border-bottom: 1px solid var(--borde-dorado);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 30px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: stretch;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 15px;
    border-right: 1px solid var(--borde-dorado);
    transition: transform 0.3s ease;
}

.service-card:last-child {
    border-right: none;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* Transiciones Base para Iconos de Servicios */
.service-icon-ring {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid var(--dorado-principal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: inset 0 0 15px rgba(246, 200, 111, 0.2), 0 0 15px rgba(0, 0, 0, 0.5);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-icon-ring::before,
.service-icon-ring::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--dorado-principal);
    border-radius: 50%;
}
.service-icon-ring::before { top: -2px; }
.service-icon-ring::after { bottom: -2px; }

/* Iconos de servicio en Púrpura Brillante */
.service-icon-ring svg {
    width: 35px;
    height: 35px;
    color: var(--purpura-brillante);
    filter: drop-shadow(0 0 5px rgba(168, 85, 247, 0.6));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Efecto Hover para Iconos de Trabajos */
.service-card:hover .service-icon-ring {
    border-color: var(--dorado-brillante);
    box-shadow: inset 0 0 20px rgba(246, 200, 111, 0.5), 0 0 25px rgba(168, 85, 247, 0.3);
    transform: scale(1.1);
}

.service-card:hover .service-icon-ring svg {
    color: var(--fucsia-suave);
    filter: drop-shadow(0 0 12px rgba(233, 186, 244, 0.9));
    transform: scale(1.15);
}

/* Subtítulos - Cinzel Regular */
.service-card h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--dorado-principal);
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 40px;
}

.service-card p {
    font-family: var(--font-text);
    font-size: 1rem;
    color: var(--text-general);
    line-height: 1.3;
}

@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(4, 1fr); row-gap: 40px; }
    .service-card:nth-child(4) { border-right: none; }
}
@media (max-width: 768px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .service-card:nth-child(2n) { border-right: none; }
}
@media (max-width: 480px) {
    .section-title-wrapper h2 { font-size: 1.2rem; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card {
        border-right: none;
        border-bottom: 1px solid var(--borde-dorado);
        padding-bottom: 30px;
    }
    .service-card:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

/* =========================================
   SECCIÓN CONSEJOS
   ========================================= */
.advice-section {
    padding: 60px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.advice-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    align-items: stretch;
}

.advice-card {
    background: var(--bg-bloques);
    border: 1px solid var(--borde-dorado);
    border-radius: 8px;
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.8), 0 5px 15px rgba(0, 0, 0, 0.4);
}

.advice-card:hover {
    border-color: var(--dorado-principal);
    box-shadow: inset 0 0 15px rgba(246, 200, 111, 0.1), 0 8px 20px rgba(0, 0, 0, 0.6);
    transform: translateY(-3px);
}

.advice-icon { margin-bottom: 15px; }

/* Transiciones Base para Iconos de Consejos */
.advice-icon svg {
    width: 40px;
    height: 40px;
    color: var(--purpura-humo);
    filter: drop-shadow(0 0 6px rgba(110, 30, 170, 0.6));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Efecto Hover para Iconos de Consejos */
.advice-card:hover .advice-icon svg {
    color: var(--purpura-brillante);
    filter: drop-shadow(0 0 12px rgba(168, 85, 247, 0.9));
    transform: scale(1.15) rotate(5deg);
}

.advice-card h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--dorado-claro);
    font-size: 0.8rem;
    letter-spacing: 1px;
    line-height: 1.4;
    margin-bottom: 15px;
    min-height: 35px;
}

.advice-card ul {
    list-style: none;
    text-align: left;
    width: 100%;
    padding: 0 5px;
}

.advice-card ul li {
    font-family: var(--font-text);
    font-size: 1.05rem;
    color: var(--text-general);
    margin-bottom: 8px;
    line-height: 1.4;
    position: relative;
    padding-left: 12px;
}

.advice-card ul li::before {
    content: '•';
    color: var(--dorado-principal);
    position: absolute;
    left: 0;
    top: 0;
}

.card-text {
    font-family: var(--font-text);
    font-size: 1.05rem;
    color: var(--text-general);
    line-height: 1.3;
    text-align: center;
}

@media (max-width: 1200px) { .advice-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (max-width: 768px) { .advice-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) {
    .advice-grid { grid-template-columns: 1fr; }
    .advice-card { padding: 30px 20px; }
}

/* =========================================
   SECCIÓN ESTAFAS
   ========================================= */
.scams-section {
    padding: 60px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.scams-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.scam-card {
    background: var(--bg-bloques);
    border: 1px solid var(--borde-dorado);
    border-radius: 8px;
    padding: 25px 15px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.scam-card:hover {
    transform: translateY(-3px);
    border-color: var(--dorado-claro);
}

/* Transiciones Base para Iconos de Estafas */
.scam-icon svg {
    width: 35px;
    height: 35px;
    color: var(--dorado-principal);
    margin-bottom: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.alert-icon svg {
    color: var(--naranja-llama);
    filter: drop-shadow(0 0 5px rgba(255, 123, 26, 0.5));
}

/* Efecto Hover para Iconos de Estafas */
.scam-card:hover .scam-icon svg {
    color: var(--dorado-brillante);
    filter: drop-shadow(0 0 12px rgba(246, 200, 111, 0.8));
    transform: scale(1.15) translateY(-3px);
}

/* Efecto Específico para Icono de Alerta para mantener su semántica */
.scam-card:hover .alert-icon svg {
    color: var(--naranja-llama);
    filter: drop-shadow(0 0 15px rgba(255, 123, 26, 0.9));
}

.scam-card h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--dorado-claro);
    font-size: 0.75rem;
    letter-spacing: 1px;
    line-height: 1.4;
    margin-bottom: 15px;
    min-height: 35px;
}

.scam-card p {
    font-family: var(--font-text);
    font-size: 1.05rem;
    color: var(--text-general);
    line-height: 1.3;
}

/* Banner de Alertas */
.alert-banner {
    display: flex;
    background: var(--bg-bloques);
    border: 1px solid var(--purpura-humo);
    border-radius: 4px;
    overflow: hidden;
}

.alert-title {
    background: var(--violeta-mistico);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 200px;
    justify-content: center;
}

.alert-title svg {
    width: 30px;
    height: 30px;
    color: var(--dorado-principal);
}

.alert-title span {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--dorado-principal);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
}

.alert-items {
    display: flex;
    flex: 1;
    justify-content: space-around;
    align-items: center;
    padding: 10px;
}

.a-item {
    font-family: var(--font-text);
    font-size: 1.05rem;
    color: var(--text-general);
    text-align: center;
    padding: 0 15px;
    border-right: 1px solid rgba(245, 237, 255, 0.1); /* Blanco cálido al 10% */
}

.a-item:last-child {
    border-right: none;
}

@media (max-width: 1200px) {
    .scams-grid {
        grid-template-columns: repeat(3, 1fr); 
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .scams-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 15px;
    }
    .alert-banner {
        flex-direction: column;
        border-radius: 8px;
    }
    .alert-title {
        width: 100%;
        min-width: auto;
        padding: 20px;
        text-align: center;
    }
    .alert-items {
        flex-direction: column; 
        align-items: stretch;
        padding: 20px;
        gap: 15px;
    }
    .a-item {
        border-right: none; 
        border-bottom: 1px solid rgba(245, 237, 255, 0.1); 
        padding-bottom: 15px;
        padding-left: 0;
        padding-right: 0;
        text-align: center;
    }
    .a-item:last-child {
        border-bottom: none; 
        padding-bottom: 0;
    }
}

@media (max-width: 480px) {
    .scams-grid {
        grid-template-columns: 1fr; 
    }
    .scam-card {
        padding: 30px 20px;
    }
}

/* =========================================
   SECCIÓN CONTACTO / FOOTER
   ========================================= */
.footer-section {
    padding: 80px 5%;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.footer-text {
    flex: 1;
    text-align: center;
}

.footer-text h2 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    background: var(--gradiente-dorado);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-family: var(--font-text);
    font-style: italic;
    font-weight: 400;
    font-size: 1.2rem;
    color: var(--text-emocional);
    margin-bottom: 30px;
}

/* Botón CTA Whatsapp Secundario */
.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    border: 1px solid var(--borde-dorado);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    margin-bottom: 30px;
    background: var(--bg-bloques);
    transition: all 0.3s ease;
}

.footer-whatsapp:hover {
    border-color: transparent;
    background: linear-gradient(var(--bg-bloques), var(--bg-bloques)) padding-box,
                var(--gradiente-dorado) border-box;
    transform: translateY(-2px);
}

.footer-whatsapp svg {
    width: 35px;
    height: 35px;
    color: var(--verde-wa);
    filter: drop-shadow(0 0 8px var(--verde-wa-oscuro));
}

.fw-number {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dorado-principal);
    font-size: 1.5rem;
}

.fw-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.65rem;
    color: var(--blanco-perlado);
    display: block;
}

/* Cierre y Manifiesto - Emocionales */
.footer-closure p {
    font-family: var(--font-text);
    font-style: italic;
    color: var(--text-emocional);
    font-size: 1.1rem;
}

.footer-manifesto {
    width: 350px;
    border: 1px solid var(--borde-dorado);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    background: var(--bg-bloques);
}

.footer-manifesto p {
    font-family: var(--font-text);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-emocional);
    line-height: 1.6;
}

.heart-icon {
    color: var(--dorado-principal);
    display: block;
    margin: 10px 0;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }
    .footer-manifesto {
        width: 100%;
    }
}

/* =========================================
   BURBUJA DE WHATSAPP FLOTANTE
   ========================================= */
.burbuja-wa-flotante {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: var(--verde-wa);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.burbuja-wa-flotante svg {
    width: 35px;
    height: 35px;
}

.burbuja-wa-flotante:hover {
    transform: scale(1.1);
    background-color: var(--verde-wa-oscuro);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

@media (max-width: 768px) {
    .burbuja-wa-flotante {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    .burbuja-wa-flotante svg {
        width: 30px;
        height: 30px;
    }
}

/* =========================================
   ANIMACIONES FADE-IN AL SCROLLEAR
   ========================================= */
.fade-in-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-element.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card, .advice-card, .scam-card {
    transition-delay: 0.1s;
}

/* =========================================
   SISTEMA DE POPUPS (MODAL) Y RESPONSIVE
   ========================================= */

/* Ocultar contenido solo en PC (pantallas mayores a 768px) */
@media (min-width: 769px) {
    .contenido-oculto-pc {
        display: none;
    }
    
    /* Indicador visual de que las tarjetas se pueden clickear en PC */
    .service-card, .advice-card, .scam-card {
        cursor: pointer;
    }

    /* Efecto hover extra para indicar interactividad */
    .service-card:hover h3, .advice-card:hover h3, .scam-card:hover h3 {
        color: var(--dorado-brillante);
        text-shadow: 0 0 8px rgba(246, 200, 111, 0.4);
    }
}

/* En móviles (hasta 768px), el contenido siempre es visible, no se oculta */
@media (max-width: 768px) {
    .contenido-oculto-pc {
        display: block; 
    }
}

/* Estilos de la Pantalla Oscura del Modal con Fade-in Real */
.modal-overlay {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(4, 0, 6, 0.85); 
    z-index: 2000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
    
    /* Efecto Fade In / Ocultamiento Seguro */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Estilos de la Caja del Modal con Efecto Fade In Puro */
.modal-content {
    background: var(--bg-bloques);
    border: 1px solid var(--dorado-principal);
    border-radius: 8px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    position: relative;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9), inset 0 0 20px rgba(246, 200, 111, 0.1);
    
    /* Inicio de Animación del Modal (Fade In sin scale ni translate) */
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.modal-overlay.active .modal-content {
    /* Fin de Animación del Modal */
    opacity: 1;
}

/* Botón de Cerrar (X) */
.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--dorado-principal);
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}

.close-btn:hover {
    color: var(--dorado-brillante);
    transform: scale(1.1);
}

/* Textos dentro del Modal */
.modal-content h3 {
    font-family: var(--font-heading);
    color: var(--dorado-claro);
    font-size: 1.6rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.separator-modal {
    margin: 0 auto 20px auto;
    width: 150px;
}

.modal-body {
    font-family: var(--font-text);
    color: var(--text-general);
    font-size: 1.15rem;
    line-height: 1.5;
    text-align: left; 
}

.modal-body p { margin-bottom: 15px; }
.modal-body ul { padding-left: 20px; list-style-type: none; }
.modal-body li { margin-bottom: 10px; position: relative; padding-left: 15px; }
.modal-body li::before {
    content: '•';
    color: var(--dorado-principal);
    position: absolute;
    left: 0;
}