/* ==================================
   ESTILOS ESPECÍFICOS PARA PÁGINA DE SERMÕES
   ================================== */

/* Estilos Gerais com Sistema de Espaçamento */
:root {
    /* Cores */
  --primary-color: #8b0000;
    --primary-dark: #660000;
    --secondary-color: #f8c537;
    --accent-color: #f8c471;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #e5ebf0;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    --transition: all 0.3s ease;

    /* Tipografia */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Playfair Display', serif;

    /* Espaçamentos baseados em escala 8px */
    --space-xxs: 0.25rem;
    /* 4px */
    --space-xs: 0.5rem;
    /* 8px */
    --space-sm: 1rem;
    /* 16px */
    --space-md: 1.5rem;
    /* 24px */
    --space-lg: 2rem;
    /* 32px */
    --space-xl: 3rem;
    /* 48px */
    --space-xxl: 4rem;
    /* 64px */
    --space-xxxl: 5rem;
    /* 80px */

    /* Espaçamentos para seções */
    --section-padding: var(--space-xxxl) var(--space-md);
    --section-padding-sm: var(--space-xl) var(--space-md);

    /* Efeitos */
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-color);
    background-color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}


   /*  ===============================
       Enhanced NavBar
   ================================================ */
   :root {
       --primary-color: #8b0000;
       --secondary-color: #660000;
       --accent-color: #f8c471;
       --text-light: #ffffff;
       --navbar-bg: rgba(103, 42, 30, 0.95);
   }

   .navbar {
       background-color: rgba(103, 42, 30, 0.85);
       /* Transparência inicial */
       padding: 1rem 0;
       transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
       /* Easing mais suave */
       box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
       backdrop-filter: blur(10px);
       -webkit-backdrop-filter: blur(10px);
       transform: translateY(0);
       opacity: 1;
   }

   .navbar.scrolled {
       background-color: rgba(103, 42, 30, 0.95);
       /* Menos transparente ao rolar */
       padding: 0.7rem 0;
       box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
   }

   .navbar.hidden {
       transform: translateY(-100%);
       opacity: 0;
       pointer-events: none;
       /* Impede interação quando escondido */
   }

   .navbar-brand {
       color: var(--accent-color);
       display: flex;
       align-items: center;
       font-family: 'Playfair Display', serif;
       font-size: 1.5rem;
       font-weight: 700;
       letter-spacing: 0.5px;
       transition: all 0.3s ease;
   }

   .navbar-brand img {
       height: 40px;
       width: auto;
       margin-right: 12px;
       transition: all 0.3s ease;
   }

   .navbar-brand:hover {
       color: var(--text-light);
       transform: translateY(-1px);
   }

   .navbar-nav {
       gap: 1.5rem;
   }

   .nav-link {
       color: var(--text-light) !important;
       font-size: 1.1rem;
       font-weight: 500;
       position: relative;
       padding: 0.5rem 0;
       margin: 0 0.5rem;
       transition: all 0.3s ease;
   }

   .nav-link::after {
       content: '';
       position: absolute;
       width: 0;
       height: 3px;
       background: var(--accent-color);
       bottom: 0;
       left: 50%;
       transform: translateX(-50%);
       transition: width 0.3s ease, opacity 0.3s ease;
       opacity: 0;
       border-radius: 3px;
   }

   .nav-link:hover,
   .nav-link:focus {
       color: var(--accent-color) !important;
   }

   .nav-link:hover::after,
   .nav-link:focus::after {
       width: 100%;
       opacity: 1;
   }

   .nav-link.active {
       color: var(--accent-color) !important;
       font-weight: 600;
   }

   .nav-link.active::after {
       width: 100%;
       opacity: 1;
   }

   .navbar-toggler {
       border: none;
       outline: none;
       padding: 0.5rem;
       transition: all 0.3s ease;
   }

   .navbar-toggler:focus {
       box-shadow: 0 0 0 3px rgba(248, 196, 113, 0.3);
   }

   .navbar-toggler-icon {
       background-image: none;
       font-size: 1.5rem;
       color: var(--text-light);
       display: flex;
       align-items: center;
       justify-content: center;
       transition: all 0.3s ease;
   }

   .dropdown-menu {
       background-color: var(--navbar-bg);
       border: none;
       box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
       border-radius: 0.5rem;
       overflow: hidden;
   }

   .dropdown-item {
       color: var(--text-light);
       padding: 0.75rem 1.5rem;
       transition: all 0.2s ease;
   }

   .dropdown-item:hover,
   .dropdown-item:focus {
       background-color: var(--secondary-color);
       color: var(--accent-color);
   }

   .btn-live {
       border-radius: 50px;
       padding: 0.5rem 1.25rem;
       font-weight: 600;
       transition: all 0.3s ease;
       border-width: 2px;
   }

   .btn-live:hover {
       background-color: transparent;
       color: var(--text-light);
       transform: translateY(-2px);
   }

   /* Responsive adjustments */
   @media (max-width: 991.98px) {
       .navbar-collapse {
           background-color: var(--navbar-bg);
           padding: 1.5rem;
           margin-top: 0.5rem;
           border-radius: 0.5rem;
           box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
       }

       .navbar-nav {
           gap: 0.75rem;
       }

       .nav-link {
           padding: 0.75rem 0;
           margin: 0;
       }

       .dropdown-menu {
           margin-left: 1rem;
           margin-top: 0.5rem;
           width: calc(100% - 2rem);
       }

       .btn-live {
           margin-top: 1rem;
           width: 100%;
       }
   }


