/* ==========================================
   Rádio Sintonia da Fé - Styles
   ========================================== */

:root {
    --color-bg: #0a0a0a;
    --color-bg-secondary: #111111;
    --color-gold: #d4a853;
    --color-gold-light: #f0d78c;
    --color-gold-dark: #b8922e;
    --color-white: #ffffff;
    --color-white-muted: rgba(255, 255, 255, 0.7);
    --color-white-soft: rgba(255, 255, 255, 0.5);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-white);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Background Effects */
.bg-effects {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
}

.glow-1 {
    width: 600px;
    height: 600px;
    background: var(--color-gold);
    top: -200px;
    right: -200px;
    animation: float 15s ease-in-out infinite;
}

.glow-2 {
    width: 400px;
    height: 400px;
    background: var(--color-gold-dark);
    bottom: -100px;
    left: -100px;
    animation: float 20s ease-in-out infinite reverse;
}

.glow-3 {
    width: 300px;
    height: 300px;
    background: var(--color-gold-light);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 10px) scale(1.02); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.1; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.2; transform: translate(-50%, -50%) scale(1.2); }
}

/* Sound Waves Background */
.sound-waves {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

.sound-waves .wave {
    width: 4px;
    background: linear-gradient(to top, var(--color-gold), transparent);
    border-radius: 2px;
    animation: waveAnim 1.5s ease-in-out infinite;
}

.sound-waves .wave:nth-child(1) { height: 60px; animation-delay: 0s; }
.sound-waves .wave:nth-child(2) { height: 100px; animation-delay: 0.2s; }
.sound-waves .wave:nth-child(3) { height: 80px; animation-delay: 0.4s; }
.sound-waves .wave:nth-child(4) { height: 120px; animation-delay: 0.6s; }
.sound-waves .wave:nth-child(5) { height: 90px; animation-delay: 0.8s; }

@keyframes waveAnim {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.5); }
}

/* Container */
.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

/* Cross Icon */
.cross-icon {
    width: 48px;
    height: 48px;
    color: var(--color-gold);
    margin-bottom: 24px;
    opacity: 0.8;
}

.cross-icon svg {
    width: 100%;
    height: 100%;
}

/* Header */
.header {
    margin-bottom: 32px;
}

.badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
    color: var(--color-bg);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 24px;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { box-shadow: 0 0 20px rgba(212, 168, 83, 0.3); }
    50% { box-shadow: 0 0 40px rgba(212, 168, 83, 0.5); }
}

.title {
    line-height: 1.1;
}

.title-line {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--color-white-muted);
    margin-bottom: 8px;
}

.title-main {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(36px, 8vw, 72px);
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-white), var(--color-gold-light), var(--color-gold));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.subtitle {
    margin-top: 16px;
    font-size: 18px;
    color: var(--color-white-soft);
    font-weight: 300;
    letter-spacing: 2px;
}

/* Audio Visualizer */
.visualizer {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
    height: 60px;
    margin: 32px 0;
}

.visualizer .bar {
    width: 6px;
    background: linear-gradient(to top, var(--color-gold-dark), var(--color-gold), var(--color-gold-light));
    border-radius: 3px;
    animation: visualizerAnim 1s ease-in-out infinite;
}

.visualizer .bar:nth-child(1) { height: 20px; animation-delay: 0s; }
.visualizer .bar:nth-child(2) { height: 35px; animation-delay: 0.1s; }
.visualizer .bar:nth-child(3) { height: 25px; animation-delay: 0.2s; }
.visualizer .bar:nth-child(4) { height: 45px; animation-delay: 0.3s; }
.visualizer .bar:nth-child(5) { height: 55px; animation-delay: 0.4s; }
.visualizer .bar:nth-child(6) { height: 40px; animation-delay: 0.5s; }
.visualizer .bar:nth-child(7) { height: 30px; animation-delay: 0.6s; }
.visualizer .bar:nth-child(8) { height: 50px; animation-delay: 0.7s; }
.visualizer .bar:nth-child(9) { height: 20px; animation-delay: 0.8s; }

@keyframes visualizerAnim {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.4); }
}

/* Message */
.message {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-white-muted);
    max-width: 400px;
    margin-bottom: 32px;
}

.message strong {
    color: var(--color-gold);
    font-weight: 600;
}

/* Bible Verse */
.verse {
    max-width: 500px;
    padding: 24px 32px;
    background: rgba(212, 168, 83, 0.05);
    border-left: 3px solid var(--color-gold);
    border-radius: 0 12px 12px 0;
    margin-bottom: 40px;
}

.verse p {
    font-family: var(--font-display);
    font-size: 18px;
    font-style: italic;
    color: var(--color-white);
    line-height: 1.6;
    margin-bottom: 12px;
}

.verse cite {
    font-family: var(--font-body);
    font-size: 13px;
    font-style: normal;
    color: var(--color-gold);
    letter-spacing: 1px;
}

/* Social */
.social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.social-text {
    font-size: 14px;
    color: var(--color-white-soft);
}

.facebook-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #1877f2, #0d65d9);
    color: var(--color-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(24, 119, 242, 0.3);
}

.facebook-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.facebook-icon {
    width: 20px;
    height: 20px;
}

/* Footer */
.footer {
    margin-top: auto;
}

.footer p {
    font-size: 12px;
    color: var(--color-white-soft);
    letter-spacing: 1px;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }

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

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 32px 16px;
    }

    .badge {
        font-size: 10px;
        padding: 6px 16px;
        letter-spacing: 2px;
    }

    .title-line {
        font-size: 12px;
        letter-spacing: 4px;
    }

    .subtitle {
        font-size: 16px;
    }

    .visualizer {
        gap: 4px;
    }

    .visualizer .bar {
        width: 4px;
    }

    .verse {
        padding: 20px 24px;
        margin-left: 16px;
        margin-right: 16px;
    }

    .verse p {
        font-size: 16px;
    }

    .facebook-btn {
        padding: 14px 28px;
        font-size: 15px;
    }

    .glow-1 {
        width: 300px;
        height: 300px;
    }

    .glow-2 {
        width: 200px;
        height: 200px;
    }

    .glow-3 {
        width: 150px;
        height: 150px;
    }
}

/* Print styles */
@media print {
    .bg-effects,
    .sound-waves,
    .visualizer {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .title-main {
        background: none;
        -webkit-text-fill-color: black;
    }
}
