/* ===== ATMARA – VARIABLES & RESET ===== */
:root {
  /* ── Paleta oficial Atmara Branding ── */
  --brand-verde:  #B9EAA0;   /* Brote Noble    */
  --brand-lila:   #E9D5FF;   /* Lila Suave     */
  --brand-azul:   #A9D6F5;   /* Cielo Claro    */
  --brand-carbon: #2E2E2E;   /* Carbón Suave   */
  --brand-blanco: #FFFFFF;   /* Crema Algodón  */

  /* ── Escala funcional del verde ── */
  --green-50:  #f3fded;
  --green-100: #e2f8cc;
  --green-200: #cdf2ae;
  --green-300: #B9EAA0;   /* ← Brote Noble exacto */
  --green-400: #B9EAA0;   /* primario — texto carbón encima */
  --green-500: #7dcf5c;   /* hover / estado activo */

  /* ── Textos ── */
  --text-dark: #2E2E2E;   /* Carbón Suave */
  --text-mid:  #555555;
  --text-soft: #888888;

  --white:     #FFFFFF;
  --off-white: #f7fef3;

  /* ── Sombras (tono verde suave) ── */
  --shadow-sm: 0 2px 8px  rgba(185,234,160,.20);
  --shadow-md: 0 4px 20px rgba(185,234,160,.30);
  --shadow-lg: 0 8px 40px rgba(185,234,160,.40);

  /* ── Radios ── */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  /* ── Tipografías oficiales Atmara ── */
  --font-heading: 'Museo Moderno', system-ui, sans-serif;
  --font-body:    'Nunito', system-ui, sans-serif;
  --font:         'Nunito', system-ui, sans-serif;

  --transition: .25s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-heading); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; line-height: 1.15; letter-spacing: -.01em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 600; line-height: 1.25; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p  { font-family: var(--font-body); color: var(--text-mid); }

/* ===== LAYOUT ===== */
.container { width: min(1200px, 100% - 2rem); margin-inline: auto; }
.section    { padding-block: 6rem; }
.section--sm{ padding-block: 3rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-xl);
  font-size: .9rem; font-weight: 600;
  transition: var(--transition);
}
.btn--primary {
  background: var(--brand-verde);   /* Brote Noble */
  color: var(--brand-carbon);       /* Carbón Suave — fiel al branding */
  font-family: var(--font-heading);
}
.btn--primary:hover {
  background: var(--green-500);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  border: 2px solid var(--brand-verde);
  color: var(--brand-carbon);
  font-family: var(--font-heading);
}
.btn--outline:hover { background: var(--green-100); transform: translateY(-2px); }

.btn--ghost { color: var(--text-mid); font-family: var(--font-body); }
.btn--ghost:hover { color: var(--brand-carbon); }

.btn--lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn--sm { padding: .5rem 1.25rem; font-size: .8rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 5000;
  background: rgba(248,250,249,.98);
  border-bottom: 1px solid var(--green-100);
  transition: var(--transition);
}
.navbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.navbar__logo {
  display: flex; align-items: center;
}
.navbar__logo-img {
  height: 38px;
  width: auto;
  display: block;
  mix-blend-mode: multiply; /* elimina fondo blanco en navbar claro */
}
.footer__logo {
  margin-bottom: .75rem;
}
.footer__logo-img {
  height: 32px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1); /* versión blanca para fondo oscuro */
}
.navbar__links {
  display: flex; align-items: center; gap: .25rem;
}
.navbar__links a {
  padding: .5rem .9rem;
  border-radius: var(--radius-sm);
  font-size: .875rem; font-weight: 600; color: var(--text-mid);
  font-family: var(--font-body);
  transition: var(--transition);
}
.navbar__links a:hover,
.navbar__links a.active { color: var(--brand-carbon); background: var(--green-100); }

.navbar__actions { display: flex; align-items: center; gap: .5rem; }

