/* ===== Variáveis ===== */
:root {
  --vermelho: #c41e3a;
  --vermelho-escuro: #9a1830;
  --amarelo: #f4c430;
  --dourado: #e6b022;
  --marrom: #8b6914;
  --creme: #fffbf0;
  --branco: #ffffff;
  --cinza-texto: #333;
  --cinza-suave: #666;
  --sombra: 0 4px 20px rgba(0,0,0,0.08);
  --sombra-hover: 0 8px 30px rgba(196, 30, 58, 0.15);
  --raio: 12px;
  --transicao: 0.25s ease;
}

/* ===== Reset e base ===== */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  /* Espaço no topo ao clicar em âncoras (#cardapio, #inicio, etc.) para o título não ficar atrás do header fixo */
  scroll-padding-top: 7rem;
}
body {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  color: var(--cinza-texto);
  background: var(--creme);
  line-height: 1.5;
}

h1, h2, h3 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  margin: 0 0 0.5em;
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--branco);
  box-shadow: var(--sombra);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo {
  height: 88px;
  width: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 1.5rem;
}

.nav a {
  color: var(--vermelho);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transicao);
}

.nav a:hover {
  color: var(--vermelho-escuro);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 3px;
  background: var(--vermelho);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: var(--branco);
    flex-direction: column;
    padding: 5rem 1.5rem 1.5rem;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    transition: right var(--transicao);
  }

  .nav.is-open {
    right: 0;
  }

  .nav-toggle {
    display: flex;
  }
}

/* ===== Slideshow (estilo Bob's) ===== */
.slideshow {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--vermelho-escuro);
}

.slideshow-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 1200 / 500;
  max-height: 70vh;
}

.slideshow-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.slideshow-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.slideshow-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.slideshow-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slideshow-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 0.5rem;
}

.slideshow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--branco);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background var(--transicao);
}

.slideshow-dot:hover {
  background: rgba(255,255,255,0.5);
}

.slideshow-dot.is-active {
  background: var(--branco);
}

@media (max-width: 768px) {
  .slideshow-inner {
    aspect-ratio: 4 / 3;
  }
}

/* ===== Home — Destaques (grid de imagens, inspirado em Bob's / Burger King) ===== */
.home-destaques {
  padding: 3rem 1.5rem 4rem;
  background: var(--branco);
}

.home-destaques-titulo {
  text-align: center;
  color: var(--vermelho-escuro);
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 0.5rem;
}

.home-destaques-intro {
  text-align: center;
  color: var(--cinza-suave);
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.home-destaques-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
}

.home-destaque-card {
  display: block;
  position: relative;
  border-radius: var(--raio);
  overflow: hidden;
  box-shadow: var(--sombra);
  text-decoration: none;
  color: inherit;
  transition: transform var(--transicao), box-shadow var(--transicao);
}

.home-destaque-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sombra-hover);
}

.home-destaque-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.home-destaque-label {
  display: block;
  padding: 0.75rem 1rem;
  background: var(--creme);
  font-weight: 600;
  color: var(--vermelho-escuro);
  font-size: 1rem;
}

@media (max-width: 600px) {
  .home-destaques-grid {
    grid-template-columns: 1fr;
  }

  .home-destaque-card img {
    height: 180px;
  }
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(135deg, var(--vermelho) 0%, var(--vermelho-escuro) 100%);
  color: var(--branco);
  text-align: center;
  padding: 3rem 1.5rem 4rem;
}

.hero h1 {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  margin-bottom: 0.25rem;
  color: inherit;
}

.hero-tagline {
  font-size: 1.1rem;
  opacity: 0.95;
  margin-bottom: 1.5rem;
}

.hero-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.badge {
  background: var(--amarelo);
  color: var(--vermelho-escuro);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}

.cta {
  display: inline-block;
  background: var(--amarelo);
  color: var(--vermelho-escuro);
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: transform var(--transicao), box-shadow var(--transicao);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* ========== CONVERSÃO — Microcopy do hero ========== */
.hero-microcopy {
  font-size: 0.9rem;
  margin-top: 0.75rem;
  opacity: 0.9;
}

/* ========== CONVERSÃO — Badge destaque (prova social/benefício) ========== */
@keyframes badge-destaque-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 12px 4px rgba(255, 255, 255, 0.15);
    transform: scale(1.03);
  }
}

