* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --pink: #ff2d83;
  --dark-pink: #e91d70;
  --green: #35a947;
  --yellow: #ffc928;
  --cream: #fff5e8;
  --white: #ffffff;
  --black: #161616;
  --shadow: 0 18px 45px rgba(162, 45, 96, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--cream);
  color: var(--black);
}

.top-wave {
  height: 18px;
  background: var(--pink);
  border-bottom-left-radius: 50% 18px;
  border-bottom-right-radius: 50% 18px;
}

.navbar {
  background: var(--white);
  min-height: 130px;
  padding: 18px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand img {
  width: 290px;
  max-width: 100%;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--black);
  text-decoration: none;
  font-weight: 800;
}

.nav-links a:hover {
  color: var(--pink);
}

.order-btn,
.primary-btn {
  background: var(--pink);
  color: var(--white) !important;
  padding: 15px 24px;
  border-radius: 9px;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 12px 25px rgba(255, 45, 131, 0.25);
  display: inline-block;
}

.outline-btn {
  background: var(--white);
  color: var(--pink);
  border: 2px solid var(--pink);
  padding: 13px 24px;
  border-radius: 9px;
  text-decoration: none;
  font-weight: 900;
  display: inline-block;
}

.hero {
  min-height: 550px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  padding: 60px 6%;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 45, 131, 0.12), transparent 28%),
    linear-gradient(90deg, #fff9fb 0%, #fff3f8 47%, #ffe2ef 100%);
  position: relative;
  overflow: hidden;
}

.hero:after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -22px;
  height: 60px;
  background: radial-gradient(circle at 30px 0, transparent 28px, var(--pink) 30px);
  background-size: 105px 60px;
  opacity: 0.45;
}

.script {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  color: var(--pink);
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
}

.hero h1 {
  color: var(--pink);
  font-size: clamp(3.3rem, 7vw, 6.2rem);
  line-height: 0.95;
  text-transform: uppercase;
  font-weight: 1000;
  letter-spacing: 1px;
}

.hero h2 {
  color: var(--green);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
  font-weight: 1000;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 1.45rem;
  line-height: 1.55;
  max-width: 560px;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-products {
  min-height: 430px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 18px;
  position: relative;
}

.product {
  min-height: 270px;
  border-radius: 45px 45px 18px 18px;
  display: grid;
  place-items: center;
  font-size: 5.4rem;
  box-shadow: var(--shadow);
  background: var(--white);
  border: 8px solid rgba(255,255,255,0.85);
}

.mangonada { background: linear-gradient(180deg, #ffce3c, #e44128); min-height: 350px; }
.icecream { background: linear-gradient(180deg, #ffd6e8, #ffffff); min-height: 310px; }
.paleta { background: linear-gradient(180deg, #fff, #ff8fba); min-height: 330px; }
.fruitcup { background: linear-gradient(180deg, #ffe783, #ff914d); min-height: 300px; }

.hero-logo-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
  padding: 8px;
  box-shadow: var(--shadow);
}

.menu-section {
  padding: 55px 4% 38px;
  background: var(--white);
  text-align: center;
}

.section-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--pink);
  font-family: Georgia, serif;
  font-style: italic;
  margin-bottom: 30px;
}

.menu-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  max-width: 1260px;
  margin: 0 auto;
}

.menu-card {
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.menu-card:hover {
  transform: translateY(-6px);
}

.menu-photo {
  min-height: 165px;
  display: grid;
  place-items: center;
  font-size: 4rem;
}

.icecream-bg { background: linear-gradient(135deg, #fff1a8, #ff9ed0); }
.paletas-bg { background: linear-gradient(135deg, #cbff7f, #ff7272); }
.mangonadas-bg { background: linear-gradient(135deg, #ffc62e, #d72e1f); }
.aguas-bg { background: linear-gradient(135deg, #ff77ba, #cffb6a); }
.fruit-bg { background: linear-gradient(135deg, #ffc247, #ff557d); }
.snacks-bg { background: linear-gradient(135deg, #ffd371, #ff7b45); }
.desserts-bg { background: linear-gradient(135deg, #fff1c8, #ff8fc6); }

.menu-label {
  background: var(--pink);
  color: var(--white);
  padding: 18px 8px;
  font-weight: 900;
  font-size: 1.05rem;
}

.about-card {
  max-width: 1100px;
  margin: 54px auto 38px;
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 42px 55px;
}

.about-card h2 {
  color: var(--pink);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
}

.about-card p {
  font-size: 1.35rem;
  line-height: 1.6;
}

.gallery-section {
  padding: 35px 6% 70px;
  text-align: center;
}

.gallery-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  min-height: 190px;
  background: linear-gradient(135deg, #fff, #ffe5f0);
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  font-size: 4rem;
  padding: 20px;
}

.gallery-item span {
  display: block;
  color: var(--pink);
  font-size: 1rem;
  font-weight: 900;
}

.visit-section {
  padding: 65px 7%;
  background: linear-gradient(135deg, #fff0dc, #fff8ee);
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 55px;
  align-items: center;
}

.visit-info h2 {
  color: var(--pink);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 16px;
}

.address {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 22px;
}

.follow {
  margin-top: 35px;
}

.follow h3 {
  color: var(--pink);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 2rem;
  margin-bottom: 12px;
}

.socials {
  display: flex;
  gap: 14px;
}

.socials a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  text-decoration: none;
  font-weight: 900;
}

.map-box {
  min-height: 330px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 8px;
}

.map-box iframe {
  width: 100%;
  min-height: 330px;
  border: 0;
  border-radius: 16px;
}

.footer {
  background: var(--pink);
  color: var(--white);
  text-align: center;
  padding: 28px 6% 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  font-weight: 800;
}

.footer p {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,0.35);
  padding-top: 14px;
  font-weight: 500;
}

@media (max-width: 1050px) {
  .hero,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .hero-products {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .navbar {
    justify-content: center;
    text-align: center;
  }

  .nav-links {
    justify-content: center;
  }
}

@media (max-width: 650px) {
  .navbar {
    min-height: auto;
  }

  .brand img {
    width: 230px;
  }

  .nav-links {
    gap: 12px;
    font-size: 0.92rem;
  }

  .hero {
    padding: 45px 6%;
  }

  .hero-products,
  .menu-row,
  .gallery-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .product {
    min-height: 170px;
  }

  .about-card {
    margin: 30px 18px;
    padding: 28px;
  }

  .footer p {
    grid-column: auto;
  }
}
