/* Reset e Configurações Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cor-principal: #FFFFFF;
    --cor-fundo: #000000;
    --cor-destaque: #9C0505;
    --cor-secundaria: #D0FBF9;
    --cor-acento: #FF3700;
}

/* Barra de Progresso de Scroll */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #e8e8e8, #ffffff);
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

body {
    font-family: 'Encode Sans Condensed', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--cor-fundo);
    color: var(--cor-principal);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 30px;
    background: rgba(0, 0, 0, 0.7);
    border-bottom: 1px solid var(--cor-principal);
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 100px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--cor-principal);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

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

.nav-link {
    color: var(--cor-principal);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 5px;
    position: relative;
}

.nav-link:hover {
    color: var(--cor-destaque);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--cor-destaque);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.logo {
    height: 88px;
    width: auto;
    display: block;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.8));
}

/* Hero Section */
.hero {
    position: relative;
    height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.video-background iframe {
    width: 100vw;
    height: 56.25vw; /* 16:9 Aspect Ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 Aspect Ratio */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--cor-principal);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-title-exo {
    font-family: 'Exo', sans-serif;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--cor-principal);
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.9),
                 0 0 30px rgba(0, 0, 0, 0.7);
}

.hero-animated-text {
    font-family: 'Exo', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--cor-principal);
    text-shadow: 4px 4px 20px rgba(0, 0, 0, 0.95),
                 0 0 40px rgba(0, 0, 0, 0.8),
                 0 0 10px rgba(0, 0, 0, 1);
    margin-top: 30px;
    transition: font-size 0.3s ease;
}

@keyframes textFadeOut {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-30px);
    }
}

@keyframes textFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #e0e0e0;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Botões */
.btn {
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--cor-destaque);
    color: var(--cor-principal);
    box-shadow: 0 4px 15px rgba(156, 5, 5, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(156, 5, 5, 0.6);
    background: var(--cor-acento);
}

.btn-secondary {
    background: transparent;
    color: var(--cor-principal);
    border: 2px solid var(--cor-principal);
}

.btn-secondary:hover {
    background: var(--cor-secundaria);
    color: var(--cor-fundo);
    border-color: var(--cor-secundaria);
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
    background: rgba(156, 5, 5, 0.2);
    color: var(--cor-destaque);
    border: 1px solid var(--cor-destaque);
}

.btn-small:hover {
    background: var(--cor-destaque);
    color: var(--cor-principal);
}

/* Seção de Destaque */
.highlight-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    position: relative;
}

.highlight-badge {
    display: inline-block;
    background: var(--cor-destaque);
    color: var(--cor-principal);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--cor-destaque);
    text-shadow: 2px 2px 8px rgba(156, 5, 5, 0.3);
}

/* Headers Padronizados para todas as Seções */
.section-header {
    margin-bottom: 40px;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--cor-principal);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 15px;
    opacity: 0.7;
}

.section-main-title {
    font-size: 3rem;
    font-family: 'Exo', sans-serif;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--cor-principal);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cccccc;
    opacity: 0.8;
}

/* Responsivo - Headers */
@media (max-width: 992px) {
    .section-main-title {
        font-size: 2.5rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .section-label {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
    
    .section-main-title {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .section-main-title {
        font-size: 1.5rem;
    }
    
    .section-description {
        font-size: 0.9rem;
    }
}

.highlight-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(156, 5, 5, 0.3);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.highlight-card:hover {
    transform: translateY(-10px);
    border-color: var(--cor-destaque);
    box-shadow: 0 10px 30px rgba(156, 5, 5, 0.2);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.highlight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--cor-destaque);
}

.highlight-card p {
    color: #b0b0b0;
    margin-bottom: 20px;
}

/* Seção de Conteúdo */
.content-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.events-grid {
    display: grid;
    gap: 20px;
}

.event-card {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--cor-destaque);
    padding: 25px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.event-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--cor-destaque);
    color: var(--cor-principal);
    padding: 15px;
    border-radius: 10px;
    min-width: 80px;
}

