/* 
   === CENTRO DE AYUDA MÍSTICO ===
   Estilo Premium de Ultra-Lujo (Inspirado en Polar.sh)
   Colores: Crema Alabaster, Carmesí Sangre, Oro Mate
   Última actualización: Estilos para Pilares, Métricas de Confianza y Ubicación Física.
*/

/* --- 1. CONFIGURACIÓN GENERAL Y VARIABLES --- */
:root {
    --bg-alabaster: #0a0002; /* Negro místico aterciopelado */
    --primary-crimson: #a61234; /* Carmesí místico (más vibrante para resaltar en fondo oscuro) */
    --primary-crimson-glow: rgba(166, 18, 52, 0.2);
    --accent-gold: #D4AF37; /* Oro Mate / Bronce */
    --accent-gold-glow: rgba(212, 175, 55, 0.25);
    --text-charcoal: #FAF9F6; /* Blanco Alabaster de lujo */
    --text-muted: rgba(250, 249, 246, 0.65); /* Crema atenuado */
    
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
    
    --border-thin: 1px solid rgba(255, 255, 255, 0.06);
    --border-gold-thin: 1px solid rgba(212, 175, 55, 0.25);
    --radius-premium: 12px;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-alabaster);
    overflow-x: hidden;
    width: 100vw;
}

body {
    font-family: var(--font-sans);
    color: var(--text-charcoal);
    background-color: var(--bg-alabaster);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

.section-padding {
    padding: 100px 0;
}

/* --- 2. CAPAS DE FONDO INTERACTIVAS --- */
.dot-grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 1;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    pointer-events: none;
    z-index: 2;
    opacity: 0.45;
}

.orb-1 {
    width: 500px;
    height: 500px;
    top: -100px;
    left: -150px;
    background: radial-gradient(circle, rgba(128, 0, 32, 0.12) 0%, transparent 80%);
}

.orb-2 {
    width: 600px;
    height: 600px;
    top: 30%;
    right: -200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 80%);
}

.orb-3 {
    width: 500px;
    height: 500px;
    bottom: 10%;
    left: -100px;
    background: radial-gradient(circle, rgba(128, 0, 32, 0.08) 0%, transparent 80%);
}

/* --- 3. ESTILOS TIPOGRÁFICOS --- */
.highlight {
    color: var(--primary-crimson);
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

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

.section-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-charcoal);
    line-height: 1.15;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-divider {
    width: 40px;
    height: 1px;
    background-color: var(--accent-gold);
    margin: 20px auto 0;
}

.section-divider.left {
    margin: 20px 0 0 0;
}

/* --- 4. BOTONES --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.btn-crimson {
    background-color: var(--primary-crimson);
    color: white;
    border: 1px solid var(--primary-crimson);
    box-shadow: 0 4px 20px rgba(128, 0, 32, 0.15);
}

.btn-crimson:hover {
    background-color: #5d0016;
    border-color: #5d0016;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(128, 0, 32, 0.25);
}

.btn-outline-crimson {
    background-color: transparent;
    color: var(--primary-crimson);
    border: 1px solid var(--primary-crimson);
}

.btn-outline-crimson:hover {
    background-color: var(--primary-crimson);
    color: white;
    transform: translateY(-2px);
}

.btn-text-only {
    background-color: transparent;
    color: var(--text-charcoal);
    font-weight: 600;
    border: none;
    transition: gap 0.3s ease, color 0.3s ease;
}

.btn-text-only i {
    transition: transform 0.3s ease;
}

.btn-text-only:hover {
    color: var(--primary-crimson);
}

.btn-text-only:hover i {
    transform: translateX(5px);
}

/* --- 5. MENÚ DE NAVEGACIÓN --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(10, 0, 2, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background-color 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-link {
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-sans);
    font-size: 1.3rem;
    font-weight: 500;
    color: #FAF9F6;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-text .highlight {
    font-family: var(--font-serif);
    color: var(--accent-gold) !important;
    font-style: italic;
    font-weight: 600;
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.45);
    transition: text-shadow 0.3s ease;
}

.logo-link:hover .logo-text {
    color: #FFFFFF;
}

.logo-link:hover .logo-text .highlight {
    text-shadow: 0 0 18px var(--accent-gold), 0 0 8px var(--accent-gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-charcoal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-crimson);
}

.btn-nav {
    display: inline-block;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    background-color: var(--primary-crimson);
    color: white !important;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background-color: #5d0016;
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 4px;
}

.mobile-menu-toggle .bar {
    width: 24px;
    height: 2px;
    background-color: var(--primary-crimson);
    transition: all 0.3s ease;
}

/* --- 6. SECCIÓN HERO --- */
.hero-section {
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background-color: rgba(128, 0, 32, 0.05);
    border: 1px solid rgba(128, 0, 32, 0.1);
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary-crimson);
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-gold);
    box-shadow: 0 0 8px var(--accent-gold);
}

