/* ===== RESET E CONFIGURAÇÕES GLOBAIS ===== */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    -webkit-tap-highlight-color: transparent; 
}

html, body { 
    height: 100%; 
}

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    background: #fdfdfd;
    scroll-behavior: smooth;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ===== VARIÁVEIS CSS ===== */
:root {
    --fg-green-1: #0f6a2a;
    --fg-green-2: #1f7a34;
    --fg-green-3: #0f5f26;
    --fg-gold: #ffd047;
    --fg-chip-stroke: #ffffff33;
}

/* ===== NAVBAR ===== */
.navbar {
    background: #fff;
    padding: 12px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.06);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1100;
}

.navbar .container { 
    width: 90%; 
    max-width: 1200px; 
    margin: auto; 
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

/* Logo */
.logo {
    font-family: storefront-pro;
    font-weight: bold; 
    color: #006400; 
    font-size: 1.05rem; 
}

/* Nav links - desktop */
.nav-links { 
    list-style: none; 
    display: flex; 
    gap: 18px; 
    align-items: center; 
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color .18s ease;
    padding: 6px 8px;
    border-radius: 8px;
}

.nav-links a:hover { 
    color: #006400; 
    background: #f6fff6; 
}

/* Navbar redes sociais */
.nav-social a {
    color: #006400;
    font-size: 1rem;
    margin-left: 8px;
    transition: color .2s ease;
}

.nav-social a:hover {
    color: #25c160;
}

/* Mobile nav toggle (hamburger) */
.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
}

.hamburger, .hamburger::before, .hamburger::after {
    display: block;
    height: 2px;
    width: 20px;
    background: #06421a;
    border-radius: 2px;
    position: relative;
}

.hamburger::before, .hamburger::after {
    content: "";
    position: absolute;
    left: 0;
}

.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }

