/* ═══════════════════════════════════════════════════════════════════════════
 * dicas.css — página de Dicas regionais
 * ═════════════════════════════════════════════════════════════════════════ */

.dicas-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 22px 100px;
}

/* ── Hero ─────────────────────────────────────────────────────────────── */
.dicas-hero {
  text-align: center;
  padding: 28px 0 22px;
  border-bottom: 1px solid #eef2f0;
  margin-bottom: 22px;
}
.dicas-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-700, #0f5b45);
}
.dicas-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  margin: 6px 0 8px;
  color: #10232f;
  letter-spacing: -0.01em;
}
.dicas-hero p {
  color: #6b7280;
  max-width: 620px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.5;
}

/* ── Tabs (region pills) ──────────────────────────────────────────────── */
.dicas-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 30px;
  padding: 4px;
  background: #f9fbfa;
  border-radius: 14px;
  position: sticky;
  top: 0;
  z-index: 5;
  backdrop-filter: blur(6px);
}
.dicas-tab {
  background: transparent;
  border: 1.5px solid transparent;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: inherit;
  color: #10232f;
  cursor: pointer;
  transition: all 0.15s;
}
.dicas-tab:hover {
  background: #fff;
  border-color: #eef2f0;
}
.dicas-tab.is-active {
  background: var(--green-700, #0f5b45);
  color: #fff;
  border-color: var(--green-700, #0f5b45);
}

/* ── Region hero ──────────────────────────────────────────────────────── */
.dicas-region-hero {
  text-align: center;
  margin-bottom: 26px;
}
.dicas-region-hero h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.9rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: #10232f;
}
.dicas-headline {
  color: #6b7280;
  font-size: 1rem;
  margin: 0;
  font-style: italic;
}

/* ── Grid de cards ────────────────────────────────────────────────────── */
.dicas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 30px;
}
.dicas-card {
  background: #fff;
  border: 1px solid #eef2f0;
  border-radius: 14px;
  padding: 18px 18px 16px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.dicas-card:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transform: translateY(-1px);
}
.dicas-card-hd {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #eef2f0;
}
.dicas-card-icon {
  font-size: 1.6rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eef9f4, #d8efe5);
  border-radius: 12px;
  flex-shrink: 0;
}
.dicas-card-hd h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  color: #10232f;
}
.dicas-card-body {
  font-size: 0.92rem;
  line-height: 1.55;
  color: #2a3947;
}
.dicas-card-body p {
  margin: 0 0 8px;
}
.dicas-card-body p:last-child { margin-bottom: 0; }
.dicas-card-body ul {
  margin: 4px 0 10px;
  padding-left: 18px;
}
.dicas-card-body ul li {
  margin-bottom: 4px;
}
.dicas-card-body strong { color: #10232f; }
.dicas-card-body em { color: #6b7280; font-style: italic; }
.dicas-summary {
  margin-top: 10px !important;
  padding: 10px 12px;
  background: #fffaf0;
  border-left: 3px solid #f5b800;
  border-radius: 6px;
  font-style: italic;
}

/* ── Slang dl ─────────────────────────────────────────────────────────── */
.dicas-slang {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 6px 12px;
  margin: 0;
}
.dicas-slang dt {
  font-weight: 700;
  color: var(--green-700, #0f5b45);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.95rem;
}
.dicas-slang dd {
  margin: 0;
  color: #2a3947;
  font-size: 0.9rem;
}

/* ── Eventos ──────────────────────────────────────────────────────────── */
.dicas-events {
  list-style: none;
  padding: 0;
}
.dicas-events li {
  padding: 8px 0;
  border-bottom: 1px dashed #eef2f0;
}
.dicas-events li:last-child { border-bottom: none; }
.dicas-events small {
  color: #6b7280;
  font-size: 0.82rem;
}

/* ── CTA final ───────────────────────────────────────────────────────── */
.dicas-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 22px;
  background: linear-gradient(135deg, #eef9f4, #fff);
  border-radius: 16px;
  margin-top: 24px;
}
.dicas-btn-primary,
.dicas-btn-secondary {
  padding: 13px 22px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.dicas-btn-primary {
  background: var(--green-700, #0f5b45);
  color: #fff;
}
.dicas-btn-primary:hover {
  background: #0d4a39;
  transform: translateY(-1px);
}
.dicas-btn-secondary {
  background: #fff;
  color: var(--green-700, #0f5b45);
  border: 1.5px solid var(--green-700, #0f5b45);
}
.dicas-btn-secondary:hover {
  background: #eef9f4;
}

.dicas-empty {
  text-align: center;
  padding: 60px 20px;
  color: #6b7280;
}

/* ── Mobile ──────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .dicas-page { padding: 16px 14px 100px; }
  .dicas-hero h1 { font-size: 1.7rem; }
  .dicas-region-hero h2 { font-size: 1.4rem; }
  .dicas-grid { grid-template-columns: 1fr; }
  .dicas-tabs { padding: 6px; gap: 6px; }
  .dicas-tab { padding: 6px 12px; font-size: 0.8rem; }
}

/* ═════ Refinamento moderno ═════ */
.dicas-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 22px 100px;
}
.dicas-hero {
  text-align: center;
  padding: 8px 0 26px;
  border-bottom: 1px solid #eef2f0;
  margin-bottom: 22px;
}
.dicas-eyebrow {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #0f5b45;
}
.dicas-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  margin: 8px 0 10px;
  color: #10232f;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.dicas-hero p {
  color: #5d6c78;
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.02rem;
  line-height: 1.55;
}

/* Tabs sticky com sombra ao rolar */
.dicas-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding: 14px 16px;
  margin: 0 0 26px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 18px;
  position: sticky;
  top: 80px;
  z-index: 50;
  box-shadow: 0 6px 24px rgba(2,32,58,0.08), 0 0 0 1px rgba(15,91,69,0.06);
}
.dicas-tab {
  background: transparent;
  border: 1.5px solid transparent;
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  color: #2a3947;
  cursor: pointer;
  transition: all .15s;
  white-space: nowrap;
}
.dicas-tab:hover {
  background: #f7fbf9;
  border-color: #eef2f0;
}
.dicas-tab.is-active {
  background: linear-gradient(135deg, #0f5b45, #0d4a39);
  color: #fff;
  border-color: #0f5b45;
  box-shadow: 0 4px 12px rgba(15,91,69,0.30);
}

.dicas-region-hero {
  text-align: center;
  margin-bottom: 28px;
  padding: 8px 0;
}
.dicas-region-hero h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: #10232f;
}
.dicas-headline {
  color: #5d6c78;
  font-size: 1.05rem;
  margin: 0;
  font-style: italic;
  max-width: 640px;
  margin: 0 auto;
}

/* Grid de cards */
.dicas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
  margin-bottom: 32px;
}
.dicas-card {
  background: #fff;
  border: 1px solid #eef2f0;
  border-radius: 16px;
  padding: 20px 20px 18px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.dicas-card:hover {
  box-shadow: 0 8px 24px rgba(2,32,58,0.08);
  transform: translateY(-2px);
  border-color: rgba(15,91,69,0.20);
}
.dicas-card-hd {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px dashed #eef2f0;
}
.dicas-card-icon {
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eef9f4, #d8efe5);
  border-radius: 12px;
  flex-shrink: 0;
}
.dicas-card-hd h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: #10232f;
  letter-spacing: -0.01em;
}
.dicas-card-body {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #2a3947;
}
.dicas-card-body p { margin: 0 0 10px; }
.dicas-card-body p:last-child { margin-bottom: 0; }
.dicas-card-body ul {
  margin: 6px 0 12px;
  padding-left: 20px;
}
.dicas-card-body ul li { margin-bottom: 5px; }
.dicas-card-body strong { color: #10232f; font-weight: 700; }
.dicas-summary {
  margin-top: 12px !important;
  padding: 12px 14px;
  background: linear-gradient(135deg, #fffaf0, #fff);
  border-left: 3px solid #f5b800;
  border-radius: 8px;
  font-style: italic;
  color: #3b2e0b;
}

.dicas-slang {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 8px 14px;
  margin: 0;
}
.dicas-slang dt {
  font-weight: 700;
  color: #0f5b45;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
}
.dicas-slang dd { margin: 0; }

.dicas-events {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dicas-events li {
  padding: 10px 0;
  border-bottom: 1px dashed #eef2f0;
}
.dicas-events li:last-child { border: 0; }
.dicas-events small {
  color: #6b7280;
  font-size: 0.84rem;
}

.dicas-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 30px 22px;
  background: linear-gradient(135deg, #eef9f4, #fff);
  border-radius: 18px;
  margin-top: 28px;
  border: 1px solid rgba(15,91,69,0.10);
}
.dicas-btn-primary,
.dicas-btn-secondary {
  padding: 13px 24px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all .2s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.dicas-btn-primary {
  background: #0f5b45;
  color: #fff;
}
.dicas-btn-primary:hover {
  background: #0d4a39;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(15,91,69,0.30);
}
.dicas-btn-secondary {
  background: #fff;
  color: #0f5b45;
  border: 1.5px solid #0f5b45;
}
.dicas-btn-secondary:hover {
  background: #eef9f4;
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .dicas-page { padding: 18px 14px 100px; }
  .dicas-hero h1 { font-size: 1.7rem; }
  .dicas-region-hero h2 { font-size: 1.5rem; }
  .dicas-grid { grid-template-columns: 1fr; gap: 14px; }
  .dicas-tabs { top: 64px; padding: 10px; gap: 6px; }
  .dicas-tab { padding: 7px 12px; font-size: 0.82rem; }
}

/* ═══════════════════════════════════════════════════════════════════════════
 * Refinamentos novos: hero actions, FAQ, section title, bottom CTA
 * ═══════════════════════════════════════════════════════════════════════════ */

/* Hero actions row (botão Roteiros + Compartilhar) */
.dicas-hero-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 18px;
  flex-wrap: wrap;
}
.dicas-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #0f5b45, #0a3d2e);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform .12s, box-shadow .15s;
  min-height: 42px;
  box-shadow: 0 4px 14px rgba(15, 91, 69, 0.22);
}
.dicas-hero-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(15, 91, 69, 0.32);
}
.dicas-hero-btn-ghost {
  background: rgba(15, 91, 69, 0.08);
  color: #0f5b45;
  border: 1.5px solid rgba(15, 91, 69, 0.20);
  box-shadow: none;
}
.dicas-hero-btn-ghost:hover {
  background: rgba(15, 91, 69, 0.14);
}

/* Section title (Perguntas frequentes, Escolha a região) */
.dicas-section-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #10232f;
  margin: 28px 22px 14px;
  letter-spacing: -0.01em;
}

.dicas-tabs-section { margin-bottom: 8px; }

/* ── FAQ accordion ───────────────────────────────────────────────────── */
.dicas-faq {
  background: linear-gradient(135deg, rgba(15, 91, 69, 0.04), rgba(245, 184, 0, 0.04));
  border: 1px solid rgba(15, 91, 69, 0.10);
  border-radius: 18px;
  margin: 22px;
  padding: 18px 22px 8px;
}
.dicas-faq-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #10232f;
  margin: 0 0 14px;
}
.dicas-faq-title::before {
  content: '❓';
  font-size: 1.2rem;
}
.dicas-faq-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dicas-faq-item {
  background: #fff;
  border: 1px solid #eef2f0;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  transition: border-color .15s, box-shadow .15s;
}
.dicas-faq-item[open] {
  border-color: rgba(15, 91, 69, 0.20);
  box-shadow: 0 4px 14px rgba(8, 20, 28, 0.04);
}
.dicas-faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  font-size: 0.92rem;
  color: #10232f;
  min-height: 48px;
}
.dicas-faq-item summary::-webkit-details-marker { display: none; }
.dicas-faq-item summary::marker { display: none; }
.dicas-faq-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}
.dicas-faq-q {
  flex: 1;
  font-weight: 700;
  line-height: 1.3;
}
.dicas-faq-caret {
  font-size: 1.1rem;
  color: #8590a0;
  transition: transform .2s;
  flex-shrink: 0;
}
.dicas-faq-item[open] .dicas-faq-caret { transform: rotate(180deg); color: #0f5b45; }
.dicas-faq-a {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #5d6c78;
  padding: 0 16px 16px 50px;
  margin: 0;
}

/* ── Bottom CTA (cross-link com roteiros + loja) ────────────────────── */
.dicas-bottom-cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 32px 22px 0;
}
@media (min-width: 720px) {
  .dicas-bottom-cta { grid-template-columns: 1fr 1fr; gap: 18px; }
}

