:root {
  --bg: rgb(245, 244, 238);
  --text: rgb(52, 52, 52);
  --olive: rgb(148, 171, 100);
  --mustard: rgb(203, 154, 65);
  --terracotta: rgb(168, 86, 65);
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius: 22px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Atkinson Hyperlegible", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

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

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

.container {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.eyebrow {
  font-family: "Gloria Hallelujah", cursive;
  color: var(--terracotta);
  font-size: 0.95rem;
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-family: "Londrina Solid", cursive;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin: 0 0 18px;
  font-weight: 400;
}

.section-intro {
  max-width: 760px;
  font-size: 1.05rem;
  color: rgba(52, 52, 52, 0.85);
  margin: 0;
}

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--text);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  border: 1.5px solid rgba(52, 52, 52, 0.18);
  color: var(--text);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(245, 244, 238, 0.78);
  border-bottom: 1px solid rgba(52, 52, 52, 0.08);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
}

.brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  overflow: visible;
  flex-shrink: 0;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text span {
  font-size: 0.82rem;
  opacity: 0.75;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.96rem;
}

.nav-links a {
  position: relative;
  opacity: 0.88;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.hero {
  padding: 36px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-visual {
  border-radius: 34px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  min-height: 600px;
  background:
    radial-gradient(circle at top right, rgba(148, 171, 100, 0.18), transparent 30%),
    radial-gradient(circle at bottom left, rgba(203, 154, 65, 0.12), transparent 28%),
    var(--white);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  background: rgba(148, 171, 100, 0.15);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.9rem;
  margin-bottom: 22px;
}

.hero h1 {
  font-family: "Londrina Solid", cursive;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  margin: 0 0 18px;
  font-weight: 400;
}

.hero p {
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0;
  color: rgba(52, 52, 52, 0.86);
}

.hero-note {
  margin-top: 26px;
  font-size: 0.98rem;
  color: rgba(52, 52, 52, 0.72);
}

.hero-visual {
  position: relative;
  min-height: 600px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-radius: 22px;
  padding: 18px 18px 16px;
  max-width: 320px;
  box-shadow: var(--shadow);
}

.floating-card strong {
  display: block;
  margin-bottom: 8px;
}

.floating-card p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(52, 52, 52, 0.82);
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.info-card {
  background: var(--white);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.info-card h3 {
  margin: 10px 0 8px;
  font-size: 1rem;
}

.info-card p {
  margin: 0;
  color: rgba(52, 52, 52, 0.78);
  font-size: 0.95rem;
}

.info-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(148, 171, 100, 0.16);
  font-size: 1.2rem;
}

.menu-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 34px 0 30px;
}

.tab-btn {
  background: rgba(52, 52, 52, 0.06);
  color: var(--text);
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
}

.tab-btn.active {
  background: var(--text);
  color: var(--white);
}

.menu-panel {
  display: none;
}

.menu-panel.active {
  display: block;
  animation: fadeUp 0.35s ease;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.menu-card {
  background: var(--white);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.menu-card h3 {
  margin: 0 0 16px;
  font-family: "Londrina Solid", cursive;
  font-size: 2rem;
  font-weight: 400;
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.menu-item {
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(52, 52, 52, 0.12);
}

.menu-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.menu-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.menu-desc {
  font-size: 0.93rem;
  color: rgba(52, 52, 52, 0.76);
}

.products-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
}

.carousel {
  position: relative;
  background: var(--white);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.carousel-track {
  display: flex;
  transition: transform 0.45s ease;
}

.slide {
  min-width: 100%;
  position: relative;
  height: 520px;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  background: rgba(255, 255, 255, 0.92);
  padding: 14px 16px;
  border-radius: 18px;
  max-width: calc(100% - 44px);
  box-shadow: var(--shadow);
}

.carousel-controls {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.carousel-btn {
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--text);
  color: var(--white);
  cursor: pointer;
  font-size: 1.1rem;
}

.products-copy {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.76));
  box-shadow: var(--shadow);
  border-radius: 30px;
  padding: 34px;
}

.products-copy ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}

.products-copy li {
  background: rgba(148, 171, 100, 0.12);
  border-radius: 18px;
  padding: 16px 18px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: stretch;
}

.about-card,
.about-image {
  background: var(--white);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-card {
  padding: 34px;
}

.about-card p {
  margin: 0 0 16px;
  color: rgba(52, 52, 52, 0.84);
  font-size: 1rem;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 100%;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.contact-card,
.map-card {
  background: var(--white);
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.contact-item {
  padding: 16px 18px;
  background: rgba(52, 52, 52, 0.05);
  border-radius: 18px;
}

.contact-item strong {
  display: block;
  margin-bottom: 6px;
}

.map-embed {
  border-radius: 22px;
  overflow: hidden;
  min-height: 360px;
  background: rgba(52, 52, 52, 0.06);
}

.map-embed iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

.footer {
  padding: 30px 0 50px;
}

.footer-card {
  background: var(--text);
  color: var(--bg);
  border-radius: 30px;
  padding: 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-card p {
  margin: 0;
  opacity: 0.86;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1001;
  background: #25d366;
  color: white;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.32);
  font-size: 1.35rem;
}

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

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

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .products-layout,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .info-strip,
  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-copy,
  .hero-visual {
    min-height: auto;
  }

  .slide {
    height: 440px;
  }
}

@media (max-width: 760px) {
  .nav {
    min-height: 72px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    background: rgba(245, 244, 238, 0.98);
    border: 1px solid rgba(52, 52, 52, 0.08);
    box-shadow: var(--shadow);
    border-radius: 22px;
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links.open {
    display: flex;
  }

  .hero-copy {
    padding: 32px 24px;
  }

  .section {
    padding: 72px 0;
  }

  .info-strip,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .floating-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }

  .slide {
    height: 360px;
  }

  .footer-card {
    flex-direction: column;
  }
}
