/* ===== CSS Variables ===== */
:root {
    /* Colors - Gold Palette inspired by logo */
    --gold-light: #d4b869;
    --gold: #C5A455;
    --gold-dark: #8B7532;
    --gold-gradient: linear-gradient(135deg, #d4b869 0%, #C5A455 50%, #8B7532 100%);

    /* Dark Theme Colors */
    --bg-dark: #0f0f1a;
    --bg-dark-secondary: #1a1a2e;
    --bg-dark-card: #252540;

    /* Light colors */
    --white: #ffffff;
    --white-soft: #f8f8fc;
    --gray-light: #e8e8f0;
    --gray: #8a8aa3;
    --gray-dark: #4a4a5e;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --container-max: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 4px 30px rgba(197, 164, 85, 0.3);
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-dark);
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul,
ol {
    list-style: none;
}

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(197, 164, 85, 0.1);
    transition: var(--transition-medium);
}

.header.scrolled {
    background: rgba(15, 15, 26, 0.98);
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition-medium);
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.nav {
    display: flex;
    gap: 8px;
}

.nav-link {
    padding: 10px 18px;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: var(--transition-medium);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: var(--transition-medium);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link.active::after,
.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-medium);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: var(--transition-medium);
}

.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--bg-dark);
    z-index: 999;
    padding: 100px 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: var(--transition-medium);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-link {
    padding: 16px 20px;
    color: var(--white);
    font-weight: 500;
    font-size: 1.1rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    transition: var(--transition-medium);
}

.mobile-nav-link:hover {
    background: rgba(197, 164, 85, 0.2);
    color: var(--gold);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(197, 164, 85, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(139, 117, 50, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(212, 184, 105, 0.05) 0%, transparent 70%);
    animation: heroGlow 10s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% {
        opacity: 0.8;
    }

    100% {
        opacity: 1;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(15, 15, 26, 0.3) 0%,
            rgba(15, 15, 26, 0.6) 50%,
            rgba(15, 15, 26, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 100px 24px 80px;
}

.hero-logo-container {
    margin-bottom: 25px;
    animation: fadeInDown 1s ease-out;
}

.hero-logo {
    max-width: 420px;
    width: 85%;
    margin: 0 auto;
    filter: drop-shadow(0 10px 40px rgba(197, 164, 85, 0.3));
    animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 40px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.7s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-medium);
    border: none;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(197, 164, 85, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(197, 164, 85, 0.1);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 14px 28px;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--bg-dark);
}

.btn-outline svg {
    width: 18px;
    height: 18px;
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--gray);
    font-size: 0.85rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.hero-content {
    padding-bottom: 120px;
}

.scroll-arrow {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateX(-50%) translateY(12px);
        opacity: 0.5;
    }
}

/* ===== Section Styles ===== */
.section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.light .section-label,
.section-header.light .section-title {
    color: var(--white);
}

.section-header.light .section-divider {
    background: var(--gold-gradient);
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--bg-dark);
    margin-bottom: 20px;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
    margin: 0 auto;
}

/* ===== About Section ===== */
.about {
    background: var(--white-soft);
}

/* Featured Vision Card */
.about-featured {
    margin-bottom: 30px;
}

.about-featured-card {
    display: flex;
    align-items: center;
    gap: 36px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-secondary) 100%);
    padding: 48px 44px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(197, 164, 85, 0.25);
    position: relative;
    overflow: hidden;
}

.about-featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 24px 0 0 24px;
}

.about-featured-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 10% 50%, rgba(197, 164, 85, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 50%, rgba(139, 117, 50, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.about-featured-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(197, 164, 85, 0.2), rgba(139, 117, 50, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    border: 2px solid rgba(197, 164, 85, 0.3);
}

.about-featured-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--gold);
}

.about-featured-content {
    position: relative;
    z-index: 1;
}

.about-card-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 10px;
    padding: 4px 14px;
    background: rgba(197, 164, 85, 0.12);
    border-radius: 50px;
    border: 1px solid rgba(197, 164, 85, 0.2);
}

.about-featured-content h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 16px;
}

.about-featured-content p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.05rem;
    font-style: italic;
}

/* About Cards Grid */
.about-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.about-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
    border: 1px solid var(--gray-light);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-light);
}

.about-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(197, 164, 85, 0.1), rgba(139, 117, 50, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--gold);
}

.about-card .about-card-label {
    margin-bottom: 12px;
}

.about-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--bg-dark);
    margin-bottom: 16px;
}

.about-card p {
    color: var(--gray-dark);
    line-height: 1.7;
}

.about-card p strong {
    color: var(--gold-dark);
    font-weight: 700;
}

/* Mission Pillars */
.mission-pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 20px;
}

.pillar {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(197, 164, 85, 0.1), rgba(139, 117, 50, 0.08));
    border: 1px solid rgba(197, 164, 85, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-medium);
}

.pillar:hover {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    border-color: transparent;
    transform: translateY(-2px);
}

