/* ===================================
   CSS Variables (Design Tokens)
   =================================== */
:root {
    /* Colors - Primary */
    --primary: oklch(0.3 0.1 260);
    --primary-foreground: oklch(0.98 0 0);
    
    /* Colors - Background */
    --background: oklch(0.98 0 0);
    --foreground: oklch(0.2 0.01 280);
    
    /* Colors - Card */
    --card: oklch(0.99 0 0);
    --card-foreground: oklch(0.2 0.01 280);
    
    /* Colors - Secondary */
    --secondary: oklch(0.92 0.01 280);
    --secondary-foreground: oklch(0.3 0.01 280);
    
    /* Colors - Muted */
    --muted: oklch(0.88 0.01 280);
    --muted-foreground: oklch(0.5 0.01 280);
    
    /* Colors - Accent */
    --accent: oklch(0.55 0.2 280);
    --accent-foreground: oklch(0.98 0 0);
    
    /* Colors - Border */
    --border: oklch(0.92 0.01 280);
    --input: oklch(0.92 0.01 280);
    --ring: oklch(0.55 0.2 280);
    
    /* Spacing */
    --radius: 0.5rem;
    
    /* Fonts */
    --font-body: 'Open Sans', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
}

/* ===================================
   Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    /* Correção: Forçar a remoção de rolagem horizontal no nível mais alto */
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ===================================
   Container
   =================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem; /* Padding padrão para telas pequenas */
    min-width: 0;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    /* Garantir que o overflow horizontal seja tratado */
    overflow-x: hidden;
    overflow-y: auto;
}

.hero-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Garantir que a imagem não ultrapasse a largura do container */
    max-width: 100%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

/* Navbar */
.navbar {
    position: relative;
    z-index: 10;
    background-color: transparent;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo img {
    height: 9rem;
    width: auto;
    position: l;

}

.desktop-menu {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .desktop-menu {
        display: flex;
    }
}

.nav-link {
    color: white;
    transition: color 0.3s;
}

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

.mobile-menu-btn {
    display: block;
    color: white;
    padding: 0.5rem;
    font-size: 1.25rem;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu .nav-link {
    display: block;
    padding: 0.5rem 0;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
}

.hero-text h1 {
    color: white;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    display: block;
    font-size: 1.875rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.hero-title {
    display: block;
    font-size: 3.75rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.hero-location {
    display: block;
    font-size: 1.5rem;
    font-weight: 300;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 2.25rem;
    }
    
    .hero-title {
        font-size: 6rem;
    }
    
    .hero-location {
        font-size: 2.25rem;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    color: white;
    font-size: 1.5rem;
    opacity: 0.7;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===================================
   Welcome Section
   =================================== */
.welcome-section {
    padding: 5rem 0;
    background-color: var(--background);
    position: relative;
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .welcome-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.welcome-logo {
    height: 8rem;
    margin-bottom: 1.50rem;
    object-fit: contain;
}

.section-title-large {
    font-size: 3rem;
    font-weight: 800;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .section-title-large {
        font-size: 4.5rem;
    }
}

.welcome-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.welcome-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .welcome-buttons {
        flex-direction: row;
    }
}

.welcome-image {
    display: none;
}

@media (min-width: 1024px) {
    .welcome-image {
        display: block;
    }
}

.welcome-image img {
    width: 50%;
    height: auto;
    object-fit: contain;
    position: absolute;
    top: 0rem;
    right: 2rem;
    /* Correção: Garantir que a imagem não cause overflow, embora esteja oculta no mobile */
    max-width: 100%;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.75rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: var(--radius);
    transition: all 0.3s;
}

.btn i {
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    opacity: 0.9;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

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

.btn-light:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* ===================================
   Mission Section
   =================================== */
.mission-section {
    padding: 8rem 0;
    background-color: var(--card);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3.75rem;
    }
}

.title-divider {
    width: 6rem;
    height: 0.25rem;
    background: linear-gradient(to right, var(--primary), var(--accent), var(--primary));
    margin: 0 auto;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .mission-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 4rem;
    }
}

.mission-card {
    position: relative;
    padding: 2rem 2.5rem;
    transition: all 0.5s;
}

.mission-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.02), transparent);
    border-radius: 1rem;
    opacity: 0;
    transition: opacity 0.5s;
}

.mission-card:hover::before {
    opacity: 1;
}

.mission-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 2rem;
    right: 2rem;
    height: 0.125rem;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
    border-radius: 9999px;
    opacity: 0;
    transition: opacity 0.5s;
}

