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

  :root {
    --marrom:        #77321a;
    --creme:         #FBF5EC;
    --creme-medio:   #f2e4cc;
    --creme-escuro:  #E0C99A;
    --dourado:       #E8B45A;
    --text-dark:     #3a1a08;
    --text-mid:      #5C3A1A;
    --text-muted:    #9C7A55;
    --white:         #FFFFFF;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Poppins', sans-serif;
    background: var(--creme);
    color: var(--text-dark);
    overflow-x: hidden;
  }



  /* ─── HERO ─── */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1.5rem 5rem;
    overflow: hidden;
    background: var(--marrom);
  }

  .hero-grain {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.055;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 160px 160px;
    pointer-events: none;
  }

  .hero > * { position: relative; z-index: 1; }

  .hero-logo {
    width: min(240px, 60vw);
    height: auto;
    filter: none;
    margin-bottom: 0.25rem;
    opacity: 0;
    animation: fadeUp 0.9s 0.1s ease forwards;
  }

  .hero-tagline {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    color: #F2E4CC;
    line-height: 1.2;
    margin-bottom: 0.6rem;
    opacity: 0;
    animation: fadeUp 0.9s 0.25s ease forwards;
    text-shadow: 2px 2px 0px #5a2510, 4px 4px 0px #3a1508;
    white-space: normal;
  }

  .hero-subtitle {
    font-size: clamp(0.8rem, 2vw, 0.95rem);
    color: rgba(251,245,236,0.5);
    font-weight: 400;
    margin-bottom: 2.25rem;
    opacity: 0;
    animation: fadeUp 0.9s 0.38s ease forwards;
    letter-spacing: 0.03em;
  }

  .hero-location {
    font-size: 0.92rem;
    color: var(--dourado);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 2rem;
  }



  .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 0.9s 0.55s ease forwards;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ─── BUTTONS ─── */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.75rem;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
    cursor: pointer;
    border: none;
    letter-spacing: 0.02em;
  }

  .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
  .btn:active { transform: scale(0.98); box-shadow: none; }

  .btn-whatsapp { background: #25D366; color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,0.35); }
  .btn-whatsapp svg { filter: none; }

  .btn-cardapio {
    background: #F2E4CC;
    color: var(--marrom);
    border: none;
  }
  .btn-cardapio:hover { background: #e8d5b4; }

  /* ─── RIBBON ─── */
  .ribbon {
    background: var(--marrom);
    color: rgba(251,245,236,0.85);
    text-align: center;
    padding: 0.65rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    font-weight: 600;
    text-transform: uppercase;
  }

  /* ─── SECTIONS ─── */
  section { padding: 5rem 1.5rem; }

  .section-title {
    font-size: clamp(1.4rem, 4vw, 2rem);
    color: var(--marrom);
    text-align: center;
    margin-bottom: 0.4rem;
    line-height: 1.2;
    font-weight: 700;
  }

  .section-line {
    width: 40px;
    height: 3px;
    background: var(--dourado);
    border-radius: 2px;
    margin: 0 auto 3rem;
  }

  /* ─── SOBRE ─── */
  .sobre { background: var(--marrom); }

  .sobre-inner {
    max-width: 460px;
    margin: 0 auto;
    text-align: center;
  }

  .sobre-inner p {
    font-size: 0.97rem;
    line-height: 1.9;
    color: rgba(251,245,236,0.8);
    font-weight: 400;
  }

  .sobre-mascote {
    display: block;
    width: min(200px, 55%);
    height: auto;
    margin: 0 auto 2rem;
  }

  .sobre-inner p + p { margin-top: 1rem; }

  .sobre-tagline {
    font-style: italic;
    color: #E8B45A !important;
    font-weight: 600;
    margin-top: 1.25rem !important;
    font-size: 0.95rem;
  }

  .sobre .section-title { color: #f2e4cc; }
  .sobre .section-line { background: #E8B45A; }

  /* ─── DEPOIMENTOS ─── */
  .depoimentos { background: #fffbed; }

  .depo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
    max-width: 900px;
    margin: 0 auto;
  }

  .depo-card {
    background: var(--white);
    border: 1px solid var(--creme-escuro);
    border-left: 4px solid var(--dourado);
    border-radius: 0 16px 16px 0;
    padding: 1.75rem 1.5rem;
  }

  .depo-stars {
    color: var(--dourado);
    font-size: 0.82rem;
    margin-bottom: 0.75rem;
    letter-spacing: 3px;
    display: block;
  }

  .depo-text {
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    font-weight: 400;
  }

  .depo-author {
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
  }

  /* ─── HORÁRIO ─── */
  .horario {
    background: var(--marrom);
    color: var(--creme);
    text-align: center;
    padding-bottom: 2.5rem;
  }

  .horario .section-title { color: var(--dourado); }
  .horario .section-line  { background: var(--dourado); }

  .horario-box {
    display: inline-block;
    border: 1px solid rgba(232,180,90,0.18);
    border-radius: 14px;
    padding: 2rem 3rem;
    background: rgba(255,255,255,0.03);
    min-width: 300px;
  }

  .horario-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(232,180,90,0.08);
    font-size: 0.88rem;
  }

  .horario-row:last-child { border-bottom: none; }
  .horario-label { color: var(--dourado); font-weight: 600; }
  .horario-valor { color: rgba(251,245,236,0.55); }

  .horario-nota {
    margin-top: 1.5rem;
    font-size: 0.72rem;
    color: rgba(251,245,236,0.35);
    font-style: italic;
  }

  /* ─── NOSSAS BATATAS ─── */
  .nossas-batatas { background: #fffbed; }
  .nossas-batatas .section-title { color: #77321a; }

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

  @media (max-width: 768px) { .batatas-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 420px) { .batatas-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; } }

  .batata-card {
    cursor: pointer;
    border-radius: 14px;
    overflow: hidden;
    background: #f0dcaf;
    border: 1px solid #d4b87a;
    box-shadow: 0 2px 12px rgba(119,50,26,0.1);
    transition: transform 0.18s, box-shadow 0.18s;
    display: flex;
    flex-direction: column;
  }

  .batata-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(119,50,26,0.2);
  }

  .batata-foto {
    aspect-ratio: 1/1;
    background: #f0dcaf;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 1.25rem;
    flex-shrink: 0;
  }

  .batata-foto img { width: 100%; height: 100%; object-fit: contain; display: block; }

  .batata-foto-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: #77321a;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .batata-foto-placeholder svg {
    width: 28px; height: 28px;
    stroke: #ba5624;
    fill: none; stroke-width: 1.5;
  }

  .batata-label {
    padding: 0.75rem;
    text-align: center;
    background: #ba5624;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .batata-nome {
    font-size: 0.92rem;
    font-weight: 700;
    color: #fffbed;
    letter-spacing: 0.01em;
    display: block;
  }

  .batata-preco {
    font-size: 0.85rem;
    color: #fffbed;
    font-weight: 700;
    margin-top: 0.2rem;
    display: block;
  }

  /* ─── SABOR MODAL ─── */
  .sabor-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(20,8,0,0.82);
    z-index: 200;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    backdrop-filter: blur(4px);
  }

  .sabor-overlay.open { display: flex; }

  .sabor-modal {
    background: var(--white);
    border-radius: 22px;
    max-width: 640px;
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    max-height: 90vh;
  }

  .sabor-esquerda {
    width: 220px;
    flex-shrink: 0;
    background: var(--creme-medio);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 1.25rem;
  }

  .sabor-personagem-placeholder {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sabor-personagem-placeholder img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }

  .sabor-direita {
    flex: 1;
    padding: 2rem 1.75rem;
    overflow-y: auto;
  }

  .sabor-nome {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--marrom);
    line-height: 1.2;
    margin-bottom: 0.35rem;
  }

  .sabor-preco-badge {
    display: inline-block;
    background: transparent;
    color: #ba5624;
    font-size: 1.4rem;
    font-weight: 800;
    padding: 0;
    border-radius: 0;
    margin-bottom: 1.1rem;
    border: none;
  }

  .sabor-descricao {
    font-size: 0.84rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 1.4rem;
  }

  .sabor-ingredientes-titulo {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.65rem;
  }

  .sabor-ingredientes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.75rem;
  }

  .sabor-tag {
    background: var(--creme);
    border: 1px solid var(--creme-escuro);
    color: var(--text-mid);
    font-size: 0.72rem;
    font-weight: 500;
    padding: 0.28rem 0.65rem;
    border-radius: 50px;
  }

  .sabor-pedir {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #25D366;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.7rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    transition: opacity 0.15s;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
  }

  .sabor-pedir:hover { opacity: 0.88; }

  .sabor-fechar {
    position: absolute;
    top: 0.85rem; right: 0.9rem;
    background: var(--creme);
    border: none;
    width: 30px; height: 30px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    color: var(--text-mid);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.15s;
    z-index: 10;
  }

  .sabor-fechar:hover { background: var(--creme-escuro); }

  .batata-em-breve { opacity: 0.5; cursor: default; pointer-events: none; }
  .batata-em-breve:hover { transform: none; box-shadow: none; }

  @media (max-width: 560px) {
    .sabor-modal { flex-direction: column; max-height: 92vh; }
    .sabor-esquerda { width: 100%; height: 200px; padding: 1rem; }
    .sabor-personagem-placeholder img { max-height: 170px; width: auto; }
    .sabor-direita { padding: 1.25rem; }
  }

  .rodape {
    background: var(--marrom);
    border-top: none;
    padding: 3rem 1.5rem 2rem;
    text-align: center;
    margin: 0;
  }

  .rodape-redes-titulo {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(251,245,236,0.4);
    margin-bottom: 1rem;
  }

  .social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
  }

  .social-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    transition: transform 0.15s, opacity 0.15s;
    text-decoration: none;
  }

  .social-icon-btn:hover { transform: scale(1.1); opacity: 0.9; }

  .social-icon-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #fff;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .sib-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  }

  .sib-facebook { background: #1877F2; }

  .rodape-divider {
    width: 40px;
    height: 1px;
    background: rgba(232,180,90,0.15);
    margin: 0 auto 1.5rem;
  }

  .rodape-copy {
    font-size: 0.72rem;
    color: rgba(251,245,236,0.3);
    letter-spacing: 0.03em;
  }

  .rodape-copy strong { color: rgba(232,180,90,0.6); font-weight: 600; }

  /* ─── MODAL ─── */
  .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(20,8,0,0.78);
    z-index: 200;
    align-items: center;
    justify-content: center;
    padding: 1rem;
  }

  .modal-overlay.open { display: flex; }

  .modal {
    background: var(--white);
    border-radius: 20px;
    padding: 2.25rem 2rem;
    max-width: 400px;
    width: 100%;
    text-align: center;
    position: relative;
  }

  .modal h3 {
    font-size: 1.25rem;
    color: var(--marrom);
    margin-bottom: 0.75rem;
    font-weight: 700;
  }

  .modal p {
    color: var(--text-mid);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.75;
  }

  .modal-close {
    position: absolute;
    top: 1rem; right: 1.25rem;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.15s;
  }

  .modal-close:hover { color: var(--marrom); }

  .icon-sm { width: 17px; height: 17px; fill: currentColor; flex-shrink: 0; }