.event-date .day {
    font-size: 2rem;
    font-weight: 700;
}

.event-date .month {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.event-info h3 {
    color: var(--cor-destaque);
    margin-bottom: 10px;
}

.event-info p {
    color: #b0b0b0;
}

/* Chat IA */
.ai-chat {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 350px;
    height: 500px;
    background: rgba(20, 20, 20, 0.98);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    display: none;
    flex-direction: column;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: slideInUp 0.3s ease;
    transition: all 0.3s ease;
}

.ai-chat.front {
    z-index: 1001;
}

.ai-chat.active {
    display: flex;
}

.ai-chat.maximized {
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    border-radius: 10px;
}

.ai-chat-header {
    background: #333333;
    color: var(--cor-principal);
    padding: 15px;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    gap: 10px;
}

.ai-chat.maximized .ai-chat-header {
    padding: 20px 30px;
}

.ai-chat-header .header-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.ai-chat-header .header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ai-chat-header img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
}

.ai-chat.maximized .ai-chat-header img {
    width: 60px;
    height: 60px;
}

.ai-chat-header span {
    font-size: 1rem;
}

.ai-chat.maximized .ai-chat-header span {
    font-size: 1.3rem;
}

.ai-chat-maximize {
    background: none;
    border: none;
    color: var(--cor-principal);
    font-size: 1.3rem;
    cursor: pointer;
    transition: transform 0.2s;
    padding: 0 10px;
}

.ai-chat-maximize:hover {
    transform: scale(1.2);
}

.ai-chat-close {
    background: none;
    border: none;
    color: var(--cor-principal);
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.ai-chat-close:hover {
    transform: rotate(90deg);
}

.ai-chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.ai-message {
    background: rgba(200, 200, 200, 0.1);
    border-left: 3px solid #e8e8e8;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.user-message {
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #fff;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    text-align: right;
}

.ai-chat-footer {
    display: flex;
    gap: 10px;
    padding: 15px;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
}

#chatInput {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #666666;
    color: var(--cor-principal);
    padding: 10px 15px;
    border-radius: 20px;
    outline: none;
}

#chatInput:focus {
    border-color: #e8e8e8;
}

#chatSend {
    background: #555555;
    color: var(--cor-principal);
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.2s;
}

#chatSend:hover {
    transform: scale(1.1);
    background: #666666;
}

/* === Floating Radio Player === */
.radio-button {
    position: fixed;
    bottom: 30px;
    right: 140px;
    width: 70px;
    height: 70px;
    background: var(--cor-principal);
    border: 3px solid #e8e8e8;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 998;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.radio-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.radio-player-float {
    position: fixed;
    bottom: 110px;
    right: 140px;
    width: 320px;
    background: rgba(20, 20, 20, 0.98);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 998;
    transform: translateY(500px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.radio-player-float.front {
    z-index: 1001;
}

.radio-player-float.active {
    transform: translateY(0);
    opacity: 1;
}

.radio-header {
    background: rgba(0, 0, 0, 0.95);
    color: var(--cor-principal);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.radio-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.radio-close {
    background: transparent;
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--cor-principal);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.radio-close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--cor-principal);
    transform: rotate(90deg);
}

.radio-body {
    padding: 20px;
}

#radioYoutubePlayer {
    display: none;
}

.radio-song-title {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--cor-principal);
    margin-bottom: 15px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
}

.radio-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-bottom: 20px;
    overflow: hidden;
}

.radio-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    width: 0%;
    transition: width 0.1s linear;
    border-radius: 2px;
}

.radio-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.radio-control-btn {
    background: transparent;
    border: 2px solid var(--cor-principal);
    color: var(--cor-principal);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.2);
}

.radio-control-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--cor-principal);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.radio-control-btn.play-btn {
    width: 55px;
    height: 55px;
    font-size: 22px;
}

.radio-control-btn:active {
    transform: translateY(0);
}