.mission-card:hover::after {
    opacity: 1;
}

.card-icon {
    width: 5rem;
    height: 5rem;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: background-color 0.3s;
}

.mission-card:hover .card-icon {
    background-color: rgba(0, 0, 0, 0.08);
}

.card-icon i {
    font-size: 2.25rem;
    color: var(--primary);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .card-title {
        font-size: 1.875rem;
    }
}

.card-description {
    color: var(--muted-foreground);
    line-height: 1.8;
    font-weight: 300;
}

/* ===================================
   Bible Study Section
   =================================== */
.bible-study-section {
    padding: 8rem 0;
    background-color: white;
    color: var(--foreground);
}

.bible-study-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .bible-study-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 5rem;
    }
}

.bible-study-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bible-study-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
}

.bible-study-content {
    text-align: left;
}

.bible-study-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .bible-study-title {
        font-size: 3rem;
    }
}

.bible-study-divider {
    width: 4rem;
    height: 0.25rem;
    background-color: var(--primary);
    margin-bottom: 2rem;
}

.bible-quote {
    font-size: 1.25rem;
    font-style: italic;
    margin: 2rem 0;
    padding: 1.5rem;
    padding-left: 2rem;
    border-left: 4px solid var(--primary);
    background-color: rgba(0, 0, 0, 0.02);
    color: var(--muted-foreground);
}

.bible-quote cite {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 600;
    color: var(--foreground);
}

.bible-study-text {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--muted-foreground);
}

.btn-bible-study {
    background-color: var(--primary);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
}

.btn-bible-study:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* ===================================
   Ministries Section
   =================================== */
.ministries-section {
    padding: 8rem 0;
    background-color: var(--background);
}

.ministries-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .ministries-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.ministry-item {
    text-align: center;
    transition: transform 0.3s;
}

.ministry-item:hover {
    transform: translateY(-0.5rem);
}

.ministry-logo {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.ministry-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.ministry-description {
    color: var(--muted-foreground);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* ===================================
   Schedule Section
   =================================== */
.schedule-section {
    padding: 8rem 0;
    background-color: var(--card);
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-top: 1rem;
}

.schedule-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 5rem;
    padding: 0 2rem; /* Espaçamento para as pontas */
}

/* Linha do Tempo Horizontal */
.schedule-timeline::before {
    content: '';
    position: absolute;
    top: 2.5rem; /* Alinhado com o centro do ponto */
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--border); /* Linha fina e suave */
    z-index: 1;
}

.timeline-item {
    position: relative;
    flex: 1;
    text-align: center;
    z-index: 2;
    padding-top: 4rem; /* Espaço para o ícone e o ponto */
}

/* Ponto Circular (●) */
.timeline-item::before {
    content: '';
    position: absolute;
    top: 2.5rem;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary); /* Cor do ponto */
    z-index: 3;
}

.timeline-icon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: black; /* Ícone em outline */
    background-color: var(--card); /* Fundo para o ícone */
    border-radius: 50%;
    z-index: 4;
}

.timeline-icon i {
    /* Ajuste fino para ícones Font Awesome */
    font-weight: 300; /* Fino (outline) */
}

.timeline-img-icon {
    width: 60%; /* Ajustar o tamanho da imagem dentro do círculo */
    height: 60%;
    color: black;
    object-fit: contain;
    
}

