/* style.css - Estilos principais para IEPTT */

/* ==========================================================================
   Variáveis e Reset
   ========================================================================== */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #7f8c8d;
    --white: #fff;
    --black: #000;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --border-radius-lg: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    padding-top: 80px;
    /* Espaço para navbar fixa */
}

.high-contrast {
    --primary-color: #000;
    --secondary-color: #fff;
    --text-color: #000;
    --light-color: #fff;
    background-color: #fff !important;
    color: #000 !important;
}

.high-contrast .navbar,
.high-contrast .footer {
    background-color: #000 !important;
    color: #fff !important;
    border-bottom: 2px solid #fff;
}

.high-contrast a,
.high-contrast .btn {
    color: #000 !important;
    border-color: #000 !important;
}

/* ==========================================================================
   Tipografia
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

/* ==========================================================================
   Layout e Grid
   ========================================================================== */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

/* ==========================================================================
   Componentes
   ========================================================================== */

/* Barra de Acessibilidade */
.accessibility-bar {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 0.5rem 0;
    font-size: 0.875rem;
    position: relative;
    z-index: 1030;
}

.accessibility-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    list-style: none;
    margin: 0;
    padding: 0;
}

.accessibility-links li {
    margin-left: 1rem;
}

.accessibility-links a,
.accessibility-links button {
    color: var(--white);
    background: none;
    border: none;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
    font-size: inherit;
}

.accessibility-links a:hover,
.accessibility-links button:hover {
    opacity: 0.8;
}

/* ================================================
   Barra de Acessibilidade - Versão Mobile
   ================================================ */


/* Versão para telas muito pequenas (menos de 576px) */
@media (max-width: 575.98px) {
    .accessibility-bar {
        padding: 15px 0;
        padding-bottom: 3px;
   }
    
    .accessibility-links {
        gap: 1px;
    }
    
    .accessibility-links a, 
    .accessibility-links button {
        padding: 1px 6px;
        font-size: 14px;
    }
}

/* Versão para tablets em modo retrato (menos de 768px) */
@media (max-width: 767.98px) and (min-width: 576px) {
     .accessibility-bar {
        padding: 15px 0;
        padding-bottom: 3px;
   }

    .accessibility-links {
        justify-content: space-between;
    }

    .accessibility-links li {
        margin: 0 3px;
    }
}

/* Efeitos de alto contraste */
.high-contrast .accessibility-bar {
    background-color: #131313 !important;
    border-bottom: 2px solid #d3d2d2;
}

.high-contrast .accessibility-links a,
.high-contrast .accessibility-links button {
    color: #d3d2d2 !important;
    text-decoration: underline;
}

.high-contrast .accessibility-links a:hover,
.high-contrast .accessibility-links button:hover {
    background-color: #fff !important;
    color: #d3d2d2 !important;
}


/*=== 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 - Advanced
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 650px;
    margin-bottom: 0;
    overflow: hidden;
}

.carousel {
    height: 100%;
    border-radius: 0;
    box-shadow: none;
}

.carousel-inner,
.carousel-item {
    height: 100%;
}

/* Background styles */
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    transition: transform 10s cubic-bezier(0.25, 0.45, 0.45, 0.95);
}

.carousel-item.active .slide-bg {
    transform: scale(1);
}

.parallax {
    will-change: transform;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 100%);
}

/* Caption styles */
.carousel-caption {
    top: 0;
    bottom: auto;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 15%;
    text-align: center;
    transform: translateZ(0);
}

.caption-content {
    max-width: 1200px;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.3, 0.76, 0.3, 0.76);
}

.carousel-item.active .caption-content {
    opacity: 1;
    transform: translateY(0);
}

/* Text styles */
.carousel-caption h1,
.carousel-caption h2 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: #fff;
    letter-spacing: -0.5px;
}

.carousel-caption .lead {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    color: #fff;
}