/* === Chat Button === */
.ai-chat-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: var(--cor-principal);
    border: 3px solid #e8e8e8;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
    padding: 0;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-chat-button .chat-bubble {
    position: absolute;
    bottom: 80px;
    right: 0;
    background: white;
    color: #333;
    padding: 12px 18px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    font-weight: 500;
    display: none;
    animation: fadeInUp 0.5s ease;
    max-width: 250px;
    min-width: 180px;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.4;
}

.ai-chat-button .chat-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

.ai-chat-button.show-bubble .chat-bubble {
    display: block;
}

.ai-chat-button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.ai-chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 7px 25px rgba(0, 0, 0, 0.3);
    border-color: #d0d0d0;
}

/* Indicador de Scroll */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: fadeInUp 1s ease 2s both;
    cursor: pointer;
    z-index: 10;
}

.scroll-indicator span {
    display: block;
    color: var(--cor-principal);
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.scroll-arrow {
    font-size: 2rem;
    color: var(--cor-principal);
    animation: bounce 2s infinite;
}

.scroll-indicator:hover .scroll-arrow {
    color: #e8e8e8;
}

/* Seção de Carrossel de Banners */
.carousel-section {
    position: relative;
    height: 87vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    padding: 40px;
}

.carousel-content-wrapper {
    max-width: 1400px;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.carousel-content-wrapper .section-header {
    text-align: center;
    margin-bottom: 30px;
    flex-shrink: 0;
}

.carousel-wrapper-full {
    position: relative;
    width: 100%;
    flex: 1;
    min-height: 0;
}

.carousel-banners {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    overflow: hidden;
    padding: 20px;
}

.banner-image {
    max-width: 95%;
    max-height: 95%;
    min-width: 80%;
    min-height: 80%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.8)) 
            drop-shadow(0 10px 30px rgba(0, 0, 0, 0.6));
    animation: floatImage 4s ease-in-out infinite;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.banner-image:hover {
    transform: scale(1.02);
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.02);
    }
}

/* Modal de Zoom da Imagem */
.image-zoom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.image-zoom-modal.active {
    opacity: 1;
    visibility: visible;
}

.image-zoom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.image-zoom-content {
    position: relative;
    z-index: 10000;
    max-width: 95vw;
    max-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-zoom-img {
    max-width: 100%;
    max-height: 95vh;
    width: auto;
    height: auto;
    object-fit: contain;
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.9);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.image-zoom-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10001;
}

.image-zoom-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #e8e8e8;
    color: var(--cor-principal);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev {
    left: 40px;
}

.carousel-control.next {
    right: 40px;
}

.carousel-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 100;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid #e8e8e8;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #e8e8e8;
    transform: scale(1.3);
}

/* Seção Devocional */
.devocional-section {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #151515 50%, #0a0a0a 100%);
    padding: 80px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.devocional-container {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    animation: fadeInUp 0.8s ease;
}

.devocional-content {
    color: var(--cor-principal);
}

.devocional-verse {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid var(--cor-principal);
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.verse-text {
    font-size: 1.3rem;
    line-height: 1.9;
    font-style: italic;
    color: var(--cor-principal);
    margin-bottom: 20px;
}

.verse-reference {
    font-size: 1.1rem;
    color: var(--cor-principal);
    font-weight: 700;
    text-align: right;
    opacity: 0.8;
}

.devocional-reflection,
.devocional-prayer {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.devocional-reflection h3,
.devocional-prayer h3 {
    font-size: 1.5rem;
    color: var(--cor-principal);
    margin-bottom: 15px;
    font-family: 'Exo', sans-serif;
    font-weight: 700;
}

.devocional-reflection p,
.devocional-prayer p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
}

.devocional-image {
    position: relative;
    height: 600px;
    border-radius: 30px;
    overflow: hidden;
    background: url('../assets/background.png') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.bible-icon {
    font-size: 15rem;
    opacity: 0.3;
    animation: pulse 3s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.3));
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.05); opacity: 0.5; }
}

/* Responsivo Devocional */
@media (max-width: 992px) {
    .devocional-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .devocional-title {
        font-size: 2.5rem;
    }
    
    .devocional-image {
        height: 400px;
    }
    
    .bible-icon {
        font-size: 10rem;
    }
}

