/* ======================================
   AUDIX.CL — DESIGN SYSTEM
   Mood B: Warm Lifestyle
   Phase 2 — Figma equivalent prototype
   ====================================== */

/* ---- Design tokens ---- */
:root {
  /* Colors — Mood B Warm Lifestyle (2026-05 redesign)
     Reemplazamos azul frío por charcoal cálido + cream
     Mantenemos los nombres de variable por compatibilidad */
  --audix-blue-deep: #2A1F19;     /* warm espresso (antes era azul #0F2C5C) */
  --audix-blue: #4A3D33;          /* warm taupe   (antes era azul #1E4A8C) */
  --audix-blue-light: #F5EDE3;    /* warm cream   (antes era azul #DCE6F4) */

  /* Aliases más claros (uso futuro recomendado) */
  --audix-warm-deep: #2A1F19;
  --audix-warm: #4A3D33;
  --audix-warm-light: #F5EDE3;

  --interton-yellow: #FFC72C;
  --yellow-soft: #FFF4D1;
  /* P0 #4 a11y fix (2026-06-08): darkened brand coral from #E26B4B (3.26:1 — FAILS AA)
     to #C84D2D (4.61:1 — PASSES WCAG AA Normal on white text). Resolves 179 axe color-contrast
     violations across .btn-primary / .header-cta-primary / active-nav-link / link colors.
     The brighter #E26B4B remains in rgba(226,107,75,X) decorative shadows + glows for depth. */
  --audix-coral: #C84D2D;
  --audix-coral-dark: #A93F23;
  --audix-coral-bright: #E26B4B;   /* legacy brighter tone — use ONLY for decorative bg, never for text */
  --audix-coral-light: #FAD9CD;

  --n-900: #1A1F2E;
  --n-700: #4A5161;
  --n-500: #585F6A;  /* a11y: was #8B92A3 (3.12:1 fails AA); pushed to #585F6A (~6.1:1) so sub-pixel AA stays above 4.5 */
  --n-300: #D4D8E0;
  --n-100: #F5F7FA;
  --white: #FFFFFF;

  --success: #16A34A;
  --warning: #F59E0B;
  --danger: #DC2626;
  --whatsapp: #25D366;

  /* Spacing scale 8pt grid */
  --sp-2xs: 4px;
  --sp-xs: 8px;
  --sp-sm: 12px;
  --sp-md: 16px;
  --sp-lg: 24px;
  --sp-xl: 32px;
  --sp-2xl: 48px;
  --sp-3xl: 64px;
  --sp-4xl: 96px;

  /* Type */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Sora', 'Inter', -apple-system, sans-serif;

  /* Radii */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 20px;
  --r-pill: 999px;

  /* Shadows — warm tinted ahora (antes azul rgba(15,44,92)) */
  --shadow-sm: 0 1px 2px rgba(42,31,25,0.06);
  --shadow-md: 0 4px 12px rgba(42,31,25,0.10);
  --shadow-lg: 0 12px 32px rgba(42,31,25,0.14);
  --shadow-coral: 0 8px 24px rgba(226,107,75,0.25);

  /* Transitions */
  --t-fast: 150ms ease;
  --t-base: 250ms ease;
}

