/*
Theme Name: Pizzaria do Irmão
Theme URI: https://pizzariadoirmao.com.br
Author: AVN Digital Marketing
Author URI: https://avndigitalmarketing.com.br
Description: Landing page de alta conversão para a Pizzaria do Irmão
Version: 1.0
License: Proprietary
Text Domain: pizzaria-irmao
*/

/* ============================================================
   Pizzaria do Irmão — Landing Page v1.0
   ============================================================ */

:root {
  --red:         #8B2E1F;
  --red-dark:    #6B2318;
  --gold:        #D4A574;
  --green:       #556B3D;
  --cream:       #F5E6D3;
  --brown:       #2C1810;
  --brown-light: #6B5344;
  --muted:       #E8D5C4;
  --white:       #FFFFFF;
  --wpp:         #25D366;
  --shadow:      0 4px 6px -1px rgba(0,0,0,.10), 0 2px 4px -1px rgba(0,0,0,.06);
  --shadow-lg:   0 10px 15px -3px rgba(0,0,0,.10), 0 4px 6px -2px rgba(0,0,0,.05);
  --shadow-xl:   0 20px 25px -5px rgba(0,0,0,.15), 0 10px 10px -5px rgba(0,0,0,.06);
  --radius:      0.75rem;
  --max-w:       1280px;
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; background: var(--cream); color: var(--brown); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: 'Lato', sans-serif; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .9rem 1.75rem; border-radius: var(--radius); font-weight: 700;
  font-size: 1rem; border: none; transition: all .3s; cursor: pointer;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); transform: scale(1.04); box-shadow: var(--shadow-xl); }
.btn-white   { background: var(--white); color: var(--red); }
.btn-white:hover { transform: scale(1.04); box-shadow: var(--shadow-xl); }
.btn-lg { padding: 1.1rem 2.25rem; font-size: 1.2rem; }
.btn-xl { padding: 1.25rem 2.5rem; font-size: 1.4rem; }
.btn-full { width: 100%; }

/* ─── Scroll animations ─── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }
.fade-up:nth-child(5) { transition-delay: .4s; }
.fade-up:nth-child(6) { transition-delay: .5s; }

/* ─── Keyframes ─── */
@keyframes wobble  { 0%,100%{transform:rotate(0deg)} 25%{transform:rotate(6deg)} 75%{transform:rotate(-6deg)} }
@keyframes pulse   { 0%,100%{transform:scale(1)} 50%{transform:scale(1.05)} }
@keyframes bounce  { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes spin    { 0%{transform:rotate(0)} 10%{transform:rotate(10deg)} 20%{transform:rotate(-10deg)} 30%{transform:rotate(5deg)} 40%{transform:rotate(-5deg)} 50%,100%{transform:rotate(0)} }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: .75rem 0;
  background: rgba(44, 24, 16, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem;
}
.nav-logo { display: flex; align-items: center; gap: .75rem; }
.nav-logo-img { height: 52px; width: auto; object-fit: contain; }
.nav-logo-text { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--white); }
.nav-logo-text span { color: var(--gold); }
.nav-cta {
  background: var(--red); color: var(--white);
  padding: .6rem 1.25rem; border-radius: .5rem;
  font-weight: 700; font-size: .9rem; border: none;
  transition: all .3s; white-space: nowrap;
}
.nav-cta:hover { background: var(--red-dark); transform: scale(1.04); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://d2xsxph8kpxj0f.cloudfront.net/310419663032148597/C8D2nuTkoJNViE55f2QPiw/hero-pizza-forno-eAMDW6bhfKRZjkZqFm4CGh.webp');
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.52); }
.hero-content {
  position: relative; z-index: 1;
  text-align: center; padding: 1.5rem; max-width: 720px;
  display: flex; flex-direction: column; align-items: center;
}
.hero-logo-wrap {
  width: 160px; margin-bottom: 1.5rem;
  animation: bounce 3s ease-in-out infinite;
}
.hero-logo-wrap img { width: 100%; height: auto; filter: drop-shadow(0 8px 24px rgba(0,0,0,.5)); }
.hero h1 {
  color: var(--white); font-size: clamp(2.2rem, 6vw, 3.75rem);
  margin-bottom: .75rem;
  text-shadow: 0 2px 16px rgba(0,0,0,.6);
}
.hero-sub {
  color: rgba(255,255,255,.92); font-size: clamp(1rem, 3vw, 1.3rem);
  font-weight: 300; margin-bottom: 2rem;
}
.hero-badges {
  display: flex; flex-wrap: wrap; gap: .6rem;
  justify-content: center; margin-bottom: 2rem;
}
.hero-badge {
  background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
  color: var(--white); padding: .35rem .9rem; border-radius: 999px;
  font-size: .85rem; font-weight: 600; border: 1px solid rgba(255,255,255,.25);
}

