/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --acai:       #6B3FA0;
  --acai-dark:  #4A2570;
  --acai-light: #8B5CC8;
  --sand:       #FFF0E0;
  --sand-dark:  #FFD9A8;
  --ocean:      #3DAA4A;
  --ocean-light:#5CC96A;
  --orange:     #F47B20;
  --orange-dark:#D45F00;
  --white:      #FFFFFF;
  --gray:       #6B7280;
  --gray-light: #FFF6EE;

  --font-display: 'DM Sans', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --radius:  16px;
  --radius-sm: 8px;
  --shadow:  0 4px 24px rgba(74,18,89,.12);
  --shadow-lg: 0 12px 48px rgba(74,18,89,.18);

  --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--acai-dark);
  background: var(--white);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: min(1160px, 92%);
  margin-inline: auto;
}

/* ===========================
   TYPOGRAPHY HELPERS
=========================== */
.section-tag {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: .75rem;
}
.section-tag.center { text-align: center; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--acai-dark);
  margin-bottom: 1.5rem;
}
.section-title.center { text-align: center; }

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.btn--primary {
  background: var(--acai);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--acai-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}
.btn--small {
  padding: .45rem 1.1rem;
  font-size: .8rem;
  background: var(--acai);
  color: var(--white);
}
.btn--small:hover { background: var(--acai-light); }
.btn--light {
  background: var(--white);
  color: var(--acai);
}
.btn--light:hover { background: var(--sand); }
.btn--large { padding: 1rem 2.5rem; font-size: 1rem; }

/* ===========================
   NAV
=========================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.25rem 5%;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(244,123,32,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.12);
  padding: .9rem 5%;
}
.nav.scrolled .nav__logo { color: var(--white); }
.nav.scrolled .nav__links a { color: var(--white); }
.nav.scrolled .nav__links a:hover { color: var(--white); }
.nav.scrolled .nav__links a::after { background: var(--white); }

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  margin-right: auto;
  transition: var(--transition);
  width: 100px;
}
.nav__logo span { color: var(--ocean-light); }

.nav__links {
  display: flex;
  gap: 2rem;
}
.nav__links a {
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.95);
  transition: var(--transition);
  position: relative;
  padding-bottom: 3px;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav__links a:hover::after { width: 100%; }
.nav__links a:hover { color: var(--white); }

.nav__cta {
  padding: .6rem 1.4rem;
  background: var(--acai);
  color: var(--white);
  border: none;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.nav__cta:hover { background: var(--acai-light); transform: translateY(-1px); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav.scrolled .nav__burger span { background: var(--acai-dark); }

/* Mobile menu */
.nav__mobile {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--acai-dark);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.nav__mobile.open {
  opacity: 1;
  pointer-events: all;
}
.nav__mobile ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}
.nav__mobile a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  transition: var(--transition);
}
.nav__mobile a:hover { color: var(--ocean-light); }

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, var(--orange-dark) 0%, var(--orange) 50%, var(--orange) 100%);
  z-index: 0;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(700px, 92%);
  margin-inline: auto;
  text-align: center;
  padding: 8rem 1rem 6rem;
  animation: fadeUp .9s ease both;
}

.hero__tag {
  display: inline-block;
  background: rgba(255,255,255,.12);
  color: var(--gray-light);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,.2);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-inline: auto;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero__scroll span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 100px;
  position: relative;
}
.hero__scroll span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,.6);
  border-radius: 100px;
  animation: scrollDot 1.8s ease infinite;
}

/* ===========================
   SOBRE
=========================== */
.sobre {
  padding: 7rem 0;
  background: var(--orange);
}

.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.sobre .section-tag { color: var(--gray-light); }
.sobre .section-title { color: var(--white); }
.sobre__text p {
  color: rgba(255,255,255,.85);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.sobre__visual {
  position: relative;
}

.sobre__img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 24px 64px rgba(0,0,0,.25);
}
.sobre__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sobre__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--acai);
  border-radius: var(--radius);
  padding: 1.25rem 1.75rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
}
.sobre__badge strong {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.sobre__badge span {
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  margin-top: .25rem;
}

.sobre__stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.25);
}
.stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
}
.stat span {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
}

@media (max-width: 768px) {
  .sobre__grid { grid-template-columns: 1fr; gap: 3rem; }
  .sobre__badge { right: 0; }
}

/* ===========================
   CARDÁPIO
=========================== */
.cardapio {
  padding: 7rem 0;
  background: var(--acai-dark);
}

.cardapio .section-tag { color: var(--gray-light); }
.cardapio .section-title { color: var(--white); }

/* ===========================
   MENU CARD
=========================== */
.menu-card {
  background: var(--acai);
  border-radius: 24px;
  padding: 2.5rem;
  max-width: 560px;
  margin: 3rem auto 0;
  box-shadow: 0 16px 48px rgba(74,37,112,.35);
}