.hero-title {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 4rem;
    line-height: 1.05;
    color: var(--text-charcoal);
    margin-bottom: 16px;
    letter-spacing: -1.5px;
}

.accent-title {
    font-family: var(--font-serif);
    color: var(--primary-crimson);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0px;
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--accent-gold);
    margin-bottom: 24px;
}

.hero-lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-media-box {
    width: 100%;
    height: 480px;
    border-radius: var(--radius-premium);
    border: var(--border-gold-thin);
    background: linear-gradient(135deg, rgba(250, 249, 246, 0.9), rgba(128, 0, 32, 0.03));
    box-shadow: 0 20px 40px rgba(128, 0, 32, 0.04);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease;
}

.hero-media-box:hover {
    border-color: var(--primary-crimson);
}

.inner-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.media-placeholder {
    text-align: center;
    color: #999;
}

.media-placeholder i {
    font-size: 4rem;
    color: var(--accent-gold);
    opacity: 0.6;
    margin-bottom: 16px;
    animation: float 4s ease-in-out infinite;
}

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

.media-placeholder p {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- 6.5 BANNER DE MÉTRICAS DE CONFIANZA --- */
.stats-banner-section {
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: 40px 0;
}

.stats-banner-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    display: block;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--primary-crimson);
    font-family: var(--font-sans);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1px;
    position: relative;
}

.stat-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 60px;
    background-color: rgba(128, 0, 32, 0.08);
}

@media (max-width: 768px) {
    .stats-banner-container {
        flex-direction: column;
        gap: 40px;
    }
    .stat-divider {
        display: none;
    }
}

/* --- 6.8 SECCIÓN DE PILARES SAGRADOS --- */
.pillars-section {
    background: transparent;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pillar-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: var(--border-thin);
    border-radius: var(--radius-premium);
    padding: 35px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pillar-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.pillar-icon {
    font-size: 2rem;
    color: var(--primary-crimson);
    margin-bottom: 20px;
}

.pillar-card h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--text-charcoal);
    margin-bottom: 12px;
}

.pillar-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- 7. SERVICIOS (BENTO GRID CON FOTOS) --- */
.bento-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: var(--border-thin);
    border-radius: var(--radius-premium);
    padding: 35px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.01);
}

.bento-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-gold);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.05);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(300px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(212, 175, 55, 0.14) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.bento-card:hover .card-glow {
    opacity: 1;
}

.card-icon {
    font-size: 1.8rem;
    color: var(--primary-crimson);
    margin-bottom: 20px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: rgba(128, 0, 32, 0.05);
    border: 1px solid rgba(128, 0, 32, 0.05);
}

.card-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-charcoal);
    margin-bottom: 12px;
}

.card-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

.card-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-crimson);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
    margin-top: auto;
}

.card-link:hover {
    gap: 10px;
    color: var(--accent-gold);
}

