/* ============================================================
   DERAKO FORTE — HOJA DE ESTILOS PRINCIPAL
   Arquitectura: Section-scoped semantic
   Variables: --tone-* system
   Tipografía: Nunito + Source Sans 3
   Paleta: Mint verde · Azul cielo · Coral CTA · Pasteles
   ============================================================ */

/* === VARIABLES & RESET === */
:root {
  --tone-main:          #27A06B;
  --tone-main-dark:     #1E8557;
  --tone-main-light:    #DCEEF6;
  --tone-main-pale:     #F0FAF5;
  --tone-support:       #4E95E0;
  --tone-support-light: #E4F0FC;
  --tone-cta:           #FF6845;
  --tone-cta-hover:     #E3512E;
  --tone-bg:            #F4FBF7;
  --tone-bg-blue:       #EDF5FC;
  --tone-bg-warm:       #FFF9F6;
  --tone-surface:       #FFFFFF;
  --tone-text:          #172D24;
  --tone-text-soft:     #4C6A5E;
  --tone-border:        #C0DDCE;
  --tone-border-light:  #E3F0EA;
  --tone-star:          #FFB82E;
  --tone-peach:         #FFE8E0;

  --ff-display: 'Nunito', sans-serif;
  --ff-body:    'Source Sans 3', sans-serif;

  --r-xs:   8px;
  --r-sm:   12px;
  --r-md:   18px;
  --r-lg:   28px;
  --r-xl:   40px;
  --r-pill: 9999px;

  --sh-card:  0 2px 16px rgba(39, 160, 107, 0.09);
  --sh-hover: 0 8px 36px rgba(39, 160, 107, 0.16);
  --sh-cta:   0 4px 20px rgba(255, 104, 69, 0.32);
  --sh-blue:  0 4px 20px rgba(78, 149, 224, 0.20);

  --max-w:    1160px;
  --pad-x:    clamp(1.25rem, 5vw, 3rem);
  --section-v: clamp(3.5rem, 8vw, 6rem);
  --tr:       0.28s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-body);
  color: var(--tone-text);
  background: var(--tone-surface);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

/* === UTILIDADES === */
.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section-v {
  padding-top: var(--section-v);
  padding-bottom: var(--section-v);
}

/* Botones */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.9rem;
  border-radius: var(--r-pill);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.97rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--tr);
  line-height: 1;
  text-align: center;
}

.btn--cta {
  background: var(--tone-cta);
  color: #fff;
  box-shadow: var(--sh-cta);
}
.btn--cta:hover {
  background: var(--tone-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255,104,69,0.38);
}

.btn--green {
  background: var(--tone-main);
  color: #fff;
  box-shadow: 0 4px 18px rgba(39,160,107,0.28);
}
.btn--green:hover {
  background: var(--tone-main-dark);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  border-color: var(--tone-main);
  color: var(--tone-main);
}
.btn--outline:hover {
  background: var(--tone-main);
  color: #fff;
}

.btn--lg {
  padding: 1.05rem 2.4rem;
  font-size: 1.05rem;
}

/* Etiqueta de categoría */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--tone-main-pale);
  color: var(--tone-main);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.32rem 0.85rem;
  border-radius: var(--r-pill);
  margin-bottom: 1rem;
}

/* Títulos de sección */
.sec-title {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 4.2vw, 2.75rem);
  line-height: 1.18;
  color: var(--tone-text);
}
.sec-title em {
  font-style: normal;
  color: var(--tone-main);
}

.sec-sub {
  font-size: 1.05rem;
  color: var(--tone-text-soft);
  max-width: 580px;
  line-height: 1.68;
  margin-top: 0.9rem;
}

.center-text { text-align: center; }
.center-text .sec-sub { margin-left: auto; margin-right: auto; }

/* Animaciones de entrada */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}
.fade-up[data-delay="1"] { transition-delay: 0.1s; }
.fade-up[data-delay="2"] { transition-delay: 0.2s; }
.fade-up[data-delay="3"] { transition-delay: 0.3s; }
.fade-up[data-delay="4"] { transition-delay: 0.4s; }

