/* ============================================================
   BOTA 3D BARRETOS — TEMA FESTA DO PEÃO (VERSÃO LIMPA)
   Mobile-first · Sem bandeirinhas · Estilo cartaz vintage
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Rye&family=Special+Elite&family=Inter:wght@400;500;600;700&display=swap');

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

/* ===== TOKENS ===== */
:root {
  --dirt:      #1a0c04;
  --leather:   #5a2d0c;
  --saddle:    #8b4513;
  --caramel:   #c07d40;
  --straw:     #e8c87a;
  --gold:      #c9920a;
  --gold-lt:   #f2b825;
  --cream:     #fef5e4;
  --parch:     #f0ddb8;
  --white:     #fffdf6;
  --green-wa:  #25d366;

  --shadow-sm: 0 2px 12px rgba(26,12,4,.18);
  --shadow-md: 0 8px 28px rgba(26,12,4,.28);
  --shadow-lg: 0 20px 56px rgba(26,12,4,.42);
  --r:         14px;
  --r-lg:      22px;
  --r-pill:    999px;
  --ease:      cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--dirt);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

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

/* ===== TIPOGRAFIA ===== */
h1, h2, h3 {
  font-family: 'Rye', serif;
  line-height: 1.15;
}

.accent      { color: var(--saddle); }
.accent-light { color: var(--gold-lt); }

/* ===== SECTION TAG ===== */
.section-tag {
  display: inline-block;
  font-family: 'Special Elite', serif;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 5px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--leather);
  margin-bottom: 12px;
}
.section-header p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--saddle);
  font-size: .97rem;
}
.section-header.light h2 { color: var(--straw); }
.section-header.light p  { color: rgba(232,200,122,.75); }

/* ===== BOTÃO PRINCIPAL ===== */
.btn-primary {
  display: inline-block;
  font-family: 'Special Elite', serif;
  font-size: 1rem;
  letter-spacing: .05em;
  color: var(--dirt);
  background: linear-gradient(135deg, var(--gold-lt) 0%, var(--gold) 100%);
  padding: 15px 40px;
  border-radius: var(--r-pill);
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(201,146,10,.4);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  touch-action: manipulation;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover, .btn-primary:focus {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201,146,10,.55);
}
.btn-primary:active { transform: translateY(0); }
.btn-large { padding: 18px 52px; font-size: 1.1rem; }

/* ================================================
   HERO
   ================================================ */
.hero {
  min-height: 100svh;
  background:
    /* brilho central suave */
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(139,69,19,.45) 0%, transparent 70%),
    /* gradiente céu–terra noturno */
    linear-gradient(175deg,
      #0d0717 0%,
      #180a26 18%,
      #2b1006 45%,
      #4a1500 68%,
      #200900 100%
    );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 72px 24px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Estrelas */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.2px 1.2px at  8% 12%, rgba(255,255,200,.9) 0%, transparent 100%),
    radial-gradient(1px   1px   at 22%  6%, rgba(255,255,255,.8) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 38% 18%, rgba(247,201,72,.85) 0%, transparent 100%),
    radial-gradient(1px   1px   at 55%  8%, rgba(255,255,255,.7) 0%, transparent 100%),
    radial-gradient(1.3px 1.3px at 70% 22%, rgba(247,201,72,.8) 0%, transparent 100%),
    radial-gradient(1px   1px   at 82%  9%, rgba(255,255,255,.9) 0%, transparent 100%),
    radial-gradient(1.2px 1.2px at 91% 28%, rgba(247,201,72,.7) 0%, transparent 100%),
    radial-gradient(1px   1px   at 14% 35%, rgba(255,255,255,.5) 0%, transparent 100%),
    radial-gradient(1.4px 1.4px at 48% 40%, rgba(247,201,72,.6) 0%, transparent 100%),
    radial-gradient(1px   1px   at 76% 38%, rgba(255,255,255,.6) 0%, transparent 100%),
    radial-gradient(1.8px 1.8px at 30%  2%, rgba(247,201,72,.9) 0%, transparent 100%),
    radial-gradient(1px   1px   at 60%  3%, rgba(255,255,255,.7) 0%, transparent 100%);
  pointer-events: none;
}



/* Névoa no rodapé do hero */
.hero-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(0deg, var(--cream) 0%, transparent 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero-eyebrow {
  font-family: 'Special Elite', serif;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 16px;
  opacity: .9;
}

.hero-title {
  font-size: clamp(3.2rem, 10vw, 7rem);
  color: var(--white);
  text-shadow: 2px 3px 0 var(--dirt), 5px 6px 20px rgba(0,0,0,.5);
  margin-bottom: 12px;
  line-height: 1.0;
}

.hero-highlight {
  display: block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 55%, var(--straw) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 3px 10px rgba(201,146,10,.5));
}

.hero-sub {
  font-size: clamp(.9rem, 2.5vw, 1.1rem);
  color: rgba(255,253,246,.68);
  margin-bottom: 28px;
  line-height: 1.9;
}