.timeline-content {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-day {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.timeline-time {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.timeline-event {
    font-size: 1rem;
    font-weight: 300;
    color: var(--muted-foreground);
    line-height: 1.4;
}

/* Responsividade para Mobile: Empilhar verticalmente */
@media (max-width: 767px) {
    .schedule-timeline {
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        margin-top: 3rem;
    }

    /* Linha do Tempo Vertical */
    .schedule-timeline::before {
        top: 0;
        left: 2.5rem; /* Alinhado com o centro do ponto */
        bottom: 0;
        width: 1px;
        height: 100%;
    }

    .timeline-item {
        width: 100%;
        text-align: left;
        padding-left: 5rem; /* Espaço para o ícone e a linha */
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    /* Ponto Circular (●) */
    .timeline-item::before {
        top: 3.5rem;
        left: 2.5rem;
        transform: translate(-50%, -50%);
    }

    .timeline-icon {
        top: 2rem;
        left: 2.5rem;
        transform: translateX(-50%);
    }

    .timeline-content {
        align-items: flex-start;
    }
}

/* ===================================
   Beliefs Section
   =================================== */
.beliefs-section {
    padding: 8rem 0;
    background-color: var(--background);
}

.beliefs-accordion {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 90rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .beliefs-accordion {
        grid-template-columns: repeat(2, 1fr);
    }
}

.belief-item {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.belief-item:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.belief-header {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background-color 0.2s;
}

.belief-header:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.belief-header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.belief-number {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.875rem;
}

.belief-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
}

@media (min-width: 768px) {
    .belief-title {
        font-size: 1.125rem;
    }
}

.belief-icon {
    color: var(--primary);
    transition: transform 0.3s;
}

.belief-icon.active {
    transform: rotate(180deg);
}

.belief-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.belief-content.active {
    max-height: 24rem;
}

.belief-description {
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.02);
    border-top: 1px solid var(--border);
    color: var(--muted-foreground);
    line-height: 1.8;
}

/* ===================================
   Gallery Section
   =================================== */
.gallery-section {
    padding: 8rem 0;
    background-color: var(--card);
}

.gallery-grid {
    display: grid;
    /* Correção: Usar 1 coluna no mobile para evitar problemas de largura mínima de imagem */
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: transform 0.3s;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===================================
   Livestream Section
   =================================== */
.livestream-section {
    padding: 8rem 0;
    background-color: var(--background);
}

.livestream-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .livestream-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.livestream-video {
    width: 100%;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
}

.livestream-content {
    text-align: left;
}

.livestream-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #3b82f6;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.livestream-badge i {
    font-size: 1rem;
}

.livestream-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.livestream-divider {
    width: 4rem;
    height: 0.25rem;
    background-color: var(--primary);
    margin-bottom: 1.5rem;
}

.livestream-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--muted-foreground);
    margin-bottom: 1.25rem;
}

.livestream-quote {
    position: relative;
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--muted-foreground);
    padding: 1rem 0 1rem 2rem;
    margin: 1.5rem 0;
    border-left: 3px solid var(--primary);
}

.livestream-quote i {
    position: absolute;
    left: 0;
    top: 1rem;
    color: var(--primary);
    font-size: 1.25rem;
}

.livestream-content .btn {
    margin-top: 1rem;
}

/* ===================================
   Media Section
   =================================== */
.media-section {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--background), var(--card));
    position: relative;
    overflow: hidden;
    
}

.media-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border), transparent);
    
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-top: 1rem;
    font-weight: 400;
    font-family: var(--font-body);
    
}

.media-grid {
    /* Alterado para grid para exibir duas colunas em telas pequenas */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem; /* Ajuste o gap para algo menor */
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .media-grid {
        grid-template-columns: repeat(3, 1fr); /* Três colunas para telas maiores */
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .media-grid {
        /* Volta para grid no desktop */
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 6rem;
          flex-direction: column;
        align-items: center;   /* <-- Centraliza as duas colunas */
        text-align: center;    /* <-- Centraliza textos */

        
    }
}

/* Left Column Styles */
.media-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.media-logo-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: fit-content;
}