/* ===== HERO SECTION ===== */
.hero {
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 120px 20px 80px;
    overflow: hidden;
    background:
        radial-gradient(1200px 600px at 50% 0%, #00000022, transparent 60%),
        linear-gradient(165deg, var(--fg-green-1) 0%, var(--fg-green-2) 55%, var(--fg-green-3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-image-container {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 520px;
    opacity: 0.92;
    pointer-events: none;
}

.frei-galvao-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    mask-image: linear-gradient(to bottom, black 35%, transparent 95%);
    -webkit-mask-image: linear-gradient(to bottom, black 35%, transparent 95%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url("img/background.png") center/cover no-repeat;
    filter: contrast(115%) saturate(110%);
    pointer-events: none;
}

/* Tipografia Hero */
.hero-title {
    color: #fff;
    font-weight: 800;
    line-height: 1.05;
    font-size: clamp(2rem, 6vw, 4.4rem);
    text-shadow: 0 6px 22px rgba(0,0,0,.28);
}

.hero-year {
    margin-top: .25rem;
    font-weight: 800;
    color: var(--fg-gold);
    font-size: clamp(1.3rem, 4vw, 2.6rem);
}

.hero-subtitle { 
    color: #fff; 
    margin: 12px auto 6px; 
    font-size: clamp(.95rem, 2.2vw, 1.2rem); 
    max-width: 900px; 
}

.hero-verse { 
    color: #fff; 
    margin: 0 auto 18px; 
    font-size: .95rem; 
    opacity: .92; 
    max-width: 780px; 
}

/* Chips */
.hero-chips {
    color: #fff;
    display: flex; 
    justify-content: center; 
    gap: 10px; 
    flex-wrap: wrap;
    margin: 14px 0 20px;
}

.chip {
    display: inline-flex; 
    align-items: center; 
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--fg-chip);
    border: 1px solid var(--fg-chip-stroke);
    backdrop-filter: blur(4px);
    font-weight: 500;
    font-size: .92rem;
}

/* Botão CTA */
.hero-cta { 
    display: flex; 
    gap: 12px; 
    justify-content: center; 
    margin-top: 12px; 
    flex-wrap: wrap; 
}

.btn-cta { 
    padding: 12px 26px; 
    border-radius: 999px; 
    background: var(--fg-gold); 
    color: #2b1f00; 
    font-weight: 800; 
    text-decoration: none; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.18); 
    transition: transform .16s ease; 
}

.btn-cta:hover { 
    transform: translateY(-6px); 
}

.btn-outline { 
    padding: 12px 20px; 
    border-radius: 999px; 
    border: 2px solid rgba(255,255,255,0.12); 
    color: #fff; 
    text-decoration: none; 
    font-weight: 700; 
    background: transparent; 
}

.btn-outline:hover { 
    transform: translateY(-4px); 
}

/* Temporizador */
.countdown {
    margin: 24px auto 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;  
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: #00000022;
    border: 1px solid #ffffff2d;
    backdrop-filter: blur(6px);
    color: var(--fg-gold);
    font-weight: 800;
    box-shadow: 0 6px 18px rgba(0,0,0,.16);
}

.countdown .cd-box { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    min-width: 60px; 
}

.countdown .cd-box span { 
    font-size: 1.4rem; 
}

.countdown .cd-box small { 
    font-size: .65rem; 
    color: #fff; 
    opacity: .9; 
    margin-top: 4px; 
}

.countdown .cd-sep { 
    align-self: center; 
    opacity: .5; 
    font-weight: 700; 
    font-size: 1.2rem; 
}

/* Scroll button */
.hero-scroll {
    position: absolute; 
    left: 50%; 
    bottom: 18px; 
    transform: translateX(-50%);
    font-size: 1.6rem;
    background: none; 
    border: none; 
    color: #fff; 
    cursor: pointer;
    animation: bob 2.2s ease-in-out infinite;
}

@keyframes bob { 
    0%, 100% { transform: translateX(-50%) translateY(0); } 
    50% { transform: translateX(-50%) translateY(4px); } 
}

/* ===== SEÇÕES GERAIS ===== */
/* section { 
    padding: 86px 20px; 
} */

.container { 
    width: 90%; 
    margin: auto; 
    max-width: 1200px; 
}

h2 { 
    text-align: center; 
    margin-bottom: 24px; 
    color: #006400; 
}

.titulo {
  text-align: center;
  font-size: clamp(1.6rem, 4.2vw, 3.2rem);
  color: #006400;
  margin-bottom: 16px;
}

.subtitulo {
  text-align: center;
  font-size: 1.05rem;
  max-width: 850px;
  margin: 0 auto 28px;
  color: #555;
}

/* ===== SEÇÃO SOBRE ===== */
.sobre {
    padding: 200px 20px 0px 20px;
}

.sobre-content { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 24px; 
    align-items: center; 
}

.sobre .texto { 
    flex: 1; 
    font-size: 1.02rem; 
}

.sobre .titulo {
    text-align: center;
    font-size: clamp(1.6rem, 4.2vw, 3.2rem);
    color: #006400;
    margin-bottom: 16px;
}

.sobre .subtitulo {
    text-align: center;
    font-size: 1.05rem;
    max-width: 850px;
    margin: 0 auto 28px;
    color: #555;
}

.sobre .texto {
    flex: 1 1 55%;
    font-size: clamp(.95rem,1.8vw,1.05rem);
    line-height: 1.7;
    color: #7a7a7a;
}

.sobre .imagem {
    flex: 1 1 40%;
    text-align: center;
}

.sobre .imagem img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    object-fit: cover;
    height: auto;
}

/* Métricas */
.metricas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 30px;
}