/* Hero Section */
.sermoes-hero {
    position: relative;
    height: 0vh;
    min-height: 500px;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.sermoes-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.sermoes-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1800px;
    padding: 0 20px;
}

.sermoes-hero .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.sermoes-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.sermoes-hero .hero-breadcrumbs {
    font-size: 0.9rem;
    text-align: center;
}

.sermoes-hero .hero-breadcrumbs a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
    text-align: center;
}

.sermoes-hero .hero-breadcrumbs a:hover {
    opacity: 0.8;
}

.sermoes-hero .hero-breadcrumbs-span {
    color: rgba(255, 255, 255, 0.8);
}


/* Section Header */
.section-header {
    text-align: center;
    margin-top: 3rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a2a6c;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 5rem;
}

/* Audio Player Main */
.audio-player-main {
    margin-top: 4rem;
    margin-bottom: 4rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.audio-player-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.player-container {
    padding: 2rem;
}

.player-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.player-info h3.player-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a2a6c;
    margin-bottom: 0.5rem;
}

.player-preacher {
    font-size: 1rem;
    color: #b21f1f;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.player-date {
    font-size: 0.9rem;
    color: #666;
}

.player-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-player-action {
    background: #f8f9fa;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-player-action:hover {
    background: #e9ecef;
    color: #1a2a6c;
}

/* Player Controls */
.player-controls {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.progress-time {
    font-size: 0.85rem;
    color: #666;
    min-width: 40px;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #1a2a6c, #b21f1f);
    border-radius: 3px;
    width: 30%;
    transition: width 0.1s linear;
}

.controls-main {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.btn-control {
    background: none;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-control:hover {
    background: #f8f9fa;
    color: #1a2a6c;
}

.btn-play {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f);
    color: white;
    box-shadow: 0 4px 15px rgba(26, 42, 108, 0.3);
}

.btn-play:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(26, 42, 108, 0.4);
    color: white;
}

.controls-secondary {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.volume-bar {
    width: 80px;
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.volume-fill {
    height: 100%;
    background: #1a2a6c;
    border-radius: 2px;
    width: 70%;
}

/* Sermões Grid */
.sermoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.sermao-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.sermao-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

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

.sermao-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sermao-card:hover .sermao-image img {
    transform: scale(1.05);
}

.sermao-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.sermao-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sermao-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a2a6c;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.sermao-preacher {
    font-size: 0.95rem;
    color: #b21f1f;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.sermao-date {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1rem;
}

.sermao-description {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex: 1;
}

.sermao-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-play-sermao {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-play-sermao:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 42, 108, 0.3);
}

.btn-sermao-action {
    background: #f8f9fa;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-sermao-action:hover {
    background: #e9ecef;
    color: #b21f1f;
}

/* Load More Button */
.load-more-container {
    display: flex;
    justify-content: center;
    margin: 3rem;
}

.btn-load-more {
    background: white;
    border: 2px solid #1a2a6c;
    color: #1a2a6c;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-load-more:hover {
    background: #1a2a6c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 42, 108, 0.3);
}

/* Recursos Section */
.recursos-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

.recursos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.recurso-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recurso-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.recurso-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.recurso-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a2a6c;
    margin-bottom: 1rem;
}

.recurso-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.recurso-link {
    color: #b21f1f;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.recurso-link:hover {
    color: #1a2a6c;
    gap: 0.7rem;
}

/* Responsividade */
@media (max-width: 992px) {
    .sermoes-hero .hero-title {
        font-size: 2.8rem;
    }

    .player-header {
        flex-direction: column;
        gap: 1rem;
    }

    .player-actions {
        align-self: flex-end;
    }
}

@media (max-width: 768px) {
    .sermoes-hero {
        height: 50vh;
        min-height: 400px;
    }

    .sermoes-hero .hero-title {
        font-size: 2.2rem;
    }

    .sermoes-hero .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .sermoes-grid {
        grid-template-columns: 1fr;
    }

    .player-container {
        padding: 1.5rem;
    }

    .controls-secondary {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .sermoes-hero .hero-title {
        font-size: 1.8rem;
    }

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

    .player-controls {
        gap: 1.5rem;
    }

    .controls-main {
        gap: 0.5rem;
    }

    .btn-control {
        width: 40px;
        height: 40px;
    }

    .btn-play {
        width: 50px;
        height: 50px;
    }
}


/* ================================================
             Estilos do Rodapé - Moderno e Profissional
========================================================= */
.site-footer {
    background: linear-gradient(135deg, #1a1f2e 0%, #0d111a 100%);
    color: #ffffff;
    padding: 4rem 0 0;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4a90e2, #8e54e9, #ff6b6b);
    z-index: 1;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1.3fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo img {
    width: 300px;
    height: 90px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    filter: brightness(0) invert(1);
}

.footer-logo:hover img {
    transform: scale(1.05);
}

.footer-mission {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Estilos ajustados para redes sociais na horizontal */
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: linear-gradient(135deg, #4a90e2, #8e54e9);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.footer-apps {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.app-download {
    display: block;
    text-decoration: none;
}

.app-icon {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    transition: all 0.3s ease;
    width: 180px;
}

.app-icon:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.app-icon i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #ffffff;
}

.app-icon .app-info {
    display: flex;
    flex-direction: column;
}

.app-icon .app-info span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.2;
}

.app-icon .app-info strong {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.2;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-links-column h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    color: #ffffff;
}

.footer-links-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #4a90e2, #8e54e9);
}

.footer-links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-column li {
    margin-bottom: 0.8rem;
}

.footer-links-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links-column a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #4a90e2;
    transition: width 0.3s ease;
}

.footer-links-column a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links-column a:hover::after {
    width: 100%;
}

.footer-right-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-contact {
    padding: 1rem 0;
}

.footer-contact h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    color: #ffffff;
}