/* ======================
   HEADER
   ====================== */
.site-hdr {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(244, 251, 247, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--tr), box-shadow var(--tr);
}
.site-hdr.scrolled {
  border-bottom-color: var(--tone-border-light);
  box-shadow: 0 2px 20px rgba(39, 160, 107, 0.09);
}

.hdr-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.85rem var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}

.hdr-logo { display: flex; align-items: center; flex-shrink: 0; }

.hdr-nav {
  display: flex;
  gap: 0.25rem;
  margin-left: auto;
}
.hdr-nav a {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--tone-text-soft);
  padding: 0.4rem 0.75rem;
  border-radius: var(--r-sm);
  transition: color var(--tr), background var(--tr);
}
.hdr-nav a:hover {
  color: var(--tone-main);
  background: var(--tone-main-pale);
}

.hdr-actions { margin-left: 0.5rem; }

.hdr-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
}
.hdr-burger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--tone-text);
  border-radius: 2px;
  transition: var(--tr);
}

.hdr-mobile {
  display: none;
  flex-direction: column;
  padding: 0.75rem var(--pad-x) 1.25rem;
  background: rgba(244, 251, 247, 0.98);
  border-top: 1px solid var(--tone-border-light);
}
.hdr-mobile.open { display: flex; }
.hdr-mobile a {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--tone-text);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--tone-border-light);
}
.hdr-mobile a:last-child { border-bottom: none; }

@media (max-width: 820px) {
  .hdr-nav, .hdr-actions { display: none; }
  .hdr-burger { display: flex; }
}

/* ======================
   HERO
   ====================== */
.hero-section {
  background: var(--tone-bg);
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 5.5rem) var(--pad-x);
}

.hero-section::after {
  content: '';
  position: absolute;
  top: -180px;
  right: -180px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(39, 160, 107, 0.12) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-section::before {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(78, 149, 224, 0.10) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-copy {}

.hero-headline {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(2.1rem, 5.5vw, 3.3rem);
  line-height: 1.13;
  color: var(--tone-text);
  margin-bottom: 1.3rem;
}
.hero-headline em {
  font-style: normal;
  color: var(--tone-main);
}

.hero-desc {
  font-size: 1.08rem;
  color: var(--tone-text-soft);
  max-width: 490px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-bullets {
  margin-bottom: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.96rem;
}
.hero-bullets li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--tone-main);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-note {
  font-size: 0.82rem;
  color: var(--tone-text-soft);
  line-height: 1.5;
  margin-top: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Hero visual */
.hero-visual {
  position: relative;
}

.hero-img-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-hover);
}
.hero-img-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center top;
}

.hero-floating-card {
  position: absolute;
  bottom: 1.75rem;
  left: 1.75rem;
  background: #fff;
  border-radius: var(--r-md);
  padding: 0.85rem 1.25rem;
  box-shadow: 0 6px 28px rgba(0,0,0,0.14);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 220px;
}
.hero-floating-card__pulse {
  width: 12px;
  height: 12px;
  min-width: 12px;
  background: var(--tone-main);
  border-radius: 50%;
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(39,160,107,0.5); }
  50%       { transform: scale(1.15); box-shadow: 0 0 0 6px rgba(39,160,107,0); }
}
.hero-floating-card__text {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.83rem;
  color: var(--tone-text);
  line-height: 1.3;
}

@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { order: -1; }
  .hero-img-frame img { height: 300px; }
}

/* ======================
   TRUST STRIP
   ====================== */
