/*
Theme Name: AZD Protein Tech
Theme URI: https://azdproteintech.com
Author: AZD Protein Tech
Author URI: https://azdproteintech.com
Description: Tema corporativo premium para AZD Protein Tech, soluciones proteicas y tecnología en carne. Diseño en rojo carmín sobre neutros limpios, 100% editable desde el Personalizador y Tipos de Contenido. Optimizado para Core Web Vitals, SEO y conversión.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: azd
Tags: e-commerce, one-column, custom-colors, custom-logo, custom-menu, featured-images
*/

/* ==========================================================================
   1. DESIGN TOKENS
   ========================================================================== */
:root {
  /* Brand - crimson (meat / protein) */
  --brand: #B01E28;
  --brand-light: #D23A44;
  --brand-dark: #8C1620;
  --brand-glow: rgba(176, 30, 40, 0.22);
  --amber: #E8A33D;
  --amber-deep: #9a6a15;

  /* Neutral surfaces (cool) */
  --surface: #ffffff;
  --surface-low: #f6f6f7;
  --surface-lowest: #ffffff;
  --surface-mid: #f0f0f2;
  --surface-high: #eaeaea;
  --surface-highest: #e4e4e6;
  --surface-dim: #dcdcde;

  /* Text */
  --on-surface: #1a1a1a;
  --on-surface-variant: #5c5c5c;
  --on-surface-muted: #757575;

  /* Inverted / dark */
  --inverse-surface: #201f1f;
  --inverse-on-surface: #f4f4f4;

  /* Lines */
  --outline: #9a9a9e;
  --outline-variant: #e0e0e2;
  --border: #e5e7eb;
  --border-soft: #f3f4f6;

  /* States */
  --error: #ba1a1a;
  --error-container: #ffdad6;
  --success: #12805c;
  --success-container: #d7f5e9;

  /* WhatsApp */
  --whatsapp: #25d366;
  --whatsapp-hover: #1ebe5d;

  /* Typography */
  --font-sans: 'Sora', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --fs-display: clamp(2.25rem, 1.6rem + 3.1vw, 3.5rem);
  --fs-headline-xl: clamp(1.75rem, 1.35rem + 1.9vw, 2.5rem);
  --fs-headline-lg: clamp(1.5rem, 1.2rem + 1.4vw, 2rem);
  --fs-headline-md: 1.375rem;
  --fs-headline-sm: 1.125rem;
  --fs-body-lg: 1.125rem;
  --fs-body-md: 1rem;
  --fs-body-sm: 0.875rem;
  --fs-label-lg: 0.875rem;
  --fs-label-md: 0.75rem;
  --fs-label-sm: 0.6875rem;

  /* Spacing */
  --sp-xs: 0.25rem;
  --sp-sm: 0.5rem;
  --sp-md: 1rem;
  --sp-lg: 1.5rem;
  --sp-xl: 2rem;
  --sp-2xl: 3rem;
  --sp-3xl: 4.5rem;
  --gutter: 1.5rem;

  /* Radius */
  --r-sm: 4px;
  --r-md: 6px;
  --r-lg: 8px;
  --r-xl: 12px;
  --r-2xl: 16px;
  --r-full: 9999px;

  /* Elevation */
  --shadow-1: 0 1px 2px rgba(0, 0, 0, 0.05), 0 4px 16px -4px rgba(0, 0, 0, 0.10);
  --shadow-2: 0 10px 25px -5px rgba(176, 30, 40, 0.12), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --shadow-3: 0 25px 50px -12px rgba(0, 0, 0, 0.18);
  --shadow-brand: 0 8px 24px -4px rgba(176, 30, 40, 0.35);

  /* Layout */
  --container: 1440px;
  --header-h: 80px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==========================================================================
   2. BASE / RESET
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body-md);
  line-height: 1.5;
  color: var(--on-surface);
  background: var(--surface);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--brand-dark); }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 700; line-height: 1.2; color: var(--on-surface); letter-spacing: -0.02em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--brand); color: #fff; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; border-radius: 4px; }

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ==========================================================================
   3. UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 10px;
}
@media (min-width: 768px) { .container { padding-inline: var(--gutter); } }
@media (min-width: 1024px) { .container { padding-inline: var(--sp-xl); } }