/* ---- Reset & base ---- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--n-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--audix-blue); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--audix-coral); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; color: var(--audix-blue-deep); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { margin-bottom: var(--sp-md); }
.text-lg { font-size: 1.15rem; line-height: 1.6; color: var(--n-700); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600; }

/* ---- Layout ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--sp-md); }
@media (min-width: 768px) { .container { padding: 0 var(--sp-lg); } }
@media (min-width: 1024px) { .container { padding: 0 var(--sp-xl); } }

.section { padding: var(--sp-3xl) 0; }
.section-tight { padding: var(--sp-2xl) 0; }

.grid { display: grid; gap: var(--sp-lg); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr 1fr; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---- Header ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--n-300);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-md) 0;
  gap: var(--sp-md);
}
.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--audix-blue-deep);
  letter-spacing: -0.02em;
}
.logo span { color: var(--audix-coral); }
.nav-main { display: none; }
@media (min-width: 1024px) {
  .nav-main { display: flex; gap: var(--sp-xl); }
  .nav-main a { color: var(--n-700); font-weight: 500; font-size: 0.95rem; }
  .nav-main a:hover { color: var(--audix-blue-deep); }
}
.header-cta { display: flex; align-items: center; gap: var(--sp-xs); }
.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--n-100);
  color: var(--audix-blue-deep);
  transition: var(--t-fast);
}
.icon-btn:hover { background: var(--audix-blue-light); }

/* ---- Banner persistente ---- */
.banner-trust {
  background: linear-gradient(110deg, #FF6B6B 0%, #E26B4B 35%, #FFC72C 70%, #FF6B6B 100%);
  background-size: 300% 100%;
  animation: shiftBannerGradient 8s ease-in-out infinite;
  color: var(--white);
  padding: var(--sp-sm) 0;
  font-size: 0.875rem;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0,0,0,0.18);
  position: relative;
  overflow: hidden;
}
.banner-trust::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'><circle cx='30' cy='30' r='1.2' fill='rgba(255,255,255,0.28)'/><circle cx='10' cy='10' r='1' fill='rgba(255,255,255,0.18)'/><circle cx='50' cy='15' r='1' fill='rgba(255,255,255,0.22)'/><circle cx='15' cy='45' r='1' fill='rgba(255,255,255,0.18)'/></svg>");
  pointer-events: none;
  opacity: 0.7;
}
.banner-trust > * {
  position: relative;
  z-index: 1;
}
.banner-trust .banner-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-md) var(--sp-xl);
  font-weight: 500;
}
.banner-trust .check {
  color: var(--white);
  margin-right: 6px;
  font-weight: 800;
  text-shadow: 0 0 8px rgba(255,255,255,0.5);
}

@keyframes shiftBannerGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Accesibilidad: respeta prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .banner-trust {
    animation: none;
    background: linear-gradient(110deg, #E26B4B 0%, #FFC72C 100%);
    background-size: 100% 100%;
  }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-xs);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--r-md);
  min-height: 48px;
  transition: var(--t-base);
  text-align: center;
}
.btn-primary {
  background: var(--audix-coral);
  color: var(--white);
  box-shadow: var(--shadow-coral);
}
.btn-primary:hover {
  background: var(--audix-coral-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(226,107,75,0.35);
}
.btn-secondary {
  background: var(--white);
  color: var(--audix-blue-deep);
  border: 2px solid var(--audix-blue-deep);
}
.btn-secondary:hover {
  background: var(--audix-blue-deep);
  color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--audix-blue-deep);
  text-decoration: underline;
  text-underline-offset: 4px;
  padding: 8px 0;
  min-height: auto;
}
.btn-ghost:hover { color: var(--audix-coral); }
.btn-lg { font-size: 1.1rem; padding: 18px 36px; min-height: 56px; }

/* ---- WhatsApp floating ---- */
.wa-float {
  position: fixed;
  bottom: var(--sp-lg);
  right: var(--sp-lg);
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  animation: pulse 3s infinite;
  transition: var(--t-base);
}
.wa-float:hover { transform: scale(1.08); color: var(--white); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.5); }
  50% { box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 0 0 16px rgba(37,211,102,0); }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  background: linear-gradient(135deg, #FFF8F4 0%, #FAEDE3 50%, #FAD9CD 100%);
  overflow: hidden;
  padding: var(--sp-3xl) 0 var(--sp-4xl);
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(226,107,75,0.15), transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(42,31,25,0.08), transparent 70%);
  border-radius: 50%;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: var(--sp-2xl);
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-content { grid-template-columns: 1.1fr 1fr; gap: var(--sp-3xl); }
}
.hero-tagline {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(226,107,75,0.15);
  color: var(--audix-coral-dark);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--r-pill);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-md);
}
.hero h1 {
  margin-bottom: var(--sp-md);
}
.hero h1 .accent { color: var(--audix-coral); }
.hero p { font-size: 1.2rem; color: var(--n-700); margin-bottom: var(--sp-lg); max-width: 540px; }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-xl);
  margin: var(--sp-xl) 0;
}
.hero-stat .num { font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: var(--audix-blue-deep); display: block; line-height: 1; }
.hero-stat .lbl { font-size: 0.875rem; color: var(--n-700); margin-top: 4px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--sp-sm); }

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--audix-coral) 0%, var(--audix-coral-dark) 100%);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-visual::after {
  content: '👂';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12rem;
  opacity: 0.18;
}
.hero-visual .play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.hero-visual .play-btn span {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--audix-coral);
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: var(--t-base);
}
.hero-visual:hover .play-btn span { transform: scale(1.1); }
.hero-visual .caption {
  position: absolute;
  bottom: var(--sp-lg);
  left: var(--sp-lg);
  right: var(--sp-lg);
  z-index: 2;
  background: rgba(42,31,25,0.85);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: var(--sp-sm) var(--sp-md);
  border-radius: var(--r-md);
  font-size: 0.875rem;
}

