/*
Theme Name: Igreja Vale Personalizado
Description: Tema personalizado baseado no igrejavale.online
Author: Fabio Carvalho - Consistup
Version: 1.0
*/

/* Reset basico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Tipografia */
body {
    font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
    overflow-x: hidden;
    padding-top: 80px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Roboto', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #333333;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.3rem; }
h6 { font-size: 1.1rem; }

p {
    margin-bottom: 1rem;
    color: #666666;
}

a {
    color: #1a365d;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #1a4480;
    text-decoration: none;
}

/* Layout responsivo */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-12 { 
    width: 100%; 
    padding: 0 15px; 
}

.col-md-6 { 
    width: 50%; 
    padding: 0 15px; 
}

.col-md-4 { 
    width: 33.333%; 
    padding: 0 15px; 
}

.col-md-3 { 
    width: 25%; 
    padding: 0 15px; 
}

.col-sm-6 { 
    width: 50%; 
    padding: 0 15px; 
}

/* Utilitarios */
.text-center { 
    text-align: center; 
}

.text-left { 
    text-align: left; 
}

.text-right { 
    text-align: right; 
}

.mt-4 { 
    margin-top: 2rem; 
}

.mb-4 { 
    margin-bottom: 2rem; 
}

.pt-4 { 
    padding-top: 2rem; 
}

.pb-4 { 
    padding-bottom: 2rem; 
}

.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Botoes */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1.5;
    min-width: 150px;
}

.btn-primary {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: #ffffff;
    border-color: #1a365d;
}

.btn-primary:hover {
    background: #1a4480;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: transparent;
    color: #1a365d;
    border-color: #1a365d;
}

.btn-secondary:hover {
    background: #1a365d;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-outline-primary {
    background: transparent;
    color: #1a365d;
    border-color: #1a365d;
}

.btn-outline-primary:hover {
    background: #1a365d;
    color: #ffffff;
}

.btn-outline-light {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-outline-light:hover {
    background: #ffffff;
    color: #1a365d;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 18px;
    min-width: 180px;
}

.btn-block {
    width: 100%;
    display: block;
}

/* Secoes gerais */
section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    color: #333333;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    border-radius: 2px;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
}

/* Header e navegacao */
.site-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.site-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a365d;
    text-decoration: none;
}

.site-logo:hover {
    color: #1a4480;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    margin: 0 1rem;
}