.section { padding-block: var(--sp-3xl); }
.section--low { background: var(--surface-low); }
.section--dark { background: var(--inverse-surface); color: var(--inverse-on-surface); }

.eyebrow {
  display: inline-block;
  font-size: var(--fs-label-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand);
}

.section-head { max-width: 46rem; margin-bottom: var(--sp-2xl); }
.section-head--center { margin-inline: auto; text-align: center; margin-bottom: var(--sp-3xl); }
.section-head .title { font-size: var(--fs-headline-xl); margin-top: var(--sp-sm); }
.section-head .lead { margin-top: var(--sp-md); color: var(--on-surface-variant); }
.section-head--split { display: flex; flex-direction: column; gap: var(--sp-lg); max-width: none; }
@media (min-width: 768px) {
  .section-head--split { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .section-head--split .lead { max-width: 26rem; margin-top: 0; }
}
.section--dark .section-head .title { color: #fff; }
.section--dark .section-head .lead { color: rgba(255, 255, 255, 0.75); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  padding: 0.875rem 1.5rem;
  border: 1.5px solid transparent;
  border-radius: var(--r-lg);
  font-size: var(--fs-label-lg);
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease), gap .2s var(--ease);
  will-change: transform;
}
.btn:active { transform: scale(0.97); }
.btn .icon { font-size: 1.25rem; }
.btn--primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.btn--primary:hover { color: #fff; background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%); box-shadow: 0 12px 30px -6px rgba(176, 30, 40, 0.45); }
.btn--primary:hover .icon { transform: translateX(2px); }
.btn--ghost { background: var(--surface-low); color: var(--on-surface); border-color: var(--border); box-shadow: var(--shadow-1); }
.btn--ghost:hover { background: var(--surface-mid); color: var(--on-surface); border-color: var(--surface-highest); }
.btn--outline { background: transparent; color: var(--on-surface); border: 1.5px solid var(--on-surface); }
.btn--outline:hover { background: var(--on-surface); color: #fff; }
.btn--whatsapp { background: var(--whatsapp); color: #fff; box-shadow: 0 8px 20px -6px rgba(37, 211, 102, 0.5); }
.btn--whatsapp:hover { background: var(--whatsapp-hover); color: #fff; }
.btn--light { background: #fff; color: var(--brand); box-shadow: var(--shadow-3); }
.btn--light:hover { background: var(--surface-low); color: var(--brand-dark); }
.btn--block { width: 100%; }

.link-arrow { display: inline-flex; align-items: center; gap: var(--sp-xs); font-weight: 600; color: var(--brand); }
.link-arrow .icon { font-size: 18px; transition: transform .2s var(--ease); }
.link-arrow:hover { color: var(--brand-dark); gap: var(--sp-sm); }
.link-arrow:hover .icon { transform: translateX(2px); }

.chip {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  padding: 0.375rem 0.75rem;
  border-radius: var(--r-full);
  font-size: var(--fs-label-sm);
  font-weight: 600;
  background: rgba(176, 30, 40, 0.10);
  color: var(--brand-dark);
  border: 0.5px solid rgba(176, 30, 40, 0.30);
}
.chip--neutral { background: var(--surface-mid); color: var(--on-surface-variant); border-color: transparent; }
.chip--amber { background: rgba(232, 163, 61, 0.16); color: var(--amber-deep); border-color: rgba(232, 163, 61, 0.35); }

.icon { font-family: 'Material Symbols Outlined'; font-weight: normal; font-style: normal; font-size: 24px; line-height: 1; letter-spacing: normal; text-transform: none; display: inline-block; white-space: nowrap; word-wrap: normal; direction: ltr; font-feature-settings: 'liga'; -webkit-font-feature-settings: 'liga'; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.icon--brand { color: var(--brand); }

/* ==========================================================================
   4. HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}
.site-header.is-scrolled { box-shadow: var(--shadow-2); }
.header__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: var(--sp-lg);
}
.header__brand { display: flex; align-items: center; gap: var(--sp-md); min-width: 0; }
.header__logo { height: 34px; width: auto; object-fit: contain; }
.header__logo-fallback { font-weight: 800; font-size: 1.1rem; letter-spacing: -0.02em; color: var(--on-surface); white-space: nowrap; }
.header__logo-fallback em { font-style: normal; color: var(--brand); }

.main-nav { display: none; align-items: center; gap: var(--sp-xl); }
@media (min-width: 1024px) { .main-nav { display: flex; } }
.main-nav a { font-size: var(--fs-label-lg); font-weight: 500; color: var(--on-surface-variant); position: relative; padding-block: var(--sp-sm); }
.main-nav a:hover { color: var(--on-surface); }
.main-nav a.is-active { color: var(--brand); font-weight: 700; }
.main-nav a.is-active::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; border-radius: 2px; background: var(--brand); }

.header__actions { display: flex; align-items: center; gap: var(--sp-sm); }
.header__cta { display: none; }
@media (min-width: 640px) { .header__cta { display: inline-flex; } }
.menu-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: var(--r-md);
  border: 1px solid var(--border); background: #fff; cursor: pointer;
}
.menu-toggle .icon { font-size: 24px; }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

.mobile-nav {
  position: fixed; inset: 0; z-index: 200;
  background: var(--surface);
  transform: translateX(100%);
  transition: transform .32s var(--ease);
  display: flex; flex-direction: column;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__head { display: flex; align-items: center; justify-content: space-between; padding: var(--sp-md) 10px; border-bottom: 1px solid var(--border-soft); }
.mobile-nav__close { width: 40px; height: 40px; border-radius: var(--r-md); border: 1px solid var(--border); background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.mobile-nav__close .icon { font-size: 24px; }
.mobile-nav__links { padding: var(--sp-lg) 10px; display: flex; flex-direction: column; }
.mobile-nav__links a { padding: var(--sp-md) 0; font-size: var(--fs-headline-sm); font-weight: 600; color: var(--on-surface); border-bottom: 1px solid var(--border-soft); }
.mobile-nav__links a.is-active { color: var(--brand); }
.mobile-nav__cta { padding: var(--sp-lg) 10px var(--sp-2xl); margin-top: auto; }
.nav-overlay { position: fixed; inset: 0; z-index: 150; background: rgba(20, 20, 20, 0.4); opacity: 0; pointer-events: none; transition: opacity .3s var(--ease); }
.nav-overlay.is-visible { opacity: 1; pointer-events: auto; }
body.nav-open { overflow: hidden; }

/* ==========================================================================
   5. HERO
   ========================================================================== */
.hero { position: relative; overflow: hidden; background: var(--surface-lowest); padding-top: calc(var(--header-h) + var(--sp-xl)); padding-bottom: var(--sp-2xl); }
.hero__grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-2xl); align-items: center; }
@media (min-width: 1024px) { .hero__grid { grid-template-columns: 7fr 5fr; gap: var(--sp-xl); } }
.hero__content { display: flex; flex-direction: column; gap: var(--sp-lg); }
.hero__badge { align-self: flex-start; display: inline-flex; align-items: center; gap: var(--sp-sm); padding: 0.375rem 0.875rem; border-radius: var(--r-full); background: rgba(176, 30, 40, 0.10); border: 1px solid rgba(176, 30, 40, 0.25); font-size: var(--fs-label-md); font-weight: 700; color: var(--brand-dark); }
.hero__badge .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--brand); position: relative; }
.hero__badge .dot::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--brand); animation: ping 1.6s var(--ease) infinite; }
@keyframes ping { 0% { transform: scale(1); opacity: 0.6; } 80%, 100% { transform: scale(2.4); opacity: 0; } }
.hero__title { font-size: var(--fs-display); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; max-width: 16ch; }
.hero__title .accent { color: var(--brand); }
.hero__lead { font-size: var(--fs-body-lg); line-height: 1.6; color: var(--on-surface-variant); max-width: 40rem; }
.hero__lead strong { color: var(--on-surface); font-weight: 700; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: var(--sp-md); padding-top: var(--sp-sm); }
.hero__visual { position: relative; }
.hero__media { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-3); background: var(--surface-mid); aspect-ratio: 4 / 3; }
@media (min-width: 1024px) { .hero__media { aspect-ratio: auto; height: 24rem; } }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__float { position: absolute; top: 1rem; right: 0.5rem; background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-3); padding: 0.875rem; display: flex; align-items: center; gap: var(--sp-sm); }
.hero__float .icon-wrap { width: 40px; height: 40px; border-radius: 50%; background: rgba(232, 163, 61, 0.2); display: flex; align-items: center; justify-content: center; }
.hero__float .icon-wrap .icon { font-size: 24px; color: var(--amber-deep); }
.hero__float .label { font-size: var(--fs-label-sm); text-transform: uppercase; letter-spacing: 0.06em; color: var(--on-surface-variant); }
.hero__float .value { font-size: var(--fs-label-lg); font-weight: 700; color: var(--on-surface); }