.metrica-card {
    padding: 20px 14px;
    border-radius: 12px;
    text-align: center;
    font-weight: bold;
    color: #f2e721;
    background: #006400;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}

.metrica-card p {
    margin-top: 8px;
    font-weight: normal;
    color: #fff;
}

/* ===== SEÇÃO HISTÓRIA ===== */
.historia {
  padding: 150px 20px 0px 20px;
}

.historia .titulo {
    text-align: center;
    font-size: clamp(1.6rem, 4.2vw, 3.2rem);
    color: #006400;
    margin-bottom: 16px;
}

.historia .subtitulo {
    text-align: center;
    font-size: 1.05rem;
    max-width: 850px;
    margin: 0 auto 28px;
    color: #555;
}

/* Grid principal */
.cards-santo {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 24px;
    align-items: stretch;
}

/* Cards */
.card-santo {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
}

.card-santo img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Imagem específica do card Vida e Obra */
.card-vida-obra img {
    height: 60% !important;
    flex: 1 !important;
    object-fit: cover !important;
}

.card-texto {
    padding: 18px 16px;
    flex: 1;
}

.card-vida-obra .card-texto {
    flex: 0 0 auto;
    padding: 20px 18px;
}

.card-texto h3 {
    color: #006400;
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.card-texto p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
    font-size: .95rem;
}

/* Coluna direita com 2 cards empilhados */
.coluna-direita {
    display: flex;
    flex-direction: column;
    gap: 10%;
}

/* Vida e Obra ocupa altura total da esquerda */
.card-vida-obra {
    display: flex !important;
    flex-direction: column !important;
    height: 90% !important;
}

/* ===== SEÇÃO PROGRAMAÇÃO ===== */
.programacao {
    /* background: #006400; */
    background: url("img/background.png");
    padding: 150px 20px;
    color: #fff;
}

.programacao h2 {
    text-align: center;
    font-size: clamp(1.6rem, 3.6vw, 2.6rem);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 900;
    margin-bottom: 12px;
    color: #fff;
}

.programacao h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    margin: 8px auto 0;
    border-radius: 999px;
    background: #ffffffcc;
}

.programacao .subtitulo {
    text-align: center;
    font-size: 1.05rem;
    max-width: 850px;
    margin: 0 auto 28px;
    color: #fff;
}

/* Abas (dias) */
.programacao .tabs {
    display: flex; 
    justify-content: center; 
    gap: 10px; 
    margin: 18px 0 26px; 
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 16px;
    border: none;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,.12) inset;
    font-size: .95rem;
}

.tab-btn:hover { 
    transform: translateY(-2px); 
    background: rgba(255,255,255,.18); 
}

.tab-btn.active {
    background: #25c160;
    color: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,.18);
}

/* Lista de eventos */
.programacao-content { 
    max-width: 1100px; 
    margin: 0 auto; 
    padding-bottom: 6px; 
}

.evento-card {
    position: relative;
    display: flex; 
    align-items: center; 
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff1f 0%, #ffffff12 100%);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
    margin-bottom: 12px;
    overflow: hidden;
    transition: transform .12s ease, box-shadow .14s ease;
}

.evento-card:hover { 
    transform: translateY(-4px); 
    box-shadow: 0 14px 28px rgba(0,0,0,.16); 
}