.trust-bar {
  background: var(--tone-surface);
  border-top: 1px solid var(--tone-border-light);
  border-bottom: 1px solid var(--tone-border-light);
  padding: 1.1rem var(--pad-x);
}
.trust-bar__row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem 3rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--tone-text);
}
.trust-bar__ico {
  width: 34px;
  height: 34px;
  background: var(--tone-main-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* ======================
   AUDIENCIA (PARA QUIÉN)
   ====================== */
.audience-sec {
  background: var(--tone-bg);
  padding: var(--section-v) var(--pad-x);
}
.audience-sec__inner { max-width: var(--max-w); margin: 0 auto; }
.audience-sec__head {
  text-align: center;
  margin-bottom: 3rem;
}

.audience-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  margin-bottom: 3rem;
}
.audience-img-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-card);
}
.audience-img-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.audience-img-card:hover img { transform: scale(1.04); }
.audience-img-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23, 45, 36, 0.72) 0%, transparent 50%);
  pointer-events: none;
}
.audience-img-card__label {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  color: #fff;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.35;
}

.audience-checks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}
.audience-check {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background: var(--tone-surface);
  border: 1.5px solid var(--tone-border);
  border-radius: var(--r-md);
  padding: 1.1rem 1.25rem;
  transition: border-color var(--tr), box-shadow var(--tr);
}
.audience-check:hover {
  border-color: var(--tone-main);
  box-shadow: var(--sh-card);
}
.audience-check__mark {
  width: 26px;
  height: 26px;
  min-width: 26px;
  background: var(--tone-main-pale);
  color: var(--tone-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
  font-family: var(--ff-display);
  margin-top: 1px;
}
.audience-check__text {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--tone-text);
}

@media (max-width: 640px) {
  .audience-images { grid-template-columns: 1fr; }
  .audience-img-card img { height: 220px; }
}

/* ======================
   PRODUCTO
   ====================== */
.product-sec {
  background: var(--tone-surface);
  padding: var(--section-v) var(--pad-x);
}
.product-sec__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}

.product-visual {
  display: flex;
  justify-content: center;
}
.product-img-wrap {
  position: relative;
  background: var(--tone-main-pale);
  border-radius: var(--r-xl);
  padding: 3rem 2.5rem;
  box-shadow: var(--sh-card);
  text-align: center;
}
.product-img-wrap img {
  max-width: 280px;
  width: 100%;
  margin: 0 auto;
  filter: drop-shadow(0 12px 28px rgba(39,160,107,0.18));
}
.product-badge-price {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 80px;
  height: 80px;
  background: var(--tone-cta);
  color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--ff-display);
  box-shadow: var(--sh-cta);
  line-height: 1.15;
}
.product-badge-price__amount {
  font-weight: 900;
  font-size: 1.15rem;
}
.product-badge-price__unit {
  font-weight: 600;
  font-size: 0.68rem;
  opacity: 0.9;
}
.product-badge-shipping {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: var(--tone-main);
  color: #fff;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--r-pill);
}

.product-copy {}
.product-feats {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.product-feat {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1rem 1.2rem;
  background: var(--tone-bg);
  border-radius: var(--r-md);
  border-left: 3.5px solid var(--tone-main);
  transition: box-shadow var(--tr), border-left-color var(--tr);
}
.product-feat:hover {
  box-shadow: var(--sh-card);
  border-left-color: var(--tone-support);
}
.product-feat__icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1; }
.product-feat__title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0.2rem;
}
.product-feat__desc { font-size: 0.87rem; color: var(--tone-text-soft); line-height: 1.5; }

.product-disclaimer {
  font-size: 0.8rem;
  color: var(--tone-text-soft);
  background: var(--tone-bg-warm);
  border-radius: var(--r-sm);
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--tone-cta);
  line-height: 1.55;
  margin-top: 0.5rem;
}