/* Button styles */
.btn-3d {
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 0 0 rgba(0, 0, 0, 0.2),
        0 15px 30px 0 rgba(0, 0, 0, 0.2);
}

.btn-3d:hover {
    transform: translateY(-5px) translateZ(10px);
    box-shadow: 0 8px 0 0 rgba(0, 0, 0, 0.2),
        0 20px 40px 0 rgba(0, 0, 0, 0.25);
}

.btn-3d:active {
    transform: translateY(2px) translateZ(5px);
    box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.2);
}

/* Indicators - Advanced */
.carousel-indicators {
    position: absolute;
    bottom: 50px;
    left: 50%;
    border-radius: 50%;
    transform: translateX(-50%);
    margin: 0;
    padding: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.carousel-indicators button {
    width: auto;
    height: auto;
    text-indent: 0;
    background: transparent;
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    margin: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

.indicator-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: #fff;
    transition: width linear;
    transition-duration: inherit;
}

.carousel-indicators button.active .indicator-progress {
    width: 100%;
}

.indicator-label {
    position: relative;
    z-index: 1;
}

/* Navigation controls - Advanced */
.carousel-control-prev,
.carousel-control-next {
    width: 80px;
    height: 80px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 11;
}

.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 40px;
    height: 40px;
    background-size: 40px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

/* Play/Pause button */
.carousel-play-pause {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 11;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.carousel-play-pause:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: scale(1.1);
}

.carousel-play-pause i {
    font-size: 1.2rem;
}

/* ============================= 
Scroll down indicator 
========================================== */
.scroll-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.scroll-down:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(5px);
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 15px;
    margin-bottom: 10px;
    position: relative;
}

.scroller {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
        top: 5px;
        opacity: 1;
    }

    50% {
        top: 15px;
        opacity: 0.5;
    }

    100% {
        top: 5px;
        opacity: 1;
    }
}

/* Text animations */
.text-reveal {
    overflow: hidden;
}

.title-animate {
    animation-delay: 0.3s;
}

.subtitle-animate {
    animation-delay: 0.6s;
}

.btn-animate {
    animation-delay: 0.9s;
}

/* Animation classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

@keyframes rotateInDownLeft {
    from {
        transform-origin: left bottom;
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }

    to {
        transform-origin: left bottom;
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes rotateInUpRight {
    from {
        transform-origin: right bottom;
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }

    to {
        transform-origin: right bottom;
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.fadeInUp {
    animation-name: fadeInUp;
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

.zoomIn {
    animation-name: zoomIn;
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

.rotateInDownLeft {
    animation-name: rotateInDownLeft;
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

.rotateInUpRight {
    animation-name: rotateInUpRight;
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

/* Responsive adjustments */
@media (max-width: 1199.98px) {

    .carousel-caption h1,
    .carousel-caption h2 {
        font-size: 3.5rem;
    }

    .carousel-caption .lead {
        font-size: 1.5rem;
    }
}

@media (max-width: 991.98px) {
    .carousel-caption {
        padding: 0 10%;
    }

    .carousel-caption h1,
    .carousel-caption h2 {
        font-size: 2.8rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 60px;
        height: 60px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 30px;
        height: 30px;
        background-size: 30px;
    }
}

/* ==========================================================================
   Ajuste Específico para Mobile - Carrossel
   ========================================================================== */
@media (max-width: 767.98px) {
    .hero-section {
        height: 100vh;
        min-height: -webkit-fill-available;
        /* Preenche toda a tela disponível */
        max-height: 50vh;
        overflow: hidden;
        position: relative;
    }

    .carousel,
    .carousel-inner,
    .carousel-item {
        height: 100% !important;
        min-height: 100% !important;
    }

    /* Ajuste fino para o conteúdo do carrossel */
    .carousel-caption {
        top: 55%;
        width: 95%;
        padding: 15px;
        transform: translate(-50%, -50%);
    }

    /* Ajuste de texto para mobile */
    .carousel-caption h2 {
        font-size: 1.8rem !important;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }

    .carousel-caption .lead {
        font-size: 1.2rem !important;
        margin-bottom: 1rem;
    }

    /* Correção para iOS */
    @supports (-webkit-touch-callout: none) {
        .hero-section {
            height: -webkit-fill-available;
        }
    }
}