/* ============================================================
   OFFER SECTION
   ============================================================ */
.offer-section { padding: 5rem 0; background: linear-gradient(to bottom, var(--cream), var(--white)); }
.offer-card {
  background: var(--white); border-radius: 1.25rem;
  box-shadow: var(--shadow-xl); padding: 3rem;
  border: 4px solid var(--gold); max-width: 780px; margin: 0 auto;
}
.offer-badge {
  display: block; background: var(--red); color: var(--white);
  padding: .75rem 1.5rem; border-radius: 999px; font-weight: 700;
  text-align: center; margin-bottom: 1.75rem;
  animation: pulse 2s infinite;
  font-size: 1rem; letter-spacing: .03em;
}
.offer-card h2 {
  font-size: clamp(2rem, 5vw, 3rem); color: var(--red);
  text-align: center; margin-bottom: 1.5rem;
}
.offer-combo {
  text-align: center; margin-bottom: 2rem;
}
.offer-combo .main-desc {
  font-size: 1.2rem; font-weight: 700; color: var(--brown);
  margin-bottom: 1.25rem; line-height: 1.7;
}
.offer-perks { display: flex; flex-direction: column; gap: .4rem; }
.offer-perks span { color: var(--brown-light); font-size: .95rem; }
.offer-price { text-align: center; margin-bottom: 2.5rem; }
.offer-price .price {
  display: block; font-size: clamp(4rem, 10vw, 5.5rem);
  font-weight: 900; color: var(--red);
  font-family: 'Playfair Display', serif;
  line-height: 1; animation: pulse 2s infinite;
}
.offer-price .price-note { color: var(--brown-light); font-size: .95rem; margin-top: .4rem; }
.offer-guarantee {
  margin-top: 1.5rem; padding: 1.1rem; background: var(--cream);
  border-radius: var(--radius); border: 2px solid var(--gold);
  text-align: center; font-weight: 600; color: var(--brown); font-size: .95rem;
}

/* ============================================================
   MENU
   ============================================================ */
.menu-section { padding: 5rem 0; background: var(--white); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: clamp(1.8rem, 5vw, 3rem); color: var(--red); margin-bottom: .5rem; }
.section-header p  { color: var(--brown-light); font-size: 1.05rem; }