.badge-destaque {
  background: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--branco);
  animation: badge-destaque-pulse 2s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.badge-destaque:hover {
  background: rgba(255,255,255,0.35);
  border-color: rgba(255,255,255,0.7);
  transform: scale(1.06);
  box-shadow: 0 0 16px 6px rgba(255, 255, 255, 0.2);
  animation: none;
}

/* ===== Quem somos ===== */
.quem-somos {
  padding: 2.5rem 0;
  background: var(--branco);
  border-top: 1px solid rgba(196, 30, 58, 0.08);
}

.quem-somos h2 {
  font-size: 1.75rem;
  color: var(--vermelho);
  text-align: center;
  margin-bottom: 1.25rem;
}

.quem-somos-inner {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--cinza-texto);
}

.quem-somos-inner p {
  margin: 0;
}

/* ===== Contato (endereço, horário, pagamento) ===== */
.contato-section {
  padding: 2.5rem 0;
  background: var(--creme);
}

.contato-section h2 {
  font-size: 1.75rem;
  color: var(--vermelho);
  text-align: center;
  margin-bottom: 1.5rem;
}

.contato-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.contato-block {
  background: var(--branco);
  padding: 1.25rem;
  border-radius: var(--raio);
  box-shadow: var(--sombra);
  border: 1px solid rgba(196, 30, 58, 0.08);
}

.contato-subtitulo {
  font-size: 1rem;
  color: var(--vermelho-escuro);
  margin: 0 0 0.5rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--amarelo);
}

.contato-texto {
  font-size: 0.95rem;
  color: var(--cinza-texto);
  line-height: 1.5;
  margin: 0;
}

.contato-cta {
  margin: 0.75rem 0 0;
}

.contato-cta a {
  color: var(--vermelho);
  font-weight: 600;
  text-decoration: none;
}

.contato-cta a:hover {
  text-decoration: underline;
}

.contato-info-link {
  text-align: center;
  font-size: 0.95rem;
  margin: 0;
}

.contato-info-link a {
  color: var(--vermelho);
  font-weight: 600;
  text-decoration: none;
}

.contato-info-link a:hover {
  text-decoration: underline;
}

.contato-block-whatsapp .contato-texto a {
  color: var(--vermelho);
  font-weight: 600;
  text-decoration: none;
}

.contato-block-whatsapp .contato-texto a:hover {
  text-decoration: underline;
}

.footer-whatsapp {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  align-items: center;
}

.footer-whatsapp a {
  color: var(--amarelo);
  text-decoration: none;
  font-weight: 600;
}

.footer-whatsapp a:hover {
  text-decoration: underline;
}

/* ===== Cardápio ===== */
.cardapio {
  padding: 3rem 0 4rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.cardapio h2 {
  font-size: 2rem;
  color: var(--vermelho);
  text-align: center;
  margin-bottom: 0.5rem;
}

.cardapio-intro {
  text-align: center;
  color: var(--cinza-suave);
  margin-bottom: 2rem;
}

/* Filtro ===== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.5rem 1rem;
  border: 2px solid var(--vermelho);
  background: var(--branco);
  color: var(--vermelho);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background var(--transicao), color var(--transicao);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--vermelho);
  color: var(--branco);
}

/* Categorias ===== */
.categoria {
  margin-bottom: 2.5rem;
  transition: opacity var(--transicao);
}

.categoria.hidden {
  display: none;
}

.categoria-titulo {
  font-size: 1.35rem;
  color: var(--vermelho);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--amarelo);
  display: inline-block;
}

/* Grid de produtos ===== */
.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.produtos-grid-compact {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

/* Link que envolve o card na página de cardápio (uma página por produto) */
a.produto-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

a.produto-link:hover .produto {
  box-shadow: var(--sombra-hover);
  transform: translateY(-2px);
}

.produto {
  background: var(--branco);
  border-radius: var(--raio);
  padding: 1rem 1.25rem;
  box-shadow: var(--sombra);
  transition: box-shadow var(--transicao), transform var(--transicao);
  border: 1px solid rgba(196, 30, 58, 0.08);
  overflow: hidden;
}

.produto .produto-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  margin: -1rem -1.25rem 1rem -1.25rem;
  border-radius: var(--raio) var(--raio) 0 0;
}

