/* ============================
   MATRIZ NOSSA SENHORA DA PENHA
   Estilos Sacros e Marianos
   ============================= */

/* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores Marianas e Sacras */
    --azul-mariano: #1e3a8a;
    --azul-claro: #3b82f6;
    --dourado: #d4af37;
    --dourado-escuro: #b8941f;
    --branco-liturgico: #fefefe;
    --creme: #faf9f7;
    --vermelho-liturgico: #dc2626;
    --roxo-liturgico: #7c3aed;
    --verde-liturgico: #16a34a;
    
    /* Gradientes Sacros */
    --gradiente-mariano: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    --gradiente-dourado: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    --gradiente-ceu: linear-gradient(180deg, #87ceeb 0%, #4682b4 100%);
    
    /* Sombras */
    --sombra-suave: 0 4px 20px rgba(30, 58, 138, 0.15);
    --sombra-forte: 0 8px 32px rgba(30, 58, 138, 0.25);
    --sombra-dourada: 0 4px 20px rgba(212, 175, 55, 0.3);
    
    /* Tipografia Sacra */
    --font-titulo: 'Cinzel', serif;
    --font-texto: 'Crimson Text', serif;
    
    /* Transições */
    --transicao-suave: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transicao-rapida: all 0.2s ease;
}

/* Tipografia Base */
html {
    scroll-behavior: smooth;
    font-size: 100%;
}

body {
    font-family: var(--font-texto);
    line-height: 1.7;
    color: #333;
    background: var(--creme);
    overflow-x: hidden;
}

/* Estilos de Texto Sacros */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-titulo);
    font-weight: 600;
    color: var(--azul-mariano);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 2.8rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); }
h3 { font-size: clamp(1.3rem, 3.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 3vw, 1.4rem); }

p {
    margin-bottom: 1.2rem;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

/* ============================
   HEADER SACRO
   ============================= */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--dourado);
    box-shadow: var(--sombra-suave);
    transition: var(--transicao-suave);
}

.header-top {
    background: var(--gradiente-mariano);
    color: white;
    text-align: center;
    padding: 0.5rem 0;
    position: relative;
}

.cross-symbol {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--dourado);
}

.header-motto {
    margin-top: 0.3rem;
}

.latin {
    font-family: var(--font-titulo);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Navegação */
.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

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

.madonna-symbol {
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: var(--azul-mariano);
    text-shadow: 2px 2px 4px rgba(212, 175, 55, 0.3);
}

.church-name h1 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin: 0;
    background: var(--gradiente-mariano);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    color: var(--dourado-escuro);
    font-style: italic;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: clamp(1rem, 3vw, 2rem);
}

.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 4rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 998;
    transform: translateY(0);
}

.nav-link {
    text-decoration: none;
    color: var(--azul-mariano);
    font-family: var(--font-titulo);
    font-weight: 500;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: var(--transicao-rapida);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background: var(--gradiente-mariano);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--sombra-suave);
}

.nav-link::before {
    content: '✠';
    position: absolute;
    left: -15px;
    opacity: 0;
    color: var(--dourado);
    transition: var(--transicao-rapida);
}

.nav-link:hover::before {
    opacity: 1;
    left: -10px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--azul-mariano);
    transition: var(--transicao-rapida);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* ============================
   HERO SECTION
   ============================= */
.hero {
    height: calc(100vh - 120px);
    margin-top: 120px;
    background: 
        linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(59, 130, 246, 0.75) 100%),
        linear-gradient(45deg, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        url('hero-igreja.jpg') no-repeat center center/cover,
        var(--gradiente-ceu); /* Fallback gradient */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 1rem;
}

.sacred-heart {
    font-size: clamp(3rem, 8vw, 4rem);
    color: var(--vermelho-liturgico);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
}

.hero h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.hero h2 {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    color: var(--dourado);
    margin-bottom: 1rem;
    font-weight: 400;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.3rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: clamp(1.5rem, 4vw, 3rem);
    margin: 2rem 0;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--dourado);
    font-family: var(--font-titulo);
}