/* Faith Quote */
.faith-quote {
    font-style: italic;
    color: var(--gray-dark);
    line-height: 1.8;
    padding: 20px 24px;
    border-left: 4px solid var(--gold);
    background: linear-gradient(135deg, rgba(197, 164, 85, 0.04), rgba(139, 117, 50, 0.02));
    border-radius: 0 12px 12px 0;
    margin: 0;
    text-align: left;
    position: relative;
}

.faith-quote::before {
    content: '"';
    position: absolute;
    top: -8px;
    left: 12px;
    font-family: var(--font-heading);
    font-size: 4rem;
    color: rgba(197, 164, 85, 0.2);
    line-height: 1;
}

/* Welcome Card */
.about-welcome {
    margin-top: 0;
}

.about-welcome-card {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--white);
    padding: 32px 36px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-light);
    transition: var(--transition-medium);
}

.about-welcome-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gold-light);
}

.about-welcome-card .about-icon {
    margin: 0;
    flex-shrink: 0;
}

.about-welcome-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--bg-dark);
    margin-bottom: 8px;
}

.about-welcome-card p {
    color: var(--gray-dark);
    line-height: 1.7;
}

/* ===== Horarios Section ===== */
.horarios {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.horarios::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 0% 100%, rgba(197, 164, 85, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 0%, rgba(139, 117, 50, 0.08) 0%, transparent 50%);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.schedule-day {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 164, 85, 0.2);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: var(--transition-medium);
}

.schedule-day:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.schedule-day-header {
    background: linear-gradient(135deg, rgba(197, 164, 85, 0.15), rgba(139, 117, 50, 0.1));
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid rgba(197, 164, 85, 0.2);
}

.day-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.day-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--bg-dark);
}

.schedule-day-header h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--white);
}

.schedule-items {
    padding: 10px;
}

.schedule-item {
    display: flex;
    gap: 20px;
    padding: 24px 20px;
    border-radius: 16px;
    transition: var(--transition-fast);
}

.schedule-item:hover {
    background: rgba(197, 164, 85, 0.08);
}

.schedule-time {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 90px;
    padding: 10px;
    background: rgba(197, 164, 85, 0.1);
    border-radius: 12px;
}

.schedule-time .time {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--gold);
}

.schedule-time .to {
    font-size: 0.75rem;
    color: var(--gray);
    margin: 2px 0;
}

.schedule-info h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 6px;
}

.schedule-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ===== Ubicación Section ===== */
.ubicacion {
    background: var(--white);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.location-address {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.location-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(197, 164, 85, 0.15), rgba(139, 117, 50, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--gold);
}

.location-address h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--bg-dark);
    margin-bottom: 8px;
}

.location-address p {
    color: var(--gray-dark);
    line-height: 1.7;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-light);
}

.map-container iframe {
    display: block;
}

/* ===== Contacto Section ===== */
.contacto {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.contacto::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(197, 164, 85, 0.08) 0%, transparent 70%);
}

.contact-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-text {
    margin-bottom: 40px;
}

.contact-text p {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 10px;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 20px;
    color: var(--white);
    transition: var(--transition-medium);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.whatsapp-icon-large {
    width: 48px;
    height: 48px;
}

.whatsapp-text {
    text-align: left;
}

.whatsapp-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 4px;
}

.whatsapp-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.whatsapp-arrow svg {
    width: 28px;
    height: 28px;
    transition: var(--transition-medium);
}

.whatsapp-btn:hover .whatsapp-arrow svg {
    transform: translateX(5px);
}

/* ===== Radio Section ===== */
.radio {
    background: var(--white-soft);
    position: relative;
    overflow: hidden;
}

.radio-content {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.radio-player-card {
    background: var(--bg-dark);
    border-radius: 24px;
    padding: 4px;
    box-shadow: var(--shadow-lg), 0 0 60px rgba(197, 164, 85, 0.1);
    border: 1px solid rgba(197, 164, 85, 0.2);
}

.radio-player-inner {
    background: linear-gradient(135deg, rgba(37, 37, 64, 0.9), rgba(26, 26, 46, 0.95));
    border-radius: 20px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    position: relative;
    overflow: hidden;
}

.radio-player-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 0%, rgba(197, 164, 85, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 100%, rgba(139, 117, 50, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Status Indicator */
.radio-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
}

.radio-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray);
    transition: background 0.3s ease;
}

.radio-status.live .radio-status-dot {
    background: #4ade80;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
    animation: livePulse 1.5s ease-in-out infinite;
}

.radio-status.error .radio-status-dot {
    background: #f87171;
}

.radio-status-text {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray);
    transition: color 0.3s ease;
}

.radio-status.live .radio-status-text {
    color: #4ade80;
}

.radio-status.error .radio-status-text {
    color: #f87171;
}

@keyframes livePulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.3);
    }
}

/* Sound Wave */
.radio-wave {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 40px;
    position: relative;
    z-index: 1;
}