@media (max-width: 768px) {
    .devocional-section {
        padding: 60px 20px;
    }
    
    .devocional-title {
        font-size: 2rem;
    }
    
    .verse-text {
        font-size: 1.1rem;
    }
    
    .devocional-verse {
        padding: 25px;
    }
}

/* Seção Culto Online */
.culto-online-section {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        radial-gradient(ellipse at top, rgba(255, 255, 255, 0.03) 0%, transparent 60%),
        radial-gradient(ellipse at bottom, rgba(255, 255, 255, 0.02) 0%, transparent 60%),
        linear-gradient(135deg, #000000 0%, #0f0f0f 50%, #000000 100%);
    padding: 80px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.culto-online-container {
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    animation: fadeInUp 0.8s ease;
}

.culto-online-container .section-header {
    animation: fadeInUp 0.6s ease;
}

.culto-video-preview {
    animation: fadeInUp 0.8s ease 0.2s both;
}

.culto-buttons {
    animation: fadeInUp 0.8s ease 0.4s both;
}

.culto-online-container .section-header {
    text-align: center;
}

.culto-online-content {
    color: var(--cor-principal);
    display: flex;
    justify-content: center;
}

.culto-schedule {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.schedule-icon {
    font-size: 2.5rem;
}

.schedule-info h4 {
    font-size: 1.3rem;
    color: var(--cor-principal);
    margin-bottom: 5px;
    font-weight: 700;
}

.schedule-info p {
    font-size: 1rem;
    color: #cccccc;
}

.culto-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.culto-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    font-family: 'Exo', sans-serif;
}

.culto-btn.primary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--cor-principal);
    color: var(--cor-principal);
    backdrop-filter: blur(10px);
}

.culto-btn.primary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.culto-btn.secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--cor-principal);
}

.culto-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--cor-principal);
}

.btn-icon {
    font-size: 1.3rem;
}

.culto-video-preview {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.video-frame {
    position: relative;
    width: 100%;
    height: 500px;
    background: #000000;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.video-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 30px;
}

.video-frame:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(255, 255, 255, 0.1);
}

/* Seção Localização */
.localizacao-section {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.015) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.015) 0%, transparent 50%),
        linear-gradient(180deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    padding: 80px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.localizacao-container {
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
    animation: fadeInUp 0.8s ease;
}

.localizacao-info {
    animation: fadeInUp 0.8s ease 0.2s both;
}

.localizacao-mapa {
    animation: fadeInUp 0.8s ease 0.4s both;
}

.localizacao-container .section-header {
    text-align: center;
}

.localizacao-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.localizacao-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.info-icon {
    font-size: 2.5rem;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-text h4 {
    font-size: 1.3rem;
    color: var(--cor-principal);
    margin-bottom: 10px;
    font-family: 'Exo', sans-serif;
    font-weight: 700;
}

.info-text p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
}

.route-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    font-family: 'Exo', sans-serif;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--cor-principal);
    color: var(--cor-principal);
    backdrop-filter: blur(10px);
    margin-top: 10px;
}

.route-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.route-btn .btn-icon {
    font-size: 1.3rem;
}