.produto .produto-img-square {
  height: 140px;
  object-fit: contain;
  background: var(--creme);
}

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

.produto.destaque {
  border: 2px solid var(--amarelo);
  background: linear-gradient(to bottom, #fffef9, var(--branco));
}

.produto .nome {
  display: block;
  font-weight: 700;
  color: var(--vermelho-escuro);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.produto .desc {
  display: block;
  font-size: 0.875rem;
  color: var(--cinza-suave);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.produto .preco {
  display: block;
  font-weight: 700;
  color: var(--vermelho);
  font-size: 1.1rem;
}

.produtos-grid-compact .produto .nome {
  margin-bottom: 0.15rem;
}

.produtos-grid-compact .produto .desc {
  display: none;
}

/* ===== CTA Section ===== */
.cta-section {
  background: linear-gradient(135deg, var(--amarelo) 0%, var(--dourado) 100%);
  padding: 3rem 1.5rem;
  text-align: center;
}

.cta-section h2 {
  color: var(--vermelho-escuro);
  margin-bottom: 0.5rem;
}

.cta-section p {
  color: var(--vermelho-escuro);
  margin-bottom: 1rem;
}

.cta-section .cta-large {
  background: var(--vermelho);
  color: var(--branco);
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.cta-section .cta-large:hover {
  background: var(--vermelho-escuro);
}

.cta-section .small {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.cta-section .small a {
  color: var(--vermelho-escuro);
  text-decoration: underline;
}

/* ===== Footer ===== */
.footer {
  background: var(--vermelho-escuro);
  color: var(--branco);
  text-align: center;
  padding: 2rem 1.5rem;
}

.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 0.75rem;
  opacity: 0.95;
}

.footer-nome {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.footer-copyright {
  margin-top: 1rem;
  font-size: 0.85rem;
  opacity: 0.9;
}

.footer p {
  margin: 0.25rem 0;
  font-size: 0.95rem;
}

.footer-link a {
  color: var(--amarelo);
  text-decoration: none;
  font-weight: 600;
}

.footer-link a:hover {
  text-decoration: underline;
}

/* Ícone Instagram no rodapé */
.footer-instagram-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  font-size: 0;
  vertical-align: middle;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f4c430'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.776-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z'/%3E%3C/svg%3E") center/24px no-repeat;
}
.footer-link a:hover .footer-instagram-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.776-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z'/%3E%3C/svg%3E");
}

/* ========== CONVERSÃO — Botão flutuante de pedido (sempre visível) ========== */
.cta-float {
  position: fixed;
  bottom: 5rem;
  right: 1rem;
  z-index: 99;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--amarelo);
  color: var(--vermelho-escuro);
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--sombra-hover);
  transition: transform var(--transicao), box-shadow var(--transicao);
}

.cta-float:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(196, 30, 58, 0.25);
}

/* ========== CONVERSÃO — WhatsApp fixo ========== */
.whatsapp-float {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 99;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--branco);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: transform var(--transicao), box-shadow var(--transicao);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float-icon {
  font-size: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") center/28px no-repeat;
  width: 28px;
  height: 28px;
}

/* ========== Voltar ao topo (seta — aparece após rolar) ========== */
.back-to-top {
  position: fixed;
  bottom: 5rem;
  left: 1rem;
  z-index: 98;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--vermelho);
  color: var(--branco);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: var(--sombra-hover);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transicao), visibility var(--transicao), transform var(--transicao);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--vermelho-escuro);
  color: var(--branco);
}

.back-to-top-icon {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 700;
}

/* ========== SEO DE CONTEÚDO — Seção textual ========== */
.seo-content {
  padding: 2rem 0 3rem;
  background: var(--branco);
  border-top: 1px solid rgba(196, 30, 58, 0.1);
}

.seo-content-inner {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--cinza-texto);
}

.seo-content-inner p {
  margin: 0;
}

/* ========== ACESSIBILIDADE — Título apenas para SEO (não visível) ========== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