.cart-btn {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--brand-carbon);
  font-size: 1.1rem;
  transition: var(--transition);
}
.cart-btn:hover { background: var(--green-200); }
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  width: 18px; height: 18px;
  background: var(--brand-verde);
  color: var(--white);
  font-size: .65rem; font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  display: none;
}
.cart-badge.visible { display: flex; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: .5rem;
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--off-white);
  padding: 2rem;
  z-index: 4999;
  flex-direction: column; gap: .5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 1.1rem; font-weight: 500; color: var(--text-dark);
  transition: var(--transition);
}
.mobile-nav a:hover { background: var(--green-100); color: var(--brand-carbon); }

/* ===== HERO ===== */
.hero {
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: 68px;
  background: linear-gradient(135deg, var(--green-50) 0%, var(--white) 60%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--green-100) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .35rem 1rem;
  background: var(--green-100);
  border-radius: var(--radius-xl);
  font-size: .8rem; font-weight: 600; color: var(--brand-carbon);
  margin-bottom: 1.5rem;
}
.hero__title { margin-bottom: 1.25rem; }
.hero__title span { color: var(--brand-carbon); }
.hero__desc { font-size: 1.1rem; margin-bottom: 2rem; max-width: 480px; }
.hero__cta  { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero__stats { display: flex; gap: 2.5rem; }
.hero__stat-value { font-size: 1.75rem; font-weight: 700; color: var(--brand-carbon); }
.hero__stat-label { font-size: .8rem; color: var(--text-soft); }

.hero__image {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero__image-placeholder {
  width: 100%; aspect-ratio: 1;
  max-width: 480px;
  background: var(--green-100);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem;
  color: var(--brand-carbon);
  font-size: .9rem;
}
.hero__image-placeholder .placeholder-icon { font-size: 4rem; }

/* ===== FEATURES STRIP ===== */
.features-strip {
  background: var(--brand-verde);
  padding-block: 2.5rem;
}
.features-strip__grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem;
}
.feature-item {
  display: flex; align-items: center; gap: 1rem;
  color: var(--brand-carbon);
}
.feature-item__icon { font-size: 1.75rem; }
.feature-item__title { font-size: .9rem; font-weight: 700; }
.feature-item__desc  { font-size: .78rem; opacity: .65; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header__tag {
  display: inline-block;
  padding: .3rem .9rem;
  background: var(--green-100);
  border-radius: var(--radius-xl);
  font-size: .78rem; font-weight: 600; color: var(--brand-carbon);
  margin-bottom: .75rem;
}
.section-header h2 { margin-bottom: .75rem; }
.section-header p   { max-width: 560px; margin-inline: auto; }

/* ===== PRODUCT CARD ===== */
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.product-card__badge {
  position: absolute; top: 1rem; left: 1rem;
  padding: .25rem .75rem;
  background: var(--green-300); color: var(--white);
  border-radius: var(--radius-xl);
  font-size: .72rem; font-weight: 700;
  z-index: 1;
}
.product-card__img {
  aspect-ratio: 1;
  background: var(--green-50);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  overflow: hidden;
}
.product-card__img--photo { background: var(--green-100); }
.product-card__img--photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-card__img--photo img { transform: scale(1.06); }
.product-card__body { padding: 1.25rem; }
.product-card__category {
  font-size: .72rem; font-weight: 600; color: var(--text-soft);
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: .35rem;
}
.product-card__name { font-size: 1rem; font-weight: 600; margin-bottom: .35rem; }
.product-card__desc { font-size: .82rem; color: var(--text-mid); margin-bottom: 1rem; }
.product-card__footer { display: flex; align-items: center; justify-content: space-between; }
.product-card__price { font-size: 1.1rem; font-weight: 700; color: var(--brand-carbon); }
.product-card__add {
  width: 38px; height: 38px;
  background: var(--green-100);
  color: var(--brand-carbon);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}
.product-card__add:hover { background: var(--brand-verde); color: var(--white); }

/* ===== QUIZ PREVIEW ===== */
.quiz-preview {
  background: linear-gradient(135deg, var(--green-400), var(--green-500));
  border-radius: var(--radius-lg);
  padding: 4rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
  color: var(--white);
}
.quiz-preview h2 { color: var(--white); margin-bottom: 1rem; }
.quiz-preview p  { color: rgba(255,255,255,.85); margin-bottom: 2rem; }
.quiz-bullets { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2rem; }
.quiz-bullet {
  display: flex; align-items: center; gap: .75rem;
  font-size: .9rem; color: rgba(255,255,255,.9);
}
.quiz-bullet-icon {
  width: 28px; height: 28px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; flex-shrink: 0;
}
.quiz-visual {
  display: flex; flex-direction: column; gap: 1rem;
}
.quiz-card-mock {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,.2);
}
.quiz-card-mock h4 { color: var(--white); margin-bottom: 1rem; font-size: .9rem; }
.quiz-options { display: flex; flex-direction: column; gap: .5rem; }
.quiz-option {
  padding: .6rem 1rem;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  font-size: .8rem; color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.15);
  transition: var(--transition);
  cursor: pointer;
}
.quiz-option:hover,
.quiz-option.selected { background: rgba(255,255,255,.25); border-color: rgba(255,255,255,.4); }