.stat-label {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    opacity: 0.9;
    margin-top: 0.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary,
.btn-outline,
.btn-download {
    padding: clamp(0.8rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
    border: none;
    border-radius: 50px;
    font-family: var(--font-titulo);
    font-weight: 600;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    cursor: pointer;
    transition: var(--transicao-suave);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    min-height: 48px;
}

.btn-primary {
    background: var(--gradiente-dourado);
    color: white;
    box-shadow: var(--sombra-dourada);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.scroll-indicator {
    display: none;
}

/* ============================
   SEÇÕES PRINCIPAIS
   ============================= */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-top: clamp(3rem, 5vw, 5rem);
}

.section-ornament {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--dourado);
    margin-bottom: 1rem;
    letter-spacing: 1rem;
}

.section-divider {
    width: clamp(80px, 10vw, 100px);
    height: 3px;
    background: var(--gradiente-dourado);
    margin: 2rem auto;
    border-radius: 2px;
}

.section-subtitle {
    font-style: italic;
    color: var(--dourado-escuro);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-top: 0.5rem;
}

/* História Section */
.historia {
    padding: clamp(3rem, 5vw, 5rem) 0;
    background: var(--branco-liturgico);
    margin-top: 120px;
}

.historia-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.historia-text {
    position: relative;
}

.ornamental-letter {
    float: left;
    font-size: clamp(3rem, 8vw, 4rem);
    font-family: var(--font-titulo);
    color: var(--azul-mariano);
    line-height: 1;
    margin: 0.2rem 0.5rem 0.2rem 0;
    text-shadow: 2px 2px 4px rgba(212, 175, 55, 0.3);
}

.historia-text p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    text-align: justify;
    margin-bottom: 1.5rem;
}

.historia-timeline {
    background: var(--gradiente-mariano);
    border-radius: 20px;
    padding: 2rem;
    color: white;
    position: relative;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.timeline-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.timeline-year {
    background: var(--dourado);
    color: var(--azul-mariano);
    font-family: var(--font-titulo);
    font-weight: 700;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    padding: 0.8rem;
    border-radius: 50%;
    min-width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--sombra-dourada);
}

.timeline-content h4 {
    color: var(--dourado);
    margin-bottom: 0.5rem;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
}

.timeline-content p {
    margin: 0;
    opacity: 0.9;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

/* Eventos Section */
.eventos {
    padding: clamp(3rem, 5vw, 5rem) 0;
    background: 
        linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%),
        var(--creme);
}

.eventos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.evento-card {
    background: white;
    border-radius: 20px;
    padding: clamp(1.5rem, 3vw, 2rem);
    box-shadow: var(--sombra-suave);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transicao-suave);
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.evento-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-forte);
    border-color: var(--dourado);
}

.evento-date {
    text-align: center;
    background: var(--gradiente-mariano);
    color: white;
    border-radius: 15px;
    padding: 1rem;
    min-width: 80px;
    box-shadow: var(--sombra-suave);
}

.date-day {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    font-family: var(--font-titulo);
}

.date-month {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    opacity: 0.9;
}

.evento-info {
    flex: 1;
}

.evento-info h3 {
    color: var(--azul-mariano);
    margin-bottom: 1rem;
    font-size: clamp(1.1rem, 2.5vw, 1.2rem);
}

.evento-time,
.evento-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: #666;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.evento-time i,
.evento-location i {
    color: var(--dourado);
    width: 20px;
}

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

.btn-outline {
    background: transparent;
    color: var(--azul-mariano);
    border: 2px solid var(--azul-mariano);
    min-height: 48px;
}

.btn-outline:hover {
    background: var(--azul-mariano);
    color: white;
    transform: translateY(-3px);
}

/* Folhetos Section */
.folhetos {
    padding: clamp(3rem, 5vw, 5rem) 0;
    background: var(--branco-liturgico);
}

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

.folheto-card {
    background: white;
    border-radius: 20px;
    padding: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
    box-shadow: var(--sombra-suave);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transicao-suave);
    position: relative;
    overflow: hidden;
}

.folheto-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradiente-dourado);
}

.folheto-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-forte);
}

.folheto-icon {
    width: 80px;
    height: 80px;
    background: var(--gradiente-mariano);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: clamp(1.5rem, 4vw, 2rem);
    box-shadow: var(--sombra-suave);
}

.folheto-card h3 {
    margin-bottom: 1rem;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
}

.folheto-date {
    color: var(--dourado-escuro);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.btn-download {
    background: var(--gradiente-dourado);
    color: white;
    width: 100%;
    justify-content: center;
    min-height: 48px;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: var(--sombra-dourada);
}

/* ============================
   FOOTER SACRO
   ============================= */
.footer {
    background: var(--gradiente-mariano);
    color: white;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradiente-dourado);
}

