/* ===== VARIABLES Y RESET ===== */
:root {
    --color-black: #0A0A0A;
    --color-black-light: #141414;
    --color-black-lighter: #1E1E1E;
    --color-gold: #C9A24A;
    --color-gold-light: #D8B45C;
    --color-gold-dark: #B38F3A;
    --color-gold-soft: rgba(201, 162, 74, 0.15);
    --color-text: #FFFFFF;
    --color-text-secondary: #E0E0E0;
    --color-text-muted: #A0A0A0;
    
    --font-serif: 'Georgia', 'Times New Roman', 'Cormorant Garamond', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 4px 20px rgba(201, 162, 74, 0.2);
    
    --container-width: 1280px;
    --section-padding: 6rem 0;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-black);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 300;
}

/* ===== TIPOGRAFÍA MEJORADA ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--color-gold);
    font-weight: 300;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

p {
    margin-bottom: 1.5rem;
    color: var(--color-text-secondary);
    font-weight: 300;
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: var(--color-text);
    transition: var(--transition-medium);
    font-weight: 300;
}

/* ===== LAYOUT ===== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: var(--section-padding);
}

/* ===== HEADER MEJORADO ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.98), rgba(10, 10, 10, 0.95));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(201, 162, 74, 0.15);
    padding: 0.75rem 0;
    transition: var(--transition-medium);
}

.header.scrolled {
    padding: 0.5rem 0;
    background: rgba(10, 10, 10, 0.98);
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    flex-shrink: 0;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition-medium);
}

.logo-img:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/* ===== NAVEGACIÓN PRINCIPAL MEJORADA ===== */
.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem 1.25rem;
    color: var(--color-text);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: var(--transition-medium);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 60%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-gold);
    background: rgba(201, 162, 74, 0.05);
}

.dropdown-icon {
    transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown menus */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 240px;
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 162, 74, 0.2);
    border-radius: 8px;
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
    box-shadow: var(--shadow-lg);
    list-style: none;
    z-index: 100;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.6rem 1.5rem;
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.dropdown-link:hover {
    background: rgba(201, 162, 74, 0.1);
    color: var(--color-gold);
    padding-left: 2rem;
}

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-whatsapp-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(201, 162, 74, 0.3);
    border-radius: 30px;
    transition: var(--transition-medium);
}

.btn-whatsapp-header:hover {
    border-color: var(--color-gold);
    background: rgba(201, 162, 74, 0.1);
    transform: translateY(-2px);
}

.btn-whatsapp-header svg {
    transition: var(--transition-medium);
}

.btn-whatsapp-header:hover svg {
    transform: scale(1.1);
}

/* ===== BOTONES MEJORADOS ===== */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    border-radius: 40px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-medium);
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    color: var(--color-black);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(201, 162, 74, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 74, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    background: rgba(201, 162, 74, 0.05);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-glow {
    animation: glow 3s infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 15px rgba(201, 162, 74, 0.3); }
    50% { box-shadow: 0 0 30px rgba(201, 162, 74, 0.6); }
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gold);
    border-bottom: 1px solid transparent;
    padding-bottom: 0.25rem;
}

.btn-text:hover {
    border-bottom-color: var(--color-gold);
    gap: 1rem;
}