.localizacao-mapa {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.localizacao-mapa iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsivo Localização */
@media (max-width: 992px) {
    .localizacao-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .localizacao-mapa {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .localizacao-section {
        padding: 60px 20px;
        min-height: auto;
    }
    
    .info-card {
        padding: 20px;
        gap: 15px;
    }
    
    .info-icon {
        font-size: 2rem;
        min-width: 50px;
    }
    
    .info-text h4 {
        font-size: 1.1rem;
    }
    
    .info-text p {
        font-size: 0.95rem;
    }
    
    .route-btn {
        padding: 15px 30px;
        font-size: 0.95rem;
    }
    
    .localizacao-mapa {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .localizacao-section {
        padding: 40px 15px;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .route-btn {
        padding: 12px 25px;
        font-size: 0.85rem;
    }
    
    .localizacao-mapa {
        height: 300px;
        border-radius: 20px;
    }
}

/* Responsivo Culto Online */
@media (max-width: 992px) {
    .culto-online-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .culto-title {
        font-size: 2.5rem;
    }
    
    .video-frame {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .culto-online-section {
        padding: 60px 20px;
    }
    
    .culto-title {
        font-size: 2rem;
    }
    
    .culto-description {
        font-size: 1rem;
    }
    
    .culto-buttons {
        flex-direction: column;
    }
    
    .culto-btn {
        width: 100%;
        justify-content: center;
    }
    
    .video-frame {
        height: 250px;
    }
    
    .play-button {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

@media (max-width: 992px) {
    .carousel-content-wrapper .section-header {
        margin-bottom: 30px;
    }
    
    .carousel-wrapper-full {
        height: 70vh;
    }
    
    .banner-content h2 {
        font-size: 3rem;
    }
    
    .banner-icon {
        font-size: 6rem;
    }
}

@media (max-width: 768px) {
    .carousel-section {
        padding: 60px 20px;
    }
    
    .carousel-wrapper-full {
        height: 60vh;
    }
    
    .banner-content {
        padding: 20px;
    }
    
    .banner-content h2 {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .banner-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .banner-icon {
        font-size: 4rem;
        margin-bottom: 20px;
    }
    
    .banner-btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
    
    .carousel-control {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }
    
    .carousel-control.prev {
        left: 20px;
    }
    
    .carousel-control.next {
        right: 20px;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .carousel-wrapper-full {
        height: 50vh;
    }
    
    .banner-content h2 {
        font-size: 1.5rem;
    }
    
    .banner-content p {
        font-size: 0.9rem;
    }
    
    .banner-icon {
        font-size: 3rem;
    }
    
    .carousel-control {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .carousel-control.prev {
        left: 10px;
    }
    
    .carousel-control.next {
        right: 10px;
    }
}

/* Seção Rádio Gospel */
.radio-section {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 70%),
        linear-gradient(135deg, #0a0a0a 0%, #000000 50%, #0a0a0a 100%);
    padding: 80px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.radio-container {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    animation: fadeInUp 0.8s ease;
}

.radio-container .section-header {
    text-align: center;
}

.radio-player {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

#radioYoutubePlayer {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
    background: #000000;
}

.radio-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.radio-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--cor-principal);
}

.radio-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--cor-principal);
    transform: scale(1.1);
}

.radio-btn.radio-play {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
}

.radio-btn.radio-play:hover {
    background: rgba(255, 255, 255, 0.25);
}

.radio-btn svg {
    fill: var(--cor-principal);
}

.radio-info {
    text-align: center;
}

.radio-current-song {
    font-size: 1.1rem;
    color: var(--cor-principal);
    font-weight: 600;
    margin-bottom: 15px;
    min-height: 28px;
}

.radio-progress {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.radio-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--cor-principal), #ffffff);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 3px;
}

.radio-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

.feature-card p {
    color: #cccccc;
    font-size: 0.95rem;
    margin: 0;
}

/* Responsivo Rádio */
@media (max-width: 768px) {
    .radio-section {
        padding: 60px 20px;
    }
    
    #radioYoutubePlayer {
        height: 300px;
    }
    
    .radio-btn {
        width: 50px;
        height: 50px;
    }
    
    .radio-btn.radio-play {
        width: 70px;
        height: 70px;
    }
    
    .radio-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .radio-section {
        padding: 40px 15px;
    }
    
    #radioYoutubePlayer {
        height: 250px;
    }
    
    .radio-player {
        padding: 20px;
    }
    
    .radio-controls {
        gap: 15px;
    }
    
    .radio-btn {
        width: 45px;
        height: 45px;
    }
    
    .radio-btn.radio-play {
        width: 60px;
        height: 60px;
    }
    
    .radio-current-song {
        font-size: 0.95rem;
    }
}

/* Player de Áudio Flutuante */
.audio-player {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 350px;
    max-height: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 998;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.audio-player.active {
    max-height: 300px;
    opacity: 1;
}

.audio-player-header {
    background: rgba(0, 0, 0, 0.3);
    color: var(--cor-principal);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.audio-player-header .header-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
}

.audio-icon {
    font-size: 1.5rem;
}

.audio-close {
    background: none;
    border: none;
    color: var(--cor-principal);
    font-size: 1.3rem;
    cursor: pointer;
    transition: transform 0.2s;
    padding: 5px;
}

.audio-close:hover {
    transform: rotate(90deg);
}

.audio-player-body {
    padding: 20px;
}

.audio-current-song {
    color: var(--cor-principal);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    min-height: 40px;
    line-height: 1.4;
}

.audio-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 20px;
}

.audio-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--cor-principal), #ffffff);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.audio-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.audio-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--cor-principal);
}

.audio-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--cor-principal);
    transform: scale(1.1);
}