.menu-card__top {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.menu-card__name {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .25rem;
}
.menu-card__name strong {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .04em;
  line-height: 1;
}
.menu-leaf { font-size: 1.4rem; }

.menu-card__divider {
  width: 2px;
  height: 90px;
  background: rgba(255,255,255,.3);
  border-radius: 2px;
  flex-shrink: 0;
}

.menu-card__sizes {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  flex: 1;
}

.size-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.size-label {
  font-size: 1.3rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  width: 20px;
}

.size-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--ocean-light);
  line-height: 1;
}
.size-price small {
  font-size: .9rem;
  font-weight: 500;
  color: var(--ocean-light);
  opacity: .8;
}

.menu-card__badge {
  background: var(--ocean);
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .6rem 1.5rem;
  border-radius: 100px;
  text-align: center;
  margin-bottom: 1.5rem;
}

.menu-card__adicionais {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem 2rem;
}
.menu-card__adicionais ul {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.menu-card__adicionais li {
  font-size: .95rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ===========================
   EXTRAS CARD
=========================== */
.extras-card {
  background: var(--acai);
  border-radius: 24px;
  padding: 2rem 2.5rem;
  max-width: 860px;
  margin: 2rem auto 0;
  box-shadow: 0 16px 48px rgba(74,37,112,.35);
}

.extras-card__header {
  display: flex;
  flex-direction: column;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.extras-card__groups {
  display: flex;
  gap: 0;
  align-items: flex-start;
}

.extras-group {
  flex: 1;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0 1.5rem;
}
.extras-group:first-child { padding-left: 0; }
.extras-group:last-child  { padding-right: 0; }

.extras-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--ocean-light);
  line-height: 1;
  flex-shrink: 0;
}
.extras-price small {
  font-size: 1rem;
  font-weight: 600;
  opacity: .8;
}

.extras-group ul {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  padding-top: .25rem;
}
.extras-group li {
  font-size: .8rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.extras-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255,255,255,.2);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .extras-card__groups {
    flex-direction: column;
    gap: 1.5rem;
  }
  .extras-divider { width: 100%; height: 1px; align-self: auto; }
  .extras-group { padding: 0; }
}

/* ===========================
   EXPERIÊNCIA
=========================== */
.experiencia {
  padding: 7rem 0;
  background: var(--orange);
}

.experiencia .section-tag { color: var(--gray-light); }
.experiencia .section-title { color: var(--white); }

.exp__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.exp__item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.1);
  transition: var(--transition);
}
.exp__item:hover {
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.18);
  transform: translateY(-4px);
}

.exp__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.exp__item h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: .5rem;
}

.exp__item p {
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .exp__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .exp__grid { grid-template-columns: 1fr; }
}

/* ===========================
   AMIGO DO PLANETA
=========================== */
.planeta {
  background: var(--orange-dark);
  padding: 5rem 0;
}

.planeta__card {
  background: #3A7D2C;
  border-radius: 24px;
  padding: 3rem;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 16px 48px rgba(0,0,0,.2);
}

.planeta__left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.planeta__brand {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.planeta__brand-name {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .04em;
}
.planeta__brand-sub {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
}

.planeta__title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .03em;
  line-height: 1.1;
}

.planeta__left p {
  font-size: .95rem;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
}

.planeta__icon {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  opacity: .95;
}
.planeta__icon svg { width: 100%; height: 100%; }

@media (max-width: 560px) {
  .planeta__card { flex-direction: column; text-align: center; align-items: center; }
}



/* ===========================
   CONTATO
=========================== */
.contato {
  padding: 7rem 0;
  background: var(--acai-dark);
}

.contato .section-tag { color: var(--ocean-light); }
.contato .section-title { color: var(--white); }
.contato__list li { color: rgba(255,255,255,.8); }

.contato__whats p { color: rgba(255,255,255,.8); }

.contato__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contato__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}
.contato__list li {
  font-size: .95rem;
  color: var(--gray-light);
  display: flex;
  align-items: center;
  gap: .75rem;
}

.contato__whats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}

.contato__whats p {
  font-size: 1rem;
  color: var(--gray-light);
  line-height: 1.7;
}

.whats-btn {
  align-self: flex-start;
  background: #25D366;
  gap: .6rem;
}
.whats-btn:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.3);
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--acai-dark);
  padding: 2.5rem 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
}
.footer__logo span { color: var(--ocean-light); }

.footer p {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}

.footer__socials {
  display: flex;
  gap: 1.5rem;
}
.footer__socials a {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer__socials a:hover { color: var(--ocean-light); }

/* ===========================
   ANIMATIONS
=========================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollDot {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(16px); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .sobre__grid,
  .contato__grid { grid-template-columns: 1fr; gap: 3rem; }

  .sobre__badge { right: 0; }

  .footer__inner { flex-direction: column; text-align: center; }
}