.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.5rem; }
.pizza-card {
  background: var(--white); border-radius: var(--radius);
  border: 2px solid var(--gold); padding: 2rem;
  text-align: center; box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s; cursor: pointer;
}
.pizza-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.pizza-emoji  { font-size: 3.5rem; display: block; margin-bottom: 1rem; }
.pizza-card h3 { color: var(--red); font-size: 1.35rem; margin-bottom: .4rem; }
.pizza-card p  { color: var(--brown-light); font-size: .88rem; margin-bottom: 1rem; }
.pizza-price  {
  border-top: 2px solid var(--gold); padding-top: 1rem;
  color: var(--red); font-size: 1.4rem; font-weight: 700;
  font-family: 'Playfair Display', serif;
}
.menu-cta { text-align: center; margin-top: 2.5rem; }
.menu-cta p { color: var(--brown-light); margin-bottom: 1rem; font-size: 1rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  padding: 5rem 0; position: relative;
  background-image: url('https://d2xsxph8kpxj0f.cloudfront.net/310419663032148597/C8D2nuTkoJNViE55f2QPiw/testimonials-background-nBZKJBqMforcm28B8veSEP.webp');
  background-size: cover; background-position: center;
}
.testimonials-section::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.62); }
.testimonials-section .container { position: relative; z-index: 1; }
.testimonials-section .section-header h2 { color: var(--white); }
.testimonials-section .section-header p  { color: rgba(255,255,255,.88); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.5rem; margin-bottom: 1.75rem; }
.testi-card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.75rem; box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--red);
}
.testi-stars { font-size: 1.3rem; margin-bottom: .75rem; }
.testi-text  { color: var(--brown); font-style: italic; margin-bottom: 1rem; line-height: 1.65; font-size: .95rem; }
.testi-name  { color: var(--red); font-weight: 700; }
.testi-summary { text-align: center; color: var(--white); font-size: 1.1rem; font-weight: 600; }

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.diff-section { padding: 5rem 0; background: var(--cream); }
.diff-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.5rem; }
.diff-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow);
  border-top: 4px solid var(--red); transition: transform .3s;
}
.diff-card:hover { transform: translateY(-8px); }
.diff-emoji { font-size: 3rem; display: block; margin-bottom: 1rem; }
.diff-card h3 { color: var(--red); font-size: 1.15rem; margin-bottom: .4rem; }
.diff-card p  { color: var(--brown-light); font-size: .93rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { padding: 5rem 0; background: var(--white); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { border: 2px solid var(--gold); border-radius: var(--radius); overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 1.5rem; background: var(--white); cursor: pointer;
  font-size: 1rem; font-weight: 700; color: var(--red); text-align: left;
  border: none; gap: 1rem; transition: background .2s;
}
.faq-q:hover { background: var(--cream); }
.faq-ico { font-size: 1.1rem; flex-shrink: 0; transition: transform .3s; color: var(--red); }
.faq-item.open .faq-ico { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 1.2rem 1.5rem; background: var(--cream); border-top: 2px solid var(--gold); color: var(--brown); font-size: .95rem; line-height: 1.65; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  padding: 5.5rem 0;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  text-align: center;
}
.cta-final h2 { color: var(--white); font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1rem; }
.cta-final p  { color: rgba(255,255,255,.9); font-size: 1.15rem; max-width: 600px; margin: 0 auto 2.5rem; }

/* ============================================================
   INFO + FOOTER
   ============================================================ */
.info-section { padding: 4rem 0; background: var(--cream); }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.info-box { text-align: center; }
.info-box h3 { color: var(--red); font-size: 1.3rem; margin-bottom: .75rem; }
.info-box p  { color: var(--brown); font-weight: 600; }
.info-box .sub { color: var(--brown-light); font-size: 1.05rem; margin-top: .25rem; }
.wpp-btn-link {
  color: var(--red); font-weight: 700; font-size: 1.15rem;
  background: none; border: none; padding: 0;
  font-family: 'Lato', sans-serif; cursor: pointer;
  transition: text-decoration .2s;
}
.wpp-btn-link:hover { text-decoration: underline; }
.guarantee-box {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; border: 4px solid var(--red); text-align: center;
}
.guarantee-box h3 { color: var(--red); font-size: 1.3rem; margin-bottom: .75rem; }
.guarantee-box p  { color: var(--brown); font-weight: 600; margin-bottom: .4rem; }
.guarantee-box .sub { color: var(--brown-light); }

footer.site-footer {
  padding: 2rem; background: var(--brown);
  color: var(--white); text-align: center;
}
footer.site-footer p { margin-bottom: .25rem; font-size: .95rem; }
footer.site-footer .sub { color: rgba(255,255,255,.6); font-size: .85rem; }

/* ============================================================
   PROMOÇÕES / COMBOS
   ============================================================ */
.promos-section { padding: 5rem 0; background: var(--cream); }
.promo-tag {
  display: inline-block; background: var(--red); color: var(--white);
  padding: .4rem 1.1rem; border-radius: 999px; font-size: .85rem;
  font-weight: 700; letter-spacing: .04em; margin-bottom: 1rem;
}
.promos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 2rem; margin-bottom: 2.5rem;
}
.promo-card {
  background: var(--white); border-radius: 1rem; overflow: hidden;
  box-shadow: var(--shadow-lg); border: 2px solid var(--gold);
  transition: transform .35s, box-shadow .35s;
  display: flex; flex-direction: column;
}
.promo-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.promo-card.featured { border: 3px solid var(--red); box-shadow: 0 8px 32px rgba(139,46,31,.18); }
.promo-img-wrap { position: relative; overflow: hidden; flex-shrink: 0; }
.promo-img-wrap img {
  width: 100%; height: 220px; object-fit: cover;
  transition: transform .45s ease; display: block;
}
.promo-card:hover .promo-img-wrap img { transform: scale(1.07); }
.promo-badge {
  position: absolute; top: .85rem; left: .85rem;
  background: var(--red); color: var(--white);
  padding: .3rem .9rem; border-radius: 999px;
  font-size: .78rem; font-weight: 700; letter-spacing: .04em;
}
.promo-badge.best  { background: var(--gold); color: var(--brown); }
.promo-badge.super { background: var(--green); color: var(--white); }
.promo-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.promo-body h3 {
  color: var(--red); font-size: 1.05rem; line-height: 1.45;
  margin-bottom: 1rem; font-family: 'Playfair Display', serif;
}
.promo-desc { font-size: .9rem; color: var(--brown-light); margin-bottom: .85rem; line-height: 1.5; }
.promo-items { margin-bottom: 1.25rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.promo-items li { color: var(--brown-light); font-size: .92rem; }
.promo-price {
  font-size: 2.4rem; font-weight: 900; color: var(--red);
  font-family: 'Playfair Display', serif; text-align: center;
  margin-bottom: 1.25rem; line-height: 1;
}
.promos-footer {
  text-align: center; padding: 1.25rem;
  background: var(--white); border-radius: var(--radius);
  border: 2px solid var(--gold); color: var(--brown-light);
  font-size: .95rem; font-weight: 600;
}

/* ─── WhatsApp Float ─── */
.wpp-float { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999; }
.wpp-float a {
  display: flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; background: var(--wpp); border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37,211,102,.45); transition: transform .3s;
}
.wpp-float a:hover { transform: scale(1.12); }
.wpp-float svg { width: 32px; height: 32px; fill: #fff; }

/* ─── Sticky mobile CTA ─── */
.mobile-sticky {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
  padding: .75rem 1rem; background: var(--red); box-shadow: 0 -4px 20px rgba(0,0,0,.2);
  transform: translateY(100%); transition: transform .4s;
}
.mobile-sticky.visible { transform: translateY(0); }
.mobile-sticky a { display: flex; align-items: center; justify-content: center; gap: .6rem; color: var(--white); font-weight: 700; font-size: 1rem; padding: .75rem; border-radius: var(--radius); background: var(--wpp); }

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .info-grid { grid-template-columns: 1fr; }
  .offer-card { padding: 2rem 1.25rem; }
  .hero-logo-wrap { width: 120px; }
  .nav-logo-text { font-size: 1rem; }
  .nav-logo-img { height: 40px; }
  .mobile-sticky { display: block; }
  .wpp-float { bottom: 5.5rem; }
}

@media (max-width: 480px) {
  .btn-xl { font-size: 1.1rem; padding: 1rem 1.75rem; }
  .hero h1 { font-size: 2rem; }
}