.audio-btn.audio-play {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.15);
}

.audio-btn svg {
    fill: var(--cor-principal);
}

.audio-player-button {
    position: fixed;
    bottom: 140px;
    left: 30px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 3px solid var(--cor-principal);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.audio-player-button:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
}

.audio-button-icon {
    font-size: 2rem;
    animation: pulse 2s infinite;
}

/* Responsivo Audio Player */
@media (max-width: 768px) {
    .audio-player {
        width: 90%;
        left: 5%;
        bottom: 20px;
    }
    
    .audio-player-button {
        width: 60px;
        height: 60px;
        bottom: 110px;
        left: 20px;
    }
    
    .audio-button-icon {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .audio-player {
        width: calc(100% - 30px);
        left: 15px;
        bottom: 15px;
    }
    
    .audio-player-button {
        width: 55px;
        height: 55px;
        bottom: 95px;
        left: 15px;
    }
    
    .audio-player-body {
        padding: 15px;
    }
    
    .audio-btn {
        width: 40px;
        height: 40px;
    }
    
    .audio-btn.audio-play {
        width: 50px;
        height: 50px;
    }
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section {
    color: var(--cor-principal);
}

.footer-about {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
}

.footer-description {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    color: var(--cor-principal);
}

.social-link svg {
    fill: var(--cor-principal);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--cor-principal);
    transform: translateY(-3px);
}

.social-link:hover svg {
    fill: var(--cor-principal);
}

.footer-section h4 {
    color: var(--cor-principal);
    font-family: 'Exo', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--cor-principal);
    transform: translateX(5px);
}

