/* Variables */
:root {
    --primary: #d4941a;
    --primary-dark: #b07a10;
    --bg-dark: #111118;
    --bg-card: #1c1c26;
    --bg-surface: #252532;
    --text: #eaeaea;
    --text-secondary: #888894;
    --border: rgba(255,255,255,0.08);
    --radius: 8px;
    --radius-sm: 4px;
}

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #161620;
    padding: 12px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-radio {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary);
}

.logo-name {
    font-family: 'Dancing Script', cursive;
    font-size: 26px;
    color: white;
    line-height: 1;
}

.player-control {
    display: flex;
    align-items: center;
    gap: 15px;
}

.play-btn {
    width: 42px;
    height: 42px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn:hover {
    background: var(--primary-dark);
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #c43c2c;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
}

.audio-wave {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 20px;
}

.audio-wave span {
    width: 3px;
    background: var(--primary);
    border-radius: 1px;
}

.audio-wave span:nth-child(1) { height: 6px; }
.audio-wave span:nth-child(2) { height: 14px; }
.audio-wave span:nth-child(3) { height: 10px; }
.audio-wave span:nth-child(4) { height: 18px; }
.audio-wave span:nth-child(5) { height: 8px; }

/* Player tocando */
.play-btn.playing,
.floating-play-btn.playing {
    background: #22a855;
}

.live-badge.streaming {
    background: #22a855;
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: var(--bg-surface);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
}

.social-icon:hover {
    background: var(--primary);
    color: white;
}

/* Navigation */
.navbar {
    background: var(--primary);
    position: fixed;
    width: 100%;
    top: 64px;
    z-index: 999;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
    padding: 14px;
}

.nav-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    gap: 0;
}

.nav-menu li a {
    display: block;
    padding: 14px 18px;
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background: rgba(0, 0, 0, 0.15);
}

/* Hero */
.hero {
    min-height: 75vh;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 60px;
}

.hero-overlay { display: none; }

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text {}

.hero-subtitle {
    display: inline-block;
    background: rgba(212, 148, 26, 0.12);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 16px;
}

.hero-logo {
    margin-bottom: 16px;
}

.hero-radio {
    display: block;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--primary);
}

.hero-name {
    font-family: 'Dancing Script', cursive;
    font-size: 64px;
    color: white;
    line-height: 1;
}

.hero-headphones { display: none; }

.hero-description {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    max-width: 400px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-surface);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-glow {
    width: 280px;
    height: 280px;
    background: rgba(212, 148, 26, 0.05);
    border-radius: 50%;
}

.listener-card {
    position: absolute;
    bottom: 20%;
    right: 10%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 14px 20px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 12px;
}

.listener-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.listener-info {
    display: flex;
    flex-direction: column;
}

.listener-count {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.listener-label {
    font-size: 11px;
    color: var(--text-secondary);
}

.hero-wave { display: none; }

/* Now Playing */
.now-playing {
    background: var(--bg-dark);
    padding: 24px 0;
}

.now-playing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 28px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.now-playing-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.now-playing-info {
    flex: 1;
}

.now-playing-label {
    display: block;
    font-size: 10px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.now-playing-title {
    font-size: 16px;
    font-weight: 600;
}

.equalizer {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 28px;
}

.equalizer span {
    width: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.equalizer span:nth-child(1) { height: 10px; }
.equalizer span:nth-child(2) { height: 20px; }
.equalizer span:nth-child(3) { height: 14px; }
.equalizer span:nth-child(4) { height: 24px; }
.equalizer span:nth-child(5) { height: 16px; }

/* Section Title */
.section-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 40px;
}

.section-title.light { color: white; }

.title-decoration {
    display: inline-block;
    width: 40px;
    height: 2px;
    background: var(--primary);
    vertical-align: middle;
    margin: 0 16px;
}

.title-decoration.light {
    background: rgba(255, 255, 255, 0.25);
}

/* Features */
.features {
    padding: 60px 0;
    background: var(--bg-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    border: 1px solid var(--border);
}

.feature-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(212, 148, 26, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    margin: 0 auto 16px;
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: white;
}

.feature-icon.evangelho {
    background: rgba(46, 139, 201, 0.1);
    color: #2e8bc9;
}

.feature-card:hover .feature-icon.evangelho {
    background: #2e8bc9;
    color: white;
}

.feature-icon.podcast {
    background: rgba(136, 84, 192, 0.1);
    color: #8854c0;
}

.feature-card:hover .feature-icon.podcast {
    background: #8854c0;
    color: white;
}

.feature-icon.eventos {
    background: rgba(39, 179, 96, 0.1);
    color: #22a855;
}

.feature-card:hover .feature-icon.eventos {
    background: #22a855;
    color: white;
}

.feature-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.feature-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(212, 148, 26, 0.1);
    border-radius: 14px;
}

.feature-link:hover {
    background: var(--primary);
    color: white;
}

/* Programs */
.programs {
    padding: 60px 0;
    background: #141420;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}

.program-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
}

.program-card:hover {
    background: rgba(212, 148, 26, 0.06);
    border-color: rgba(212, 148, 26, 0.15);
}

.program-time {
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 8px;
}

.program-card h4 {
    font-size: 14px;
    margin-bottom: 6px;
}

.program-card p {
    font-size: 12px;
    color: var(--text-secondary);
}

/* Mural */
.mural {
    padding: 60px 0;
    background: var(--bg-dark);
}

.mural-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.mural-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    border: 1px solid var(--border);
}

.mural-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.mural-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #c43c2c;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
}