/* ===== GALLERY GRID ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius-md);
  background: var(--green-100);
  overflow: hidden;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  transition: var(--transition);
  cursor: pointer;
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }
.gallery-item:nth-child(1) { grid-row: span 2; background: var(--green-200); }
.gallery-item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,45,38,.7), transparent);
  opacity: 0; transition: var(--transition);
  display: flex; align-items: flex-end; padding: 1.25rem;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__name { color: var(--white); font-weight: 600; font-size: .9rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.testimonial-card__stars { color: var(--brand-carbon); font-size: .9rem; margin-bottom: .75rem; }
.testimonial-card__text  { font-size: .9rem; margin-bottom: 1.25rem; }
.testimonial-card__author { display: flex; align-items: center; gap: .75rem; }
.testimonial-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green-200);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.testimonial-card__name   { font-size: .9rem; font-weight: 600; }
.testimonial-card__pet    { font-size: .78rem; color: var(--text-soft); }

/* ===== NEWSLETTER ===== */
.newsletter {
  background: var(--green-50);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  text-align: center;
}
.newsletter h2  { margin-bottom: .75rem; }
.newsletter p   { margin-bottom: 2rem; }
.newsletter-form {
  display: flex; gap: .75rem; max-width: 460px; margin-inline: auto;
}
.newsletter-form input {
  flex: 1;
  padding: .85rem 1.25rem;
  border: 2px solid var(--green-200);
  border-radius: var(--radius-xl);
  font-family: var(--font); font-size: .9rem;
  background: var(--white);
  outline: none; transition: var(--transition);
}
.newsletter-form input:focus { border-color: var(--brand-carbon); }