@media (max-width: 820px) {
  .product-sec__inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ======================
   RUTINA DIARIA
   ====================== */
.routine-sec {
  background: var(--tone-bg-blue);
  padding: var(--section-v) var(--pad-x);
}
.routine-sec__inner { max-width: var(--max-w); margin: 0 auto; }
.routine-sec__head {
  text-align: center;
  margin-bottom: 3rem;
}

.routine-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.routine-card {
  background: var(--tone-surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-card);
  transition: transform var(--tr), box-shadow var(--tr);
  cursor: default;
}
.routine-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-hover);
}
.routine-card__img {
  width: 100%;
  height: 175px;
  object-fit: cover;
}
.routine-card__body {
  padding: 1.35rem 1.4rem 1.6rem;
}
.routine-card__num {
  width: 34px;
  height: 34px;
  background: var(--tone-support-light);
  color: var(--tone-support);
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 0.92rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.routine-card__title {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 0.45rem;
  color: var(--tone-text);
}
.routine-card__text {
  font-size: 0.86rem;
  color: var(--tone-text-soft);
  line-height: 1.55;
}

@media (max-width: 960px) {
  .routine-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .routine-grid { grid-template-columns: 1fr; }
  .routine-card__img { height: 200px; }
}

/* ======================
   OPINIONES / TESTIMONIOS
   ====================== */
.reviews-sec {
  background: var(--tone-surface);
  padding: var(--section-v) var(--pad-x);
}
.reviews-sec__inner { max-width: var(--max-w); margin: 0 auto; }
.reviews-sec__head { text-align: center; margin-bottom: 3rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--tone-bg);
  border: 1.5px solid var(--tone-border);
  border-radius: var(--r-lg);
  padding: 1.85rem 1.6rem;
  transition: box-shadow var(--tr), border-color var(--tr);
  position: relative;
}
.review-card:hover {
  box-shadow: var(--sh-card);
  border-color: var(--tone-main);
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--tone-border);
  line-height: 1;
}
.review-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}
.review-card__body {
  font-size: 0.96rem;
  line-height: 1.68;
  color: var(--tone-text);
  font-style: italic;
  margin-bottom: 1.6rem;
}
.review-card__footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-card__av {
  width: 44px;
  height: 44px;
  background: var(--tone-main-light);
  color: var(--tone-main-dark);
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-card__name {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--tone-text);
}
.review-card__location {
  font-size: 0.8rem;
  color: var(--tone-text-soft);
  margin-top: 0.1rem;
}

@media (max-width: 820px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ======================
   PEDIDO / FORMULARIO
   ====================== */
.order-sec {
  background: linear-gradient(145deg, var(--tone-main-pale) 0%, var(--tone-bg-blue) 100%);
  padding: var(--section-v) var(--pad-x);
}
.order-sec__inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 4rem;
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
}

.order-info {}
.order-price-box {
  background: var(--tone-surface);
  border-radius: var(--r-lg);
  padding: 1.75rem 2rem;
  margin: 1.5rem 0;
  box-shadow: var(--sh-card);
}
.order-price-label {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--tone-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}
.order-price-amount {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 3.2rem;
  color: var(--tone-main);
  line-height: 1;
}
.order-price-amount span {
  font-size: 1.6rem;
  vertical-align: super;
}
.order-price-note {
  font-size: 0.86rem;
  color: var(--tone-text-soft);
  margin-top: 0.4rem;
}

.order-perks {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.5rem;
}
.order-perk {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--tone-text);
}
.order-perk__ico { font-size: 1rem; }

/* Formulario */
.order-form {
  background: var(--tone-surface);
  border-radius: var(--r-xl);
  padding: 2.5rem 2.25rem;
  box-shadow: var(--sh-hover);
}
.order-form__heading {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--tone-text);
  margin-bottom: 0.4rem;
}
.order-form__subheading {
  font-size: 0.9rem;
  color: var(--tone-text-soft);
  margin-bottom: 1.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: 1.1rem; }
