  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html, body {
     overflow-x: hidden;
     max-width: 100%;
    }
    :root {
      --gold: #C9A84C;
      --gold-light: #E8D5A3;
      --gold-dark: #8B6914;
      --ivory: #FAF7F2;
      --parchment: #F0E8D8;
      --dark: #1A1410;
      --dark-mid: #2E2418;
      --text: #3D2E1E;
      --text-muted: #7A6550;
      --blue-deep: #1B2D4F;
      --crimson: #7B1C2E;
      --accent: #4A6741;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Raleway', sans-serif;
      background-color: var(--ivory);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 3rem;
      background: rgba(26, 20, 16, 0.92);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(201, 168, 76, 0.25);
    }

    .nav-logo {
      font-family: 'Cinzel', serif;
      color: var(--gold);
      font-size: 1.1rem;
      letter-spacing: 0.12em;
      text-decoration: none;
    }

    .nav-links {
      display: none;
      gap: 2.5rem;
      list-style: none;
    }

    .nav-links a {
      font-family: 'Raleway', sans-serif;
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold-light);
      text-decoration: none;
      opacity: 0.85;
      transition: opacity 0.2s;
    }

    .nav-links a:hover { opacity: 1; }

    /* ── HERO ── */
    .hero {
      position: relative;
      height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      background: var(--dark);
      padding: 7rem 2rem;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: 
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(123,28,46,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 80% 20%, rgba(27,45,79,0.15) 0%, transparent 60%);
    }

    .hero-ornament {
      width: 2px;
      height: 80px;
      background: linear-gradient(to bottom, transparent, var(--gold));
      margin-bottom: 2rem;
      animation: fadeDown 1.2s ease forwards;
    }

    .hero-eyebrow {
      font-family: 'Raleway', sans-serif;
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.5rem;
      animation: fadeUp 1s ease 0.3s both;
    }

    .hero-title {
      font-family: 'Cinzel', serif;
      font-size: clamp(2.8rem, 7vw, 5.5rem);
      font-weight: 600;
      color: var(--ivory);
      line-height: 1.1;
      letter-spacing: 0.04em;
      margin-bottom: 1rem;
      animation: fadeUp 1s ease 0.5s both;
    }

    .hero-title em {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-weight: 300;
      color: var(--gold-light);
    }

    .hero-subtitle {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.35rem;
      font-weight: 300;
      font-style: italic;
      color: rgba(240, 232, 216, 0.7);
      max-width: 520px;
      line-height: 1.7;
      margin-bottom: 3rem;
      animation: fadeUp 1s ease 0.7s both;
    }

    .hero-cta {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      border: 1px solid rgba(201,168,76,0.5);
      padding: 0.85rem 2.5rem;
      text-decoration: none;
      transition: background 0.3s, color 0.3s;
      animation: fadeUp 1s ease 0.9s both;
    }

    .hero-cta:hover {
      background: var(--gold);
      color: var(--dark);
    }

    .hero-scroll {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      color: rgba(201,168,76,0.5);
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      animation: pulse 2s ease infinite;
    }

    .hero-scroll::after {
      content: '';
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, rgba(201,168,76,0.4), transparent);
    }

    /* ── INTRO ── */
    .intro {
      padding: 7rem 2rem;
      max-width: 720px;
      margin: 0 auto;
      text-align: center;
    }

    .section-tag {
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold-dark);
      display: block;
      margin-bottom: 1.5rem;
    }

    .intro h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 300;
      line-height: 1.4;
      color: var(--dark);
      margin-bottom: 1.5rem;
    }

    .intro p {
      font-size: 1rem;
      line-height: 1.85;
      color: var(--text-muted);
      max-width: 580px;
      margin: 0 auto;
    }

    .divider {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin: 2.5rem auto;
      max-width: 200px;
    }

    .divider::before, .divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--gold-light);
    }

    .divider-cross {
      color: var(--gold);
      font-size: 1rem;
    }

    /* ── SANTOS GRID ── */
    .santos-section {
      padding: 5rem 2rem 8rem;
      background: var(--parchment);
      border-top: 1px solid var(--gold-light);
    }

    .section-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .section-header h2 {
      font-family: 'Cinzel', serif;
      font-size: clamp(1.5rem, 3vw, 2rem);
      font-weight: 400;
      color: var(--dark);
      letter-spacing: 0.08em;
      margin-bottom: 0.75rem;
    }

    .section-header p {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem;
      font-style: italic;
      color: var(--text-muted);
    }

     .santos-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill,minmax(min(280px, 100%), 1fr) );
      gap: 2rem;
      max-width: 1100px;
      margin: 0 auto;
      overflow: hidden;
      
    }

    .santo-card {
      background: var(--ivory);
      border: 1px solid var(--gold-light);
      text-decoration: none;
      display: block;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .santo-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(139, 105, 20, 0.15);
    }

    .santo-card-img {
      width: 100%;
      aspect-ratio: 3/4;
      background: var(--dark-mid);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
    }

    .santo-card-img-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cinzel', serif;
      font-size: 3rem;
      color: rgba(201,168,76,0.2);
      letter-spacing: 0.1em;
    }

    .santo-card-year {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: var(--gold);
      color: var(--dark);
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      padding: 0.25rem 0.6rem;
    }

    .santo-card-body {
      padding: 1.5rem;
      border-top: 2px solid var(--gold);
    }

    .santo-card-category {
      font-size: 0.65rem;
      font-weight: 500;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold-dark);
      margin-bottom: 0.5rem;
    }

    .santo-card-name {
      font-family: 'Cinzel', serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 0.4rem;
      line-height: 1.3;
    }

    .santo-card-dates {
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.95rem;
      font-style: italic;
      color: var(--text-muted);
      margin-bottom: 0.75rem;
    }

    .santo-card-desc {
      font-size: 0.88rem;
      line-height: 1.7;
      color: var(--text-muted);
    }

    /* ── TIMELINE ── */
    .timeline-section {
      padding: 7rem 2rem;
      max-width: 900px;
      margin: 0 auto;
    }

    .timeline {
      position: relative;
      padding-left: 2.5rem;
    }

    .timeline::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 1px;
      background: linear-gradient(to bottom, transparent, var(--gold-light), transparent);
    }

    .timeline-item {
      position: relative;
      padding-bottom: 3rem;
    }

    .timeline-item::before {
      content: '';
      position: absolute;
      left: -2.5rem;
      top: 0.35rem;
      width: 7px;
      height: 7px;
      border: 1px solid var(--gold);
      background: var(--ivory);
      transform: rotate(45deg);
    }

    .timeline-year {
      font-family: 'Cinzel', serif;
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      color: var(--gold-dark);
      margin-bottom: 0.4rem;
    }

    .timeline-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.35rem;
      font-weight: 400;
      color: var(--dark);
      margin-bottom: 0.5rem;
    }

    .timeline-body {
      font-size: 0.9rem;
      line-height: 1.75;
      color: var(--text-muted);
    }

    /* ── QUOTE BLOCK ── */
    .quote-section {
      background: var(--blue-deep);
      padding: 7rem 2rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .quote-section::before {
      content: '"';
      position: absolute;
      top: -2rem;
      left: 50%;
      transform: translateX(-50%);
      font-family: 'Cormorant Garamond', serif;
      font-size: 20rem;
      color: rgba(201,168,76,0.05);
      line-height: 1;
      pointer-events: none;
    }

    .quote-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.5rem, 3.5vw, 2.2rem);
      font-weight: 300;
      font-style: italic;
      color: var(--gold-light);
      max-width: 700px;
      margin: 0 auto 2rem;
      line-height: 1.6;
      position: relative;
    }

    .quote-author {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      opacity: 0.8;
    }

    /* ── MAPA SECTION ── */
     .mapa-atalho{
      display: flex;
      justify-content: center;
      padding: 3rem 1.5rem;
    }

      .btn-mapa{
       display: inline-block;
       padding: 1rem 2rem;
       background: #2b1d14;
       color: #d4a94f;
       text-decoration: none;
       letter-spacing: 2px;
       font-size: 0.95rem;
       border: 1px solid #d4a94f;
       transition: 0.3s ease;
      }

      .btn-mapa:hover{
       background: #3a281d;
       transform: translateY(-2px);
      }

    /* ── CATEGORIAS ── */
    .cat-section {
      padding: 7rem 2rem;
      max-width: 1100px;
      margin: 0 auto;
    }

    .cat-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 1px;
      border: 1px solid var(--gold-light);
      margin-top: 3rem;
    }

    .cat-item {
      padding: 2rem 1.5rem;
      border: 1px solid var(--gold-light);
      text-align: center;
      text-decoration: none;
      transition: background 0.25s;
    }

    .cat-item:hover { background: var(--parchment); }

    .cat-icon {
      font-size: 1.8rem;
      margin-bottom: 0.75rem;
      display: block;
    }

    .cat-name {
      font-family: 'Cinzel', serif;
      font-size: 0.85rem;
      font-weight: 400;
      letter-spacing: 0.08em;
      color: var(--dark);
      display: block;
      margin-bottom: 0.35rem;
    }

    .cat-count {
      font-size: 0.7rem;
      color: var(--text-muted);
      letter-spacing: 0.1em;
    }

    /* ── NEWSLETTER ── */
    .newsletter-section {
      padding: 6rem 2rem;
      background: var(--dark);
      text-align: center;
    }

    .newsletter-section h2 {
      font-family: 'Cinzel', serif;
      font-size: 1.4rem;
      font-weight: 400;
      color: var(--ivory);
      letter-spacing: 0.1em;
      margin-bottom: 0.75rem;
    }

    .newsletter-section p {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-style: italic;
      color: rgba(240,232,216,0.6);
      margin-bottom: 2rem;
    }

    .newsletter-form {
      display: flex;
      gap: 0;
      max-width: 440px;
      margin: 0 auto;
    }

    .newsletter-form input {
      flex: 1;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(201,168,76,0.35);
      border-right: none;
      padding: 0.85rem 1.25rem;
      color: var(--ivory);
      font-family: 'Raleway', sans-serif;
      font-size: 0.85rem;
      outline: none;
    }

    .newsletter-form input::placeholder { color: rgba(240,232,216,0.35); }

    .newsletter-form button {
      background: var(--gold);
      border: none;
      padding: 0.85rem 1.5rem;
      color: var(--dark);
      font-family: 'Raleway', sans-serif;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.2s;
    }

    .newsletter-form button:hover { background: var(--gold-light); }
     
      #newsletter-msg {
       margin-top: 1rem;
       font-size: 0.95rem;
       color: var(--gold);
       font-family: 'Cormorant Garamond', serif;
     }
     s
    /* ── FOOTER ── */
    footer {
      background: var(--dark-mid);
      padding: 3rem 2rem;
      border-top: 1px solid rgba(201,168,76,0.2);
    }

    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1.5rem;
    }

    .footer-logo {
      font-family: 'Cinzel', serif;
      color: var(--gold);
      font-size: 0.95rem;
      letter-spacing: 0.15em;
    }

    .footer-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }

    .footer-links a {
      font-size: 0.72rem;
      color: rgba(240,232,216,0.45);
      text-decoration: none;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      transition: color 0.2s;
    }

    .footer-links a:hover { color: var(--gold); }

    .footer-copy {
      font-size: 0.7rem;
      color: rgba(240,232,216,0.25);
      letter-spacing: 0.08em;
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeDown {
      from { opacity: 0; height: 0; }
      to { opacity: 1; height: 80px; }
    }

    @keyframes pulse {
      0%, 100% { opacity: 0.5; }
      50% { opacity: 1; }
    }

    /* ── RESPONSIVE ── */
  .nav-hamburguer {
   display: none;
  } 
/* Funciona em todas as telas */
@media (max-width: 9999px) {
  .nav-links { display: none; }
  .nav-hamburguer { display: block !important; }
  .nav-links.aberto { 
    display: flex !important; 
    flex-direction: column; 
    position: fixed; 
    top: 60px; 
    left: 0; 
    right: 0; 
    background: rgba(26,20,16,0.98); 
    padding: 2rem; 
    gap: 1.5rem; 
    z-index: 99; 
  }
}

/* Só no celular */
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .mapa-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .cat-grid { grid-template-columns: 1fr 1fr; overflow: hidden; }
  .mapa-stats {gap: 2rem;padding: 3rem 1rem;}
  .stat-item { min-width: 120px;}
  .milagres-section { margin: 0; padding-left: 1.5rem; padding-right: 1.5rem; }
  .oracao-section { margin: 0; padding-left: 1.5rem; padding-right: 1.5rem; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .hero-subtitle { width: 100% !important; max-width: 100% !important; box-sizing: border-box !important; padding-left: 1.5rem !important; padding-right: 1.5rem !important;}
}  
  


 