.radio-wave span {
    display: block;
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 4px;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.radio-wave.active span {
    opacity: 1;
    animation: waveBar 1.2s ease-in-out infinite;
}

.radio-wave span:nth-child(1) {
    animation-delay: 0s;
}

.radio-wave span:nth-child(2) {
    animation-delay: 0.15s;
}

.radio-wave span:nth-child(3) {
    animation-delay: 0.3s;
}

.radio-wave span:nth-child(4) {
    animation-delay: 0.45s;
}

.radio-wave span:nth-child(5) {
    animation-delay: 0.6s;
}

@keyframes waveBar {

    0%,
    100% {
        height: 8px;
    }

    25% {
        height: 28px;
    }

    50% {
        height: 16px;
    }

    75% {
        height: 36px;
    }
}

/* Play Button */
.radio-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: none;
    background: var(--gold-gradient);
    color: var(--bg-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-medium);
    box-shadow: 0 4px 24px rgba(197, 164, 85, 0.4);
    position: relative;
    z-index: 1;
}

.radio-play-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 36px rgba(197, 164, 85, 0.5);
}

.radio-play-btn:active {
    transform: scale(0.96);
}

.radio-play-btn svg {
    width: 32px;
    height: 32px;
}

.radio-icon-play {
    margin-left: 3px;
}

.radio-icon-loading {
    animation: spinLoading 1s linear infinite;
}

@keyframes spinLoading {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Station Info */
.radio-info {
    text-align: center;
    position: relative;
    z-index: 1;
}

.radio-station-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 4px;
}

.radio-description {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Volume Control */
.radio-volume-container {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
    width: 200px;
}

.radio-volume-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.radio-volume-btn:hover {
    color: var(--gold);
}

.radio-volume-btn svg {
    width: 22px;
    height: 22px;
}

.radio-volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    outline: none;
    cursor: pointer;
}

.radio-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(197, 164, 85, 0.4);
    transition: var(--transition-fast);
}

.radio-volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 2px 12px rgba(197, 164, 85, 0.6);
}

.radio-volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border: none;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(197, 164, 85, 0.4);
}

/* Radio Details (Schedule + External Link) */
.radio-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.radio-schedule-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-light);
    box-shadow: var(--shadow-sm);
}

.radio-schedule-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(197, 164, 85, 0.15), rgba(139, 117, 50, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.radio-schedule-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
}

.radio-schedule-card h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--bg-dark);
    margin-bottom: 2px;
}

.radio-schedule-card p {
    font-size: 0.9rem;
    color: var(--gray-dark);
}

.radio-external-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    color: var(--gold-dark);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 12px;
    background: rgba(197, 164, 85, 0.08);
    border: 1px solid rgba(197, 164, 85, 0.2);
    transition: var(--transition-medium);
}

.radio-external-link:hover {
    background: rgba(197, 164, 85, 0.15);
    border-color: var(--gold);
    color: var(--gold);
}

.radio-external-link svg {
    width: 16px;
    height: 16px;
}

/* ===== Footer ===== */
.footer {
    background: #0a0a12;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(197, 164, 85, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    height: 200px;
    width: auto;
    filter: drop-shadow(0 4px 20px rgba(197, 164, 85, 0.2));
}

.footer-info {
    text-align: center;
}

.footer-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 8px;
}

.footer-location {
    color: var(--gray);
    font-size: 0.95rem;
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.875rem;
}

/* ===== Fade In Animation ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .location-content {
        grid-template-columns: 1fr;
    }

    .location-info {
        text-align: center;
    }

    .location-address {
        justify-content: center;
    }

    .location-cta {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px;
    }

    .nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .header-content {
        height: 70px;
    }

    .logo-img {
        height: 40px;
    }

    .hero-logo {
        max-width: 280px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .scroll-indicator {
        display: none;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .schedule-item {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .schedule-time {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 8px;
    }

    .whatsapp-btn {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .whatsapp-btn-content {
        flex-direction: column;
    }

    .whatsapp-text {
        text-align: center;
    }

    .whatsapp-arrow {
        transform: rotate(90deg);
    }

    .radio-player-inner {
        padding: 28px 20px;
    }

    .radio-play-btn {
        width: 70px;
        height: 70px;
    }

    .radio-volume-container {
        width: 160px;
    }

    /* About responsive */
    .about-featured-card {
        flex-direction: column;
        text-align: center;
        padding: 36px 28px;
        gap: 24px;
    }

    .about-featured-card::before {
        width: 100%;
        height: 5px;
        border-radius: 24px 24px 0 0;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-welcome-card {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .about-card {
        padding: 30px 20px;
    }

    .about-featured-card {
        padding: 28px 20px;
    }

    .about-featured-content h3 {
        font-size: 1.4rem;
    }

    .about-featured-icon {
        width: 70px;
        height: 70px;
    }

    .about-featured-icon svg {
        width: 30px;
        height: 30px;
    }

    .schedule-day-header {
        padding: 20px;
    }

    .schedule-day-header h3 {
        font-size: 1.4rem;
    }

    .radio-volume-container {
        width: 140px;
    }

    .radio-station-name {
        font-size: 1.2rem;
    }
}