.form-label {
  display: block;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.84rem;
  color: var(--tone-text);
  margin-bottom: 0.4rem;
}
.form-label .req { color: var(--tone-cta); }
.form-input,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--tone-border);
  border-radius: var(--r-sm);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--tone-text);
  background: var(--tone-bg);
  transition: border-color var(--tr), background var(--tr);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder { color: #9AAFA7; }
.form-input:focus, .form-select:focus {
  border-color: var(--tone-main);
  background: #fff;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--tone-bg);
  border-radius: var(--r-md);
  margin-bottom: 1rem;
}
.qty-label {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.9rem;
  flex: 1;
}
.qty-controls { display: flex; align-items: center; gap: 0.75rem; }
.qty-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--tone-main);
  background: none;
  color: var(--tone-main);
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--tr);
  line-height: 1;
}
.qty-btn:hover { background: var(--tone-main); color: #fff; }
.qty-num {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 1.3rem;
  min-width: 2rem;
  text-align: center;
}

.order-total-row {
  background: var(--tone-main-pale);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.order-total-label {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.95rem;
}
.order-total-value {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 1.65rem;
  color: var(--tone-main);
}

.order-submit-btn {
  width: 100%;
  padding: 1.1rem;
  background: var(--tone-cta);
  color: #fff;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.08rem;
  border: none;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: var(--tr);
  box-shadow: var(--sh-cta);
  letter-spacing: 0.01em;
}
.order-submit-btn:hover {
  background: var(--tone-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,104,69,0.42);
}

.order-legal-note {
  margin-top: 0.9rem;
  font-size: 0.77rem;
  color: var(--tone-text-soft);
  text-align: center;
  line-height: 1.55;
}
.order-legal-note a {
  color: var(--tone-main);
  text-decoration: underline;
}

@media (max-width: 960px) {
  .order-sec__inner { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* ======================
   FAQ
   ====================== */
.faq-sec {
  background: var(--tone-bg);
  padding: var(--section-v) var(--pad-x);
}
.faq-sec__inner { max-width: 780px; margin: 0 auto; }
.faq-sec__head { text-align: center; margin-bottom: 3rem; }

.faq-list { display: flex; flex-direction: column; gap: 0.8rem; }
.faq-item {
  background: var(--tone-surface);
  border: 1.5px solid var(--tone-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--tr);
}
.faq-item.open { border-color: var(--tone-main); }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  user-select: none;
}
.faq-q-text {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--tone-text);
  line-height: 1.4;
}
.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--tone-main-pale);
  color: var(--tone-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 400;
  font-family: var(--ff-display);
  transition: transform var(--tr), background var(--tr), color var(--tr);
  line-height: 1;
  flex-shrink: 0;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--tone-main);
  color: #fff;
}
.faq-a {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease, padding 0.28s ease;
  font-size: 0.95rem;
  color: var(--tone-text-soft);
  line-height: 1.68;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding-bottom: 1.4rem;
}

/* ======================
   CONTACTO
   ====================== */
.contact-sec {
  background: var(--tone-surface);
  padding: var(--section-v) var(--pad-x);
}
.contact-sec__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.contact-copy .sec-sub { max-width: 400px; }

.contact-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--tone-bg);
  border-radius: var(--r-md);
  border: 1.5px solid var(--tone-border);
  transition: border-color var(--tr), box-shadow var(--tr);
}
.contact-card:hover {
  border-color: var(--tone-main);
  box-shadow: var(--sh-card);
}
.contact-card__ico {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: var(--tone-main-light);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.contact-card__type {
  font-family: var(--ff-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--tone-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}
.contact-card__value {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--tone-text);
}
.contact-card__value a { color: var(--tone-main); }

.contact-hours {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--tone-main-pale);
  border-radius: var(--r-md);
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--tone-text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 720px) {
  .contact-sec__inner { grid-template-columns: 1fr; }
}

/* ======================
   FOOTER
   ====================== */
