/*
  ========================================
  STYLE.CSS - TERERÉ E MODÃO
  ========================================
  COMO EDITAR ESTE ARQUIVO:
  - Cores principais: procure em :root
  - Espaçamentos gerais: procure em :root
  - Estilos de botão: classe .btn
  - Layout das seções: classes .section, .container, grids
  ========================================
*/

:root {
  --color-bg: #f8f3eb;
  --color-surface: #ffffff;
  --color-surface-soft: #f2e7d8;
  --color-text: #241913;
  --color-text-soft: #655449;
  --color-primary: #5d7a34;
  --color-primary-dark: #475d28;
  --color-secondary: #8a5b36;
  --color-secondary-dark: #6f4525;
  --color-border: rgba(36, 25, 19, 0.12);
  --color-shadow: rgba(36, 25, 19, 0.12);
  --color-whatsapp: #25d366;
  --gradient-hero: linear-gradient(135deg, rgba(93, 122, 52, 0.14), rgba(138, 91, 54, 0.12));

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --container: 1160px;
  --header-height: 82px;

  --shadow-soft: 0 18px 50px rgba(36, 25, 19, 0.08);
  --shadow-card: 0 16px 42px rgba(36, 25, 19, 0.10);
  --shadow-hover: 0 24px 60px rgba(36, 25, 19, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}


body.menu-open,
body.modal-open {
  overflow: hidden;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -48px;
  z-index: 60;
  background: #fff;
  color: var(--color-text);
  padding: 0.7rem 1rem;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(93, 122, 52, 0.28);
  outline-offset: 2px;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 4.6rem 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.55);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading h2,
.cta-box h2,
.hero h1,
.split-copy h2,
.contact-info h2,
.site-footer h3,
.site-footer h4,
.modal-dialog h3 {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.section-heading h2,
.cta-box h2,
.split-copy h2,
.contact-info h2 {
  font-size: clamp(2rem, 2.6vw, 3rem);
  margin: 0 0 0.85rem;
}

.section-heading p,
.split-copy p,
.contact-info p,
.cta-box p {
  margin: 0;
  color: var(--color-text-soft);
}

.section-kicker {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-primary);
  margin-bottom: 0.65rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  background: rgba(93, 122, 52, 0.14);
  color: var(--color-primary-dark);
}

.pill-light {
  background: rgba(138, 91, 54, 0.12);
  color: var(--color-secondary-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.9rem 1.4rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--color-primary-dark);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(93, 122, 52, 0.25);
  color: var(--color-primary-dark);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(93, 122, 52, 0.08);
}

.btn-small {
  min-height: 46px;
  padding-inline: 1rem;
}

.btn-full {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: var(--header-height);
  backdrop-filter: blur(16px);
  background: rgba(248, 243, 235, 0.82);
  border-bottom: 1px solid rgba(36, 25, 19, 0.08);
}

.header-wrap {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
}

.brand small {
  color: var(--color-text-soft);
  font-size: 0.84rem;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
  box-shadow: var(--shadow-soft);
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.15rem;
}

.desktop-nav a {
  font-weight: 600;
  color: var(--color-text-soft);
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
  background: var(--color-primary);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  display: none;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-surface);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding-inline: 11px;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--color-text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  padding: 0 1rem 1rem;
  gap: 0.6rem;
  flex-direction: column;
}

.mobile-nav a {
  padding: 0.95rem 1rem;
  background: var(--color-surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  font-weight: 600;
}

.mobile-nav.is-open {
  display: flex;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(36, 25, 19, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 20;
}

.menu-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.hero {
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  padding-top: 0.5rem;
}

.eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  margin: 0;
}

.hero-subtitle {
  margin: 0.8rem 0 0;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--color-secondary-dark);
  font-weight: 700;
}

.hero-text {
  font-size: 1rem;
  color: var(--color-text-soft);
  max-width: 60ch;
  margin: 1rem 0 1.3rem;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.3rem;
}

.hero-highlights article {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(36, 25, 19, 0.08);
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}

.hero-highlights strong {
  display: block;
  font-size: 1.2rem;
}

.hero-highlights span {
  display: block;
  color: var(--color-text-soft);
  font-size: 0.92rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 0;
  margin: 1.25rem 0 0;
  list-style: none;
}

.hero-bullets li {
  padding: 0.45rem 0.8rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(36, 25, 19, 0.08);
  font-weight: 600;
  font-size: 0.92rem;
}

.hero-card {
  position: relative;
  max-width: 520px;
  margin-inline: auto;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto 6% -8% 6%;
  height: 24%;
  border-radius: 50%;
  background: rgba(138, 91, 54, 0.18);
  filter: blur(32px);
}

.hero-image {
  position: relative;
  width: 100%;
  height: min(78vw, 580px);
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--shadow-card);
}

.hero-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 20px;
  padding: 0.9rem 1rem;
  box-shadow: var(--shadow-soft);
}

.badge-label {
  display: block;
  color: var(--color-text-soft);
  font-size: 0.84rem;
}

.hero-badge strong {
  font-size: 1.55rem;
}

.benefits-grid,
.flavors-grid,
.steps-grid,
.gallery-grid,
.social-cards,
.contact-cards {
  display: grid;
  gap: 1rem;
}

