* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --terra: #8B4513;
  --terra-light: #A0522D;
  --terra-dark: #6B3A1F;
  --areia: #D2B48C;
  --areia-light: #F5DEB3;
  --verde: #556B2F;
  --creme: #FFF8F0;
  --branco: #ffffff;
  --texto: #3B2A1A;
  --texto2: #6B4C33;
  --borda: #D2B48C;
}

html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Arial, sans-serif; background: var(--creme); color: var(--texto); line-height: 1.7; }

/* ── NAV ── */
nav {
  background: var(--terra);
  position: sticky; top: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 58px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.nav-logo { color: #FFF8F0; font-size: 19px; font-weight: 700; letter-spacing: 1px; text-decoration: none; white-space: nowrap; }
.nav-links { display: flex; }
.nav-links a {
  color: #F5DEB3; font-size: 13px; padding: 0 13px; line-height: 58px;
  text-decoration: none; transition: background 0.2s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.ativo { background: var(--terra-light); color: #fff; }
.hamburger { display: none; background: none; border: none; cursor: pointer; color: #F5DEB3; font-size: 26px; line-height: 1; }

/* ── HERO ── */
.hero {
  background: linear-gradient(160deg, var(--terra-dark) 0%, var(--terra) 45%, var(--verde) 100%);
  color: #FFF8F0; text-align: center; padding: 5rem 2rem 4rem;
}
.hero h1 { font-size: 44px; font-weight: 700; letter-spacing: 2px; }
.hero .subtitulo { font-size: 17px; color: var(--areia-light); margin-top: 0.75rem; max-width: 580px; margin-left: auto; margin-right: auto; }
.hero .badges { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }
.hero .badge { background: rgba(255,248,240,0.15); border: 1px solid rgba(255,248,240,0.35); color: var(--areia-light); font-size: 12px; padding: 5px 15px; border-radius: 20px; }

/* hero de página interna (menor) */
.hero-pagina {
  background: linear-gradient(135deg, var(--terra-dark) 0%, var(--terra) 60%, var(--verde) 100%);
  color: #FFF8F0; padding: 3rem 2rem 2.5rem; text-align: center;
}
.hero-pagina h1 { font-size: 32px; font-weight: 700; }
.hero-pagina p { color: var(--areia-light); margin-top: 0.5rem; font-size: 15px; }

/* ── LAYOUT ── */
.container { max-width: 960px; margin: 0 auto; padding: 3rem 2rem; }
.container-lg { max-width: 1100px; margin: 0 auto; padding: 3rem 2rem; }

h2.titulo-secao {
  font-size: 22px; font-weight: 700; color: var(--terra);
  border-left: 5px solid var(--areia); padding-left: 14px;
  margin-bottom: 1.5rem; margin-top: 2.5rem;
}
h2.titulo-secao:first-child { margin-top: 0; }

.sep { border: none; border-top: 1px solid #E8D5C0; margin: 2.5rem 0; }

p.lead { font-size: 15px; color: var(--texto2); line-height: 1.85; margin-bottom: 1.25rem; }

/* ── CARDS GENÉRICOS ── */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 18px; }
.card {
  background: var(--branco); border-radius: 12px; border: 1px solid var(--borda);
  padding: 1.4rem; transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: 0 4px 16px rgba(139,69,19,0.13); transform: translateY(-2px); }
.card .icon { font-size: 30px; margin-bottom: 0.75rem; }
.card h3 { font-size: 15px; font-weight: 700; color: var(--terra); margin-bottom: 0.4rem; }
.card p { font-size: 13px; color: var(--texto2); line-height: 1.65; }
.card .tag { display: inline-block; font-size: 11px; background: var(--areia-light); color: var(--terra); padding: 2px 8px; border-radius: 10px; margin-bottom: 8px; }

/* ── CARDS WIDE (turismo) ── */
.cards-wide { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.card-wide {
  background: var(--branco); border-radius: 14px; border: 1px solid var(--borda);
  padding: 1.5rem; transition: box-shadow 0.2s;
}
.card-wide:hover { box-shadow: 0 4px 18px rgba(139,69,19,0.13); }
.card-wide .icon { font-size: 32px; margin-bottom: 0.75rem; }
.card-wide h3 { font-size: 16px; font-weight: 700; color: var(--terra); margin-bottom: 0.5rem; }
.card-wide p { font-size: 13.5px; color: var(--texto2); line-height: 1.7; }
.card-wide .info { margin-top: 0.75rem; font-size: 12px; color: var(--terra-light); display: flex; align-items: center; gap: 5px; }

/* ── TIMELINE ── */
.timeline { border-left: 3px solid var(--areia); padding-left: 1.75rem; }
.timeline-item { margin-bottom: 2rem; position: relative; }
.timeline-item::before {
  content: ''; width: 14px; height: 14px; border-radius: 50%;
  background: var(--terra); border: 2px solid var(--areia-light);
  position: absolute; left: -27px; top: 4px;
}
.timeline-item h3 { font-size: 15px; font-weight: 700; color: var(--terra); }
.timeline-item p { font-size: 14px; color: var(--texto2); margin-top: 5px; line-height: 1.7; }

/* ── PRODUTO DESTAQUE ── */
.produto-destaque {
  background: var(--branco); border: 1px solid var(--borda); border-radius: 14px;
  padding: 1.4rem 1.6rem; margin-bottom: 14px;
  display: flex; align-items: flex-start; gap: 14px;
}
.produto-destaque .icone { font-size: 26px; min-width: 38px; margin-top: 2px; }
.produto-destaque h3 { font-size: 15px; font-weight: 700; color: var(--terra); margin-bottom: 4px; }
.produto-destaque p { font-size: 13.5px; color: var(--texto2); line-height: 1.7; }
.badge-ouro { background: #FFF3CD; color: #7a5c00; font-size: 11px; padding: 2px 9px; border-radius: 10px; margin-left: 8px; font-weight: 600; }
.badge-prata { background: #e8e8e8; color: #555; font-size: 11px; padding: 2px 9px; border-radius: 10px; margin-left: 8px; }

/* ── TABELA DE RESTAURANTES ── */
.tabela-rest { width: 100%; border-collapse: collapse; font-size: 14px; margin-top: 0.5rem; }
.tabela-rest th { background: var(--terra); color: #FFF8F0; padding: 10px 14px; text-align: left; font-weight: 600; }
.tabela-rest td { padding: 10px 14px; border-bottom: 1px solid #EDE0D0; color: var(--texto2); }
.tabela-rest tr:last-child td { border-bottom: none; }
.tabela-rest tr:nth-child(even) td { background: #FDF5EC; }

/* ── EVENTOS ── */
.eventos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.evento-card {
  background: var(--branco); border-radius: 12px; border: 1px solid var(--borda);
  padding: 1.2rem; text-align: center; transition: box-shadow 0.2s;
}
.evento-card:hover { box-shadow: 0 3px 12px rgba(139,69,19,0.12); }
.evento-card .mes { font-size: 11px; font-weight: 700; background: var(--terra); color: #FFF8F0; border-radius: 20px; padding: 3px 12px; display: inline-block; margin-bottom: 10px; letter-spacing: 0.5px; }
.evento-card h3 { font-size: 14px; font-weight: 700; color: var(--texto); margin-bottom: 6px; }
.evento-card p { font-size: 12.5px; color: var(--texto2); line-height: 1.55; }
.evento-destaque { border: 2px solid var(--terra); }

/* ── COMÉRCIO / ANÚNCIOS ── */
.anuncio-placeholder {
  background: repeating-linear-gradient(45deg, #f9f0e6, #f9f0e6 10px, #fff8f0 10px, #fff8f0 20px);
  border: 2px dashed var(--areia); border-radius: 12px;
  padding: 2rem; text-align: center; color: var(--texto2);
}
.anuncio-placeholder h3 { font-size: 15px; font-weight: 700; color: var(--terra); margin-bottom: 0.5rem; }
.anuncio-placeholder p { font-size: 13px; }
.grid-anuncios { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; margin-top: 1rem; }

/* ── HOTEL CARD ── */
.hotel-card {
  background: var(--branco); border-radius: 14px; border: 1px solid var(--borda);
  padding: 1.4rem; transition: box-shadow 0.2s;
}
.hotel-card:hover { box-shadow: 0 4px 16px rgba(139,69,19,0.12); }
.hotel-card h3 { font-size: 15px; font-weight: 700; color: var(--terra); margin-bottom: 0.5rem; }
.hotel-card p { font-size: 13px; color: var(--texto2); line-height: 1.65; }
.hotel-card .hotel-info { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 0.75rem; }
.hotel-card .hotel-tag { font-size: 11px; background: #EEF7EE; color: #3a6b3a; padding: 3px 10px; border-radius: 10px; }

/* ── CONTATO ── */
.contato-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.contato-card { background: var(--branco); border-radius: 14px; border: 1px solid var(--borda); padding: 1.5rem; }
.contato-card h3 { font-size: 16px; font-weight: 700; color: var(--terra); margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 1px solid #EDE0D0; }
.contato-row { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; font-size: 13.5px; color: var(--texto2); }
.contato-row .ci { font-size: 18px; color: var(--terra); min-width: 22px; margin-top: 1px; }
.contato-row a { color: var(--terra); text-decoration: none; }
.contato-row a:hover { text-decoration: underline; }

/* ── INDEX CARDS DE NAVEGAÇÃO ── */
.nav-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; margin-top: 2rem; }
.nav-card {
  background: var(--branco); border-radius: 14px; border: 1px solid var(--borda);
  padding: 1.75rem 1.5rem; text-align: center; text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s; display: block;
}
.nav-card:hover { box-shadow: 0 6px 20px rgba(139,69,19,0.15); transform: translateY(-3px); }
.nav-card .nc-icon { font-size: 36px; margin-bottom: 0.75rem; }
.nav-card h3 { font-size: 16px; font-weight: 700; color: var(--terra); margin-bottom: 0.4rem; }
.nav-card p { font-size: 13px; color: var(--texto2); }

/* ── DESTAQUES INDEX ── */
.destaques { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; margin-top: 1.5rem; }
.destaque {
  background: var(--terra); color: #FFF8F0;
  border-radius: 12px; padding: 1.25rem; text-align: center;
}
.destaque .num { font-size: 28px; font-weight: 700; }
.destaque .label { font-size: 12px; color: var(--areia-light); margin-top: 4px; }

/* ── FOOTER ── */
footer {
  background: var(--terra-dark); color: #F5DEB3;
  text-align: center; padding: 2.5rem 2rem; font-size: 13px; margin-top: 3rem;
}
footer .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 0; margin-bottom: 1rem; }
footer .footer-links a { color: var(--areia-light); text-decoration: none; padding: 0 14px; border-right: 1px solid rgba(255,255,255,0.2); font-size: 13px; }
footer .footer-links a:last-child { border-right: none; }
footer .footer-links a:hover { color: #fff; }
footer p { opacity: 0.7; margin-top: 0.5rem; }

/* ── RESPONSIVO ── */
@media (max-width: 700px) {
  nav .nav-links { display: none; flex-direction: column; position: absolute; top: 58px; left: 0; right: 0; background: var(--terra); z-index: 199; }
  nav .nav-links.open { display: flex; }
  nav .nav-links a { line-height: 50px; padding: 0 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); }
  .hamburger { display: block; }
  .hero h1 { font-size: 28px; }
  .hero-pagina h1 { font-size: 24px; }
  .container, .container-lg { padding: 2rem 1.25rem; }
  .contato-grid { grid-template-columns: 1fr; }
}