/* Barra colorida à esquerda */
.evento-card::before {
    content: "";
    position: absolute; 
    left: 0; 
    top: 0; 
    bottom: 0; 
    width: 6px;
    background: var(--tone, #4cd07a);
}

/* Ícone + bolha da hora */
.evento-icon {
    position: relative;
    width: 56px; 
    height: 56px; 
    flex: 0 0 56px;
    border-radius: 12px;
    display: flex; 
    align-items: center; 
    justify-content: center;
    background: var(--tone-soft, rgba(255,255,255,.12));
    border: 2px solid var(--tone, #4cd07a);
    box-shadow: inset 0 4px 12px rgba(0,0,0,.12), 0 6px 12px rgba(0,0,0,.12);
    font-size: 22px;
}

.evento-icon .badge { 
    display: none; 
}

/* Título com hora */
.evento-body h4::before {
    content: attr(data-hora) " - ";
    font-weight: 700;
    color: #ffe07a;
}

.evento-body p {
    margin: 0;
    color: #eaffea;
    opacity: .95;
    line-height: 1.45;
    font-size: .95rem;
}

/* Paleta de tons */
.tone-amber { --tone: #f5a500; --tone-soft: rgba(245,165,0,.14); }
.tone-blue { --tone: #70a8ff; --tone-soft: rgba(112,168,255,.14); }
.tone-purple { --tone: #b985ff; --tone-soft: rgba(185,133,255,.14); }
.tone-green { --tone: #59d289; --tone-soft: rgba(89,210,137,.14); }

/* ===== SLIDER DE LOGOS PARCEIROS ===== */
.logos-section {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.logos-title {
  text-align: center;
  font-size: clamp(1.6rem, 4.2vw, 3.2rem);
  color: #006400;
  margin-bottom: 16px;
}

.logos-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logos-track {
  display: flex;
  gap: 40px;
  animation: scroll-logos 20s linear infinite;
}

.logos-track img {
  height: 60px;
  object-fit: contain;
  /* filter: grayscale(100%); */
  transition: filter .2s ease;
}
/* 
.logos-track img:hover {
  filter: grayscale(100%);
} */

@keyframes scroll-logos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== PATROCINADORES ESTÁTICOS ===== */
.patrocinadores-section {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.patrocinadores-title {
  text-align: center;
  font-size: clamp(1.6rem, 4.2vw, 3.2rem);
  color: #006400;
  margin-bottom: 40px;
}

.patrocinadores-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

/* Patrocinadores Ouro - Logos Maiores */
.patrocinadores-ouro img {
  height: 120px;
  max-width: 300px;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.patrocinadores-ouro img:hover {
  transform: scale(1.05);
  opacity: 0.8;
}

/* Patrocinadores Prata - Logos Médias */
.patrocinadores-prata img {
  height: 110px;
  max-width: 200px;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.patrocinadores-prata img:hover {
  transform: scale(1.05);
  opacity: 0.8;
}

/* Patrocinadores Bronze - Logos Menores */
.patrocinadores-bronze img {
  height: 100px;
  max-width: 150px;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.patrocinadores-bronze img:hover {
  transform: scale(1.05);
  opacity: 0.8;
}

/* Patrocinadores Bronze - Logos Menores */
.patrocinadores-amigos img {
  height: 100px;
  max-width: 150px;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.patrocinadores-amigos img:hover {
  transform: scale(1.05);
  opacity: 0.8;
}

/* Responsivo para Parceiros */
@media (max-width: 768px) {
  .logos-track { 
    gap: 20px; 
  }
  .logos-track img { 
    height: 45px; 
  }
}

/* Responsivo para Patrocinadores */
@media (max-width: 768px) {
  .patrocinadores-section {
    padding: 40px 20px;
  }
  
  .patrocinadores-grid {
    gap: 20px;
    margin-bottom: 30px;
  }
  
  /* Reduz tamanhos em mobile */
  .patrocinadores-ouro img {
    height: 60px;
    max-width: 150px;
  }
  
  .patrocinadores-prata img {
    height: 50px;
    max-width: 120px;
  }
  
  .patrocinadores-bronze img {
    height: 40px;
    max-width: 100px;
  }

   .patrocinadores-amigos img {
    height: 30px;
    max-width: 100px;
  }
}

@media (max-width: 480px) {
  .patrocinadores-grid {
    gap: 15px;
  }
  
  /* Tamanhos ainda menores para telas muito pequenas */
  .patrocinadores-ouro img {
    height: 50px;
    max-width: 120px;
  }
  
  .patrocinadores-prata img {
    height: 40px;
    max-width: 100px;
  }
  
  .patrocinadores-bronze img {
    height: 35px;
    max-width: 80px;
  }
  .patrocinadores-amigos img {
    height: 25px;
    max-width: 80px;
  }
}


/* ===== SEÇÃO CONTATO ===== */
.contato {
  background: #fff;
  padding: 100px 20px 100px 20px;
}

.contato-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.contato h2 {
    text-align: center;
    font-size: clamp(1.6rem, 4.2vw, 3.2rem);
    color: #006400;
    margin-bottom: 16px;
}

.info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
}

.info-item i {
  color: #006400;
  font-size: 1.2rem;
  margin-top: 4px;
  min-width: 20px;
}

.info-item div strong {
  color: #006400;
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.info-item div p {
  color: #666;
  text-align: left;
  line-height: 1.5;
  font-size: 0.95rem;
}

.info-item div a {
  color: #006400;
  text-decoration: none;
}

.info-item div a:hover {
  text-decoration: underline;
}

.mapa h3 {
  color: #006400;
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.mapa-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  margin-bottom: 20px;
}

.mapa-wrap iframe {
  width: 100%;
  height: 250px;
  border: none;
}

.transporte-info p {
  color: #666;
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.transporte-info p:last-child {
  margin-bottom: 0;
}

.transporte-info strong {
  color: #006400;
}

/* ===== FOOTER ===== */
footer {
    /* background: #006400; */
    background: url("img/background.png") center/cover no-repeat;
    color: #fff;
    padding: 50px 20px 20px;
    margin-top: auto;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto 20px;
    text-align: center;
}

/* Coluna da informação do evento */
.evento-info h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: #fff;
    font-weight: 800;
}

.evento-info p {
    margin: 4px 0;
    font-size: 1rem;
}

/* Coluna social */
.social-info h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: #fff;
    font-weight: 800;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.footer-social a {
    color: #fff;
    font-size: 1.6rem;
    transition: color .2s ease;
}

.footer-social a:hover { 
    color: #ffd700; 
}

/* Copyright */
.footer-copy {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.85;
    margin-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 12px;
}

/* ===== PÁGINA EU-VOU ===== */
.eu-vou-page {
    flex: 1;
    padding: 80px;
    text-align: center;
}

.eu-vou-page h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--fg-green-1);
}

.eu-vou-page h2 span { 
    color: var(--fg-gold); 
}

.eu-vou-page p {
    margin-bottom: 20px;
    color: #444;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.upload-label {
    display: inline-block;
    padding: 12px 24px;
    background: var(--fg-green-1);
    color: #fff;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    margin-bottom: 20px;
    transition: background .2s ease;
}

.upload-label:hover { 
    background: var(--fg-green-2); 
}

.preview-box {
    margin: 0 auto;
    max-width: 500px;
    position: relative;
    background: #f8f8f8;
    border: 2px dashed #ccc;
    border-radius: 16px;
    padding: 10px;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.preview-box canvas {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    display: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.preview-box p {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #555;
}

#ajudaMsg {
    font-size: 0.8rem;
    color: #777;
    margin-top: 6px;
}

.eu-vou-page .btn-cta,
.eu-vou-page .btn-outline,
.eu-vou-page .btn-sm {
    margin-top: 8px;
}

.eu-preview { 
    margin-top: 30px; 
}

.preview-frame {
    width: 280px;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

.preview-frame .canvas-wrap {
    width: 92%;
    height: 92%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

/* ===== PÁGINA DOCUMENTOS ===== */
.documentos-main {
    flex: 1;
    padding: 80px 20px 60px;
    background: #fdfdfd;
}

.documentos-header {
    text-align: center;
    margin-bottom: 40px;
}

.documentos-titulo {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #006400;
    margin-bottom: 16px;
    font-weight: 700;
}

.documentos-subtitulo {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.documentos-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--fg-green-1), var(--fg-green-2));
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Seção de arquivos */
.arquivos-section {
    max-width: 800px;
    margin: 0 auto;
}

.arquivos-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,100,0,0.1);
    animation: fadeInUp 0.6s ease-out;
}

.arquivos-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.arquivos-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    background: #59d289;
}

.arquivos-titulo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #006400;
    margin: 0;
}

.arquivos-lista {
    max-height: 500px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #ccc #f8f9fa;
}

.arquivos-lista::-webkit-scrollbar {
    width: 6px;
}

.arquivos-lista::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 3px;
}

.arquivos-lista::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.arquivos-lista::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.arquivo-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 12px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    background: #fafafa;
}

.arquivo-item:hover {
    background-color: #f0f8f0;
    border-color: #e0f0e0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,100,0,0.1);
}

.arquivo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #f8f9fa;
    color: #666;
    font-size: 16px;
    flex-shrink: 0;
}

.arquivo-info {
    flex: 1;
    min-width: 0;
}

.arquivo-nome {
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    font-size: 1rem;
}

.arquivo-meta {
    font-size: 0.85rem;
    color: #666;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-download {
    padding: 10px 20px;
    background: #006400;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.btn-download:hover {
    background: #004d00;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,100,0,0.3);
}

.btn-download:active {
    transform: translateY(0);
}

.btn-download:focus {
    outline: 2px solid #006400;
    outline-offset: 2px;
}

.arquivos-vazio {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.arquivos-vazio i {
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: 0.5;
    color: #59d289;
}

.arquivos-vazio p {
    font-size: 1.1rem;
    margin: 0;
}

/* Breadcrumb */
.breadcrumb {
    background: #f8f9fa;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-content {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb a {
    color: #006400;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

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

/* Estados de loading */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading .btn-download {
    background: #ccc;
    cursor: not-allowed;
}

/* ===== RESPONSIVIDADE ===== */
@media (min-width: 1100px) {
    .hero { 
        padding-top: 400px; 
        padding-bottom: 120px; 
    }
}

@media (max-width: 1024px) {
    .hero { 
        padding-top: 120px; 
        padding-bottom: 100px; 
    }
}

@media (max-width: 768px) {
    .nav-toggle { 
        display: block; 
    }
    
    .nav-links {
        position: fixed;
        right: 16px;
        top: 64px;
        background: #fff;
        padding: 12px;
        border-radius: 12px;
        box-shadow: 0 8px 30px rgba(0,0,0,.12);
        display: flex;
        flex-direction: column;
        gap: 8px;
        transform: translateY(-8px) scale(.98);
        opacity: 0;
        visibility: hidden;
        transition: all .18s ease;
        min-width: 200px;
        z-index: 1200;
    }
    
    .nav-links.open { 
        opacity: 1; 
        visibility: visible; 
        transform: translateY(0) scale(1); 
    }
    
    .nav-links a { 
        color: #063d1f; 
        background: transparent; 
        padding: 8px 10px; 
        border-radius: 8px; 
    }
    
    .nav-links a:hover { 
        background: #f1ffef; 
    }

    .hero { 
        padding: 350px 12px 60px; 
        min-height: calc(100vh - 56px); 
    }
    
    .hero-content { 
        padding: 0 6px; 
        z-index: 1;
    }
    
    .countdown .cd-box span { 
        font-size: 1.2rem; 
    }
    
    .countdown .cd-box { 
        min-width: 52px; 
    }

    .sobre-content { 
        flex-direction: column-reverse; 
        gap: 16px; 
    }
    
    .sobre .imagem img { 
        max-width: 420px; 
        border-radius: 10px; 
    }

    .cards-santo { 
        grid-template-columns: 1fr; 
    }

    .tab-btn { 
        padding: 8px 12px; 
        font-size: .9rem; 
    }
    
    .programacao-content { 
        padding: 6px 4px 18px; 
    }
    
    .evento-card { 
        flex-direction: row; 
        gap: 12px; 
        padding: 12px; 
    }
    
    .evento-icon { 
        width: 48px; 
        height: 48px; 
        flex-basis: 48px; 
        font-size: 18px; 
    }
    
    .evento-icon .badge { 
        min-width: 30px; 
        height: 30px; 
        font-size: .78rem; 
    }

    /* Contato responsivo */
    .contato-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contato .mapa iframe { 
        height: 200px; 
    }

    .footer-inner {
        flex-direction: column;
        gap: 30px;
    }

    footer { 
        padding: 20px 12px; 
    }

    /* Página EU-VOU mobile */
    .preview-box { 
        padding: 14px; 
    }
    
    .upload-label, #baixarBtn { 
        width: 100%; 
        max-width: 300px; 
    }

    /* Página Documentos mobile */
    .documentos-main {
        padding: 60px 15px 40px;
    }
    
    .arquivos-card {
        padding: 20px;
    }
    
    .arquivos-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .arquivo-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 20px 16px;
    }
    
    .arquivo-meta {
        justify-content: center;
        gap: 12px;
    }
    
    .btn-download {
        width: 100%;
        justify-content: center;
    }
    
    .documentos-titulo {
        font-size: 2rem;
    }
    
    .documentos-subtitulo {
        font-size: 1rem;
    }
}

@media (max-width: 420px) {
    .hero-title { 
        font-size: clamp(1.6rem, 7.5vw, 2.4rem); 
    }
    
    .hero-year { 
        font-size: 1.2rem; 
    }
    
    .chip { 
        padding: 8px 10px; 
        font-size: .86rem; 
    }
    
    .btn-cta { 
        padding: 10px 16px; 
        font-size: .95rem; 
    }
    
    .nav-links { 
        right: 10px; 
        min-width: 180px; 
    }
}

/* ===== ACESSIBILIDADE ===== */
a:focus, button:focus { 
    outline: 3px solid rgba(37,193,96,0.18); 
    outline-offset: 2px; 
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .breadcrumb,
    .btn-download {
        display: none;
    }
    
    .arquivos-card {
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .documentos-main {
        padding: 20px;
    }
}