/* ---- Section header ---- */
.section-head { text-align: center; max-width: 720px; margin: 0 auto var(--sp-2xl); }
.section-head .eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  /* a11y: var(--audix-coral)=#C84D2D fails AA on the light-coral .eyebrow bg (3.87:1).
     Use the darker variant which gets ~5.16:1 against #f3e9e9. */
  color: var(--audix-coral-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--sp-sm);
}

/* ---- Trust strip ---- */
.trust-strip {
  background: var(--audix-blue-deep);
  color: var(--white);
  padding: var(--sp-2xl) 0;
}
.trust-strip h2 { color: var(--white); text-align: center; font-size: 1.4rem; margin-bottom: var(--sp-xl); }
.trust-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-md); }
@media (min-width: 768px) { .trust-cards { grid-template-columns: repeat(5, 1fr); } }
.trust-card { text-align: center; padding: var(--sp-md); }
.trust-card .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--interton-yellow);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.trust-card .lbl { font-size: 0.85rem; color: rgba(255,255,255,0.85); }

/* ---- Steps ---- */
.steps { display: grid; gap: var(--sp-lg); grid-template-columns: 1fr; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step-card {
  background: var(--white);
  border: 2px solid var(--n-300);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
  position: relative;
  transition: var(--t-base);
}
.step-card:hover { border-color: var(--audix-coral); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--audix-coral);
  color: var(--white);
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-md);
  font-family: var(--font-display);
}
.step-card h3 { color: var(--audix-blue-deep); margin-bottom: var(--sp-xs); font-size: 1.25rem; }
.step-card p { color: var(--n-700); font-size: 0.95rem; margin: 0; }

/* ---- Motivadores ---- */
.motivadores { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-md); }
@media (min-width: 768px) { .motivadores { grid-template-columns: repeat(5, 1fr); } }
.mot-card {
  background: var(--yellow-soft);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  text-align: center;
  transition: var(--t-base);
  cursor: default;
}
.mot-card:hover { background: var(--interton-yellow); transform: translateY(-4px); }
.mot-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--sp-sm);
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.mot-card h4 { font-size: 1rem; margin: 0; line-height: 1.3; }