.footer-schedule {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-schedule li {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.schedule-day {
    color: var(--cor-principal);
    font-weight: 600;
    font-size: 0.95rem;
}

.schedule-time {
    color: #cccccc;
    font-size: 0.9rem;
}

.footer-address {
    color: #cccccc;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.footer-map-btn {
    display: inline-block;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: var(--cor-principal);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-map-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--cor-principal);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-credits {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Responsivo Footer */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    
    .footer-about {
        align-items: center;
    }
    
    .footer-logo {
        height: 70px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-section h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-logo {
        height: 60px;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

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

/* ========================================
   PÁGINAS DE SEÇÃO - Layout Customizado
   ======================================== */

.section-hero-page {
    min-height: 60vh;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

.section-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumb-nav {
    margin-bottom: 30px;
    font-size: 14px;
}

.breadcrumb-link {
    color: #D4AF37;
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb-link:hover {
    opacity: 0.8;
}

.breadcrumb-separator {
    color: #666;
    margin: 0 10px;
}

.breadcrumb-current {
    color: #fff;
}

.section-icon-large {
    font-size: 5rem;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.section-page-title {
    font-family: 'Exo', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.section-page-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.section-content-area {
    padding: 80px 0;
    background: #f5f5f5;
    min-height: 50vh;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.content-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.empty-content {
    text-align: center;
    padding: 100px 40px;
    background: #fff;
    border-radius: 15px;
}

.empty-icon {
    font-size: 6rem;
    opacity: 0.3;
    margin-bottom: 30px;
}

.empty-content h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
}

.empty-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.content-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.content-card-title {
    font-size: 1.8rem;
    color: #D4AF37;
    margin-bottom: 15px;
    font-weight: 600;
}

.content-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #666;
}

.content-excerpt {
    color: #333;
    line-height: 1.8;
    margin-bottom: 25px;
}

.content-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.gallery-thumb {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-thumb:hover {
    transform: scale(1.05);
}

.btn-read-more {
    display: inline-block;
    padding: 12px 30px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background 0.3s;
}

.btn-read-more:hover {
    background: #D4AF37;
}

.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.sidebar-card.card-highlight {
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    color: #fff;
}

.sidebar-card-header {
    padding: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.sidebar-card.card-highlight .sidebar-card-header {
    border-bottom-color: rgba(255,255,255,0.2);
}

.sidebar-card-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.sidebar-card-body {
    padding: 20px;
}

.sidebar-card-body p {
    margin-bottom: 15px;
    opacity: 0.9;
}

.sidebar-links {
    display: flex;
    flex-direction: column;
}

.sidebar-link {
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s, padding-left 0.3s;
}

.sidebar-link:last-child {
    border-bottom: none;
}

.sidebar-link:hover {
    background: #f8f8f8;
    padding-left: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 35px;
    background: #D4AF37;
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    display: block;
    width: 100%;
    padding: 12px;
    background: #000;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.sidebar-card.card-highlight .btn-secondary {
    background: rgba(0,0,0,0.3);
}

.sidebar-card.card-highlight .btn-secondary:hover {
    background: rgba(0,0,0,0.5);
}

/* Responsividade */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        padding: 40px;
        transition: left 0.3s ease;
        border-right: 1px solid #e8e8e8;
    }

    .nav.active {
        left: 0;
    }

    .nav-link {
        font-size: 20px;
        width: 100%;
        text-align: left;
    }

    .header {
        padding: 15px 20px;
    }

    .hero-title-exo {
        font-size: 22px;
        padding: 0 20px;
    }

    .hero-animated-text {
        font-size: 36px !important;
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2rem;
        padding: 0 20px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
    
    /* Páginas de seção - Mobile */
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-page-title {
        font-size: 2rem;
    }
    
    .content-card {
        padding: 25px;
    }
    
    .content-gallery {
        grid-template-columns: 1fr;
    }
    
    .content-sidebar {
        order: -1;
    }
        padding: 0 20px;
    }

    .hero-buttons {
        flex-direction: column;
        padding: 0 20px;
    }

    .logo {
        height: 72px;
    }

    .header {
        padding: 8px 15px;
    }

    .highlight-content {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }

    .highlight-card {
        padding: 30px 20px;
    }

    .ai-chat {
        width: calc(100% - 40px);
        max-width: 350px;
        right: 20px;
        left: auto;
        bottom: 90px;
    }

    .radio-button {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 90px;
    }

    .radio-player-float {
        width: calc(100% - 40px);
        max-width: 320px;
        bottom: 80px;
        right: 20px;
        left: auto;
    }

    .radio-header h3 {
        font-size: 14px;
    }

    .radio-song-title {
        font-size: 13px;
        height: 35px;
    }

    .radio-control-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .radio-control-btn.play-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .ai-chat-button {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

    .section-title {
        font-size: 1.8rem;
        padding: 0 20px;
    }

    .container {
        padding: 0 15px;
    }

    .event-card {
        flex-direction: column;
        text-align: center;
    }

    .event-date {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title-exo {
        font-size: 18px;
        padding: 0 15px;
    }

    .hero-animated-text {
        font-size: 28px !important;
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

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

    .logo {
        height: 56px;
    }

    .header {
        padding: 5px 10px;
    }
    
    .logo {
        height: 55px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .highlight-card h3 {
        font-size: 1.2rem;
    }

    .card-icon {
        font-size: 2.5rem;
    }
}

/* Responsividade adicional para carrossel */
@media (max-width: 992px) {
    .carousel-section {
        padding: 60px 30px;
    }
    
    .carousel-wrapper-full {
        height: 70vh;
    }
    
    .banner-content h2 {
        font-size: 3rem;
    }
    
    .banner-icon {
        font-size: 6rem;
    }
}

@media (max-width: 768px) {
    .carousel-wrapper-full {
        height: 60vh;
    }
    
    .banner-content {
        padding: 20px;
    }
    
    .banner-content h2 {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .banner-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .banner-icon {
        font-size: 4rem;
        margin-bottom: 20px;
    }
    
    .banner-btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
    
    .carousel-control {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .carousel-wrapper-full {
        height: 50vh;
    }
    
    .banner-content h2 {
        font-size: 1.5rem;
    }
    
    .banner-content p {
        font-size: 0.9rem;
    }
    
    .banner-icon {
        font-size: 3rem;
    }
    
    .carousel-control {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .carousel-control.prev {
        left: 10px;
    }
    
    .carousel-control.next {
        right: 10px;
    }
}

/* Responsividade adicional para devocional */
@media (max-width: 992px) {
    .devocional-section {
        padding: 60px 30px;
    }
    
    .verse-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .devocional-section {
        padding: 40px 15px;
    }
    
    .verse-text {
        font-size: 0.95rem;
    }
    
    .devocional-verse {
        padding: 20px;
    }
    
    .devocional-reflection,
    .devocional-prayer {
        padding: 15px;
    }
    
    .devocional-image {
        height: 250px;
    }
    
    .bible-icon {
        font-size: 6rem;
    }
}

/* Responsividade adicional para culto online */
@media (max-width: 992px) {
    .culto-online-section {
        padding: 60px 30px;
    }
    
    .video-frame {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .video-frame {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .culto-online-section {
        padding: 40px 15px;
    }
    
    .culto-btn {
        padding: 12px 25px;
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
    
    .video-frame {
        height: 220px;
        border-radius: 20px;
    }
    
    .video-frame iframe {
        border-radius: 20px;
    }
}

/* Responsividade para chat IA */
@media (max-width: 768px) {
    .ai-chat-button {
        width: 70px;
        height: 70px;
        bottom: 20px;
        right: 20px;
    }
    
    .ai-chat-button img {
        width: 50px;
        height: 50px;
    }
    
    .ai-chat {
        width: 100%;
        height: calc(100vh - 80px);
        max-width: 100%;
        max-height: calc(100vh - 80px);
        bottom: 0;
        right: 0;
        left: 0;
        border-radius: 15px 15px 0 0;
    }
    
    .ai-chat.maximized {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
    
    .ai-chat-header {
        padding: 15px;
    }
    
    .ai-chat-header img {
        width: 50px;
        height: 50px;
    }
    
    .ai-chat-body {
        font-size: 0.9rem;
    }
    
    .ai-chat-footer input {
        font-size: 0.9rem;
        padding: 12px;
    }
    
    .ai-chat-footer button {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .radio-button {
        width: 45px;
        height: 45px;
        font-size: 20px;
        bottom: 15px;
        right: 75px;
    }

    .radio-player-float {
        width: calc(100vw - 30px);
        max-width: none;
        right: 15px;
        left: 15px;
        bottom: 70px;
    }

    .radio-header {
        padding: 12px 15px;
    }

    .radio-header h3 {
        font-size: 13px;
    }

    .radio-body {
        padding: 15px;
    }

    .radio-song-title {
        font-size: 12px;
        height: 30px;
        margin-bottom: 12px;
    }

    .radio-control-btn {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .radio-control-btn.play-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .ai-chat-button {
        width: 60px;
        height: 60px;
        bottom: 15px;
        right: 15px;
        border-width: 2px;
    }
    
    .ai-chat-button img {
        width: 45px;
        height: 45px;
    }
    
    .ai-chat-header {
        padding: 12px;
    }
    
    .ai-chat-header span {
        font-size: 0.9rem;
    }
    
    .ai-chat-header img {
        width: 40px;
        height: 40px;
    }
}