.media-logo {
    width: 100%;
    max-width: 320px;
    height: auto;
}

.media-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.media-heading {
    font-size: clamp(1.5rem, 4vw, 1.75rem);
    font-weight: 700;
    color: var(--foreground);
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

.media-description {
    font-size: clamp(0.9375rem, 2.5vw, 1.0625rem);
    line-height: 1.8;
    color: var(--muted-foreground);
    text-align: left;
}

.media-tagline {
    font-size: clamp(0.875rem, 2vw, 1rem);
    line-height: 1.7;
    color: var(--accent);
    font-style: italic;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(88, 86, 214, 0.05), rgba(88, 86, 214, 0.02));
    border-left: 3px solid var(--accent);
    border-radius: 0.5rem;
    position: relative;
}

.media-tagline i {
    font-size: 0.75rem;
    opacity: 0.6;
    margin: 0 0.5rem;
}

.media-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
    /* Ordem 3: Botões (dentro de media-left) */
    order: 3;
}

.btn-media {
    padding: 1rem 2rem;
    font-size: clamp(0.875rem, 2vw, 1rem);
}

@media (max-width: 480px) {
    .btn-media {
        flex: 1;
        min-width: 100%;
        padding: 0.75rem 1.5rem;
    }
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--card), var(--background));
    position: relative;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

@media (min-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

/* Map Container */
.contact-map-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 3px solid white;
}

@media (min-width: 1024px) {
    .map-wrapper {
        height: 600px;
    }
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
}

.map-address {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: white;
    padding: 1.75rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary);
}

.map-address i {
    font-size: 2rem;
    color: var(--primary);
    flex-shrink: 0;
}

.map-address-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.map-address-text strong {
    font-size: 1.125rem;
    color: var(--foreground);
    font-family: var(--font-heading);
    font-weight: 700;
}

.map-address-text span {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
}

/* Contact Info Container */
.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border);
}

.contact-info-header i {
    font-size: 1.75rem;
    color: var(--accent);
}

.contact-info-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--foreground);
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    margin: 0;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.75rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
    border-color: var(--primary);
}

.contact-info-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.contact-info-item:hover .contact-info-icon {
    transform: scale(1.1) rotate(-5deg);
}

.contact-info-icon.phone {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.contact-info-icon.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.contact-info-icon.email {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.contact-info-icon.schedule {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.contact-info-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.contact-info-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--foreground);
    font-family: var(--font-heading);
    margin: 0;
    letter-spacing: -0.01em;
}

.contact-info-link {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-link:hover {
    color: var(--accent);
    text-decoration: underline;
}

.contact-info-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin: 0;
}

/* Schedule Styles */
.schedule-item {
    flex-direction: column;
    align-items: stretch;
}

.schedule-item .contact-info-icon {
    align-self: flex-start;
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.75rem;
}

.schedule-day {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 0.875rem 1.25rem;
    background: linear-gradient(135deg, var(--background), var(--card));
    border-radius: 0.75rem;
    border-left: 3px solid var(--accent);
}

.schedule-day-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--foreground);
    min-width: 100px;
}

.schedule-time {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
    text-align: center;
}

.schedule-event {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-align: right;
}

/* Contact Actions */
.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

@media (min-width: 640px) {
    .contact-actions {
        flex-direction: row;
    }
}

.btn-contact {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 1023px) {
    .contact-info-item {
        padding: 1.5rem;
    }
    
    .contact-info-icon {
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
    }
}