/* ==========================================================================
   Ajustes Específicos para Vídeo no Mobile
   ========================================================================== */
@media (max-width: 767.98px) {
    .video-bg {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        transform: translate(-50%, -50%);
        object-fit: cover;
    }

    /* Correção para aspect ratio em alguns dispositivos */
    @media (max-aspect-ratio: 9/16) {
        .video-bg {
            width: 100%;
            height: auto;
        }
    }

    @media (min-aspect-ratio: 9/16) {
        .video-bg {
            width: auto;
            height: 100%;
        }
    }

    /* Ajuste extra para iOS */
    @supports (-webkit-touch-callout: none) {
        .video-bg {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
        }
    }

    /* Garantir que o overlay cubra todo o vídeo */
    .slide-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1;
    }

    /* Ajuste de conteúdo h1, h2, h3 (textos) sobre o vídeo */
    .carousel-caption {
        position: relative;
        z-index: 2;
        top: 40%;
        transform: translate(5%, -50%);
        width: 90%;
        text-align: center;
    }

    .carousel-caption h2 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .carousel-caption h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .btn-lg {
        padding: 0.6rem 1.2rem;
        font-size: 1rem;
    }
}


/* Ajuste extra para telas muito pequenas */
@media (max-width: 575.98px) {
    .carousel-caption {
        top: 50%;
    }

    .carousel-caption h2 {
        font-size: 1.5rem !important;
    }

    .carousel-caption .lead {
        font-size: 1rem !important;
    }

    .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {

    .carousel-caption h1,
    .carousel-caption h2 {
        font-size: 1.8rem;
    }

    .carousel-caption .lead {
        font-size: 1rem;
    }

    .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }

    .carousel-indicators {
        bottom: 20px;
    }

    .carousel-indicators button {
        padding: 5px 10px;
        font-size: 0.7rem;
    }

    .scroll-down {
        font-size: 0.8rem;
    }
}


/* ====================
Cards de Destaque 
======================================== */
.highlights-section {
    padding: 5rem 0;
}

.highlight-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
}


/* ========================================== 
 Novos Estilos para a Seção Sobre Nós 
 =====================================================*/
.about-section {
    /* Ajuste do padding vertical principal */
    padding-top: 5rem;
    /* 80px */
    padding-bottom: 5rem;
    /* 80px */
    background-color: #f9f9f9;
    position: relative;
    z-index: 1;
}

.about-bg-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

.cross-element {
    position: absolute;
    opacity: 0.03;
    color: var(--primary-color);
    font-size: 20rem;
}

.cross-1 {
    top: -5%;
    right: -5%;
    transform: rotate(15deg);
}

.cross-2 {
    bottom: -10%;
    left: -8%;
    transform: rotate(-10deg);
}

.light-effect {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.1) 0%, rgba(231, 76, 60, 0) 70%);
    top: -300px;
    right: -300px;
    z-index: -1;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-timeline {
    position: relative;
    padding-left: 30px;
    max-width: 500px;
    margin: 0 auto;
}

.timeline-progress {
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #e0e0e0;
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -30px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #fff;
    border: 3px solid var(--primary-color);
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item.active .timeline-dot {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.timeline-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.timeline-item.active .timeline-content {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.timeline-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--dark-color);
    margin-bottom: 0;
}

.mission-vision {
    margin: 2rem 0;
}

.mv-item {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.mv-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 3px;
}

.mv-item h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.feature-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.bg-primary-light {
    background-color: rgba(44, 62, 80, 0.1);
}

.bg-secondary-light {
    background-color: rgba(231, 76, 60, 0.1);
    color: var(--secondary-color) !important;
}

.bg-accent-light {
    background-color: rgba(52, 152, 219, 0.1);
    color: var(--accent-color) !important;
}

.feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.feature-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.2);
    position: absolute;
    bottom: 10px;
    right: 20px;
    line-height: 1;
}