/* ==========================================================================
   6. STATS STRIP
   ========================================================================== */
.stats-strip { background: var(--inverse-surface); }
.stats-strip__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-lg); padding-block: var(--sp-lg); }
@media (min-width: 768px) { .stats-strip__grid { grid-template-columns: repeat(4, 1fr); } }
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat__number { font-size: var(--fs-headline-xl); font-weight: 800; letter-spacing: -0.02em; color: var(--brand-light); line-height: 1; }
.stat__number--amber { color: var(--amber); }
.stat__number .suffix { font-size: 0.75em; }
.stat__label { font-size: var(--fs-label-md); text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600; color: rgba(255, 255, 255, 0.7); }

/* ==========================================================================
   7. PRODUCTS
   ========================================================================== */
.products-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-xl); }
@media (min-width: 768px) { .products-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: 1fr 1fr 1fr; } }
.product-card {
  display: flex; flex-direction: column;
  background: #fff; border-radius: var(--r-xl);
  border: 1px solid var(--border); box-shadow: var(--shadow-1);
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.product-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--surface-mid); }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .7s var(--ease), object-position 1.6s var(--ease); }
.product-card:hover .product-card__media img { transform: scale(1.06); object-position: center bottom; }
.product-card__icon { position: absolute; top: var(--sp-sm); left: var(--sp-sm); width: 44px; height: 44px; border-radius: var(--r-lg); background: rgba(255, 255, 255, 0.92); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-1); }
.product-card__icon .icon { font-size: 24px; color: var(--brand); }
.product-card__body { display: flex; flex-direction: column; flex: 1; padding: var(--sp-lg); }
.product-card__badge { align-self: flex-start; margin-bottom: var(--sp-sm); }
.product-card__title { font-size: var(--fs-headline-sm); font-weight: 700; }
.product-card__desc { margin-top: var(--sp-sm); font-size: var(--fs-body-sm); color: var(--on-surface-variant); flex: 1; }
.product-card__foot { margin-top: var(--sp-md); padding-top: var(--sp-md); border-top: 1px solid var(--border-soft); display: flex; align-items: center; justify-content: space-between; }