.site-footer {
  background: var(--tone-text);
  color: rgba(255,255,255,0.72);
  padding: 3.5rem var(--pad-x) 2rem;
}
.site-footer__inner { max-width: var(--max-w); margin: 0 auto; }

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
}
.footer-brand {}
.footer-tagline {
  font-size: 0.85rem;
  margin-top: 0.6rem;
  max-width: 270px;
  line-height: 1.55;
}
.footer-links-group { display: flex; flex-direction: column; gap: 0.25rem; }
.footer-links-group a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--tr);
  padding: 0.2rem 0;
}
.footer-links-group a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-copy { font-size: 0.82rem; }
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
}
.footer-legal-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--tr);
}
.footer-legal-links a:hover { color: #fff; }

.footer-disclaimer {
  margin-top: 1.5rem;
  font-size: 0.76rem;
  line-height: 1.6;
  opacity: 0.5;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.25rem;
}

/* ======================
   COOKIE BANNER
   ====================== */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 780px;
  background: #1A2E24;
  color: rgba(255,255,255,0.88);
  border-radius: var(--r-xl);
  padding: 1.3rem 1.75rem;
  box-shadow: 0 10px 48px rgba(0,0,0,0.28);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  animation: cookie-rise 0.45s cubic-bezier(.16,.76,.4,1) both;
  border: 1px solid rgba(39,160,107,0.35);
}
.cookie-banner.hidden { display: none; }

@keyframes cookie-rise {
  from { transform: translateX(-50%) translateY(24px); opacity: 0; }
  to   { transform: translateX(-50%) translateY(0); opacity: 1; }
}
.cookie-text {
  flex: 1;
  font-size: 0.87rem;
  line-height: 1.58;
  min-width: 200px;
}
.cookie-text a {
  color: var(--tone-main-light);
  text-decoration: underline;
}
.cookie-btns {
  display: flex;
  gap: 0.7rem;
  flex-shrink: 0;
}
.c-btn-accept {
  padding: 0.6rem 1.4rem;
  background: var(--tone-main);
  color: #fff;
  border: none;
  border-radius: var(--r-pill);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.87rem;
  cursor: pointer;
  transition: var(--tr);
}
.c-btn-accept:hover { background: var(--tone-main-dark); }
.c-btn-decline {
  padding: 0.6rem 1.2rem;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.78);
  border-radius: var(--r-pill);
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.87rem;
  cursor: pointer;
  transition: var(--tr);
}
.c-btn-decline:hover { border-color: rgba(255,255,255,0.65); color: #fff; }

@media (max-width: 540px) {
  .cookie-banner { bottom: 0; border-radius: var(--r-xl) var(--r-xl) 0 0; left: 0; transform: none; width: 100%; }
  @keyframes cookie-rise {
    from { transform: translateY(24px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
  }
}

/* Legal pages */
.legal-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 3rem var(--pad-x) 5rem;
}
.legal-page h1 {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 0.5rem;
}
.legal-page .legal-date {
  font-size: 0.87rem;
  color: var(--tone-text-soft);
  margin-bottom: 2.5rem;
}
.legal-page h2 {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.2rem;
  margin: 2rem 0 0.6rem;
  color: var(--tone-text);
}
.legal-page p {
  margin-bottom: 1rem;
  font-size: 0.97rem;
  color: var(--tone-text-soft);
  line-height: 1.72;
}
.legal-page ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-page ul li {
  font-size: 0.97rem;
  color: var(--tone-text-soft);
  margin-bottom: 0.4rem;
  line-height: 1.65;
}
.legal-page a { color: var(--tone-main); }

/* Success page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tone-bg);
  padding: 2rem var(--pad-x);
}
.success-box {
  background: var(--tone-surface);
  border-radius: var(--r-xl);
  padding: 3.5rem 2.5rem;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: var(--sh-hover);
  border: 1.5px solid var(--tone-border);
}
.success-icon {
  width: 80px;
  height: 80px;
  background: var(--tone-main-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 1.5rem;
}
.success-title {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 1.9rem;
  color: var(--tone-text);
  margin-bottom: 1rem;
}
.success-text {
  font-size: 1rem;
  color: var(--tone-text-soft);
  line-height: 1.7;
  margin-bottom: 2rem;
}