.footer-top {
    padding: clamp(2rem, 5vw, 4rem) 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--dourado);
    margin-bottom: 1.5rem;
    font-family: var(--font-titulo);
}

.footer-section p {
    opacity: 0.9;
    line-height: 1.6;
}

.footer-ornament {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--dourado);
    margin-top: 1rem;
    letter-spacing: 0.5rem;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: var(--dourado);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

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

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

.footer-links a {
    color: white;
    text-decoration: none;
    transition: var(--transicao-rapida);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a::before {
    content: '✠';
    color: var(--dourado);
    font-size: 0.8rem;
}

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

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.religious-symbol {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cross-footer {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--dourado);
}

.ave-maria {
    font-family: var(--font-titulo);
    font-style: italic;
    color: var(--dourado);
}

/* ============================
   BLOG SECTION
   ============================= */
.blog-hero {
    height: calc(60vh - 120px);
    margin-top: 120px;
    background: 
        linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(59, 130, 246, 0.8) 100%),
        linear-gradient(45deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        url('hero-igreja.jpg') no-repeat center center/cover,
        var(--gradiente-ceu); /* Fallback gradient */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.blog-content {
    padding: clamp(3rem, 5vw, 5rem) 0;
    background: var(--creme);
}

.blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3rem;
}

.blog-post {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--sombra-suave);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transicao-suave);
    margin-bottom: 2rem;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-forte);
}

.blog-post.featured {
    grid-row: span 2;
}

.post-image {
    height: 250px;
    background: var(--gradiente-mariano);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: clamp(2rem, 5vw, 3rem);
}

.post-image.small {
    height: 120px;
    font-size: clamp(1.5rem, 4vw, 2rem);
}

.post-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--dourado);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: clamp(0.7rem, 2vw, 0.8rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.post-date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--azul-mariano);
    padding: 0.8rem;
    border-radius: 15px;
    text-align: center;
    font-family: var(--font-titulo);
    font-weight: 600;
}

.post-date .day {
    display: block;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.post-date .month {
    display: block;
    font-size: clamp(0.7rem, 2vw, 0.8rem);
    text-transform: uppercase;
}

.post-content {
    padding: clamp(1.5rem, 3vw, 2rem);
}

.post-content h2,
.post-content h3 {
    color: var(--azul-mariano);
    margin-bottom: 1rem;
}

.post-content h2 {
    font-size: clamp(1.5rem, 3.5vw, 1.8rem);
}

.post-content h3 {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
}

.post-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    color: #999;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-meta i {
    color: var(--dourado);
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--azul-mariano);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transicao-rapida);
}

.read-more:hover {
    color: var(--dourado);
    transform: translateX(5px);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.page-btn {
    padding: 0.8rem 1.2rem;
    border: 2px solid var(--azul-mariano);
    background: transparent;
    color: var(--azul-mariano);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transicao-rapida);
    font-family: var(--font-titulo);
    font-weight: 600;
    min-height: 48px;
}

.page-btn:hover,
.page-btn.active {
    background: var(--azul-mariano);
    color: white;
}

/* ============================
   RESPONSIVIDADE
   ============================= */
@media (max-width: 1024px) {
    .historia-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .eventos-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

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

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-post.featured {
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .hero h2 {
        font-size: clamp(1.2rem, 4vw, 1.6rem);
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .evento-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .evento-date {
        align-self: center;
        margin-bottom: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: clamp(1.5rem, 4.5vw, 2rem);
    }

    .hero h2 {
        font-size: clamp(1rem, 3.5vw, 1.4rem);
    }

    .hero-subtitle {
        font-size: clamp(0.8rem, 2.5vw, 1rem);
        padding: 0 0.5rem;
    }

    .section-header {
        padding-top: 2rem;
    }

    .evento-card {
        padding: 1rem;
    }

    .folheto-card {
        padding: 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .church-name h1 {
        font-size: clamp(1rem, 2.5vw, 1.2rem);
    }

    .post-image {
        height: 150px;
    }

    .post-content {
        padding: 1rem;
    }
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--creme);
}

::-webkit-scrollbar-thumb {
    background: var(--gradiente-mariano);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradiente-dourado);
}