/* Responsividade */
@media (max-width: 991.98px) {
    .about-section {
        text-align: center;
    }

    .mission-vision {
        text-align: left;
    }

    .about-actions {
        justify-content: center;
    }

    .about-timeline {
        margin-top: 3rem;
    }
}

@media (max-width: 767.98px) {
    .feature-card {
        text-align: center;
    }

    .feature-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .mv-item {
        justify-content: center;
    }
}


/* ==========================================================================
   Seção de Vídeo Premium
   ========================================================================== */
/* ==========================================================================
   Seção de Vídeo Premium
   ========================================================================== */
.video-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    isolation: isolate;
}

.video-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 75% 30%, rgba(231, 76, 60, 0.15) 0%, transparent 50%);
    z-index: -1;
}

.video-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
    aspect-ratio: 16/9;
    background: #000;
}

.video-container:hover {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale(1.02);
    box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.35);
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.video-play-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-button i {
    color: var(--white);
    font-size: 2rem;
    margin-left: 5px;
}

.video-content {
    position: relative;
    z-index: 1;
}

.video-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.video-content .lead {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.video-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.video-stat {
    position: relative;
    padding-left: 1.5rem;
}

.video-stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
}

.video-stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.video-stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.video-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.video-particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

/* Efeito de brilho sutil */
.video-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.2) 0%, transparent 70%);
    filter: blur(30px);
    z-index: -1;
}

/* Responsividade */
@media (max-width: 1199.98px) {
    .video-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 991.98px) {
    .video-section {
        padding: 6rem 0;
    }

    .video-content {
        text-align: center;
        margin-top: 3rem;
    }

    .video-stats {
        justify-content: center;
    }

    .video-play-button {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 767.98px) {
    .video-content h2 {
        font-size: 1.8rem;
    }

    .video-content .lead {
        font-size: 1.1rem;
    }

    .video-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .video-stat {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

@media (max-width: 575.98px) {
    .video-section {
        padding: 4rem 0;
    }

    .video-content h2 {
        font-size: 1.6rem;
    }

    .video-stat {
        flex: 0 0 100%;
    }

    .video-play-button {
        width: 60px;
        height: 60px;
    }

    .video-play-button i {
        font-size: 1.5rem;
    }
}

/* =====================================
   FIM Seção de Vídeo Premium
   ==================== */

/* ==========================================================================
   Seção de Liderança Premium
   ========================================================================== */
.leadership-section {
    padding: 6rem 0;
    /* 96px top e bottom */
    position: relative;
    background-color: #f8f9fa;
    overflow: hidden;
}

.leadership-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.leadership-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(231, 76, 60, 0.05);
    filter: blur(20px);
}

.leadership-particle.particle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.leadership-particle.particle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
}

.leadership-particle.particle-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    left: 10%;
}

.leadership-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(44, 62, 80, 0.1) 0%, rgba(44, 62, 80, 0) 70%);
    top: -300px;
    right: -300px;
    z-index: -1;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.text-highlight {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(231, 76, 60, 0.3);
    z-index: -1;
    transform: skew(-15deg);
}

.max-w-800 {
    max-width: 800px;
}

/* Cards de Líderes */
.leader-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    z-index: 1;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.leader-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 320px;
}

.leader-image {
    width: 100%;
    height: 100%;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.leader-card:hover .leader-image img {
    transform: scale(1.05);
}

.leader-social {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.leader-card:hover .leader-social {
    opacity: 1;
    transform: translateY(0);
}

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.leader-content {
    padding: 25px;
    position: relative;
}

.leader-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.8rem;
    color: var(--text-light);
}

.leader-role {
    background: rgba(231, 76, 60, 0.1);
    color: var(--secondary-color);
    padding: 3px 10px;
    border-radius: 30px;
    font-weight: 600;
}

.leader-experience {
    display: flex;
    align-items: center;
    gap: 5px;
}

.leader-experience::before {
    content: '•';
    color: var(--secondary-color);
    margin-right: 5px;
}

.leader-name {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 10px;
}

.leader-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px;
}