.mural-icon {
    width: 52px;
    height: 52px;
    background: rgba(212, 148, 26, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    margin: 0 auto 16px;
}

.mural-card:hover .mural-icon {
    background: var(--primary);
    color: white;
}

.mural-card h4 {
    font-size: 17px;
    margin-bottom: 8px;
}

.mural-card p {
    font-size: 13px;
    color: var(--text-secondary);
}

.mural-cta {
    text-align: center;
}

/* Contact */
.contact {
    padding: 60px 0;
    background: #141420;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.contact-item:hover {
    border-color: var(--primary);
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(212, 148, 26, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 15px;
    margin-bottom: 4px;
}

.contact-item p {
    color: var(--text-secondary);
    font-size: 13px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background: var(--bg-card);
    padding: 48px 0 20px;
    border-top: 1px solid var(--border);
}

.footer::before {
    display: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
}

.footer-logo p {
    color: var(--text-secondary);
    margin-top: 12px;
    font-size: 13px;
}

.footer-links h4,
.footer-social h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
}

.footer-links ul li a:hover {
    color: var(--primary);
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    background: var(--bg-surface);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 16px;
}

.social-icons a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 12px;
}

/* Floating Player */
.floating-player {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}

.floating-play-btn {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border: none;
    border-radius: var(--radius);
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-play-btn:hover {
    background: var(--primary-dark);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-image {
        order: 0;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-name {
        font-size: 60px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .publicidade-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel-section {
        margin-top: 120px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 10px 0;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    
    .logo {
        flex: 1;
        min-width: 150px;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .logo-name {
        font-size: 22px;
    }
    
    .logo-radio {
        font-size: 10px;
        letter-spacing: 2px;
    }
    
    .player-control {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 10px;
        padding: 10px 0 5px;
    }
    
    .play-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .live-badge {
        padding: 8px 15px;
        font-size: 10px;
    }
    
    .audio-wave {
        display: none;
    }
    
    .social-links {
        gap: 8px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .navbar {
        top: 95px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 10px 0;
        max-height: 60vh;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li a {
        padding: 12px 20px;
        font-size: 14px;
        text-align: center;
    }
    
    .hero {
        padding-top: 160px;
        padding-bottom: 60px;
        min-height: auto;
    }
    
    .hero-name {
        font-size: 42px;
    }
    
    .hero-radio {
        font-size: 16px;
        letter-spacing: 5px;
    }
    
    .hero-subtitle {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .hero-headphones {
        display: none;
    }
    
    .section-title {
        font-size: 24px;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .title-decoration {
        width: 40px;
    }
    
    .image-glow {
        width: 200px;
        height: 200px;
    }
    
    .listener-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        padding: 15px 20px;
    }
    
    .listener-count {
        font-size: 24px;
    }
    
    .listener-avatar {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    /* Carrossel responsivo */
    .carousel-section {
        margin-top: 95px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .carousel-btn.prev {
        left: 10px;
    }
    
    .carousel-btn.next {
        right: 10px;
    }
    
    .carousel-dots {
        bottom: 10px;
    }
    
    .carousel-dot {
        width: 8px;
        height: 8px;
    }
    
    /* Now Playing responsivo */
    .now-playing-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }
    
    .now-playing-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .now-playing-title {
        font-size: 16px;
    }
    
    /* Features responsivo */
    .features {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    /* Programs responsivo */
    .programs {
        padding: 60px 0;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Publicidade responsivo */
    .publicidade-section {
        padding: 40px 0;
    }
    
    .publicidade-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .publicidade-coluna {
        gap: 15px;
    }
    
    /* Footer responsivo */
    .footer {
        padding: 40px 0 20px;
    }
    
    /* Floating play button */
    .floating-play-btn {
        width: 50px;
        height: 50px;
        font-size: 18px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .header {
        padding: 8px 0;
    }
    
    .header-content {
        gap: 8px;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .logo-name {
        font-size: 18px;
    }
    
    .logo-radio {
        font-size: 8px;
    }
    
    .play-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .live-badge {
        padding: 6px 12px;
        font-size: 9px;
        letter-spacing: 1px;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .navbar {
        top: 85px;
    }
    
    .nav-menu li a {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .hero {
        padding-top: 140px;
        padding-bottom: 40px;
    }
    
    .hero-name {
        font-size: 32px;
    }
    
    .hero-radio {
        font-size: 14px;
        letter-spacing: 3px;
    }
    
    .hero-subtitle {
        font-size: 11px;
        padding: 6px 12px;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 13px;
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .image-glow {
        width: 150px;
        height: 150px;
    }
    
    .listener-card {
        padding: 12px 15px;
        gap: 12px;
    }
    
    .listener-avatar {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .listener-count {
        font-size: 20px;
    }
    
    .listener-label {
        font-size: 11px;
    }
    
    .section-title {
        font-size: 20px;
        margin-bottom: 30px;
    }
    
    .title-decoration {
        width: 30px;
        height: 2px;
    }
    
    /* Carrossel mobile pequeno */
    .carousel-section {
        margin-top: 85px;
    }
    
    .carousel-slide img {
        height: 150px;
    }
    
    .carousel-slide-placeholder {
        height: 150px;
    }
    
    .carousel-slide-placeholder i {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }
    
    .carousel-slide-placeholder span {
        font-size: 0.9rem;
    }
    
    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .carousel-btn.prev {
        left: 5px;
    }
    
    .carousel-btn.next {
        right: 5px;
    }
    
    .carousel-dots {
        bottom: 8px;
        gap: 6px;
    }
    
    .carousel-dot {
        width: 6px;
        height: 6px;
    }
    
    /* Features mobile */
    .features {
        padding: 40px 0;
    }
    
    .feature-card {
        padding: 25px 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .feature-card h3 {
        font-size: 18px;
    }
    
    .feature-card p {
        font-size: 13px;
    }
    
    /* Programs mobile */
    .programs {
        padding: 40px 0;
    }
    
    .program-card {
        padding: 20px 15px;
    }
    
    .program-time {
        font-size: 12px;
    }
    
    .program-card h4 {
        font-size: 16px;
    }
    
    /* Now Playing mobile */
    .now-playing {
        padding: 20px 0;
    }
    
    .now-playing-card {
        padding: 15px;
        gap: 10px;
    }
    
    .now-playing-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .now-playing-label {
        font-size: 10px;
    }
    
    .now-playing-title {
        font-size: 14px;
    }
    
    .equalizer {
        height: 25px;
    }
    
    .equalizer span {
        width: 4px;
    }
    
    /* Publicidade mobile */
    .publicidade-section {
        padding: 30px 0;
    }
    
    .banner-card {
        border-radius: 12px;
    }
    
    /* Page content mobile */
    .page-content {
        padding: 140px 0 60px;
    }
    
    .page-title {
        font-size: 28px;
        margin-bottom: 30px;
        flex-direction: column;
        gap: 15px;
    }
    
    .title-line {
        width: 100px;
    }
    
    /* Floating button mobile */
    .floating-play-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
        bottom: 15px;
        right: 15px;
    }
    
    /* Contact mobile */
    .contact-form-page .form-group input,
    .contact-form-page .form-group textarea {
        padding: 15px 20px;
        font-size: 14px;
    }
}

/* ===== Page Content (Internal Pages) ===== */
.page-content {
    min-height: calc(100vh - 300px);
    padding: 200px 0 100px;
    background: var(--bg-dark);
    position: relative;
}

.page-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(255, 140, 0, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(155, 89, 182, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.page-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    color: white;
    position: relative;
    z-index: 1;
}

.title-line {
    width: 60px;
    height: 2px;
    background: var(--primary);
}

/* ===== Contact Form Page ===== */
.contact-form-container {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-form-page {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-form-page .form-group input,
.contact-form-page .form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    color: #333;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
}

.contact-form-page .form-group input::placeholder,
.contact-form-page .form-group textarea::placeholder {
    color: #888;
}

.contact-form-page .form-group input:focus,
.contact-form-page .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.contact-form-page .form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.btn-submit {
    background: var(--primary);
    border: none;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-submit:hover {
    background: var(--primary-dark);
}

/* Events Page */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.event-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.event-card:hover {
    border-color: var(--primary);
}

.event-image {
    width: 100%;
    height: 180px;
    background: var(--bg-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--primary);
}

.event-content {
    padding: 20px;
}

.event-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 12px;
}

.event-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text);
}

.event-card p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.event-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.event-link:hover {
    text-decoration: underline;
}

/* Photos Page */
.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.photo-card {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--bg-surface);
    cursor: pointer;
}

.photo-card:hover {
    opacity: 0.9;
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.photo-title {
    color: white;
    font-size: 15px;
    font-weight: 500;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--primary);
    background: var(--bg-surface);
}

/* Podcast Page */
.podcast-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.podcast-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 20px;
    border: 1px solid var(--border);
}

.podcast-card:hover {
    border-color: var(--primary);
}

.podcast-cover {
    width: 80px;
    height: 80px;
    background: var(--bg-surface);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    flex-shrink: 0;
}

.podcast-info {
    flex: 1;
}

.podcast-info h3 {
    font-size: 17px;
    margin-bottom: 6px;
    color: var(--text);
}

.podcast-meta {
    display: flex;
    gap: 16px;
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 8px;
}

.podcast-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.podcast-meta span i {
    color: var(--primary);
}

.podcast-info p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

.podcast-play {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border: none;
    border-radius: var(--radius-sm);
    color: white;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.podcast-play:hover {
    background: var(--primary-dark);
}

/* Mural de Vendas Page */
.mural-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.mural-listings {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.listing-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.listing-card:hover {
    border-color: var(--primary);
}

.listing-image {
    width: 100%;
    height: 160px;
    background: var(--bg-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--primary);
}

.listing-content {
    padding: 20px;
}

.listing-category {
    display: inline-block;
    color: var(--primary);
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 10px;
}

.listing-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.listing-price {
    font-size: 26px;
    font-weight: 700;
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.listing-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
}

.listing-location i {
    color: var(--primary);
}

/* Notes Page */
.notes-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.note-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border);
    border-left: 3px solid var(--primary);
}

.note-card:hover {
    border-color: var(--primary);
    border-left-color: var(--primary);
}

.note-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.note-icon {
    width: 48px;
    height: 48px;
    background: rgba(212, 148, 26, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
}

.note-card h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.note-date {
    color: var(--primary);
    font-size: 13px;
}

.note-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Recados Page */
.recados-container {
    max-width: 800px;
    margin: 0 auto;
}

.recado-form {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 32px;
    margin-bottom: 32px;
    border: 1px solid var(--border);
}

.recado-form h3 {
    font-size: 22px;
    margin-bottom: 24px;
    text-align: center;
    color: var(--primary);
}

.recados-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.recado-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 20px;
    border: 1px solid var(--border);
}

.recado-card:hover {
    border-color: var(--primary);
}

.recado-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.recado-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
}

.recado-author {
    font-weight: 600;
    font-size: 15px;
}

.recado-time {
    color: var(--text-secondary);
    font-size: 13px;
}

.recado-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    padding-left: 52px;
}

/* Work/Jobs Page */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
}

.job-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border);
}

.job-card:hover {
    border-color: #2ecc71;
}

.job-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.job-icon {
    width: 48px;
    height: 48px;
    background: rgba(46, 204, 113, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #2ecc71;
}

.job-title h3 {
    font-size: 17px;
    margin-bottom: 4px;
}

.job-company {
    color: #2ecc71;
    font-size: 14px;
    font-weight: 500;
}

.job-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.job-detail {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 13px;
}

.job-detail i {
    color: #2ecc71;
}

.job-card p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.job-apply {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #2ecc71;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.job-apply:hover {
    text-decoration: underline;
}

/* Promotion Page */
.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
}

.promo-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.promo-card:hover {
    border-color: #e74c3c;
}

.promo-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #e74c3c;
    color: white;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    z-index: 3;
}

.promo-image {
    width: 100%;
    height: 180px;
    background: var(--bg-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--primary);
    position: relative;
}

.promo-content {
    padding: 20px;
}

.promo-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text);
}

.promo-card p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e74c3c;
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.promo-cta:hover {
    background: #c0392b;
}

/* Humanitaria Page */
.humanitarian-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.humanitarian-intro p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
}

.humanitarian-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.humanitarian-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    border: 1px solid var(--border);
}

.humanitarian-card:hover {
    border-color: #3498db;
}

.humanitarian-icon {
    width: 56px;
    height: 56px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #3498db;
    margin: 0 auto 20px;
}

.humanitarian-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.humanitarian-card p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.6;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 16px;
}

.empty-icon {
    font-size: 64px;
    color: var(--primary);
    opacity: 0.4;
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.empty-state p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* ===== Responsive for Pages ===== */
@media (max-width: 768px) {
    .page-content {
        padding: 160px 0 60px;
    }
    
    .page-title {
        font-size: 32px;
        gap: 20px;
    }
    
    .title-line {
        width: 80px;
    }
    
    .podcast-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .podcast-meta {
        justify-content: center;
    }
    
    .podcast-cover {
        width: 100px;
        height: 100px;
    }
    
    .events-grid,
    .jobs-grid,
    .promotions-grid,
    .humanitarian-grid,
    .mural-listings {
        grid-template-columns: 1fr;
    }
    
    .recado-card p {
        padding-left: 0;
    }
}

/* ================================================
   ESTILOS DE SEGURANÇA
   ================================================ */

/* Mensagens de Segurança */
.security-message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 14px 22px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    z-index: 10000;
    transform: translateX(120%);
    transition: transform 0.25s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.security-message.show {
    transform: translateX(0);
}

.security-message-success {
    background: var(--accent-green);
    color: white;
}

.security-message-error {
    background: var(--accent-red);
    color: white;
}

.security-message i {
    font-size: 18px;
}

/* Erros em Inputs */
.input-error {
    border-color: var(--accent-red) !important;
}

.security-input-error {
    color: var(--accent-red);
    font-size: 12px;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.security-input-error::before {
    content: '⚠';
}

/* Proteção de Seleção (opcional) */
.no-select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Badge de Segurança */
.security-badge {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--accent-green);
    color: white;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 999;
}

.security-badge i {
    font-size: 13px;
}

/* Estilo para formulários protegidos */
form[data-protected="true"] {
    position: relative;
}

form[data-protected="true"]::after {
    content: '🔒';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 14px;
    opacity: 0.4;
}

/* Carrossel */
.carousel-section {
    background: var(--bg-card);
    padding: 0;
    margin-top: 120px;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel {
    display: flex;
    transition: transform 0.3s ease;
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    display: block;
}

.carousel-slide-placeholder {
    width: 100%;
    height: 300px;
    background: var(--bg-surface);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.carousel-slide-placeholder i {
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--primary);
    opacity: 0.5;
}

.carousel-slide-placeholder span {
    font-size: 0.9rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.9rem;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--primary-dark);
}

.carousel-btn.prev {
    left: 12px;
}

.carousel-btn.next {
    right: 12px;
}

.carousel-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    border: none;
}

.carousel-dot.active {
    background: var(--primary);
}

/* Publicidade */
.publicidade-section {
    background: var(--bg-dark);
    padding: 40px 0;
}

.publicidade-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.publicidade-coluna {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.banner-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.banner-card:hover {
    border-color: var(--primary);
}

.banner-card.destaque {
    border-color: var(--primary);
}

.banner-card.notas {
    background: var(--bg-card);
}

.banner-card.evangelho {
    background: #2d2848;
}

.banner-link {
    display: block;
    padding: 16px 20px;
    text-decoration: none;
    color: var(--text);
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.banner-text h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.banner-text p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.banner-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
    flex-shrink: 0;
}

.banner-cta {
    background: white;
    color: #333;
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.75rem;
}

/* Banner de Espaço Livre */
.banner-espaco {
    background: rgba(232, 155, 28, 0.06);
    border: 1px dashed rgba(232, 155, 28, 0.3);
    text-align: center;
    cursor: pointer;
}

.banner-espaco .banner-link {
    padding: 24px;
}

.banner-espaco:hover {
    border-color: var(--primary);
    background: rgba(232, 155, 28, 0.1);
}

.banner-espaco .banner-content {
    flex-direction: column;
    text-align: center;
}

.banner-espaco .banner-text h3 {
    color: var(--primary);
    font-size: 1rem;
}

.banner-espaco .banner-text p {
    font-size: 0.8rem;
}

.banner-espaco .logo-marca {
    margin-top: 6px;
    font-family: 'Dancing Script', cursive;
    font-size: 1.2rem;
    color: var(--primary);
}

/* Banner Patrocinador */
.banner-patrocinador {
    padding: 0;
}

.banner-patrocinador img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

.banner-patrocinador-placeholder {
    height: 80px;
    background: var(--bg-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px;
}

.banner-patrocinador-placeholder .logo-placeholder {
    font-size: 1.5rem;
    color: var(--primary);
}

.banner-patrocinador-placeholder .contato-info {
    text-align: right;
}

.banner-patrocinador-placeholder .contato-info span {
    display: block;
    font-size: 0.8rem;
}

.banner-patrocinador-placeholder .contato-info span i {
    margin-right: 4px;
    color: var(--primary);
}

@media (max-width: 768px) {
    .publicidade-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel-slide img,
    .carousel-slide-placeholder {
        height: 200px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .banner-link {
        padding: 20px;
    }
    
    .banner-text h3 {
        font-size: 1.1rem;
    }
}

/* ================================================
   COMPONENTES DINÂMICOS - CARDS E ESTADOS
   ================================================ */

/* Estados de carregamento */
.loading-state,
.empty-state,
.error-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 48px 16px;
}

.loading-state i,
.empty-state i,
.error-state i {
    font-size: 3rem;
    margin-bottom: 16px;
}

.loading-state i {
    color: var(--primary);
}

.empty-state i {
    color: var(--primary);
}

.error-state i {
    color: #ff4444;
}

.loading-state h3,
.empty-state h3,
.error-state h3 {
    color: var(--text);
    margin-bottom: 8px;
}

.loading-state p,
.empty-state p,
.error-state p {
    color: var(--text-secondary);
}

/* Card base */
.card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.card:hover {
    border-color: var(--primary);
}

.card-body {
    padding: 20px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.card-title {
    color: var(--text);
    font-size: 1.1rem;
    margin: 0;
}

.card-subtitle {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 8px;
}

.card-text {
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 12px 0;
}

.card-meta {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.card-footer {
    border-top: 1px solid var(--border);
    padding-top: 12px;
    margin-top: 12px;
}

.card-bordered {
    border-left: 3px solid var(--primary);
    padding: 20px;
}

.card-featured {
    border-color: var(--primary);
}

.card-cover {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.card-cover-placeholder {
    width: 100%;
    height: 160px;
    background: var(--bg-surface);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-cover-placeholder i {
    font-size: 3rem;
    color: var(--primary);
}

/* Badges */
.badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 500;
}

.badge-primary {
    background: rgba(212, 148, 26, 0.15);
    color: var(--primary);
}

.badge-success {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
}

.badge-danger {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
}

.badge-highlight {
    background: var(--primary);
    color: white;
}

.price-tag {
    background: var(--primary);
    color: white;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.price-success {
    color: #2ecc71;
    font-weight: 600;
}

.info-box {
    background: var(--bg-surface);
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}

.progress-bar {
    background: var(--bg-surface);
    border-radius: var(--radius-sm);
    height: 8px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: var(--primary);
    border-radius: var(--radius-sm);
}

.progress-info {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 4px;
}

/* PIX */
.pix-box {
    background: rgba(0, 166, 126, 0.1);
    border-radius: var(--radius-sm);
    padding: 12px;
    margin-top: 16px;
    text-align: center;
}

.pix-box h4 {
    color: #00a67e;
    margin-bottom: 8px;
    font-size: 14px;
}

.pix-box code {
    display: block;
    background: var(--bg-surface);
    padding: 8px;
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: monospace;
    font-size: 12px;
    word-break: break-all;
}

/* Grid de cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}

.cards-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Album card */
.album-card {
    cursor: pointer;
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.album-card:hover {
    border-color: var(--primary);
}

.album-cover {
    height: 160px;
    background: var(--bg-surface);
    display: flex;
    align-items: center;
    justify-content: center;
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album-cover i {
    font-size: 3rem;
    color: var(--primary);
}

.album-info {
    padding: 16px;
}

.album-info h3 {
    color: var(--text);
    margin-bottom: 4px;
    font-size: 15px;
}

.album-info p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Photo card redefinido */
.photo-card {
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
}

.photo-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo-card:hover img {
    transform: scale(1.05);
}

.photo-card p {
    color: white;
    padding: 10px;
    background: rgba(0, 0, 0, 0.7);
    margin: 0;
}

/* Podcast cover expandido */
.podcast-cover {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.podcast-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.podcast-cover-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-surface);
    display: flex;
    align-items: center;
    justify-content: center;
}

.podcast-cover-placeholder i {
    font-size: 2rem;
    color: var(--primary);
}

.podcast-info h3 {
    color: var(--text);
    font-size: 1.1rem;
    margin: 6px 0;
}

.podcast-info p {
    color: var(--text-secondary);
}

.podcast-player {
    margin-top: 12px;
}

.podcast-player audio {
    width: 100%;
    border-radius: var(--radius-sm);
}

/* Nota de falecimento */
.nota-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 20px;
    border: 1px solid var(--border);
    border-left: 3px solid #9b59b6;
    display: flex;
    gap: 16px;
}

.nota-foto {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.nota-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nota-foto-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(155, 89, 182, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nota-foto-placeholder i {
    font-size: 2rem;
    color: #9b59b6;
}

.nota-info {
    flex: 1;
}

.nota-info h3 {
    color: var(--text);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

/* Recado card redefinido */
.recado-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 16px;
    border: 1px solid var(--border);
    border-left: 3px solid var(--primary);
}

.recado-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.recado-header strong {
    color: var(--primary);
}

.recado-header span {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.recado-destinatario {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 6px;
}

.recado-mensagem {
    color: var(--text);
}

/* Promo card redefinido */
.promo-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.promo-header {
    background: var(--primary);
    padding: 20px;
    text-align: center;
}

.promo-header i {
    font-size: 2rem;
    color: white;
    margin-bottom: 8px;
}

.promo-header h3 {
    color: white;
    font-size: 1.2rem;
    margin: 0;
}

.promo-body {
    padding: 20px;
}

.promo-prize {
    background: rgba(212, 148, 26, 0.1);
    border-radius: var(--radius-sm);
    padding: 12px;
    margin-bottom: 16px;
}

.promo-prize p {
    color: var(--primary);
    margin: 0;
}

.promo-dates {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.promo-dates span {
    color: var(--text-secondary);
}

.promo-dates .days-left {
    font-weight: 500;
}

.promo-dates .days-left.urgent {
    color: #ff4444;
}

.promo-dates .days-left.normal {
    color: #4CAF50;
}

.promo-rules h4 {
    color: var(--text);
    margin-bottom: 8px;
}

.promo-rules p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 16px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 32px;
    max-width: 480px;
    width: 100%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 24px;
    color: var(--text);
    background: none;
    border: none;
    cursor: pointer;
}

.modal-close:hover {
    color: var(--primary);
}

.modal-title {
    color: var(--primary);
    margin-bottom: 8px;
    text-align: center;
}

.modal-subtitle {
    color: var(--text);
    margin-bottom: 20px;
    text-align: center;
}

/* Photo modal */
.photo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
}

.photo-modal.active {
    display: flex;
}

.photo-modal img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.photo-modal-close {
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 32px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

.photo-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 32px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    padding: 16px;
}

.photo-modal-nav:hover {
    color: var(--primary);
}

.photo-modal-nav.prev {
    left: 16px;
}

.photo-modal-nav.next {
    right: 16px;
}

.photo-modal-caption {
    position: absolute;
    bottom: 24px;
    color: white;
    text-align: center;
    width: 100%;
}

/* Success state */
.success-state {
    text-align: center;
}

.success-state i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 16px;
}

.success-state h3 {
    color: var(--text);
}

.success-state p {
    color: var(--text-secondary);
}

/* Responsivo para cards */
@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .podcast-card {
        flex-direction: column;
        text-align: center;
    }
    
    .nota-card {
        flex-direction: column;
        text-align: center;
    }
    
    .nota-foto {
        margin: 0 auto;
    }
}

/* ===== SPA Router Styles ===== */
.spa-content {
    transition: opacity 0.15s ease-out;
    min-height: calc(100vh - 300px);
}

.spa-content.spa-loading {
    opacity: 0.5;
    pointer-events: none;
}