@media (prefers-reduced-motion: reduce) {
  .product-card__media img { object-position: center; }
  .product-card:hover .product-card__media img { transform: none; object-position: center; }
}

/* ==========================================================================
   8. VALUES
   ========================================================================== */
.values-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-lg); }
@media (min-width: 768px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }
.value-card { background: #fff; border-radius: var(--r-xl); border: 1px solid var(--border); box-shadow: var(--shadow-1); padding: var(--sp-lg); transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.value-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.value-card__icon { width: 48px; height: 48px; border-radius: var(--r-lg); background: rgba(176, 30, 40, 0.10); display: flex; align-items: center; justify-content: center; margin-bottom: var(--sp-md); }
.value-card__icon .icon { font-size: 28px; color: var(--brand-dark); }
.value-card__title { font-size: var(--fs-headline-sm); font-weight: 700; }
.value-card__desc { margin-top: var(--sp-sm); font-size: var(--fs-body-sm); color: var(--on-surface-variant); }

/* ==========================================================================
   9. ALIANZA
   ========================================================================== */
.alianza-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-2xl); align-items: center; }
@media (min-width: 1024px) { .alianza-grid { grid-template-columns: 1fr 1fr; } }
.alianza-media { position: relative; }
.alianza-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r-xl); box-shadow: var(--shadow-3); }
.alianza-content .title { font-size: var(--fs-headline-xl); margin-top: var(--sp-sm); }
.alianza-content .lead { margin-top: var(--sp-md); color: var(--on-surface-variant); }
.alianza-list { margin-top: var(--sp-lg); display: grid; grid-template-columns: 1fr; gap: var(--sp-md); }
@media (min-width: 640px) { .alianza-list { grid-template-columns: 1fr 1fr; } }
.alianza-list li { display: flex; align-items: flex-start; gap: var(--sp-sm); font-size: var(--fs-body-sm); color: var(--on-surface-variant); }
.alianza-list .icon { font-size: 18px; color: var(--brand); flex-shrink: 0; margin-top: 1px; }
.alianza-list li strong { color: var(--on-surface); }