/* ===== FOOTER ===== */
footer {
  background: var(--brand-carbon);
  color: rgba(255,255,255,.75);
  padding-block: 4rem 2rem;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand { }
.footer__logo { font-size: 1.3rem; font-weight: 700; color: var(--brand-verde); margin-bottom: .75rem; display: flex; align-items: center; gap: .5rem; font-family: var(--font-heading); }
.footer__tagline { font-size: .85rem; margin-bottom: 1.5rem; }
.footer__social { display: flex; gap: .75rem; }
.footer__social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.footer__social-link:hover { background: var(--brand-verde); color: var(--white); }
.footer__col h4 { color: var(--white); margin-bottom: 1.25rem; font-size: .9rem; }
.footer__col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer__col a   { font-size: .85rem; transition: var(--transition); }
.footer__col a:hover { color: var(--green-300); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: .8rem;
}

/* ===== CART SIDEBAR ===== */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.4);
  z-index: 2000; opacity: 0; pointer-events: none;
  transition: var(--transition);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(400px, 100%);
  background: var(--white);
  z-index: 2001;
  transform: translateX(100%);
  transition: .35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
}
.cart-sidebar.open { transform: translateX(0); }
.cart-sidebar__header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--green-100);
  display: flex; justify-content: space-between; align-items: center;
}
.cart-sidebar__header h3 { font-size: 1.1rem; }
.cart-close {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--text-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.cart-close:hover { background: var(--green-200); }
.cart-sidebar__items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.cart-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 100%; gap: 1rem; color: var(--text-soft);
}
.cart-empty-icon { font-size: 3rem; }
.cart-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding-block: 1rem;
  border-bottom: 1px solid var(--green-50);
}
.cart-item__img {
  width: 60px; height: 60px;
  background: var(--green-50);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; flex-shrink: 0;
  overflow: hidden;
}
.cart-item__img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.cart-item__info { flex: 1; }
.cart-item__name  { font-size: .9rem; font-weight: 600; margin-bottom: .25rem; }
.cart-item__price { font-size: .85rem; color: var(--brand-carbon); font-weight: 600; }
.cart-item__qty {
  display: flex; align-items: center; gap: .5rem;
  margin-top: .5rem;
}
.qty-btn {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--text-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; font-weight: 700;
  transition: var(--transition);
}
.qty-btn:hover { background: var(--green-300); color: var(--white); }
.qty-num { font-size: .85rem; font-weight: 600; min-width: 20px; text-align: center; }
.cart-item__remove { color: var(--text-soft); font-size: .8rem; margin-top: .25rem; cursor: pointer; transition: var(--transition); }
.cart-item__remove:hover { color: #e05a5a; }
.cart-sidebar__footer {
  padding: 1.5rem;
  border-top: 1px solid var(--green-100);
}
.cart-total {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem; font-weight: 600;
}
.cart-total span:last-child { font-size: 1.2rem; color: var(--brand-carbon); }

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(100px);
  background: var(--text-dark);
  color: var(--white);
  padding: .85rem 1.75rem;
  border-radius: var(--radius-xl);
  font-size: .88rem; font-weight: 500;
  z-index: 3000;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ===== PAGE HEADER ===== */
.page-header {
  padding-top: calc(68px + 4rem);
  padding-bottom: 3rem;
  background: linear-gradient(135deg, var(--green-50), var(--white));
  text-align: center;
}
.page-header p { margin-top: .75rem; font-size: 1.05rem; }

/* ===== FILTERS ===== */
.filters {
  display: flex; align-items: center; gap: .75rem; flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: .5rem 1.25rem;
  border-radius: var(--radius-xl);
  border: 2px solid var(--green-200);
  font-size: .82rem; font-weight: 600; color: var(--text-mid);
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--brand-verde); border-color: var(--brand-carbon); color: var(--white);
}

/* ===== QUIZ PAGE ===== */
.quiz-container {
  max-width: 680px; margin-inline: auto;
  padding-top: calc(68px + 3rem);
  padding-bottom: 4rem;
  padding-inline: 1rem;
}
.quiz-progress {
  display: flex; gap: .5rem; margin-bottom: 2.5rem;
}
.quiz-progress__step {
  flex: 1; height: 4px;
  background: var(--green-100);
  border-radius: 4px;
  transition: var(--transition);
}
.quiz-progress__step.done { background: var(--brand-verde); }
.quiz-step { display: none; }
.quiz-step.active { display: block; }
.quiz-step__q {
  font-size: 1.3rem; font-weight: 600; margin-bottom: .5rem;
}
.quiz-step__sub { font-size: .9rem; color: var(--text-soft); margin-bottom: 2rem; }
.quiz-step__options {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  margin-bottom: 2rem;
}
.quiz-step__option {
  padding: 1.25rem;
  border: 2px solid var(--green-200);
  border-radius: var(--radius-md);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.quiz-step__option:hover { border-color: var(--green-300); background: var(--green-50); }
.quiz-step__option.selected { border-color: var(--brand-carbon); background: var(--green-100); }
.quiz-step__option-icon { font-size: 2rem; margin-bottom: .5rem; }
.quiz-step__option-text { font-size: .85rem; font-weight: 600; }
.quiz-nav { display: flex; justify-content: space-between; align-items: center; }
.quiz-results { display: none; }
.quiz-results.visible { display: block; }
.quiz-results__header { text-align: center; margin-bottom: 2.5rem; }
.quiz-results__emoji { font-size: 3rem; margin-bottom: 1rem; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--green-100);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; color: var(--brand-carbon);
}
.contact-info-label { font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--text-soft); margin-bottom: .2rem; }
.contact-info-value { font-size: .95rem; font-weight: 500; }
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.25rem; }
.form-group label { font-size: .82rem; font-weight: 600; }
.form-group input,
.form-group textarea,
.form-group select {
  padding: .85rem 1.1rem;
  border: 2px solid var(--green-200);
  border-radius: var(--radius-sm);
  font-family: var(--font); font-size: .9rem;
  background: var(--off-white);
  outline: none; transition: var(--transition);
  color: var(--text-dark);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--brand-carbon); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== ABOUT PAGE ===== */