.leader-bio {
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.leader-cta {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 15px;
}

.btn-read-more {
    color: var(--primary-color);
    font-weight: 600;
    padding: 0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Card CTA */
.leader-card-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.leader-card-cta .leader-cta-content {
    padding: 30px;
}

.leader-card-cta .cta-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.2);
}

.leader-card-cta h3 {
    color: #fff;
    margin-bottom: 15px;
}

.leader-card-cta p {
    color: rgba(255, 255, 255, 0.8);
}

.leader-card-cta .btn {
    background: #fff;
    color: var(--primary-color);
}

.leader-card-cta .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
}

/* Modal de Biografia */
.leader-modal .modal-content {
    border-radius: 16px;
    overflow: hidden;
    border: none;
}

.leader-modal .modal-header {
    border-bottom: none;
    padding: 25px 30px 0;
    position: relative;
}

.leader-modal .modal-title {
    font-size: 1.5rem;
    color: var(--dark-color);
    font-weight: 700;
}

.leader-modal .btn-close {
    position: absolute;
    top: 25px;
    right: 30px;
}

.leader-modal .modal-body {
    padding: 25px 30px;
}

.leader-modal-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.leader-modal-image img {
    width: 100%;
    height: auto;
    display: block;
}

.leader-modal-info {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    color: var(--secondary-color);
    width: 20px;
    text-align: center;
}

.leader-modal h4 {
    font-size: 1.2rem;
    margin-top: 20px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 8px;
}

.leader-modal h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

.leader-modal-social {
    display: flex;
    gap: 15px;
}

.leader-modal-social .social-icon {
    background: #f8f9fa;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
}

.leader-modal-social .social-icon:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Responsividade */
@media (max-width: 1199.98px) {
    .leader-image-wrapper {
        height: 280px;
    }
}

@media (max-width: 991.98px) {
    .leader-card-cta {
        height: auto;
    }

    .leader-modal .row {
        flex-direction: column;
    }

    .leader-modal .col-md-5 {
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .leader-image-wrapper {
        height: 250px;
    }

    .leader-content {
        padding: 20px;
    }

    .leader-modal .modal-body {
        padding: 20px;
    }
}

@media (max-width: 575.98px) {
    .leader-image-wrapper {
        height: 220px;
    }

    .leader-name {
        font-size: 1.3rem;
    }

    .leader-modal .modal-header,
    .leader-modal .modal-body {
        padding: 15px;
    }
}

/* FIM Liderança Premium*/



/* ==========================================================================
   Seção de Horários de Cultos - Premium
   ========================================================================== */
.service-times-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
}

.service-times-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.03;
    background-image:
        radial-gradient(circle at 20% 30%, var(--primary-color) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, var(--secondary-color) 0%, transparent 25%);
}

.service-times-container {
    position: relative;
    z-index: 1;
}

.schedule-header {
    text-align: center;
    margin-bottom: 4rem;
}

.schedule-header .section-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.schedule-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.schedule-header .lead {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-color);
}

.schedule-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
}