/* ===== WHATSAPP FLOTANTE MEJORADO ===== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    transition: var(--transition-medium);
    animation: float 3s ease-in-out infinite;
}

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

.whatsapp-float:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    background: var(--color-black-light);
    color: var(--color-gold);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
    border: 1px solid rgba(201, 162, 74, 0.3);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 90px;
}

/* ===== HERO MEJORADO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(10, 10, 10, 0.9) 100%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(201, 162, 74, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(201, 162, 74, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 40% 80%, rgba(201, 162, 74, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 20%, rgba(201, 162, 74, 0.03) 0%, transparent 40%);
    z-index: 1;
    animation: particlesMove 20s ease-in-out infinite;
}

@keyframes particlesMove {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(201, 162, 74, 0.1);
    border: 1px solid rgba(201, 162, 74, 0.3);
    border-radius: 30px;
    color: var(--color-gold);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.2s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.75rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.4s both;
    font-family: var(--font-serif);
    font-style: italic;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gold);
    z-index: 2;
    animation: bounce 2s infinite;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== SECCIÓN PROPÓSITO CON ICONOS MEJORADOS ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    display: block;
    color: var(--color-gold);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.section-divider.left {
    justify-content: flex-start;
}

.divider-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.divider-icon {
    color: var(--color-gold);
    font-size: 1.5rem;
    opacity: 0.8;
}

.purpose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.purpose-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--color-black-light);
    border: 1px solid rgba(201, 162, 74, 0.1);
    border-radius: 20px;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.purpose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(201, 162, 74, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-medium);
}

.purpose-card:hover {
    transform: translateY(-15px);
    border-color: var(--color-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.purpose-card:hover::before {
    opacity: 1;
}

.purpose-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
}

.purpose-icon {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    z-index: 2;
    transition: var(--transition-medium);
}

.purpose-card:hover .purpose-icon {
    transform: scale(1.1);
    color: var(--color-gold-light);
}

.purpose-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(201, 162, 74, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition-medium);
    z-index: 1;
}

.purpose-card:hover .purpose-icon-glow {
    opacity: 1;
    width: 120px;
    height: 120px;
}

.purpose-card h3 {
    margin-bottom: 1rem;
    transition: var(--transition-medium);
}

.purpose-card:hover h3 {
    color: var(--color-gold-light);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gold);
    margin-top: 1.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-medium);
}

.purpose-card:hover .card-link {
    opacity: 1;
    transform: translateY(0);
}

.card-link:hover {
    gap: 1rem;
}

/* ===== QUIÉNES SOMOS MEJORADO ===== */
.about {
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-black-light) 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(201, 162, 74, 0.03) 0%, transparent 70%);
    transform: rotate(45deg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-text h3 {
    margin-top: 2rem;
}

.about-text h3:first-of-type {
    margin-top: 0;
}

.about-highlight {
    font-size: 1.2rem;
    color: var(--color-gold);
    border-left: 3px solid var(--color-gold);
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.about-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.about-symbol {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.symbol-circle {
    position: absolute;
    width: 250px;
    height: 250px;
    border: 2px solid rgba(201, 162, 74, 0.2);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.symbol-circle::before,
.symbol-circle::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(201, 162, 74, 0.1);
    border-radius: 50%;
    transform: scale(1.2);
}

.symbol-cross {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at center, rgba(201, 162, 74, 0.1) 0%, transparent 70%);
    transform: rotate(45deg);
}

.symbol-doves {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 2rem;
    font-size: 3rem;
    animation: floatDoves 3s ease-in-out infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes floatDoves {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.about-quote {
    text-align: center;
    max-width: 300px;
}

.about-quote blockquote {
    font-size: 1.5rem;
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--color-gold);
    position: relative;
    padding: 1rem 0;
}

.about-quote blockquote::before,
.about-quote blockquote::after {
    content: '"';
    font-size: 3rem;
    color: rgba(201, 162, 74, 0.3);
    position: absolute;
}

.about-quote blockquote::before {
    top: -20px;
    left: -20px;
}

.about-quote blockquote::after {
    bottom: -40px;
    right: -20px;
}

/* ===== LITURGIA MEJORADA ===== */
.liturgy {
    background: var(--color-black-light);
    position: relative;
}

.liturgy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.liturgy-intro {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--color-gold);
    border-bottom: 1px solid rgba(201, 162, 74, 0.2);
    padding-bottom: 1.5rem;
}

.liturgy-schedule-container {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(201, 162, 74, 0.1);
}

.schedule-items {
    margin-top: 1.5rem;
}

.schedule-item {
    display: grid;
    grid-template-columns: 80px 120px 1fr;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(201, 162, 74, 0.1);
    transition: var(--transition-medium);
}

.schedule-item:hover {
    background: rgba(201, 162, 74, 0.05);
    padding-left: 1rem;
}

.schedule-item.highlight {
    background: rgba(201, 162, 74, 0.1);
    border-radius: 8px;
}

.schedule-time {
    font-weight: 600;
    color: var(--color-gold);
    font-size: 1.2rem;
}

.schedule-name {
    font-weight: 500;
    color: var(--color-text);
}

.schedule-desc {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.participation-steps {
    list-style: none;
    margin: 1.5rem 0;
}

.participation-steps li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(201, 162, 74, 0.05);
    border-radius: 8px;
    transition: var(--transition-medium);
}

.participation-steps li:hover {
    transform: translateX(10px);
    background: rgba(201, 162, 74, 0.1);
}

.step-number {
    width: 30px;
    height: 30px;
    background: var(--color-gold);
    color: var(--color-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.liturgy-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Visual de la liturgia */
.liturgy-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.liturgy-candle {
    position: relative;
    width: 80px;
    height: 200px;
}

.candle-body {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 150px;
    background: linear-gradient(135deg, #F5E6D3, #E8D5B5);
    border-radius: 8px 8px 4px 4px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.candle-flame {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 40px;
    background: radial-gradient(circle at 50% 0%, #FFE55C, #FFA500);
    border-radius: 50% 50% 20% 20%;
    animation: flicker 1.5s ease-in-out infinite;
    transform-origin: center bottom;
}

@keyframes flicker {
    0%, 100% { transform: translateX(-50%) scaleY(1); opacity: 1; }
    50% { transform: translateX(-50%) scaleY(1.1); opacity: 0.9; }
}

.candle-wax {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 10px;
    background: linear-gradient(to bottom, #D4B48C, #B89A7A);
    border-radius: 4px;
}

.liturgy-quote {
    text-align: center;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--color-gold);
    padding: 2rem;
    border: 1px solid rgba(201, 162, 74, 0.2);
    border-radius: 50% 50% 20% 20%;
}

/* ===== REUNIONES MEJORADAS ===== */
.meetings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.meeting-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--color-black-light);
    border: 1px solid rgba(201, 162, 74, 0.1);
    border-radius: 16px;
    transition: var(--transition-medium);
}

.meeting-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.meeting-date-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    height: 70px;
    background: rgba(201, 162, 74, 0.1);
    border: 1px solid var(--color-gold);
    border-radius: 12px;
}

.date-day {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-gold);
    line-height: 1;
}

.date-month {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.meeting-content {
    flex: 1;
}

.meeting-meta {
    display: flex;
    gap: 1rem;
    margin: 0.5rem 0 1rem;
    font-size: 0.9rem;
}

.meta-time, .meta-type {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--color-gold);
}

.meeting-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(201, 162, 74, 0.1);
}

.meeting-spots {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.meetings-calendar-link {
    text-align: center;
    margin-top: 3rem;
}

/* ===== FORMACIÓN MEJORADA ===== */
.formation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.formation-card {
    background: var(--color-black-light);
    border: 1px solid rgba(201, 162, 74, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-medium);
}

.formation-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.formation-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.formation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.formation-card:hover .formation-image img {
    transform: scale(1.1);
}

.formation-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 1rem;
    background: rgba(201, 162, 74, 0.9);
    color: var(--color-black);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.formation-content {
    padding: 1.5rem;
}

.formation-excerpt {
    margin: 0.5rem 0 1rem;
    color: var(--color-text-secondary);
}

.formation-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.meta-date {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.formation-all-link {
    text-align: center;
    margin-top: 3rem;
}

/* ===== CTA FINAL MEJORADO ===== */
.cta-card {
    background: linear-gradient(135deg, rgba(201, 162, 74, 0.1) 0%, transparent 100%);
    border: 1px solid rgba(201, 162, 74, 0.2);
    border-radius: 30px;
    padding: 4rem;
    text-align: center;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 162, 74, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.cta-subtitle {
    display: block;
    color: var(--color-gold);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.cta-text {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

/* ===== FOOTER MEJORADO ===== */
.footer {
    background: var(--color-black);
    border-top: 1px solid rgba(201, 162, 74, 0.15);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-info {
    max-width: 300px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 162, 74, 0.2);
    border-radius: 50%;
    transition: var(--transition-medium);
}

.social-link:hover {
    border-color: var(--color-gold);
    background: rgba(201, 162, 74, 0.1);
    transform: translateY(-3px);
}

.footer-links-group h4,
.footer-contact-group h4 {
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 400;
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-contact a {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-text-muted);
}

.footer-contact svg {
    color: var(--color-gold);
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 162, 74, 0.1);
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.footer-legal {
    display: flex;
    gap: 1rem;
}

.footer-legal a {
    color: var(--color-text-muted);
}

.footer-legal a:hover {
    color: var(--color-gold);
}

.separator {
    color: var(--color-gold);
    opacity: 0.5;
}

/* ===== MENÚ MÓVIL MEJORADO ===== */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-btn .bar {
    width: 28px;
    height: 2px;
    background-color: var(--color-gold);
    margin: 4px 0;
    transition: var(--transition-medium);
    border-radius: 2px;
}

/* ===== ANIMACIONES ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="400"] { transition-delay: 0.4s; }

/* ===== ACCESIBILIDAD ===== */
:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 3px;
}

::selection {
    background: var(--color-gold);
    color: var(--color-black);
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 1200px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.5rem; }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-info {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .purpose-grid,
    .meetings-grid,
    .formation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid,
    .liturgy-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(15px);
        padding: 6rem 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        border-left: 1px solid rgba(201, 162, 74, 0.2);
        overflow-y: auto;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        padding: 1rem 1.5rem;
        justify-content: space-between;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0, 0, 0, 0.3);
        border: none;
        box-shadow: none;
        padding: 0 0 0 2rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-item:hover .dropdown-menu {
        max-height: 500px;
    }
    
    .dropdown-link {
        padding: 0.75rem 1.5rem;
    }
    
    .header-actions {
        display: none;
    }
    
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2rem; }
    .hero-subtitle { font-size: 1.4rem; }
    
    .purpose-grid,
    .meetings-grid,
    .formation-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-card {
        padding: 3rem 1.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .schedule-item {
        grid-template-columns: 60px 100px 1fr;
        gap: 0.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.75rem; }
    
    .container {
        padding: 0 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-large {
        width: 100%;
    }
    
    .meeting-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .meeting-meta {
        justify-content: center;
    }
    
    .meeting-footer {
        flex-direction: column;
        gap: 1rem;
    }
    
    .liturgy-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 1rem;
        right: 1rem;
    }
}