@media (max-width: 640px) {
    .map-wrapper {
        height: 400px;
    }
    
    .schedule-day {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: left;
    }
    
    .schedule-time,
    .schedule-event {
        text-align: left;
    }
    
    .contact-info-header h3 {
        font-size: 1.5rem;
    }
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: linear-gradient(to bottom, #0f172a, #1e3a8a, #0f172a);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-decoration {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    filter: blur(64px);
}

.footer-decoration-left {
    top: 0;
    left: 0;
    background-color: rgba(59, 130, 246, 0.05);
    margin-left: -12rem;
    margin-top: -12rem;
}

.footer-decoration-right {
    bottom: 0;
    right: 0;
    background-color: rgba(96, 165, 250, 0.05);
    margin-right: -12rem;
    margin-bottom: -12rem;
}

.footer-content {
    position: relative;
    z-index: 10;
}

.footer-top {
    border-bottom: 1px solid rgba(96, 165, 250, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 0;
}

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

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-logo {
    height: 10rem;
    margin-bottom: 1.5rem;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
}

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

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.whatsapp:hover {
    background-color: #25d366;
}

.social-icon.youtube:hover {
    background-color: #ff0000;
}

.social-icon.facebook:hover {
    background-color: #1877f2;
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-title::before {
    content: '';
    width: 0.25rem;
    height: 1.5rem;
    background: linear-gradient(to bottom, #60a5fa, #3b82f6);
    border-radius: 9999px;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: #bfdbfe;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: white;
}

.footer-links a i {
    color: #60a5fa;
    font-size: 0.75rem;
    transition: transform 0.3s;
}

.footer-links a:hover i {
    transform: translateX(0.25rem);
}

.footer-contact-item {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.footer-contact-item i {
    color: #60a5fa;
    margin-top: 0.25rem;
    font-size: 1.125rem;
}

.contact-label {
    font-size: 0.75rem;
    color: #93c5fd;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.footer-contact-item p {
    color: #bfdbfe;
    font-weight: 300;
}

.footer-schedule {
    background-color: rgba(30, 58, 138, 0.5);
    border-bottom: 1px solid rgba(96, 165, 250, 0.2);
}



.schedule-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .schedule-items {
        grid-template-columns: repeat(3, 1fr);
    }
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.schedule-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(to bottom right, #3b82f6, #2563eb);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.schedule-item:hover .schedule-icon {
    transform: scale(1.1);
}

.schedule-icon i {
    font-size: 1.25rem;
}

.schedule-label {
    font-size: 0.75rem;
    color: #93c5fd;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.schedule-time {
    color: white;
    font-weight: 600;
}

.footer-bottom {
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
    }
}

.copyright {
    color: #bfdbfe;
    font-weight: 300;
    font-size: 0.875rem;
    text-align: center;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #93c5fd;
    transition: color 0.3s;
    font-size: 0.875rem;
    font-weight: 300;
}

.footer-bottom-links a:hover {
    color: white;
}

.footer-bottom-links .divider {
    width: 0.25rem;
    height: 1rem;
    background-color: rgba(96, 165, 250, 0.3);
}


/* ===================================
   Beliefs CTA
   =================================== */
.beliefs-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.beliefs-cta .cta-text {
    font-size: 1.125rem;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.beliefs-cta .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
}


/* ===================================
   Media Contact Section
   =================================== */
.media-contact-section {
    padding: 5rem 0;
    background-color: var(--background);
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Aumentando o min-width */
    gap: 1.5rem;
    margin-top: 3rem;
}

.media-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05); /* Sombra mais suave */
    background-color: var(--card);
    border: 1px solid var(--border);
}

.media-item:hover {
    transform: translateY(-3px); /* Movimento mais sutil */
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.media-item i {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.media-item.instagram i {
    color: #E1306C; /* Instagram color */
}

.media-item.youtube i {
    color: #FF0000; /* YouTube color */
}

.media-item.whatsapp i {
    color: #25D366; /* WhatsApp color */
}

.media-item.email i {
    color: #3b82f6; /* Blue color for email */
}

.media-item.placeholder {
    opacity: 0.7;
    cursor: default;
    background-color: var(--muted); /* Cor de fundo para placeholder */
}

.media-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--foreground);
}

.media-handle {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    word-break: break-all; /* Forçar quebra de linha para e-mail */
}

@media (max-width: 640px) {
    .media-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}