.schedule-tab {
    padding: 0.75rem 1.5rem;
    margin: 0 0.5rem;
    font-weight: 500;
    color: var(--text-color);
    border: none;
    background: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.schedule-tab:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.schedule-tab.active,
.schedule-tab:hover {
    color: var(--primary-color);
}

.schedule-tab.active:after,
.schedule-tab:hover:after {
    width: 100%;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.service-card-header:after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(30deg);
    pointer-events: none;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.service-time {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
}

.service-time i {
    margin-right: 0.5rem;
}

.service-card-body {
    padding: 1.5rem;
}

.service-description {
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.service-features {
    margin-bottom: 1.5rem;
}

.service-feature {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.service-feature i {
    color: var(--secondary-color);
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
}

.service-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.schedule-cta {
    text-align: center;
    margin-top: 4rem;
}

.schedule-cta .btn {
    min-width: 200px;
}

/* Efeito de onda animado */
.wave-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%232c3e50" opacity=".05"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" fill="%232c3e50" opacity=".05"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%232c3e50" opacity=".05"/></svg>');
    background-size: cover;
    animation: waveAnimation 15s linear infinite;
}

.wave:nth-child(2) {
    animation-delay: -5s;
    opacity: 0.7;
}

.wave:nth-child(3) {
    animation-delay: -10s;
    opacity: 0.5;
}

@keyframes waveAnimation {
    0% {
        transform: translateX(0) translateZ(0) scaleY(1);
    }

    50% {
        transform: translateX(-25%) translateZ(0) scaleY(0.8);
    }

    100% {
        transform: translateX(-50%) translateZ(0) scaleY(1);
    }
}

/* Responsividade */
@media (max-width: 1199.98px) {
    .schedule-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 991.98px) {
    .service-times-section {
        padding: 4rem 0;
    }

    .schedule-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 767.98px) {
    .schedule-header h2 {
        font-size: 1.8rem;
    }

    .schedule-tabs {
        flex-wrap: wrap;
    }

    .schedule-tab {
        margin: 0.25rem;
        padding: 0.5rem 1rem;
    }

    .service-actions {
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .schedule-header h2 {
        font-size: 1.6rem;
    }

    .service-card-header h3 {
        font-size: 1.3rem;
    }
}


/* ==========================================================================
   Seção de Eventos Premium
   ========================================================================== */
.events-section {
    padding: 6rem 0;
    position: relative;
    background-color: #f8f9fa;
    overflow: hidden;
}

.events-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.event-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(231, 76, 60, 0.05);
    filter: blur(30px);
}

.event-particle.particle-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -150px;
}

.event-particle.particle-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -100px;
}

.event-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(44, 62, 80, 0.1) 0%, rgba(44, 62, 80, 0) 70%);
    top: -300px;
    left: -300px;
    z-index: -1;
}

/* Filtros de Eventos */
.events-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.5rem 1.25rem;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    font-weight: 500;
    color: var(--text-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.1);
}

/* Grade de Eventos */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.event-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.event-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.event-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.event-card:hover .event-image-wrapper img {
    transform: scale(1.1);
}

.event-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.badge-live {
    background: #28a745;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

.event-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem;
    border-radius: 8px;
    text-align: center;
    width: 60px;
    z-index: 2;
}

.event-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-date .year {
    display: block;
    font-size: 0.7rem;
    opacity: 0.8;
}

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.event-card:hover .event-overlay {
    opacity: 1;
}

.quick-view {
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.event-card:hover .quick-view {
    transform: translateY(0);
}

.event-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
}