.card-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 4px 10px;
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.service-image-box {
    width: 100%;
    height: 180px;
    border-radius: 8px;
    border: 1px solid rgba(128, 0, 32, 0.06);
    background: linear-gradient(135deg, #fdfdfb 0%, rgba(128, 0, 32, 0.02) 100%);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
}

.service-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover .service-image-box img {
    transform: scale(1.04);
}

.service-img-placeholder {
    text-align: center;
    color: #999;
}

.service-img-placeholder i {
    font-size: 2.2rem;
    color: var(--accent-gold);
    opacity: 0.5;
    margin-bottom: 8px;
}

.service-img-placeholder span {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.card-text-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
}

@media (min-width: 992px) {
    .bento-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: minmax(360px, auto);
        gap: 24px;
        grid-template-areas:
            "card1 card3 card3"
            "card2 card4 card4"
            "card2 card6 card6"
            "card5 card5 card5";
    }

    .bento-card:nth-child(1) { grid-area: card1; }
    .bento-card:nth-child(2) { grid-area: card2; }
    .bento-card:nth-child(3) { grid-area: card3; }
    .bento-card:nth-child(4) { grid-area: card4; }
    .bento-card:nth-child(5) { grid-area: card5; }
    .bento-card:nth-child(6) { grid-area: card6; }

    .image-box-tall {
        height: 380px;
    }

    .bento-card.card-extra-wide,
    .bento-card.card-wide,
    .bento-card.card-square:nth-child(5) {
        flex-direction: row;
        align-items: stretch;
        gap: 40px;
        padding: 40px;
    }
    
    .bento-card.card-extra-wide .card-text-content,
    .bento-card.card-wide .card-text-content,
    .bento-card.card-square:nth-child(5) .card-text-content {
        flex: 1.2;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .bento-card.card-extra-wide .service-image-box,
    .bento-card.card-wide .service-image-box,
    .bento-card.card-square:nth-child(5) .service-image-box {
        flex: 0.8;
        height: 380px !important;
        margin-top: 0;
    }

    .bento-card.card-extra-wide .card-icon,
    .bento-card.card-wide .card-icon,
    .bento-card.card-square:nth-child(5) .card-icon {
        margin-bottom: 16px;
    }

    .bento-card.card-extra-wide .card-desc,
    .bento-card.card-wide .card-desc,
    .bento-card.card-square:nth-child(5) .card-desc {
        margin-bottom: 0;
    }
}

/* --- 8. EL MAESTRO JOSHUA --- */
.master-section {
    background: #0a0002;
    color: #FAF9F6;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: none;
}

.master-section .section-title {
    color: white;
}

.master-section .master-paragraph {
    color: rgba(250, 249, 246, 0.75);
}

.master-section .btn-outline-crimson {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.master-section .btn-outline-crimson:hover {
    background-color: var(--accent-gold);
    color: #120004;
    border-color: var(--accent-gold);
}

.master-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.master-image-container {
    width: 100%;
    height: 520px;
    border-radius: var(--radius-premium);
    border: var(--border-gold-thin);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fdfdfb, rgba(128, 0, 32, 0.02));
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-inner-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(128,0,32,0.03) 0%, transparent 80%);
}

.master-placeholder {
    text-align: center;
    color: #bbb;
}

.master-placeholder i {
    font-size: 4.5rem;
    color: var(--primary-crimson);
    opacity: 0.4;
    margin-bottom: 16px;
}

.master-placeholder span {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.master-paragraph {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.master-cta {
    margin-top: 40px;
}

/* --- 9. TESTIMONIOS (CON CAPTURAS DE CHATS) --- */
#testimonios {
    background-color: #0f0004;
    color: #FAF9F6;
    border-top: none;
    border-bottom: none;
}

#testimonios .section-title {
    color: white;
}

#testimonios .section-desc {
    color: rgba(250, 249, 246, 0.65) !important;
}

.testimonials-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
    align-items: start;
}

.testimonial-box {
    background: rgba(255, 255, 255, 0.03); /* Vidrio esmerilado oscuro */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-premium);
    padding: 35px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-box:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--accent-gold);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.08);
}

.testimonial-box .t-quote {
    color: rgba(250, 249, 246, 0.8);
}

.testimonial-box .t-client {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.testimonial-box .t-info h4 {
    color: white;
}

.chat-screenshot-box {
    width: 100%;
    height: 320px;
    border-radius: 8px;
    border: 1px solid rgba(37, 211, 102, 0.15);
    background: linear-gradient(135deg, #f4fdf6 0%, rgba(37, 211, 102, 0.02) 100%);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.02), 0 4px 12px rgba(0,0,0,0.01);
}

.chat-screenshot-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #efeae2; /* Color de fondo real de chat de WhatsApp */
}

.chat-placeholder {
    text-align: center;
    padding: 20px;
}

.chat-placeholder i {
    font-size: 3rem;
    color: #25D366;
    opacity: 0.6;
    margin-bottom: 12px;
    animation: pulseIcon 2s infinite;
}

@keyframes pulseIcon {
    0% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 0.6; }
}