.benefits-grid,
.flavors-grid,
.steps-grid,
.contact-cards {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.benefit-card,
.flavor-card,
.step-card,
.placeholder-card,
.contact-card,
.faq-item,
.check-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.benefit-card:hover,
.flavor-card:hover,
.step-card:hover,
.gallery-card:hover,
.placeholder-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.benefit-icon,
.step-number {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
}

.benefit-card h3,
.flavor-card h3,
.step-card h3,
.placeholder-card strong,
.contact-card strong,
.faq-question,
.check-content strong {
  margin: 0 0 0.45rem;
}

.benefit-card p,
.flavor-card p,
.step-card p,
.placeholder-card p,
.contact-card p,
.check-content p,
.faq-answer {
  margin: 0;
  color: var(--color-text-soft);
}

.flavor-card {
  position: relative;
  overflow: hidden;
}

.flavor-card::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
}

.flavor-card small {
  display: inline-block;
  margin-top: 0.9rem;
  color: var(--color-primary-dark);
  font-weight: 700;
}

.split-layout,
.social-grid,
.contact-grid,
.faq-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.rounded-image {
  width: 100%;
  border-radius: 30px;
  min-height: 360px;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

.check-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.check-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.check-mark {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(93, 122, 52, 0.12);
  color: var(--color-primary-dark);
  font-weight: 800;
}

.price-panel {
  margin-top: 1.4rem;
  background: linear-gradient(135deg, rgba(93, 122, 52, 0.14), rgba(138, 91, 54, 0.12));
  border-radius: 26px;
  padding: 1.2rem;
  border: 1px solid rgba(36, 25, 19, 0.08);
}

.price-panel small,
.price-panel span,
.form-note,
.footer-bottom p {
  display: block;
  color: var(--color-text-soft);
}

.price-panel strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  margin: 0.3rem 0;
}

.flavor-action {
  margin-top: 1.25rem;
}

.flavor-bar {
  display: grid;
  gap: 0.8rem;
}

.field-label {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.field-select,
.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(36, 25, 19, 0.16);
  background: #fff;
  color: var(--color-text);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.field-group {
  display: block;
}

.contact-form {
  display: grid;
  gap: 1rem;
  background: var(--color-surface);
  padding: 1.4rem;
  border-radius: 26px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

.steps-grid {
  counter-reset: steps;
}

.step-card {
  position: relative;
}

.step-number {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}

.gallery-grid {
  grid-template-columns: 1fr;
}

.gallery-card {
  background: var(--color-surface);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.gallery-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.gallery-card figcaption {
  padding: 1rem 1.1rem;
  color: var(--color-text-soft);
}

.social-points {
  padding-left: 1rem;
  color: var(--color-text-soft);
}

.social-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.placeholder-card {
  min-height: 200px;
}

.placeholder-tag {
  display: inline-flex;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-pill);
  background: rgba(138, 91, 54, 0.12);
  color: var(--color-secondary-dark);
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  border: 0;
  background: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.2rem;
  color: var(--color-text);
}

.faq-trigger::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-primary-dark);
  transition: transform 0.2s ease;
}

.faq-item.is-open .faq-trigger::after {
  transform: rotate(45deg);
}

.faq-answer-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer {
  padding: 0 1.2rem 1.2rem;
}

.cta-box {
  background: linear-gradient(135deg, rgba(93, 122, 52, 0.18), rgba(138, 91, 54, 0.16));
  border: 1px solid rgba(36, 25, 19, 0.08);
  border-radius: 36px;
  padding: clamp(1.5rem, 3vw, 3rem);
  box-shadow: var(--shadow-card);
}

.site-footer {
  background: #1f1712;
  color: rgba(255, 255, 255, 0.95);
  padding-top: 3rem;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.site-footer p,
.site-footer li,
.site-footer a,
.footer-modal-button {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.footer-modal-button {
  border: 0;
  background: none;
  padding: 0;
  text-align: left;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
}

.back-to-top {
  color: #fff;
  font-weight: 700;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 32;
  min-width: 58px;
  min-height: 58px;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--color-whatsapp);
  color: #0d2d1d;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.28);
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 40;
}

.modal.is-open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(36, 25, 19, 0.5);
}

.modal-dialog {
  position: relative;
  width: min(100% - 2rem, 720px);
  margin: 8vh auto;
  background: #fff;
  border-radius: 26px;
  padding: 1.4rem 1.3rem;
  box-shadow: var(--shadow-card);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: #fff;
  font-size: 1.7rem;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-1 {
  transition-delay: 0.08s;
}

.reveal.delay-2 {
  transition-delay: 0.16s;
}

@media (min-width: 720px) {
  .flavor-bar {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .gallery-grid {
    grid-template-columns: 1.25fr 1fr 1fr;
  }

  .gallery-card-large {
    grid-row: span 2;
  }

  .gallery-card-large img {
    height: 100%;
    min-height: 660px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 900px) {
  .desktop-nav,
  .header-cta {
    display: inline-flex;
  }

  .menu-toggle,
  .mobile-nav,
  .menu-overlay {
    display: none !important;
  }

  .hero-grid,
  .split-layout,
  .social-grid,
  .contact-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .faq-layout {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
  }
}

@media (max-width: 899px) {
  .header-cta {
    display: none;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4rem 0;
  }

  .hero-image {
    height: 420px;
  }

  .gallery-card img,
  .gallery-card-large img {
    height: 300px;
    min-height: 0;
  }

  .whatsapp-float {
    right: 0.85rem;
    bottom: 0.85rem;
  }
}


.btn-flavor {
  margin-top: 1rem;
  width: 100%;
}

.js-instagram-link.is-disabled {
  opacity: 0.6;
  pointer-events: none;
}

.form-feedback {
  min-height: 1.3rem;
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
}

.form-feedback.is-erro {
  color: #b42318;
}

.form-feedback.is-sucesso {
  color: var(--color-primary-dark);
}

@media (max-width: 719px) {
  .whatsapp-float {
    left: 1rem;
    right: 1rem;
    bottom: 0.85rem;
    text-align: center;
  }
}