.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #4a90e2, #8e54e9);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-item i {
    margin-right: 0.8rem;
    color: #4a90e2;
    font-size: 1rem;
    margin-top: 0.2rem;
}

.footer-map {
    position: relative;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    height: 250px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-legal {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-legal p {
    margin: 0.3rem 0;
}

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

.newsletter-form {
    display: flex;
    flex-direction: column;
}

.newsletter-form label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.input-group {
    display: flex;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.input-group input {
    flex: 1;
    padding: 0.7rem 1rem;
    border: none;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.9);
}

.input-group button {
    background: linear-gradient(135deg, #4a90e2, #8e54e9);
    color: white;
    border: none;
    padding: 0 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-group button:hover {
    background: linear-gradient(135deg, #3a7bc8, #7d44d9);
}

/* Responsividade */
@media (max-width: 1200px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-right-column {
        grid-column: span 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .map-container {
        height: 200px;
    }
}

@media (max-width: 992px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-right-column {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-newsletter {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .footer-links {
        grid-template-columns: 1fr;
    }

    .social-icons {
        flex-wrap: wrap;
    }

    .footer-apps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .app-icon {
        width: 100%;
        max-width: 160px;
    }
}


/* =================================
    Botão Voltar ao Topo
=====================================*/
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--light-color);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--box-shadow);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}


/* ==========================================================================
   Botões
   ========================================================================== */
#btn {
   border-radius: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.5rem 1.25rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 7px;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-color);
    border-color: var(--light-color);
}

.btn-primary:hover {
    background-color: #1a252f;
    border-color: #1a252f;
    color: var(--light-color);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-light {
    background-color: var(--light-color);
    color: var(--dark-color);
}

.btn-light:hover {
    background-color: #d5dbdb;
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--light-color);
    border-color: var(--light-color);
}

.btn-outline-light:hover {
    background-color: var(--light-color);
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}


/* Estilos para feedback visual dos botões ativos */
.btn-control.active,
.btn-player-action.active {
    color: #1a2a6c !important;
}

/* Estilo para card que está tocando */
.sermao-card.playing {
    border: 2px solid #1a2a6c;
    box-shadow: 0 8px 25px rgba(26, 42, 108, 0.2);
}

.sermao-card.playing .sermao-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 42, 108, 0.1), rgba(178, 31, 31, 0.1));
}

/* Animação para o ícone de play nos cards */
.btn-play-sermao i {
    transition: transform 0.2s ease;
}

.btn-play-sermao:hover i {
    transform: scale(1.1);
}

/* Estilo para botões de ação quando ativos */
.btn-sermao-action.active {
    color: #b21f1f !important;
}

/* Feedback visual para botões pressionados */
.btn-control:active,
.btn-player-action:active,
.btn-sermao-action:active {
    transform: scale(0.95);
}

/* Estilo para o botão de favorito quando ativo */
.btn-player-action .fas.fa-heart {
    color: #b21f1f;
}

/* Transições suaves para todos os botões */
.btn-control,
.btn-player-action,
.btn-sermao-action,
.btn-play-sermao {
    transition: all 0.2s ease;
}

/* Indicador de áudio tocando - onda sonora */
@keyframes soundWave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.5); }
}

.sermao-card.playing .sermao-duration {
    animation: soundWave 1s infinite;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f);
}