.hero-price {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,146,10,.35);
  border-radius: var(--r-lg);
  padding: 14px 32px;
  margin-bottom: 28px;
  backdrop-filter: blur(6px);
}
.price-label {
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--straw);
  margin-bottom: 4px;
}
.price-value {
  font-family: 'Rye', serif;
  font-size: clamp(2.8rem, 8vw, 4.8rem);
  color: var(--gold-lt);
  line-height: 1;
  text-shadow: 0 2px 12px rgba(201,146,10,.45);
}
.price-value sup { font-size: .42em; vertical-align: super; }

/* Imagens flutuantes */
.hero-images {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
}
.hero-img-stack {
  position: relative;
  width: 100%;
  height: 300px;
  margin: 0 auto;
}
.img-hero {
  position: absolute;
  object-fit: cover;
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(201,146,10,.35);
}
.img-1 {
  width: 55%; height: 78%;
  top: 0; right: 0; z-index: 3;
  transform: rotate(3deg);
  animation: fl1 6s ease-in-out infinite;
}
.img-2 {
  width: 49%; height: 70%;
  top: 14%; left: 0; z-index: 2;
  transform: rotate(-4deg);
  animation: fl2 7.5s ease-in-out infinite;
}
.img-3 {
  width: 42%; height: 58%;
  bottom: 0; right: 10%; z-index: 1;
  transform: rotate(-2deg);
  animation: fl3 9s ease-in-out infinite;
  opacity: .85;
}
@keyframes fl1 { 0%,100%{ transform:rotate(3deg) translateY(0) } 50%{ transform:rotate(3deg) translateY(-13px) } }
@keyframes fl2 { 0%,100%{ transform:rotate(-4deg) translateY(0) } 50%{ transform:rotate(-4deg) translateY(-9px) } }
@keyframes fl3 { 0%,100%{ transform:rotate(-2deg) translateY(0) } 50%{ transform:rotate(-2deg) translateY(-11px) } }

/* ================================================
   FEATURES
   ================================================ */
.features-section {
  padding: 80px 0;
  background: var(--cream);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 700px) {
  .features-grid { grid-template-columns: repeat(4, 1fr); }
}

.feature-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid rgba(139,69,19,.15);
  border-bottom: 3px solid var(--caramel);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--gold);
}
.feature-icon { font-size: 2.2rem; margin-bottom: 12px; display: block; }
.feature-card h3 { font-family: 'Special Elite', serif; font-size: 1rem; color: var(--leather); margin-bottom: 8px; }
.feature-card p  { font-size: .88rem; color: var(--saddle); }

/* ================================================
   GALERIA
   ================================================ */
.galeria {
  padding: 80px 0;
  background: var(--parch);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 700px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
  .gallery-item.large { grid-column: span 2; aspect-ratio: 16/10; }
}

.gallery-item {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  border: 2px solid rgba(139,69,19,.2);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.gallery-item:hover { transform: scale(1.03); box-shadow: var(--shadow-md); }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(26,12,4,.88) 0%, transparent 100%);
  color: var(--straw);
  font-family: 'Special Elite', serif;
  font-size: .78rem;
  padding: 22px 10px 8px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.gallery-item:hover .gallery-label {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================
   VÍDEO
   ================================================ */
.video-section {
  padding: 80px 0;
  background: linear-gradient(170deg, var(--dirt) 0%, #2d0f04 100%);
}

.video-wrapper {
  max-width: 760px;
  margin: 0 auto;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,.55);
  border: 2px solid rgba(201,146,10,.35);
}
.video-wrapper video { width: 100%; display: block; background: #000; }

/* ================================================
   PREÇO
   ================================================ */
.preco-section {
  padding: 80px 0;
  background: var(--cream);
}

.preco-card {
  max-width: 640px;
  margin: 0 auto;
  background: linear-gradient(150deg, var(--leather) 0%, var(--dirt) 100%);
  border-radius: var(--r-lg);
  padding: 52px 28px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(201,146,10,.3);
  position: relative;
  overflow: hidden;
}
/* reflexo sutil no topo */
.preco-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-lt), transparent);
}

.preco-eyebrow {
  font-family: 'Special Elite', serif;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 12px;
}
.preco-card h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  margin-bottom: 10px;
}
.preco-desc {
  color: rgba(232,200,122,.65);
  font-size: .92rem;
  margin-bottom: 28px;
}
.preco-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 28px;
}
.preco-original {
  font-size: .88rem;
  color: rgba(255,255,255,.35);
  text-decoration: line-through;
}
.preco-atual {
  font-family: 'Rye', serif;
  font-size: clamp(3.5rem, 10vw, 5.5rem);
  color: var(--gold-lt);
  line-height: 1;
  text-shadow: 0 4px 14px rgba(201,146,10,.45);
}
.preco-atual sup { font-size: .4em; vertical-align: super; }
.preco-economia {
  display: inline-block;
  background: rgba(37,211,102,.15);
  color: #6ee8a4;
  border: 1px solid rgba(37,211,102,.3);
  border-radius: var(--r-pill);
  font-size: .82rem;
  font-weight: 600;
  padding: 5px 18px;
}
.preco-note {
  margin-top: 14px;
  color: rgba(255,255,255,.35);
  font-size: .8rem;
}

