:root {
  --color-cream: #FFF8EE;
  --color-cream-soft: #FFFDF8;
  --color-cherry: #C8273C;
  --color-cherry-dark: #9E1B2E;
  --color-mango: #F2A93B;
  --color-pistachio: #4F9D69;
  --color-plum: #34202A;
  --color-plum-soft: #6B4E5A;

  --font-display: 'Baloo 2', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;

  --radius-scoop: 50%;
  --radius-card: 28px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-plum);
  background-color: var(--color-cream);
  overflow-x: hidden;
}

h1, h2, h3, .eyebrow, .logo-text {
  font-family: var(--font-display);
}

h2 {
  font-weight: 700;
  color: var(--color-cherry-dark);
}

.eyebrow {
  display: inline-block;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-pistachio);
  margin-bottom: 0.5rem;
}

a {
  text-decoration: none;
}

:focus-visible {
  outline: 3px solid var(--color-mango);
  outline-offset: 2px;
}

.navbar-charo {
  background-color: var(--color-cream-soft);
  box-shadow: 0 2px 12px rgba(52, 32, 42, 0.08);
}

.logo-text {
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--color-cherry);
}

.logo-text span {
  color: var(--color-mango);
}

.navbar-charo .nav-link {
  font-weight: 600;
  color: var(--color-plum) !important;
  margin: 0 0.4rem;
  position: relative;
}

.navbar-charo .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 3px;
  background-color: var(--color-cherry);
  border-radius: 4px;
  transition: width 0.25s ease;
}

.navbar-charo .nav-link:hover::after,
.navbar-charo .nav-link.active::after {
  width: 100%;
}

.btn-charo-primary {
  background-color: var(--color-cherry);
  border: none;
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
  padding: 0.6rem 1.6rem;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-charo-primary:hover {
  background-color: var(--color-cherry-dark);
  transform: translateY(-2px);
  color: #fff;
}

.btn-charo-outline {
  background-color: transparent;
  border: 2px solid var(--color-cherry);
  color: var(--color-cherry);
  font-weight: 700;
  border-radius: 50px;
  padding: 0.55rem 1.5rem;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn-charo-outline:hover {
  background-color: var(--color-cherry);
  color: #fff;
  transform: translateY(-2px);
}

.hero {
  padding-top: 7.5rem;
  padding-bottom: 4rem;
  background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-cream-soft) 100%);
}

.hero h1 {
  font-weight: 800;
  font-size: 3rem;
  line-height: 1.1;
  color: var(--color-plum);
}

.hero p.lead {
  font-size: 1.15rem;
  color: var(--color-plum-soft);
  max-width: 520px;
}

.hero-collage {
  position: relative;
  height: 420px;
}

.scoop-img {
  position: absolute;
  border-radius: var(--radius-scoop);
  object-fit: cover;
  border: 6px solid var(--color-cream-soft);
  box-shadow: 0 12px 28px rgba(52, 32, 42, 0.18);
}

.scoop-1 {
  width: 260px;
  height: 260px;
  top: 0;
  right: 40px;
}

.scoop-2 {
  width: 170px;
  height: 170px;
  bottom: 10px;
  right: 240px;
  border-color: var(--color-mango);
}

.scoop-3 {
  width: 130px;
  height: 130px;
  top: 60px;
  left: 0;
  border-color: var(--color-pistachio);
}

.drip-divider {
  display: block;
  width: 100%;
  height: 60px;
  margin-bottom: -1px;
}

.drip-fill-cream-soft { fill: var(--color-cream-soft); }
.drip-fill-cream { fill: var(--color-cream); }

section {
  padding: 5rem 0;
}

.section-cream-soft {
  background-color: var(--color-cream-soft);
}

.section-plum {
  background-color: var(--color-plum);
  color: var(--color-cream-soft);
}

.section-plum h2 {
  color: var(--color-mango);
}

.historia-img {
  border-radius: var(--radius-card);
  width: 100%;
  height: 320px;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(52, 32, 42, 0.16);
}

.mini-card {
  background-color: var(--color-cream);
  border-radius: 20px;
  padding: 1.4rem;
  height: 100%;
  border-left: 5px solid var(--color-pistachio);
}

.mini-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-cherry-dark);
}

.mini-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.producto-card {
  background-color: var(--color-cream-soft);
  border-radius: var(--radius-card);
  padding: 1.6rem 1.2rem;
  text-align: center;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 16px rgba(52, 32, 42, 0.06);
}

.producto-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 30px rgba(52, 32, 42, 0.16);
}

.producto-img-wrap {
  width: 130px;
  height: 130px;
  margin: 0 auto 1rem;
  border-radius: var(--radius-scoop);
  overflow: hidden;
  background-color: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
}

.producto-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.producto-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-cherry-dark);
}

.producto-card p {
  font-size: 0.92rem;
  color: var(--color-plum-soft);
}

.gold-badge {
  display: inline-block;
  background-color: var(--color-mango);
  color: var(--color-plum);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 0.8rem;
}

.gold-img {
  border-radius: var(--radius-card);
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}

.contacto-card {
  background-color: var(--color-cream-soft);
  border-radius: var(--radius-card);
  padding: 2rem;
  height: 100%;
}

.contacto-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-scoop);
  background-color: var(--color-cherry);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--color-cherry);
  color: #fff;
  margin-right: 0.6rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.social-icons a:hover {
  background-color: var(--color-mango);
  color: var(--color-plum);
  transform: translateY(-3px);
}

footer {
  background-color: var(--color-plum);
  color: var(--color-cream-soft);
  padding: 2.5rem 0 1.5rem;
  font-size: 0.9rem;
}

footer a {
  color: var(--color-mango);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .hero {
    padding-top: 6rem;
    text-align: center;
  }

  .hero p.lead {
    margin: 0 auto 1.5rem;
  }

  .hero-collage {
    height: 300px;
    margin-top: 2.5rem;
  }

  .scoop-1 { width: 200px; height: 200px; right: 10px; }
  .scoop-2 { width: 130px; height: 130px; right: 170px; }
  .scoop-3 { width: 100px; height: 100px; left: 10px; }
}

@media (max-width: 575.98px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  section {
    padding: 3.5rem 0;
  }

  .hero-collage {
    height: 230px;
  }

  .scoop-1 { width: 150px; height: 150px; }
  .scoop-2 { width: 100px; height: 100px; right: 120px; }
  .scoop-3 { width: 80px; height: 80px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
  html {
    scroll-behavior: auto;
  }
}