/* ---- Product cards ---- */
.products { display: grid; grid-template-columns: 1fr; gap: var(--sp-lg); }
@media (min-width: 768px) { .products { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .products { grid-template-columns: repeat(4, 1fr); } }
.product-card {
  background: var(--white);
  border: 1px solid var(--n-300);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--t-base);
  display: flex;
  flex-direction: column;
}
.product-card:hover { border-color: var(--audix-coral); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.product-image {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--audix-blue-light), var(--white));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
}
.product-image .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.badge-tier1 { background: var(--audix-blue-light); color: var(--audix-blue-deep); }
.badge-tier2 { background: var(--yellow-soft); color: #92400E; }
.badge-tier3 { background: var(--audix-coral-light); color: var(--audix-coral-dark); }
.product-body { padding: var(--sp-lg); display: flex; flex-direction: column; flex: 1; }
.product-body h4 { color: var(--audix-blue-deep); margin-bottom: 4px; font-size: 1.2rem; }
.product-body .model { color: var(--n-500); font-size: 0.85rem; margin-bottom: var(--sp-sm); }
.product-body .features { font-size: 0.9rem; color: var(--n-700); margin-bottom: var(--sp-md); list-style: none; }
.product-body .features li { padding-left: 18px; position: relative; margin-bottom: 4px; }
.product-body .features li::before { content: '✓'; position: absolute; left: 0; color: var(--audix-coral); font-weight: 700; }
.product-body .btn { margin-top: auto; }

/* ---- GES Selector ---- */
.ges-paths { display: grid; gap: var(--sp-md); grid-template-columns: 1fr; }
@media (min-width: 768px) { .ges-paths { grid-template-columns: repeat(2, 1fr); } }
.ges-path {
  background: var(--white);
  border: 2px solid var(--n-300);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
  cursor: pointer;
  transition: var(--t-base);
  text-align: left;
}
.ges-path:hover { border-color: var(--audix-coral); background: #FFF9F6; box-shadow: var(--shadow-md); }
.ges-path-num {
  display: inline-block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--audix-blue-light);
  color: var(--audix-blue-deep);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-sm);
  font-family: var(--font-display);
}
.ges-path h4 { color: var(--audix-blue-deep); margin-bottom: var(--sp-xs); font-size: 1.05rem; line-height: 1.4; }
.ges-path .arrow { color: var(--audix-coral); font-weight: 700; font-size: 0.9rem; margin-top: var(--sp-sm); display: inline-block; }

/* ---- Testimonios ---- */
.testimonios { display: grid; gap: var(--sp-md); grid-template-columns: 1fr; }
@media (min-width: 768px) { .testimonios { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .testimonios { grid-template-columns: repeat(4, 1fr); } }
.testi-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--t-base);
  border: 1px solid var(--n-300);
}
.testi-card:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }
.testi-video {
  aspect-ratio: 9 / 12;
  background: linear-gradient(135deg, var(--audix-blue-deep), var(--audix-coral));
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: var(--sp-md);
}
.testi-video::before {
  content: '▶';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--audix-coral);
  font-size: 1rem;
}
.testi-video .testi-info {
  position: relative;
  z-index: 2;
  color: var(--white);
}
.testi-video .name { font-weight: 700; font-size: 0.95rem; }
.testi-video .meta { font-size: 0.8rem; opacity: 0.9; }

/* ---- Maria callout ---- */
.maria-section {
  background: linear-gradient(135deg, var(--audix-blue-deep), var(--audix-blue));
  color: var(--white);
  border-radius: var(--r-xl);
  padding: var(--sp-2xl);
  display: grid;
  gap: var(--sp-xl);
  align-items: center;
}
@media (min-width: 768px) { .maria-section { grid-template-columns: 1fr 1fr; padding: var(--sp-3xl); } }
.maria-section h2 { color: var(--white); margin-bottom: var(--sp-md); }
.maria-section p { color: rgba(255,255,255,0.92); font-size: 1.1rem; }
.maria-visual {
  background: rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
  text-align: center;
  font-size: 4rem;
}

/* ---- Circulo Confianza ---- */
.circulo-banner {
  background: linear-gradient(135deg, var(--audix-coral) 0%, var(--audix-coral-dark) 100%);
  color: var(--white);
  border-radius: var(--r-xl);
  padding: var(--sp-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.circulo-banner::before {
  content: '🤝';
  position: absolute;
  font-size: 12rem;
  opacity: 0.12;
  right: -2rem;
  top: -1rem;
}
.circulo-banner h2 { color: var(--white); margin-bottom: var(--sp-md); position: relative; z-index: 2; }
.circulo-banner p { color: rgba(255,255,255,0.95); font-size: 1.1rem; max-width: 720px; margin: 0 auto var(--sp-lg); position: relative; z-index: 2; }

/* ---- Equipo ---- */
.team-grid { display: grid; gap: var(--sp-lg); grid-template-columns: 1fr 1fr; }
@media (min-width: 768px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }
.team-card {
  background: var(--white);
  border: 1px solid var(--n-300);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-align: center;
  transition: var(--t-base);
}
.team-card:hover { border-color: var(--audix-coral); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-photo {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--audix-blue-light), var(--audix-coral-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.team-info { padding: var(--sp-md); }
.team-info .branch { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--audix-coral); font-weight: 700; margin-bottom: 4px; }
.team-info h4 { color: var(--audix-blue-deep); margin-bottom: 2px; font-size: 1.05rem; }
.team-info .role { font-size: 0.85rem; color: var(--n-500); }

/* ---- Universities ---- */
.unis {
  background: var(--n-100);
  border-radius: var(--r-xl);
  padding: var(--sp-2xl);
  text-align: center;
}
.unis h3 { color: var(--audix-blue-deep); margin-bottom: var(--sp-sm); }
.unis p { color: var(--n-700); margin-bottom: var(--sp-lg); }
.uni-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-md);
}
.uni-logo {
  background: var(--white);
  padding: var(--sp-sm) var(--sp-lg);
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--audix-blue-deep);
  border: 1px solid var(--n-300);
}