/* ================================================
   FORMULÁRIO
   ================================================ */
.pedido-section {
  padding: 80px 0;
  background: var(--parch);
}

.form-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 740px;
  margin: 0 auto;
}
@media (min-width: 800px) {
  .form-wrap { grid-template-columns: 1fr 200px; align-items: start; }
}

form {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--gold);
}

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: 'Special Elite', serif;
  font-size: .84rem;
  color: var(--leather);
  margin-bottom: 6px;
  letter-spacing: .03em;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group--small { max-width: 100px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid rgba(139,69,19,.25);
  border-radius: var(--r);
  font-size: 16px; /* evita zoom no iOS */
  font-family: 'Inter', sans-serif;
  color: var(--dirt);
  background: var(--cream);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,146,10,.15);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 72px; }

.btn-submit {
  width: 100%;
  padding: 17px;
  background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
  color: #fff;
  border: none;
  border-radius: var(--r-pill);
  font-family: 'Special Elite', serif;
  font-size: 1rem;
  letter-spacing: .04em;
  cursor: pointer;
  min-height: 56px;
  box-shadow: 0 6px 22px rgba(37,211,102,.35);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  touch-action: manipulation;
}
.btn-submit:hover  { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(37,211,102,.45); }
.btn-submit:active { transform: translateY(0); }

/* ASIDE */
.form-aside {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (min-width: 800px) {
  .form-aside { grid-template-columns: 1fr; }
}

.aside-item {
  background: var(--white);
  border-radius: var(--r);
  padding: 18px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease);
}
.aside-item:hover { transform: translateX(3px); }
.aside-item > span { font-size: 1.6rem; flex-shrink: 0; }
.aside-item p { font-size: .82rem; font-weight: 600; color: var(--saddle); line-height: 1.4; }

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--dirt);
  text-align: center;
  padding: 52px 20px 32px;
  border-top: 2px solid rgba(201,146,10,.3);
}
.footer-logo {
  font-family: 'Rye', serif;
  font-size: 1.7rem;
  color: var(--gold-lt);
  margin-bottom: 8px;
}
.footer-sub {
  font-size: .88rem;
  color: rgba(255,253,246,.45);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
@media (min-width: 600px) {
  .footer-links {
    flex-direction: row;
    justify-content: center;
  }
}

.footer-ig, .footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family: 'Special Elite', serif;
  font-size: .9rem;
  padding: 12px 28px;
  border-radius: var(--r-pill);
  text-decoration: none;
  min-height: 48px;
  transition: opacity .2s, transform .2s;
}

.footer-wa {
  background: var(--green-wa);
}

.footer-ig {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.footer-wa:hover, .footer-ig:hover {
  opacity: .88;
  transform: translateY(-2px);
}
.footer-copy {
  font-size: .72rem;
  color: rgba(255,253,246,.25);
}

/* ================================================
   WHATSAPP FLOAT
   ================================================ */
.wa-float {
  position: fixed;
  bottom: 22px; right: 18px;
  width: 56px; height: 56px;
  background: var(--green-wa);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(37,211,102,.5);
  z-index: 9999;
  transition: transform .25s var(--ease);
  animation: wa-in .6s cubic-bezier(.4,0,.2,1) both;
  touch-action: manipulation;
}
.wa-float::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.4);
  animation: wa-ring 2.5s ease-in-out infinite;
}
.wa-float svg { width: 28px; height: 28px; position: relative; }
.wa-float:hover { transform: scale(1.12); }

@keyframes wa-in  { from{ transform:scale(0); opacity:0 } 70%{ transform:scale(1.12) } to{ transform:scale(1); opacity:1 } }
@keyframes wa-ring{ 0%,100%{ transform:scale(1); opacity:.5 } 50%{ transform:scale(1.22); opacity:0 } }

/* ================================================
   RESPONSIVO — MOBILE GERAL
   ================================================ */

/* Hero lado a lado no desktop */
@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    text-align: left;
    padding: 80px 60px;
    gap: 56px;
    justify-content: center;
  }
  .hero-content { max-width: 520px; }
  .hero-price   { align-items: flex-start; }
  .hero-images  { max-width: 460px; }
  .hero-img-stack { height: 380px; }
  .img-1 { width: 260px; height: 310px; }
  .img-2 { width: 230px; height: 280px; }
  .img-3 { width: 200px; height: 245px; }
}

/* Telas muito pequenas */
@media (max-width: 380px) {
  .hero-title  { font-size: 2.8rem; }
  .price-value { font-size: 2.5rem; }
  .preco-atual { font-size: 3rem; }
  .form-row    { grid-template-columns: 1fr; }
  .btn-primary { padding: 13px 28px; }
}