.event-category {
    background: rgba(44, 62, 80, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-weight: 600;
}

.event-location {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.event-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.event-excerpt {
    margin-bottom: 1.5rem;
    flex: 1;
    color: var(--text-color);
}

.event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.event-time {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Modal de Evento */
.event-modal .modal-content {
    border-radius: 16px;
    overflow: hidden;
    border: none;
}

.event-modal .modal-header {
    border-bottom: none;
    padding: 25px 30px 0;
    position: relative;
}

.event-modal .modal-title {
    font-size: 1.5rem;
    color: var(--dark-color);
    font-weight: 700;
}

.event-modal .btn-close {
    position: absolute;
    top: 25px;
    right: 30px;
}

.event-modal .modal-body {
    padding: 25px 30px;
}

.event-modal-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 250px;
}

.event-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-modal-info {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-top: 1.5rem;
}

.event-modal h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.event-modal-description {
    line-height: 1.8;
}

.event-modal-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.event-modal-share {
    margin-top: 2rem;
}

.event-modal-share h6 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.share-btn.facebook {
    background: #3b5998;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.link {
    background: var(--text-light);
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsividade */
@media (max-width: 1199.98px) {
    .events-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 991.98px) {
    .events-section {
        padding: 4rem 0;
    }

    .event-modal .row {
        flex-direction: column;
    }

    .event-modal .col-md-6 {
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .events-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1.5rem;
    }

    .event-image-wrapper {
        height: 180px;
    }

    .event-body {
        padding: 1.25rem;
    }

    .event-modal .modal-body {
        padding: 20px;
    }
}

@media (max-width: 575.98px) {
    .events-filter {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .event-modal .modal-header,
    .event-modal .modal-body {
        padding: 15px;
    }

    .event-modal-cta {
        flex-direction: column;
    }

    .event-modal-cta .btn {
        width: 100%;
    }
}

/* FIM  SEÇÃO DE EVENTOS */

/* =======================================
Estilos premium para a SEÇÃO DE BLOG 
========================================================================== */
.bg-gradient-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.blog-card-featured {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.blog-card-featured:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.hover-shadow-lg {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.hover-shadow-lg:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.transition-all {
    transition: all 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.object-cover {
    object-fit: cover;
}

.btn-hover-arrow:hover i {
    transform: translateX(3px);
}

.btn-hover-arrow i {
    transition: transform 0.2s ease;
}

.hover-lift {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.max-w-3xl {
    max-width: 48rem;
}

.rounded-4 {
    border-radius: 1rem;
}

.py-6 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-7 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.mb-6 {
    margin-bottom: 4rem;
}

.mt-6 {
    margin-top: 4rem;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

.section-label {
    font-size: 0.875rem;
}

@media (min-width: 992px) {
    .display-4 {
        font-size: 3rem;
    }
}

/* ============== 
        FIM NOTICIAS 
        ========================= */



            /* ================================================
             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(--white);
    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 {
    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: var(--border-radius);
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #1a252f;
    border-color: #1a252f;
    color: var(--white);
    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(--white);
    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;
}

/* ==========================================================================
   Utilitários
   ========================================================================== */
.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.bg-light {
    background-color: var(--light-color) !important;
}

.bg-dark {
    background-color: var(--dark-color) !important;
}

.text-white {
    color: var(--white) !important;
}

.shadow {
    box-shadow: var(--box-shadow) !important;
}

.shadow-lg {
    box-shadow: var(--box-shadow-lg) !important;
}

.rounded {
    border-radius: var(--border-radius) !important;
}

.rounded-lg {
    border-radius: var(--border-radius-lg) !important;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

/* ==========================================================================
   Animações
   ========================================================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 1s ease-in-out;
}

/* ==========================================================================
   Responsividade
   ========================================================================== */
@media (max-width: 991.98px) {
    .navbar-collapse {
        padding: 1rem 0;
    }

    .carousel-caption h1,
    .carousel-caption h2 {
        font-size: 2rem;
    }

    .carousel-caption .lead {
        font-size: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    body {
        padding-top: 70px;
    }

    .carousel-item {
        height: 60vh;
    }

    .carousel-caption {
        bottom: 20%;
        padding: 1rem;
    }

    .carousel-caption h1,
    .carousel-caption h2 {
        font-size: 1.5rem;
    }

    .carousel-caption .lead {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .accessibility-links {
        justify-content: center;
    }

    .accessibility-links li {
        margin: 0 0.5rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 575.98px) {
    .carousel-item {
        height: 50vh;
    }

    .carousel-caption {
        bottom: 10%;
    }

    .carousel-caption h1,
    .carousel-caption h2 {
        font-size: 1.25rem;
    }

    .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }

    .footer-legal-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-legal-links li {
        margin-left: 0;
        margin-bottom: 0.5rem;
    }
}