.chat-placeholder span {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-charcoal);
    margin-bottom: 6px;
}

.chat-hint {
    font-size: 0.7rem;
    color: #777;
    line-height: 1.4;
}

.stars {
    color: var(--accent-gold);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.t-quote {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 24px;
    position: relative;
}

.t-client {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid rgba(128, 0, 32, 0.04);
    padding-top: 16px;
}

.t-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(128, 0, 32, 0.08);
    color: var(--primary-crimson);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.t-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-charcoal);
}

.t-info span {
    font-size: 0.75rem;
    color: var(--accent-gold);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- 10. FOOTER / CONTACTO & UBICACIÓN --- */
.footer-section {
    background-color: #120004; /* Carmesí ultra oscuro */
    color: #FAF9F6;
    border-top: 1px solid rgba(212,175,55,0.2);
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer-section .glow-orb {
    opacity: 0.15;
}

.footer-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: white;
    margin-bottom: 12px;
}

.footer-lead {
    font-size: 1rem;
    color: rgba(250, 249, 246, 0.7);
}

.contact-bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.contact-item-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-premium);
    padding: 40px 24px;
    text-align: center;
    color: white;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.contact-item-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--accent-gold);
    transform: translateY(-4px);
}

.contact-item-card.featured-whatsapp {
    background: rgba(37, 211, 102, 0.04);
    border-color: rgba(37, 211, 102, 0.2);
}

.contact-item-card.featured-whatsapp:hover {
    background: rgba(37, 211, 102, 0.08);
    border-color: #25D366;
}

/* Tarjeta especial de Ubicación */
.contact-item-card.location-card {
    background: rgba(212, 175, 55, 0.02);
    border-color: rgba(212, 175, 55, 0.15);
}

.contact-item-card.location-card:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--accent-gold);
}

.contact-card-icon {
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.contact-item-card.featured-whatsapp .contact-card-icon {
    color: #25D366;
}

.contact-item-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(250, 249, 246, 0.85);
    margin-bottom: 30px;
}