/* ---- Sucursales ---- */
.sucursales { display: grid; gap: var(--sp-lg); grid-template-columns: 1fr; }
@media (min-width: 768px) { .sucursales { grid-template-columns: repeat(3, 1fr); } }
.suc-card {
  background: var(--white);
  border: 1px solid var(--n-300);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--t-base);
}
.suc-card:hover { border-color: var(--audix-coral); box-shadow: var(--shadow-md); }
.suc-map {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--audix-blue-light), var(--white));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.suc-body { padding: var(--sp-lg); }
.suc-body h4 { color: var(--audix-blue-deep); margin-bottom: var(--sp-xs); }
.suc-body .addr { color: var(--n-700); font-size: 0.9rem; margin-bottom: var(--sp-sm); }
.suc-body .hours { font-size: 0.85rem; color: var(--n-500); margin-bottom: var(--sp-md); }

/* ---- Blog ---- */
.posts { display: grid; gap: var(--sp-lg); grid-template-columns: 1fr; }
@media (min-width: 768px) { .posts { grid-template-columns: repeat(3, 1fr); } }
.post-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--n-300);
  transition: var(--t-base);
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-img {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--audix-coral-light), var(--yellow-soft));
}
.post-body { padding: var(--sp-lg); }
.post-cat { font-size: 0.75rem; color: var(--audix-coral); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.post-body h4 { color: var(--audix-blue-deep); margin-bottom: var(--sp-xs); font-size: 1.1rem; line-height: 1.35; }
.post-body p { font-size: 0.9rem; color: var(--n-700); margin: 0; }

/* ---- Footer ---- */
.footer {
  background: var(--audix-blue-deep);
  color: var(--white);
  padding: var(--sp-3xl) 0 var(--sp-xl);
  margin-top: var(--sp-3xl);
}
.footer-grid {
  display: grid;
  gap: var(--sp-2xl);
  grid-template-columns: 1fr;
  margin-bottom: var(--sp-2xl);
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer h5 { color: var(--white); font-family: var(--font-display); font-size: 1rem; margin-bottom: var(--sp-md); letter-spacing: 0.02em; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: var(--sp-xs); }
.footer ul a { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.footer ul a:hover { color: var(--interton-yellow); }
.footer-brand { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; color: var(--white); margin-bottom: var(--sp-sm); }
.footer-brand span { color: var(--audix-coral); }

/* Footer logo image — wrapped in light pill so the dark logo is visible on dark footer */
.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.95);
  padding: 10px 16px;
  border-radius: 14px;
  margin-bottom: var(--sp-sm);
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}
.footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
}
.footer-tag { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-bottom: var(--sp-md); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: var(--sp-md);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--sp-md);
}

/* ---- Accessibility ---- */
:focus-visible {
  outline: 3px solid var(--audix-coral);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---- Demo notice ---- */
.demo-banner {
  background: var(--interton-yellow);
  color: var(--audix-blue-deep);
  text-align: center;
  padding: var(--sp-xs) var(--sp-md);
  font-size: 0.85rem;
  font-weight: 600;
}
.demo-banner strong { font-weight: 800; }