.dicas-cta-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #eef2f0;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 2px 10px rgba(8, 20, 28, 0.04);
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.dicas-cta-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(8, 20, 28, 0.08);
  border-color: rgba(15, 91, 69, 0.20);
}
.dicas-cta-rot {
  background: linear-gradient(135deg, rgba(15, 91, 69, 0.06), rgba(31, 79, 134, 0.04));
  border-color: rgba(15, 91, 69, 0.15);
}
.dicas-cta-shop {
  background: linear-gradient(135deg, rgba(245, 184, 0, 0.07), rgba(210, 166, 81, 0.04));
  border-color: rgba(245, 184, 0, 0.20);
}
.dicas-cta-icon {
  font-size: 1.8rem;
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(8, 20, 28, 0.06);
}
.dicas-cta-card > div:not(.dicas-cta-icon) {
  flex: 1;
  min-width: 0;
}
.dicas-cta-card strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: #10232f;
  line-height: 1.3;
}
.dicas-cta-card p {
  font-size: 0.82rem;
  color: #5d6c78;
  margin: 2px 0 0;
  line-height: 1.4;
}
.dicas-cta-btn {
  background: linear-gradient(135deg, #0f5b45, #0a3d2e);
  color: #fff;
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(15, 91, 69, 0.22);
  white-space: nowrap;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
}
.dicas-cta-shop .dicas-cta-btn {
  background: linear-gradient(135deg, #d2a651, #a8842f);
  box-shadow: 0 4px 12px rgba(210, 166, 81, 0.30);
}

/* ── Mobile refinements ─────────────────────────────────────────────── */
@media (max-width: 600px) {
  .dicas-faq { margin: 16px; padding: 14px 16px 6px; }
  .dicas-faq-item summary { padding: 12px 14px; font-size: 0.88rem; }
  .dicas-faq-a { padding: 0 14px 14px 44px; font-size: 0.82rem; }
  .dicas-section-title { margin: 22px 16px 10px; font-size: 0.96rem; }
  .dicas-bottom-cta { margin: 24px 16px 0; }
  .dicas-cta-card { padding: 14px 16px; gap: 12px; flex-wrap: wrap; }
  .dicas-cta-icon { width: 44px; height: 44px; font-size: 1.4rem; }
  .dicas-cta-btn { font-size: 0.78rem; padding: 8px 14px; flex-basis: 100%; justify-content: center; }
  .dicas-hero-btn { font-size: 0.82rem; padding: 9px 14px; }
}