.contact-btn {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.contact-badge-static {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    background-color: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 4px;
    color: var(--accent-gold);
}

.contact-item-card:hover .contact-btn {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.contact-item-card.featured-whatsapp:hover .contact-btn {
    border-color: #25D366;
    color: #25D366;
}

.whatsapp-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 3px 8px;
    background-color: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 10px;
    font-size: 0.65rem;
    color: #25D366;
    font-weight: 600;
    text-transform: uppercase;
}

.footer-details {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 40px;
    text-align: center;
}

.footer-brand {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: white;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-terms {
    font-size: 0.85rem;
    color: rgba(250, 249, 246, 0.5);
    margin-bottom: 16px;
}

.footer-warning {
    font-size: 0.72rem;
    color: rgba(250, 249, 246, 0.35);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* --- 11. BOTÓN FLOTANTE WHATSAPP --- */
.whatsapp-float-premium {
    position: fixed;
    bottom: 105px; /* Ajustado hacia arriba y a la izquierda para quedar directamente sobre el botón de llamadas */
    left: 32px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float-premium:hover {
    transform: scale(1.08);
}

.whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    z-index: -1;
    animation: floatPulse 2s infinite;
}

@keyframes floatPulse {
    0% { transform: scale(1); opacity: 0.8; }
    70% { transform: scale(1.4); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

/* --- 11.5 BOTÓN FLOTANTE PREMIUM TELÉFONO (Abajo Izquierda) --- */
.phone-float-premium {
    position: fixed;
    bottom: 32px;
    left: 32px;
    background-color: var(--primary-crimson);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 30px rgba(128, 0, 32, 0.3);
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--accent-gold);
}

.phone-float-premium:hover {
    transform: scale(1.08);
    background-color: #5d0016;
}

.phone-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--primary-crimson);
    z-index: -1;
    animation: phonePulse 2.5s infinite;
}

@keyframes phonePulse {
    0% { transform: scale(1); opacity: 0.8; }
    70% { transform: scale(1.4); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

/* --- 12. MENÚ RESPONSIVO MÓVIL --- */
@media (max-width: 991px) {
    .nav-links {
        position: absolute;
        top: 80px;
        left: -100%;
        width: 100%;
        background-color: rgba(10, 0, 2, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 40px 0;
        gap: 24px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.05);
        border-bottom: var(--border-thin);
        transition: left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: translateY(4px) rotate(45deg);
    }
    .mobile-menu-toggle.active .bar:nth-child(2) {
        transform: translateY(-4px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-badge {
        margin: 0 auto 24px;
    }

    .hero-title {
        font-size: clamp(2rem, 9vw, 2.8rem);
        word-wrap: break-word;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-media-box {
        height: 320px;
    }

    .master-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .master-image-container {
        height: 380px;
    }

    /* --- OPTIMIZACIONES DE FLUIDEZ Y RESPONSIVIDAD PARA CELULAR (Efecto App) --- */
    .section-padding {
        padding: 50px 0; /* Menos espacio muerto, navegación más ágil */
    }

    .section-title {
        font-size: 2.1rem; /* El título de sección se ajusta de forma perfecta sin cortes tipográficos */
        text-align: center;
    }

    .bento-grid {
        display: flex;
        flex-direction: column;
        gap: 20px; /* Separación limpia entre tarjetas */
    }

    .bento-card {
        padding: 28px 24px; /* Más espacio horizontal en pantallas angostas (gana 26px de ancho interno) */
        gap: 18px;
        text-align: center;
        align-items: center;
    }
    
    .card-top-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .card-icon {
        margin: 0 auto 16px auto;
    }

    .card-title {
        font-size: 1.3rem; /* Títulos de servicio más legibles y fluidos */
    }

    .card-desc {
        font-size: 0.95rem; /* Más amigable para lectura */
        line-height: 1.6;
    }

    .card-link {
        width: 100%;
        justify-content: center;
        padding: 14px;
        background-color: rgba(128, 0, 32, 0.04);
        border-radius: 8px;
        font-size: 0.95rem;
    }

    .btn {
        width: 100%;
        padding: 16px;
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-actions .btn-text-only {
        background-color: rgba(128, 0, 32, 0.04);
        width: 100%;
        padding: 16px;
        text-align: center;
        border-radius: 6px;
        justify-content: center;
    }

    .pillar-card {
        text-align: center;
        padding: 28px 20px;
    }
    
    .pillar-icon {
        margin: 0 auto 16px auto;
    }

    .exito-image-box {
        height: 200px !important; /* Tarjeta de Éxito súper proporcionada en móviles */
        width: 100%;
    }

    .amor-image-box,
    .amarres-image-box,
    .tarot-image-box,
    .lazos-image-box,
    .casamiento-image-box {
        height: 260px !important; /* Fotos verticales majestuosas pero sin exagerar altura */
        width: 100%;
        margin: 10px auto;
    }

    .testimonial-box {
        padding: 24px; /* Mayor área útil para el texto del testimonio */
        text-align: center;
    }

    .testimonials-masonry {
        gap: 20px;
    }

    .chat-screenshot-box {
        height: 260px; /* Capturas de WhatsApp compactas y 100% legibles */
    }

    .t-quote {
        font-size: 0.92rem;
        line-height: 1.6;
    }

    .t-client {
        justify-content: center;
    }

    .stats-banner-section {
        padding: 30px 0;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .contact-bento-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .contact-item-card {
        padding: 30px 20px;
        text-align: center;
    }

    .footer-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .footer-lead {
        text-align: center;
    }

    .footer-section {
        padding: 60px 0 120px; /* Previene el pedazo blanco abajo en iOS */
    }
    
    .section-tag {
        display: block;
        text-align: center;
        margin: 0 auto 12px auto;
    }
}

/* --- 13. ANIMACIONES DE APARICIÓN (Scroll Reveal) --- */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- 15. DETALLE ULTRA-PREMIUM: TRATAMIENTO DE FOTOS VERTICALES DE ALTAR --- */
.exito-image-box {
    height: 220px !important; /* Proporción ideal para tarjeta pequeña */
}

.exito-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 45% !important; /* Enfoca perfectamente la mano escribiendo, la llave de oro y velas de abundancia */
}

.amor-image-box,
.amarres-image-box,
.tarot-image-box,
.lazos-image-box,
.casamiento-image-box {
    height: 340px !important; /* Altura generosa en móvil para mantener la proporción vertical */
}

.amor-image-box img,
.amarres-image-box img,
.tarot-image-box img,
.lazos-image-box img,
.casamiento-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30% !important; /* Ajuste perfecto para enfocar el centro-superior del altar y las cartas */
}

@media (min-width: 992px) {
    .bento-card.card-extra-wide .service-image-box.amarres-image-box,
    .bento-card.card-wide .service-image-box.lazos-image-box,
    .bento-card.card-wide .service-image-box.casamiento-image-box,
    .bento-card.card-square:nth-child(5) .service-image-box.tarot-image-box {
        height: 380px !important; /* Altura ideal en escritorio para mostrar toda la escena */
        flex: 1.1 !important; /* Prioridad visual para lucir las hermosas fotos */
    }

    .bento-card.card-tall .service-image-box.amor-image-box {
        height: 380px !important; /* Altura perfecta en escritorio */
    }
}

/* --- 16. ESTILOS PARA LAS NUEVAS IMÁGENES GENERADAS (HERO & SANTUARIO) --- */
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-media-box:hover .hero-image {
    transform: scale(1.04);
}

.master-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.master-image-container:hover .master-image {
    transform: scale(1.04);
}

/* --- 17. MICRO-ANIMACIONES MÍSTICAS DE ÍCONOS AL PASAR EL MOUSE --- */
.card-icon i {
    transition: transform 0.4s ease, color 0.4s ease;
}

.bento-card:hover .card-icon {
    background-color: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.1);
}

/* 1. Atracción al Éxito: Corona flotante y majestuosa */
.bento-card:hover .card-icon .fa-crown {
    animation: crownFloat 1.8s ease-in-out infinite;
    color: var(--accent-gold);
}

/* 2. Encantamientos & Amor: Varita mágica conjurando */
.bento-card:hover .card-icon .fa-wand-magic-sparkles {
    animation: wandCast 1.6s ease-in-out infinite;
    color: var(--accent-gold);
}

/* 3. Unión de Lazos Familiares: Latido de manos protectoras */
.bento-card:hover .card-icon .fa-hands-holding {
    animation: handsPulse 1.8s ease-in-out infinite;
    color: var(--accent-gold);
}

/* 4. Amarres: Doble giro seguro y estiramiento de eslabón */
.bento-card:hover .card-icon .fa-link {
    animation: linkLock 1.8s ease-in-out infinite;
    color: var(--accent-gold);
}

/* 5. Lectura de Cartas: Abanico deslizante de baraja */
.bento-card:hover .card-icon .fa-clone {
    animation: cardFan 1.6s ease-in-out infinite;
    color: var(--accent-gold);
}

/* 6. Casamiento Sagrado: Anillo giratorio de fidelidad perpetua */
.bento-card:hover .card-icon .fa-ring {
    animation: ringSparkle 2s ease-in-out infinite;
    color: var(--accent-gold);
}

/* --- KEYFRAMES DE ANIMACIONES MÍSTICAS --- */
@keyframes crownFloat {
    0% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-4px) scale(1.06); }
    100% { transform: translateY(0px) scale(1); }
}

@keyframes wandCast {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(-12deg); }
    75% { transform: rotate(10deg); }
    100% { transform: rotate(0deg); }
}

@keyframes handsPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes linkLock {
    0% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.08) rotate(15deg); }
    100% { transform: scale(1) rotate(0deg); }
}

@keyframes cardFan {
    0% { transform: rotate(0deg) translateY(0); }
    50% { transform: rotate(-10deg) translateY(-3px); }
    100% { transform: rotate(0deg) translateY(0); }
}

@keyframes ringSparkle {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

/* --- 18. BARRA DE PROGRESO ESPIRITUAL (Scroll Indicator - Ultra-Premium) --- */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3.5px;
    background-color: rgba(250, 249, 246, 0.05);
    z-index: 1001; /* Se superpone al navbar de z-index: 100 */
    pointer-events: none;
}

.scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, var(--primary-crimson), var(--accent-gold));
    transition: width 0.1s ease-out;
    box-shadow: 0 0 8px var(--accent-gold), 0 0 4px var(--primary-crimson);
    border-radius: 0 2px 2px 0;
}

