/* =========================================================
   Prego Unico — Lanchonete Italiana
   Home page — réplica fiel (valores extraídos de post-1448.css)
   ========================================================= */

:root {
  --accent: #DD183B;
  --accent-hover: #CC1939;
  --heading: #0F172A;
  --body-text: #3A3A3A;
  --white: #FFFFFF;
  --hero-bg: #930909;
  --address-bg: #F1F1F1;
  --footer-bg: #7e0606;
  --closed-day: #ff6600;

  --green-schiacciata: #0A6D33;
  --red-benvenuti: #F81818;
  --green-horarios: #0C9750;
  --red-unidade: #D52727;

  --font-heading: 'Jost', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --font-script: 'Bad Script', cursive;

  --container-width: 1200px;
}

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--body-text);
  background-color: var(--white);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--heading); line-height: 1.3; }
p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Botão padrão (Astra + Elementor) */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--accent);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 3px;
  padding: 15px 40px;
  transition: background-color 0.2s ease;
}
.btn:hover, .btn:focus-visible { background-color: var(--accent-hover); }
.btn svg { width: 16px; height: 16px; fill: currentColor; }

/* =========================================================
   Topo: ícones sociais + menu hambúrguer
   ========================================================= */
.topbar { padding: 12px 0; }
.topbar .container { display: flex; justify-content: flex-end; align-items: center; gap: 20px; }
.topbar__social { display: flex; align-items: center; gap: 14px; }
.topbar__social a svg { width: 30px; height: 30px; }
.topbar__social a { color: #000000; }

.nav-toggle {
  background: transparent; border: none; color: #000000;
  width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; fill: currentColor; }

.nav__list {
  position: absolute; top: 100%; right: 20px; background-color: var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12); list-style: none; min-width: 200px;
  max-height: 0; overflow: hidden; transition: max-height 0.25s ease; z-index: 20;
}
.nav__list.is-open { max-height: 300px; }
.nav__list a { display: block; padding: 14px 20px; font-family: var(--font-heading); border-bottom: 1px solid #eee; color: var(--heading); }
.nav__list a:hover { color: var(--accent); }
header.header { position: relative; z-index: 10; }

/* =========================================================
   Banner do topo (imagem de fundo + overlay + logo)
   ========================================================= */
.top-banner {
  position: relative;
  min-height: 54vh;
  display: flex;
  align-items: flex-start;
  background-image: url('_assets/social_capa_bg.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.top-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: #FAF6F6;
  opacity: 0.7;
}

.top-banner .container {
  position: relative;
  z-index: 1;
  padding-top: 10px;
  text-align: center;
}

.top-banner img {
  max-width: 380px;
  margin: 30px auto 0;
}

@media (max-width: 1024px) { .top-banner { min-height: 600px; } }
@media (max-width: 767px) {
  .top-banner { min-height: 500px; justify-content: center; background-size: initial; }
  .top-banner img { max-width: 94%; margin-top: 50px; }
}

/* =========================================================
   Hero — fundo vermelho, 2 colunas (texto | imagem)
   ========================================================= */
.hero {
  background-color: var(--hero-bg);
  padding: 28px 0 26px;
}

.hero .container {
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.hero__content { text-align: center; }

.hero__title {
  font-family: var(--font-script);
  font-size: 30px;
  font-weight: 400;
  color: var(--white);
}

.hero__subtitle {
  color: var(--white);
  font-size: 32px;
  padding: 0 13px;
  margin-top: 8px;
}

.hero__text {
  font-size: 18px;
  color: #F5F5F5;
  margin-top: 18px;
}

.hero__stars {
  max-width: 160px;
  margin: 20px auto 0;
}

.hero__image { text-align: right; }
.hero__image img { display: inline-block; width: 80%; }

@media (max-width: 1024px) {
  .hero { padding: 80px 35px; }
  .hero .container { grid-template-columns: 58% 42%; }
  .hero__image img { width: 90%; }
}

@media (max-width: 767px) {
  .hero { padding: 60px 35px; }
  .hero .container { grid-template-columns: 1fr; }
  .hero__title { font-size: 23px; }
  .hero__image { text-align: center; margin-top: 30px; }
  .hero__image img { width: 100%; }
}

/* =========================================================
   CTA row — botão + legenda, 2 colunas
   ========================================================= */
.cta-row { padding: 10px 0 0; }
.cta-row .container { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.cta-item { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 24px 0; }
.cta-item p { margin-top: 8px; font-family: var(--font-heading); font-size: 18px; color: var(--heading); }

@media (max-width: 767px) { .cta-row .container { grid-template-columns: 1fr; } }

/* =========================================================
   Features row — 3 colunas (Cardápio / Schiacciatas / Benvenuti)
   ========================================================= */
.features { margin-top: 13px; margin-bottom: 40px; }
.features .container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; align-items: stretch; }
.feature-item { padding: 20px; text-align: center; }
.feature-item img { width: 100%; border-radius: 2px; }
.feature-item h4 { font-family: var(--font-script); font-size: 24px; font-weight: 600; margin-top: 20px; }
.feature-item p { margin-top: 10px; margin-right: 20px; }
.feature-item .btn { margin-top: 8px; }

.feature-item--cardapio h4 { color: var(--heading); }
.feature-item--schiacciata h4 { color: var(--green-schiacciata); }
.feature-item--benvenuti h4 { color: var(--red-benvenuti); }

@media (max-width: 1024px) { .features { margin-top: 19px; } }
@media (max-width: 767px) {
  .features { margin-top: 0; margin-bottom: 40px; }
  .features .container { grid-template-columns: 1fr; }
}

/* =========================================================
   Endereço + Horários — fundo cinza claro, 2 colunas
   ========================================================= */
.address-hours { background-color: var(--address-bg); padding: 30px 0; }
.address-hours .container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center;
}

.address-hours__image { text-align: right; }
.address-hours__image img { display: inline-block; width: 72%; box-shadow: 2px 2px 11px rgba(0,0,0,0.25); }

.address-hours__street {
  text-align: right;
  font-family: 'Tahoma', sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin-top: 10px;
}

.address-hours__col2 { text-align: center; }

.address-hours__unit {
  font-family: var(--font-script);
  font-size: 25px;
  font-weight: 700;
  color: var(--red-unidade);
  padding: 13px;
}

.address-hours__title { font-size: 28px; color: var(--green-horarios); margin-bottom: 8px; }

.address-hours__list {
  font-size: 21px;
  line-height: 32px;
  max-width: 95%;
  margin: 15px auto 0;
}

.address-hours__list .closed { color: var(--closed-day); }

@media (max-width: 1024px) {
  .address-hours { padding: 80px 40px; }
  .address-hours__title { font-size: 24px; }
}

@media (max-width: 767px) {
  .address-hours { padding: 50px 25px; }
  .address-hours .container { grid-template-columns: 1fr; }
  .address-hours__image { text-align: center; }
  .address-hours__image img { width: 100%; }
  .address-hours__street { text-align: center; }
  .address-hours__title { font-size: 23px; }
  .address-hours__list { font-size: 17px; line-height: 1.3; }
}

/* =========================================================
   Footer — 3 colunas, fundo vermelho escuro
   ========================================================= */
.footer { background-color: var(--footer-bg); color: var(--white); padding: 45px 0; }
.footer .container { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 24px; }


.footer__social { display: flex; gap: 14px; }
.footer__social svg { width: 36px; height: 36px; }
.footer__social a { color: #FFFFFF; }

.footer__brand { text-align: center; font-family: var(--font-heading); color: var(--white); }
.footer__apps { display: flex; justify-content: flex-end; align-items: center; gap: 16px; }
.footer__apps img { height: 60px; width: auto; }

@media (max-width: 921px) {
  .footer .container { grid-template-columns: 1fr; text-align: center; }
  .footer__social { justify-content: center; }
  .footer__apps { justify-content: center; }
}

@media (max-width: 544px) {
  .btn { width: 100%; justify-content: center; padding: 16px 32px; }
}