.about-hero { padding-top: calc(68px + 5rem); padding-bottom: 5rem; }
.about-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-values { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-card__icon { font-size: 2.5rem; margin-bottom: 1rem; }
.value-card h3 { margin-bottom: .5rem; }
.value-card p { font-size: .85rem; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; }
.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-card__img {
  height: 160px;
  background: var(--green-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}
.team-card__body { padding: 1.25rem; }
.team-card__name { font-weight: 600; margin-bottom: .25rem; }
.team-card__role { font-size: .8rem; color: var(--text-soft); }

/* ===== CHECKOUT ===== */
.checkout-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; align-items: start; }
.checkout-form-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}
.checkout-form-section h3 { margin-bottom: 1.5rem; padding-bottom: .75rem; border-bottom: 1px solid var(--green-100); }
.payment-methods { display: flex; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.payment-method {
  flex: 1; min-width: 100px;
  padding: 1rem;
  border: 2px solid var(--green-200);
  border-radius: var(--radius-sm);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: .82rem; font-weight: 600;
}
.payment-method:hover { border-color: var(--green-300); }
.payment-method.active { border-color: var(--brand-carbon); background: var(--green-50); color: var(--brand-carbon); }
.payment-method__icon { font-size: 1.4rem; margin-bottom: .25rem; }
.order-summary {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: sticky; top: 88px;
}
.order-summary h3 { margin-bottom: 1.5rem; }
.order-line { display: flex; justify-content: space-between; font-size: .88rem; margin-bottom: .75rem; }
.order-line.total { font-weight: 700; font-size: 1rem; padding-top: .75rem; border-top: 1px solid var(--green-100); margin-top: .75rem; }
.order-line.total span:last-child { color: var(--brand-carbon); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .order-summary { position: static; }
}
@media (max-width: 768px) {
  .navbar__links, .navbar__actions .btn { display: none; }
  .hamburger { display: flex; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__image { display: none; }
  .hero::before { width: 200px; height: 200px; top: -5%; right: -5%; }
  .features-strip__grid { grid-template-columns: 1fr 1fr; }
  .quiz-preview { grid-template-columns: 1fr; padding: 2.5rem 1.75rem; }
  .quiz-visual { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:nth-child(1) { grid-row: span 1; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-hero-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .newsletter-form { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .features-strip__grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .quiz-step__options { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ATMARA v2 – PREMIUM SCROLL & UX ENHANCEMENTS
   ============================================================ */

/* ── SCROLL PROGRESS BAR ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-300), var(--green-500));
  z-index: 9999;
  width: 0%;
  transition: width .08s linear;
  pointer-events: none;
  border-radius: 0 2px 2px 0;
}

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 36px;
  background: var(--green-500);
  color: var(--white);
  font-size: .76rem;
  font-weight: 500;
  overflow: hidden;
  display: flex;
  align-items: center;
  z-index: 1001;
}
.announcement-bar__track {
  display: flex;
  width: max-content;
  gap: 5rem;
  white-space: nowrap;
  animation: ticker 32s linear infinite;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Ajuste de layout cuando hay announcement bar */
body.has-announcement .navbar       { top: 36px; }
body.has-announcement .mobile-nav   { top: 104px; }
body.has-announcement .hero         { padding-top: 104px; }
body.has-announcement .page-header  { padding-top: calc(104px + 4rem); }
body.has-announcement .quiz-container { padding-top: calc(104px + 3rem); }
body.has-announcement .about-hero   { padding-top: calc(104px + 5rem); }

/* ── NAVBAR SCROLLED STATE ── */
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.09);
  background: rgba(248,250,249,.98);
}

/* ── HAMBURGER ANIMADO ── */
.hamburger span { transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── HERO ENTRANCE ANIMATION ── */
.hero-from-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity .9s cubic-bezier(.22,1,.36,1), transform .9s cubic-bezier(.22,1,.36,1);
}
.hero-from-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity .9s .18s cubic-bezier(.22,1,.36,1), transform .9s .18s cubic-bezier(.22,1,.36,1);
}
.hero-from-left.hero-visible,
.hero-from-right.hero-visible {
  opacity: 1;
  transform: none;
}

/* ── SCROLL REVEAL SYSTEM ── */
.will-reveal {
  opacity: 0;
  transition: opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1);
}
.reveal-up    { transform: translateY(44px); }
.reveal-down  { transform: translateY(-44px); }
.reveal-left  { transform: translateX(44px); }
.reveal-right { transform: translateX(-44px); }
.reveal-scale { transform: scale(.9); }
.will-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ── WHATSAPP FAB ── */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 1500;
  background: #25D366;
  color: var(--white);
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s;
  animation: waPulse 3.5s ease-in-out infinite;
  text-decoration: none;
  flex-shrink: 0;
}
.whatsapp-fab svg {
  width: 30px; height: 30px;
  fill: var(--white);
  flex-shrink: 0;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,.55);
}
.whatsapp-fab__label {
  position: absolute;
  right: calc(100% + .75rem);
  background: var(--text-dark);
  color: var(--white);
  padding: .4rem 1rem;
  border-radius: var(--radius-xl);
  font-size: .78rem; font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}
.whatsapp-fab:hover .whatsapp-fab__label {
  opacity: 1;
  transform: translateX(0);
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,.6), 0 0 0 10px rgba(37,211,102,.08); }
}
@media (max-width: 768px) {
  .whatsapp-fab { bottom: 1.25rem; right: 1.25rem; width: 52px; height: 52px; }
  .whatsapp-fab svg { width: 26px; height: 26px; }
  .whatsapp-fab__label { display: none; }
}