/* ==========================================================================
   10. PRICING
   ========================================================================== */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-lg); align-items: stretch; }
@media (min-width: 768px) { .pricing-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: 1fr 1fr 1fr; } }
.price-card { display: flex; flex-direction: column; background: #fff; border-radius: var(--r-2xl); border: 1px solid var(--border); box-shadow: var(--shadow-1); padding: var(--sp-xl); position: relative; transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.price-card--featured { border-color: var(--brand); box-shadow: var(--shadow-2); }
.price-card__badge { align-self: flex-start; margin-bottom: var(--sp-md); }
.price-card__name { font-size: var(--fs-headline-md); font-weight: 700; }
.price-card__price { display: flex; align-items: baseline; gap: 6px; margin-top: var(--sp-md); }
.price-card__amount { font-size: var(--fs-headline-xl); font-weight: 800; color: var(--brand); }
.price-card__period { font-size: var(--fs-body-sm); color: var(--on-surface-variant); }
.price-card__desc { margin-top: var(--sp-md); font-size: var(--fs-body-sm); color: var(--on-surface-variant); flex: 1; }
.price-card__cta { margin-top: var(--sp-lg); }

/* ==========================================================================
   11. TESTIMONIALS
   ========================================================================== */
.testimonials { position: relative; }
.testimonial-slider { overflow: hidden; }
.testimonial-track { display: flex; transition: transform .5s var(--ease); }
.testimonial-slide { flex: 0 0 100%; padding: 0 var(--sp-xs); }
.testimonial-card { background: #fff; border-radius: var(--r-2xl); border: 1px solid var(--border); box-shadow: var(--shadow-1); padding: var(--sp-xl); display: flex; flex-direction: column; gap: var(--sp-lg); max-width: 46rem; margin-inline: auto; text-align: center; }
.testimonial-card blockquote { margin: 0; font-size: var(--fs-body-lg); line-height: 1.65; color: var(--on-surface); }
.testimonial-card blockquote::before { content: "“"; display: block; font-size: 3rem; line-height: 1; color: var(--brand); margin-bottom: var(--sp-sm); }
.testimonial-card footer { font-size: var(--fs-label-md); font-weight: 700; color: var(--brand); text-transform: uppercase; letter-spacing: 0.04em; }
.testimonial-nav { display: flex; align-items: center; justify-content: center; gap: var(--sp-md); margin-top: var(--sp-xl); }
.testimonial-btn { width: 44px; height: 44px; border-radius: var(--r-full); border: 1px solid var(--border); background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-1); transition: background .2s var(--ease); }
.testimonial-btn:hover { background: var(--surface-low); }
.testimonial-btn .icon { font-size: 22px; }
.testimonial-dots { display: flex; gap: var(--sp-sm); }
.testimonial-dots button { width: 8px; height: 8px; border-radius: 50%; border: none; background: var(--surface-dim); cursor: pointer; padding: 0; transition: background .2s var(--ease), width .2s var(--ease); }
.testimonial-dots button.is-active { background: var(--brand); width: 22px; border-radius: var(--r-full); }

/* ==========================================================================
   12. FAQ
   ========================================================================== */
.faq-list { max-width: 46rem; margin-inline: auto; display: flex; flex-direction: column; gap: var(--sp-sm); }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-1); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--sp-md); padding: var(--sp-lg); background: transparent; border: none; cursor: pointer; text-align: left; font-size: var(--fs-headline-sm); font-weight: 600; color: var(--on-surface); }
.faq-q .icon { font-size: 22px; color: var(--brand); transition: transform .25s var(--ease); flex-shrink: 0; }
.faq-item.is-open .faq-q .icon { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq-a__inner { padding: 0 var(--sp-lg) var(--sp-lg); font-size: var(--fs-body-sm); color: var(--on-surface-variant); line-height: 1.65; }

/* ==========================================================================
   13. CONTACT
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-xl); }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 7fr 5fr; } }
.contact-card { background: #fff; border-radius: var(--r-2xl); border: 1px solid var(--border); box-shadow: var(--shadow-1); padding: var(--sp-xl); }
@media (min-width: 768px) { .contact-card { padding: var(--sp-2xl); } }
.contact-card .title { font-size: var(--fs-headline-lg); margin-top: var(--sp-xs); }
.contact-card .lead { margin-top: var(--sp-sm); margin-bottom: var(--sp-xl); color: var(--on-surface-variant); }
.contact-card--info { padding: var(--sp-xl); }
@media (min-width: 768px) { .contact-card--info { padding: var(--sp-2xl); } }
.eyebrow--dark { color: var(--brand-dark); }
.contact-card__subtitle { font-size: var(--fs-headline-md); margin-top: var(--sp-xs); }
.contact-card__subtext { font-size: var(--fs-body-sm); color: var(--on-surface-variant); margin-top: var(--sp-sm); }
.contact-card__list { display: flex; flex-direction: column; gap: var(--sp-md); margin-top: var(--sp-lg); }
.contact-card__cta { margin-top: var(--sp-lg); }

.form-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-lg); }
@media (min-width: 640px) { .form-grid--2 { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.form-field label { font-size: var(--fs-label-sm); font-weight: 600; color: var(--on-surface); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; min-height: 44px; padding: 0.75rem 1rem;
  border-radius: var(--r-lg); border: 1.5px solid var(--border);
  background: #fff; color: var(--on-surface); font-size: var(--fs-body-sm);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--on-surface-muted); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(176, 30, 40, 0.15); }
.form-field .error-text { display: none; font-size: var(--fs-label-sm); color: var(--error); font-weight: 600; }
.form-field.has-error input, .form-field.has-error select, .form-field.has-error textarea { border-color: var(--error); }
.form-field.has-error .error-text { display: block; }
.form-status { display: none; margin-top: var(--sp-md); padding: var(--sp-md); border-radius: var(--r-lg); font-size: var(--fs-body-sm); font-weight: 600; }
.form-status.is-visible { display: block; }
.form-status--success { background: var(--success-container); color: var(--success); }
.form-status--error { background: var(--error-container); color: var(--error); }

.contact-info { display: flex; flex-direction: column; gap: var(--sp-lg); }
.info-block { display: flex; align-items: flex-start; gap: var(--sp-md); padding: var(--sp-md); border-radius: var(--r-lg); background: var(--surface-low); }
.info-block > div:last-child { min-width: 0; flex: 1; }
.info-block__icon { width: 40px; height: 40px; border-radius: var(--r-lg); background: var(--brand); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-block__icon .icon { font-size: 22px; }
.info-block--neutral .info-block__icon { background: var(--surface-highest); color: var(--on-surface); }
.info-block__label { font-size: var(--fs-label-sm); font-weight: 600; color: var(--on-surface-variant); }
.info-block__value { font-size: var(--fs-headline-sm); font-weight: 700; color: var(--on-surface); margin-top: 2px; }
.info-block__value--link { display: block; }
.info-block__value--sm { font-size: var(--fs-body-sm); }
.info-block__sub { font-size: var(--fs-body-sm); color: var(--on-surface-variant); }

.social-row { display: flex; gap: var(--sp-sm); margin-top: var(--sp-md); }
.social-row a { width: 40px; height: 40px; border-radius: var(--r-full); border: 1px solid var(--border); background: #fff; display: flex; align-items: center; justify-content: center; color: var(--on-surface-variant); box-shadow: var(--shadow-1); transition: background .2s var(--ease), color .2s var(--ease); }
.social-row a:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
.social-row .icon { font-size: 20px; }

/* ==========================================================================
   14. FOOTER
   ========================================================================== */
.site-footer { background: var(--inverse-surface); color: rgba(255, 255, 255, 0.72); }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-xl); padding-block: var(--sp-3xl); }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .site-footer__grid { grid-template-columns: 2fr 1.2fr 1fr 1.3fr; } }
.footer-col { display: flex; flex-direction: column; gap: var(--sp-md); }
.footer-col__title { font-size: var(--fs-headline-sm); font-weight: 700; color: #fff; }
.footer-col__brand { display: flex; align-items: center; gap: var(--sp-sm); }
.footer-col__brand img { height: 32px; width: auto; object-fit: contain; }
.footer-col__brand .wordmark { font-weight: 800; font-size: 1.1rem; color: #fff; white-space: nowrap; }
.footer-col__brand .wordmark em { font-style: normal; color: var(--brand-light); }
.footer-col__about { font-size: var(--fs-body-sm); line-height: 1.65; }
.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-sm); }
.footer-col ul a { font-size: var(--fs-body-sm); color: rgba(255, 255, 255, 0.72); }
.footer-col ul a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: var(--sp-sm); font-size: var(--fs-body-sm); }
.footer-contact a, .footer-contact span { display: flex; align-items: center; gap: var(--sp-sm); color: rgba(255, 255, 255, 0.72); }
.footer-contact a:hover { color: #fff; }
.footer-contact .icon { font-size: 18px; color: var(--brand-light); }
.site-footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); padding-block: var(--sp-lg); display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: var(--sp-md); font-size: var(--fs-label-sm); }
@media (min-width: 768px) { .site-footer__bottom { flex-direction: row; } }
.site-footer__bottom-links { display: flex; align-items: center; gap: var(--sp-lg); }
.site-footer__bottom-links a { color: rgba(255, 255, 255, 0.72); }
.site-footer__bottom-links a:hover { color: #fff; }

/* ==========================================================================
   15. FLOATING ELEMENTS
   ========================================================================== */
.wa-fab { position: fixed; right: var(--sp-lg); bottom: var(--sp-lg); z-index: 90; width: 56px; height: 56px; border-radius: var(--r-full); background: var(--whatsapp); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 30px -6px rgba(37, 211, 102, 0.55); transition: transform .2s var(--ease), background .2s var(--ease); }
.wa-fab:hover { transform: translateY(-3px); background: var(--whatsapp-hover); color: #fff; }
.wa-fab .icon { font-size: 28px; }
.back-top { position: fixed; left: var(--sp-lg); bottom: var(--sp-lg); z-index: 89; width: 44px; height: 44px; border-radius: var(--r-full); border: 1px solid var(--border); background: #fff; color: var(--on-surface); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-1); cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(8px); transition: opacity .25s var(--ease), transform .25s var(--ease); }
.back-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-top .icon { font-size: 20px; }

/* ==========================================================================
   16. REVEAL ANIMATIONS
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
[data-reveal].is-revealed { opacity: 1; transform: translateY(0); }
[data-reveal="left"] { transform: translateX(-24px); }
[data-reveal="left"].is-revealed { transform: translateX(0); }
[data-reveal="right"] { transform: translateX(24px); }
[data-reveal="right"].is-revealed { transform: translateX(0); }
[data-reveal="zoom"] { transform: scale(0.94); }
[data-reveal="zoom"].is-revealed { transform: scale(1); }
@media (min-width: 768px) {
  [data-stagger] > * { opacity: 0; transform: translateY(24px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
  [data-stagger].is-revealed > * { opacity: 1; transform: translateY(0); }
  [data-stagger].is-revealed > *:nth-child(1) { transition-delay: 0ms; }
  [data-stagger].is-revealed > *:nth-child(2) { transition-delay: 80ms; }
  [data-stagger].is-revealed > *:nth-child(3) { transition-delay: 160ms; }
  [data-stagger].is-revealed > *:nth-child(4) { transition-delay: 240ms; }
  [data-stagger].is-revealed > *:nth-child(5) { transition-delay: 320ms; }
  [data-stagger].is-revealed > *:nth-child(6) { transition-delay: 400ms; }
}

/* ==========================================================================
   17. WORDPRESS CORE + BLOG/PAGE
   ========================================================================== */
.alignleft { float: left; margin: 0 var(--sp-md) var(--sp-md) 0; }
.alignright { float: right; margin: 0 0 var(--sp-md) var(--sp-md); }
.aligncenter { margin-inline: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: var(--fs-label-md); color: var(--on-surface-variant); text-align: center; margin-top: var(--sp-xs); }
.sticky { display: block; }
.gallery-caption { font-size: var(--fs-label-md); color: var(--on-surface-variant); }
.bypostauthor { display: block; }

.page-header { padding-top: calc(var(--header-h) + var(--sp-2xl)); padding-bottom: var(--sp-2xl); background: var(--surface-lowest); border-bottom: 1px solid var(--border-soft); }
.page-header .title { font-size: var(--fs-display); }
.page-header .subtitle { margin-top: var(--sp-sm); color: var(--on-surface-variant); max-width: 42rem; }
.entry-content { max-width: 46rem; margin-inline: auto; padding-block: var(--sp-3xl); }
.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4 { margin-top: var(--sp-xl); margin-bottom: var(--sp-md); }
.entry-content p, .entry-content ul, .entry-content ol { margin-bottom: var(--sp-md); line-height: 1.7; }
.entry-content ul { list-style: disc; padding-left: 1.25rem; }
.entry-content ol { list-style: decimal; padding-left: 1.25rem; }
.entry-content blockquote { margin: var(--sp-lg) 0; padding: var(--sp-md) var(--sp-lg); background: var(--surface-low); border-left: 4px solid var(--brand); border-radius: var(--r-md); }
.entry-content img { border-radius: var(--r-lg); }
.entry-content a { text-decoration: underline; text-underline-offset: 2px; }

.post-list { display: grid; gap: var(--sp-xl); padding-block: var(--sp-3xl); }
.post-card { background: #fff; border-radius: var(--r-xl); border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow-1); }
.post-card__thumb img { width: 100%; height: 220px; object-fit: cover; }
.post-card__body { padding: var(--sp-lg); }
.post-card__meta { font-size: var(--fs-label-sm); color: var(--on-surface-variant); }
.post-card__title { font-size: var(--fs-headline-md); margin-top: var(--sp-xs); }
.post-card__title a { color: var(--on-surface); }
.post-card__title a:hover { color: var(--brand); }
.post-card__excerpt { margin-top: var(--sp-sm); color: var(--on-surface-variant); }

/* ==========================================================================
   18. RESPONSIVE FINE-TUNING & MOTION PREFERENCES
   ========================================================================== */
@media (max-width: 767px) {
  .products-grid, .pricing-grid, .contact-grid, .values-grid { gap: 10px; }
  .contact-info { gap: 10px; }
  .cta-banner { padding: var(--sp-lg); }
  .contact-card, .contact-card--info { padding: 20px; }
  .btn { white-space: normal; line-height: 1.35; padding: 0.75rem 1rem; }
  .hero__title { font-size: clamp(1.9rem, 8vw, 2.4rem); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal], [data-reveal].is-revealed,
  [data-stagger] > *, [data-stagger].is-revealed > * {
    opacity: 1 !important;
    transform: none !important;
  }
}
