/* ===== QUARESMA DE SÃO MIGUEL ARCANJO - ESTILOS ===== */

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
}

/* ===== CLASSES PADRONIZADAS PARA ORAÇÕES ===== */
.prayer-section {
    margin-bottom: 25px;
    padding: 15px 0;
}

.prayer-section.highlighted {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.prayer-section.versicle {
    background-color: #e8f4fd;
    padding: 15px;
    border-left: 4px solid #2c3e50;
    margin-bottom: 25px;
}

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

.response {
    padding-left: 20px;
}

.section-title {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
}

.prayer-intro {
    margin-bottom: 15px;
    font-weight: bold;
}

/* Estilos para rodapé de direitos autorais */
.footer-credits {
    text-align: center;
    font-size: 12px;
    color: #6c757d;
    margin-top: 20px;
    padding: 10px;
    border-top: 1px solid #e9ecef;
}

.footer-credits-section {
    margin-top: 30px;
    padding-top: 20px;
}

/* ===== TELA INICIAL ===== */
.quaresma-home-bg {
    background: linear-gradient(135deg, #0a2342 0%, #274690 50%, #1e3c72 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.quaresma-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    width: 100%;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.quaresma-header {
    text-align: center;
    padding: 40px 30px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 3px solid #274690;
}

.logo-quaresma {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.quaresma-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a2342;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.quaresma-subtitle {
    font-size: 1.2rem;
    color: #274690;
    font-weight: 500;
    opacity: 0.9;
}

.quaresma-content {
    padding: 40px 30px;
}

.welcome-section {
    text-align: center;
    margin-bottom: 40px;
}

.welcome-section h2 {
    font-size: 2rem;
    color: #0a2342;
    margin-bottom: 20px;
    font-weight: 600;
}

.welcome-text {
    font-size: 1.1rem;
    color: #495057;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.action-section {
    text-align: center;
    margin: 50px 0;
}

.btn-iniciar-oracoes {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #274690 0%, #1e3c72 100%);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(39, 70, 144, 0.3);
    border: 2px solid transparent;
}

.btn-iniciar-oracoes:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(39, 70, 144, 0.4);
    border-color: #fff;
}

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

.info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.info-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #274690;
}

.info-card h3 {
    font-size: 1.2rem;
    color: #0a2342;
    margin-bottom: 15px;
    font-weight: 600;
}

.info-card p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
}

.quaresma-footer {
    background: #0a2342;
    color: white;
    text-align: center;
    padding: 25px 30px;
}

.quaresma-footer p {
    margin-bottom: 5px;
    opacity: 0.9;
}

.footer-verse {
    font-style: italic;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ===== PÁGINAS INTERNAS ===== */
.quaresma-page-bg {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.page-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.page-header {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 5px solid #274690;
}

.page-header h1 {
    color: #0a2342;
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header .subtitle {
    color: #274690;
    font-size: 1.1rem;
    font-weight: 500;
}

.page-content {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.intentions-section {
    background: linear-gradient(135deg, #274690 0%, #1e3c72 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    text-align: center;
}

.intentions-section h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.intentions-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.intention-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.intention-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.menu-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #274690;
}

.menu-card h3 {
    color: #0a2342;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.menu-card p {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-menu {
    background: linear-gradient(135deg, #274690 0%, #1e3c72 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-menu:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 70, 144, 0.3);
}

/* ===== PÁGINAS DE ORAÇÃO ===== */
.prayer-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
}

.prayer-content h2 {
    color: #0a2342;
    font-size: 1.6rem;
    margin: 30px 0 20px;
    font-weight: 600;
    border-bottom: 2px solid #274690;
    padding-bottom: 10px;
}

.prayer-content h3 {
    color: #274690;
    font-size: 1.3rem;
    margin: 25px 0 15px;
    font-weight: 600;
}

.prayer-text {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #274690;
    margin: 20px 0;
    font-style: italic;
}

.biblical-text {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #f39c12;
    margin: 20px 0;
    font-style: italic;
    font-size: 1.05rem;
}

.biblical-reference {
    text-align: right;
    font-weight: 600;
    color: #e67e22;
    margin-top: 15px;
}

/* ===== NAVEGAÇÃO ===== */
.navigation-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
}

.btn-nav {
    background: #274690;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-nav:hover {
    background: #1e3c72;
    transform: translateY(-2px);
}

.btn-nav:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
}

.btn-back {
    background: #6c757d;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: #495057;
    transform: translateY(-2px);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .quaresma-title {
        font-size: 2rem;
    }
    
    .quaresma-subtitle {
        font-size: 1rem;
    }
    
    .quaresma-container {
        margin: 10px;
        border-radius: 15px;
    }
    
    .quaresma-header,
    .quaresma-content {
        padding: 25px 20px;
    }
    
    .btn-iniciar-oracoes {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .info-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .page-container {
        padding: 15px;
    }
    
    .page-header,
    .page-content {
        padding: 25px 20px;
    }
    
    .navigation-section {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .quaresma-title {
        font-size: 1.7rem;
    }
    
    .logo-quaresma {
        width: 80px;
    }
    
    .btn-iniciar-oracoes {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .intentions-list {
        grid-template-columns: 1fr;
    }
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quaresma-container {
    animation: fadeInUp 0.8s ease-out;
}

.info-card,
.menu-card {
    animation: fadeInUp 0.6s ease-out;
}

.info-card:nth-child(2) {
    animation-delay: 0.1s;
}

.info-card:nth-child(3) {
    animation-delay: 0.2s;
}

/* ===== UTILITÁRIOS ===== */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}