/* ── MÉTODOS DE PAGO (Colombia) ── */
.payment-section {
  padding-block: 2rem;
  background: var(--white);
  border-top: 1px solid var(--green-100);
}
.payment-methods-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; flex-wrap: wrap;
}
.payment-methods-bar > span {
  font-size: .76rem; font-weight: 700;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: .07em;
  flex-shrink: 0;
}
.payment-icons {
  display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center;
}
.payment-icon {
  padding: .35rem .9rem;
  background: var(--off-white);
  border: 1.5px solid var(--green-100);
  border-radius: var(--radius-sm);
  font-size: .75rem; font-weight: 700;
  color: var(--text-dark);
  transition: var(--transition);
  white-space: nowrap;
}
.payment-icon:hover { border-color: var(--green-300); color: var(--brand-carbon); }

/* ── PRODUCT CARD: rating + stock ── */
.product-card__rating {
  font-size: .78rem;
  color: #f59e0b;
  margin-bottom: .25rem;
  display: flex; align-items: center; gap: .3rem;
}
.product-card__rating span { color: var(--text-soft); font-size: .72rem; }
.product-card__stock {
  font-size: .72rem; font-weight: 600;
  color: #e05a5a;
  margin-bottom: .4rem;
}

/* ── HERO STATS: número más llamativo ── */
.hero__stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-carbon);
  line-height: 1;
  letter-spacing: -.02em;
}

/* ── FEATURES STRIP: animación entrada ── */
.features-strip { overflow: hidden; }