.main-navigation a {
    color: #333333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.main-navigation a:hover,
.main-navigation a.current {
    color: #1a365d;
    background: rgba(44, 90, 160, 0.1);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #1a365d;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(44, 90, 160, 0.8), rgba(26, 68, 128, 0.9)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #ffffff;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(44, 90, 160, 0.8), rgba(26, 68, 128, 0.9));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Secao Sobre */
.about-section {
    background: #f8f9fa;
}

.about-content {
    margin-top: 2rem;
}

.about-text h3 {
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.about-list i {
    color: #e53e3e;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Secao de Horarios */
.schedule-section {
    background: #ffffff;
}

.schedule-grid {
    margin-top: 3rem;
}

.schedule-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.schedule-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.schedule-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.schedule-card h3 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.schedule-time {
    font-size: 1.3rem;
    font-weight: 600;
    color: #e53e3e;
    margin-bottom: 1rem;
}

.schedule-desc {
    color: #666666;
    font-size: 1rem;
}

/* Secao de Noticias */
.news-section {
    background: #f8f9fa;
}

.news-grid {
    margin-top: 3rem;
}

.news-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-placeholder {
    height: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999999;
    font-size: 3rem;
}

.news-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #999999;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.news-title {
    margin-bottom: 1rem;
    flex-grow: 1;
}

.news-title a {
    color: #333333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-title a:hover {
    color: #1a365d;
}

.news-excerpt {
    color: #666666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.news-link {
    color: #1a365d;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.news-link:hover {
    color: #1a4480;
    gap: 0.8rem;
}

.no-posts {
    padding: 3rem;
    color: #666666;
    font-size: 1.1rem;
}

/* Secao de Ministerios */
.ministries-section {
    background: #ffffff;
}

.ministries-grid {
    margin-top: 3rem;
}

.ministry-card {
    background: #f8f9fa;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.ministry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.ministry-card:hover::before {
    left: 0;
    opacity: 0.05;
}

.ministry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-color: #1a365d;
}

.ministry-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.ministry-card:hover .ministry-icon {
    transform: scale(1.1);
}

.ministry-icon i {
    font-size: 1.8rem;
    color: #ffffff;
}

.ministry-card h4 {
    color: #1a365d;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.ministry-card p {
    color: #666666;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

/* Secao de Testemunhos */
.testimonials-section {
    background: #f8f9fa;
    position: relative;
}

.testimonials-slider {
    margin-top: 3rem;
}

.testimonial-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border-left: 4px solid #1a365d;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #1a365d;
    font-family: Georgia, serif;
    opacity: 0.3;
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666666;
    font-style: italic;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h5 {
    color: #1a365d;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.author-info span {
    color: #999999;
    font-size: 0.9rem;
}

/* Secao de Contato */
.contact-section {
    background: #ffffff;
}

.contact-content {
    margin-top: 3rem;
}

.contact-info {
    padding-right: 2rem;
}

.contact-info h3 {
    color: #1a365d;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(44, 90, 160, 0.05);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.3rem;
    color: #ffffff;
}

.contact-details h4 {
    color: #1a365d;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-details p {
    color: #666666;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Formulario de Contato */
.contact-form-container {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-form-container h3 {
    color: #1a365d;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #333333;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1a365d;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999999;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    width: 100%;
    margin-top: 1rem;
}

/* Secao CTA (Call to Action) */
.cta-section {
    background: linear-gradient(rgba(44, 90, 160, 0.8), rgba(26, 68, 128, 0.9)), url('images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
    text-align: center;
    position: relative;
    padding: 100px 0;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(44, 90, 160, 0.8), rgba(26, 68, 128, 0.9));
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Secao de Redes Sociais */
.social-section {
    background: #2c3e50;
    color: #ffffff;
    text-align: center;
    padding: 60px 0;
}

.social-content h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.social-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link.facebook {
    background: #1877f2;
    color: #ffffff;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
}

.social-link.youtube {
    background: #ff0000;
    color: #ffffff;
}

.social-link.whatsapp {
    background: #25d366;
    color: #ffffff;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.social-link i {
    font-size: 1.2rem;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 40px 0 20px;
    text-align: center;
}

.footer-content {
    margin-bottom: 2rem;
}

.footer-content h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #1a365d;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 1rem;
    margin-top: 2rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Animacoes CSS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Aplicacao das animacoes */
.schedule-card,
.news-card,
.ministry-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

.contact-item {
    animation: fadeInLeft 0.6s ease-out;
}

.contact-form-container {
    animation: fadeInRight 0.6s ease-out;
}

/* Estados de loading */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #1a365d;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Utilitarios adicionais */
.hidden {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Responsividade Mobile */
@media (max-width: 768px) {
    /* Tipografia Mobile */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    /* Layout Mobile */
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    /* Header Mobile */
    .header-content {
        padding: 0.8rem 0;
    }
    
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        z-index: 999;
    }
    
    .main-navigation.active {
        display: block;
    }
    
    .main-navigation ul {
        flex-direction: column;
        padding: 1rem 0;
    }
    
    .main-navigation li {
        margin: 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .main-navigation a {
        display: block;
        padding: 1rem 1.5rem;
        border-radius: 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Grid Mobile */
    .col-md-6,
    .col-md-4,
    .col-md-3,
    .col-sm-6 {
        width: 100%;
        margin-bottom: 2rem;
    }
    
    /* Hero Mobile */
    .hero-section {
        height: 80vh;
        min-height: 500px;
        background-attachment: scroll;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        min-width: 200px;
        margin-bottom: 1rem;
    }
    
    /* Cards Mobile */
    .schedule-card,
    .ministry-card,
    .testimonial-card {
        margin-bottom: 2rem;
    }
    
    .news-card {
        margin-bottom: 2rem;
    }
    
    /* Contato Mobile */
    .contact-info {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
    
    /* CTA Mobile */
    .cta-section {
        background-attachment: scroll;
        padding: 80px 0;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Social Links Mobile */
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .social-link {
        width: 200px;
        justify-content: center;
    }
    
    /* Footer Mobile */
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Responsividade Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .contact-info {
        padding-right: 1rem;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .col-md-4 {
        width: 50%;
        margin-bottom: 2rem;
    }
    
    .col-md-3 {
        width: 50%;
        margin-bottom: 2rem;
    }
}

/* Acessibilidade */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #1a365d;
    outline-offset: 2px;
}

/* Reducao de movimento para usuarios sensiveis */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .hero-section,
    .cta-section,
    .social-section,
    .mobile-menu-toggle {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000000;
        background: #ffffff;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    section {
        padding: 20px 0;
        page-break-inside: avoid;
    }
    
    .btn {
        border: 1pt solid #000000;
        background: transparent !important;
        color: #000000 !important;
    }
}

/* Ajustes finais */
html {
    scroll-behavior: smooth;
}

body, html {
    overflow-x: hidden;
}

/* Ajuste para header fixo */
section[id] {
    scroll-margin-top: 100px;
}

/* Melhoria na selecao de texto */
::selection {
    background: #1a365d;
    color: #ffffff;
}

::-moz-selection {
    background: #1a365d;
    color: #ffffff;
}

/* Customizacao da scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #1a365d;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1a4480;
}

/* Menu mobile funcional */
.mobile-menu-toggle.active {
    color: #1a4480;
}

/* Hover effects adicionais */
.btn:active {
    transform: translateY(0);
}

.schedule-card:active,
.news-card:active,
.ministry-card:active,
.testimonial-card:active {
    transform: translateY(-2px);
}

/* Melhorias de performance */
.hero-section,
.cta-section {
    will-change: transform;
}

.schedule-card,
.news-card,
.ministry-card,
.testimonial-card {
    will-change: transform;
}

/* Estados de erro para formulario */
.contact-form input.error,
.contact-form select.error,
.contact-form textarea.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.contact-form .error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

/* Loading states para botoes */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid #ffffff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Melhorias de contraste */
.btn-outline-primary:focus {
    background: #1a365d;
    color: #ffffff;
}

.btn-outline-light:focus {
    background: #ffffff;
    color: #1a365d;
}

/* Ajustes para dispositivos com touch */
@media (hover: none) {
    .schedule-card:hover,
    .news-card:hover,
    .ministry-card:hover,
    .testimonial-card:hover,
    .contact-item:hover {
        transform: none;
    }
    
    .btn:hover {
        transform: none;
    }
}

/* Preload de imagens importantes */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0;
    z-index: -1;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0;
    z-index: -1;
}

/* Fim do arquivo CSS */