/* ── TRUST BADGE en hero ── */
.hero__trust {
  display: flex; align-items: center; gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.hero__trust-item {
  display: flex; align-items: center; gap: .4rem;
  font-size: .8rem; color: var(--text-soft);
}
.hero__trust-item strong { color: var(--text-dark); font-weight: 600; }

/* ── SECTION DIVIDER WAVE ── */
.wave-divider {
  overflow: hidden;
  line-height: 0;
  margin-bottom: -1px;
}
.wave-divider svg { display: block; width: 100%; }

/* ============================================================
   BRANDING: LILA → QUIZ  |  AZUL → CARRITO & PAGOS
   ============================================================ */

/* ── QUIZ: Lila Suave (#E9D5FF) ── */
.quiz-preview {
  background: linear-gradient(135deg, #E9D5FF, #C4B5FD);
}
.quiz-preview h2 { color: var(--brand-carbon); }
.quiz-preview p  { color: rgba(46,46,46,.8); }

.quiz-bullet-icon {
  background: rgba(46,46,46,.10);
}
.quiz-bullet { color: var(--brand-carbon); }

.quiz-preview .btn {
  background: var(--white);
  color: var(--brand-carbon);
  font-weight: 700;
}
.quiz-preview .btn:hover {
  background: var(--brand-carbon);
  color: var(--white);
  transform: translateY(-2px);
}

.quiz-card-mock {
  background: rgba(255,255,255,.45);
  border-color: rgba(255,255,255,.6);
}
.quiz-card-mock h4 { color: var(--brand-carbon); }
.quiz-option       { color: var(--brand-carbon); background: rgba(255,255,255,.3); border-color: rgba(46,46,46,.12); }
.quiz-option:hover,
.quiz-option.selected { background: rgba(255,255,255,.6); border-color: var(--brand-carbon); }

/* Quiz page: progress + opciones */
.quiz-progress__step.done      { background: #C4B5FD; }
.quiz-step__option.selected    { border-color: #C4B5FD; background: #F3EEFF; }
.quiz-step__option:hover       { border-color: #C4B5FD; }
.section-header__tag[data-quiz] { background: #F3EEFF; color: #6d28d9; }

/* CTA quiz en index (sección verde → lila) */
.quiz-preview .quiz-bullet-icon { color: var(--brand-carbon); }

/* ── CARRITO: Cielo Claro (#A9D6F5) ── */
.cart-btn {
  background: #e0f2fe;
  color: #0369a1;
}
.cart-btn:hover { background: var(--brand-azul); color: var(--brand-carbon); }

.cart-badge {
  background: #0369a1;
}

.cart-sidebar__header {
  background: var(--brand-azul);
  border-bottom-color: #7ec8f0;
}
.cart-sidebar__header h3 { color: var(--brand-carbon); }

.cart-close {
  background: rgba(255,255,255,.5);
  color: var(--brand-carbon);
}
.cart-close:hover { background: var(--white); }

.cart-item__price { color: #0369a1; }

.cart-total span:last-child { color: #0369a1; }

.qty-btn { background: #e0f2fe; color: #0369a1; }
.qty-btn:hover { background: var(--brand-azul); color: var(--brand-carbon); }

/* ── PASARELA / PAYMENT: Cielo Claro ── */
.payment-section {
  background: #f0f9ff;
  border-color: #bae6fd;
}
.payment-methods-bar > span { color: #0369a1; }
.payment-icon {
  background: var(--white);
  border-color: #bae6fd;
  color: var(--brand-carbon);
}
.payment-icon:hover {
  border-color: var(--brand-azul);
  background: #e0f2fe;
  color: #0369a1;
}

/* Checkout page */
.payment-method.active {
  border-color: var(--brand-azul);
  background: #e0f2fe;
  color: #0369a1;
}
.payment-method:hover { border-color: var(--brand-azul); }

.order-line.total span:last-child { color: #0369a1; }

/* Scroll progress con lila→azul */
.scroll-progress {
  background: linear-gradient(90deg, var(--brand-lila), var(--brand-azul));
}

