/* ============================================================
   DIMACEN — Sistema de diseño
   Paleta de marca: Azul marino + Verde (del logotipo)
   ============================================================ */

:root{
  /* Marca */
  --navy:        #103a72;
  --navy-700:    #16468a;
  --navy-900:    #0a2748;
  --green:       #7cc243;
  --green-600:   #63a72f;
  --green-700:   #4f8a25;
  --amber:       #ffb020;

  /* Neutros */
  --ink:         #16212f;
  --muted:       #5c6b7d;
  --bg:          #ffffff;
  --bg-soft:     #f2f6fb;
  --bg-navy:     #0c2c57;
  --line:        #e4ebf3;
  --white:       #ffffff;

  /* Tipografía */
  --font-head: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* Radios y sombras */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --shadow-sm: 0 4px 14px rgba(16,58,114,.08);
  --shadow-md: 0 14px 40px rgba(16,58,114,.12);
  --shadow-lg: 0 30px 70px rgba(10,39,72,.20);

  --container: 1200px;
  --nav-h: 84px;
}

/* ---------- Reset ---------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; scroll-padding-top:90px; -webkit-text-size-adjust:100%; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--bg);
  line-height:1.6;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; border:0; background:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family:var(--font-head); font-weight:700; line-height:1.12; margin:0; color:var(--navy-900); letter-spacing:-.02em; }

/* ---------- Utilidades ---------- */
.container{ width:100%; max-width:var(--container); margin-inline:auto; padding-inline:24px; }
.section{ padding:96px 0; position:relative; }
.section--soft{ background:var(--bg-soft); }
.section--navy{ background:var(--bg-navy); color:#dbe6f5; }
.section--navy h2,.section--navy h3{ color:#fff; }
.text-center{ text-align:center; }
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-head); font-weight:600; font-size:.82rem;
  letter-spacing:.14em; text-transform:uppercase; color:var(--green-700);
  margin-bottom:16px;
}
.eyebrow::before{ content:""; width:26px; height:2px; background:var(--green); border-radius:2px; }
.section--navy .eyebrow{ color:var(--green); }
.section-title{ font-size:clamp(1.9rem, 4vw, 3rem); }
.section-lead{ color:var(--muted); font-size:1.06rem; max-width:620px; margin:18px auto 0; }
.section--navy .section-lead{ color:#b7c7de; }
.head{ max-width:720px; margin:0 auto 56px; }

/* ---------- Botones ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-family:var(--font-head); font-weight:600; font-size:.98rem;
  padding:15px 30px; border-radius:100px; cursor:pointer;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space:nowrap;
}
.btn svg{ width:18px; height:18px; }
.btn-primary{ background:var(--green); color:#0c2c1e; box-shadow:0 10px 24px rgba(124,194,67,.35); }
.btn-primary:hover{ background:var(--green-600); transform:translateY(-3px); box-shadow:0 16px 34px rgba(124,194,67,.45); }
.btn-navy{ background:var(--navy); color:#fff; box-shadow:0 10px 24px rgba(16,58,114,.28); }
.btn-navy:hover{ background:var(--navy-700); transform:translateY(-3px); }
.btn-white{ background:#fff; color:var(--navy); box-shadow:var(--shadow-sm); }
.btn-white:hover{ transform:translateY(-3px); box-shadow:var(--shadow-md); }
.btn-outline{ border:1.5px solid rgba(255,255,255,.55); color:#fff; }
.btn-outline:hover{ background:#fff; color:var(--navy); transform:translateY(-3px); }
.btn-ghost{ border:1.5px solid var(--line); color:var(--navy); }
.btn-ghost:hover{ border-color:var(--navy); transform:translateY(-3px); }
.btn-lg{ padding:17px 36px; font-size:1.02rem; }

/* ============================================================
   TOPBAR (barra superior de contacto)
   ============================================================ */
.topbar{
  background:var(--navy-900); color:#cdd9ec; font-size:.86rem;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.topbar .container{ display:flex; align-items:center; justify-content:space-between; height:44px; gap:16px; }
.topbar-info{ display:flex; align-items:center; gap:26px; }
.topbar-info a,.topbar-info span{ display:inline-flex; align-items:center; gap:8px; color:#cdd9ec; transition:color .2s; }
.topbar-info a:hover{ color:#fff; }
.topbar-info svg{ width:15px; height:15px; color:var(--green); flex:none; }
.topbar-social{ display:flex; align-items:center; gap:14px; }
.topbar-admin{ display:inline-flex; align-items:center; gap:6px; background:var(--green); color:#0c2c1e;
  font-family:var(--font-head); font-weight:700; font-size:.76rem; letter-spacing:.02em;
  padding:5px 13px; border-radius:100px; margin-right:6px; cursor:pointer;
  box-shadow:0 4px 12px rgba(124,194,67,.35); transition:background .2s, transform .2s, box-shadow .2s; }
.topbar-admin:hover{ background:#fff; transform:translateY(-1px); box-shadow:0 6px 16px rgba(124,194,67,.45); }
.topbar-admin svg{ width:14px; height:14px; }
.topbar-social a{ color:#9fb2cd; transition:color .2s, transform .2s; }
.topbar-social a:hover{ color:#fff; transform:translateY(-2px); }
.topbar-social svg{ width:16px; height:16px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header{
  position:sticky; top:0; z-index:60;
  background:rgba(255,255,255,.92);
  backdrop-filter:saturate(160%) blur(12px);
  border-bottom:1px solid var(--line);
  transition:box-shadow .3s ease, background .3s ease;
}
.header.scrolled{ box-shadow:var(--shadow-sm); }
.nav{ display:flex; align-items:center; justify-content:space-between; height:var(--nav-h); gap:24px; }
.nav-logo img{ height:38px; width:auto; }
.nav-menu{ display:flex; align-items:center; gap:2px; }
.nav-menu a{
  font-family:var(--font-head); font-weight:500; font-size:.94rem; color:var(--ink);
  padding:10px 13px; border-radius:100px; position:relative; white-space:nowrap;
  transition:color .2s, background .2s;
}
.nav-menu a:hover{ color:var(--navy); background:var(--bg-soft); }
.nav-menu a.active{ color:var(--navy); }
.nav-menu a.active::after{
  content:""; position:absolute; left:16px; right:16px; bottom:4px; height:2px;
  background:var(--green); border-radius:2px;
}
.nav-cta{ display:flex; align-items:center; gap:12px; }
.nav-toggle{ display:none; width:46px; height:46px; border-radius:12px; border:1px solid var(--line); color:var(--navy); }
.nav-toggle svg{ width:24px; height:24px; }
/* Cambia a menú hamburguesa cuando no hay espacio cómodo para el menú completo */
@media (max-width:1040px){
  .nav-menu{ display:none; }
  .nav-cta .btn{ display:none; }
  .nav-toggle{ display:grid; place-items:center; }
}

/* Menú móvil */
.mobile-menu{
  position:fixed; inset:0 0 0 auto; width:min(86vw,360px); background:#fff; z-index:80;
  transform:translateX(100%); transition:transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow:var(--shadow-lg); padding:26px; display:flex; flex-direction:column;
}
.mobile-menu.open{ transform:translateX(0); }
.mobile-menu-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:24px; }
.mobile-menu-head img{ height:34px; }
.mobile-close{ width:44px; height:44px; border-radius:12px; border:1px solid var(--line); color:var(--navy); font-size:1.4rem; }
.mobile-menu nav a{
  display:block; font-family:var(--font-head); font-weight:600; font-size:1.15rem;
  padding:16px 4px; border-bottom:1px solid var(--line); color:var(--navy-900);
}
.mobile-menu .btn{ margin-top:24px; }
.overlay{ position:fixed; inset:0; background:rgba(10,39,72,.5); z-index:70; opacity:0; visibility:hidden; transition:.3s; }
.overlay.show{ opacity:1; visibility:visible; }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero{ position:relative; height:calc(100vh - var(--nav-h) - 44px); min-height:600px; max-height:900px; overflow:hidden; background:var(--navy-900); }
.slide{
  position:absolute; inset:0; opacity:0; visibility:hidden;
  transition:opacity 1.1s ease, visibility 1.1s ease;
}
.slide.active{ opacity:1; visibility:visible; }
.slide-bg{ position:absolute; inset:0; background-size:cover; background-position:center; transform:scale(1.08); }
.slide.active .slide-bg{ animation:kenburns 8s ease-out forwards; }
@keyframes kenburns{ from{ transform:scale(1.08); } to{ transform:scale(1.18); } }
.slide::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(105deg, rgba(8,30,60,.86) 0%, rgba(8,30,60,.62) 42%, rgba(8,30,60,.20) 100%);
}
.hero-content{ position:relative; z-index:3; height:100%; display:flex; align-items:center; }
.slide-text{ max-width:660px; color:#fff; }
.slide-tag{
  display:inline-flex; align-items:center; gap:8px; font-family:var(--font-head); font-weight:600;
  font-size:.8rem; letter-spacing:.16em; text-transform:uppercase; color:#eafbe0;
  background:rgba(124,194,67,.22); border:1px solid rgba(124,194,67,.5);
  padding:8px 16px; border-radius:100px; margin-bottom:22px;
}
.slide-hook{ font-size:clamp(2.3rem, 6vw, 4.4rem); color:#fff; line-height:1.02; letter-spacing:-.03em; }
.slide-hook b{ color:var(--green); font-weight:800; }
.slide-desc{ font-size:clamp(1.05rem,2vw,1.3rem); color:#d6e2f2; margin:22px 0 34px; max-width:540px; }
.slide-actions{ display:flex; flex-wrap:wrap; gap:14px; }

/* Animación de entrada del texto */
.slide.active .anim{ animation:heroIn .9s cubic-bezier(.2,.7,.2,1) both; }
.slide.active .anim-1{ animation-delay:.15s; }
.slide.active .anim-2{ animation-delay:.32s; }
.slide.active .anim-3{ animation-delay:.48s; }
.slide.active .anim-4{ animation-delay:.62s; }
@keyframes heroIn{ from{ opacity:0; transform:translateY(34px); } to{ opacity:1; transform:translateY(0); } }

/* Controles */
.hero-controls{ position:absolute; z-index:5; bottom:34px; left:0; right:0; }
.hero-controls .container{ display:flex; align-items:center; justify-content:space-between; gap:20px; }
.hero-dots{ display:flex; gap:14px; }
.hero-dot{ position:relative; width:54px; height:4px; border-radius:4px; background:rgba(255,255,255,.28); overflow:hidden; }
.hero-dot span{ position:absolute; inset:0; width:0; background:var(--green); border-radius:4px; }
.hero-dot.active span{ animation:dotFill 7s linear forwards; }
@keyframes dotFill{ from{ width:0; } to{ width:100%; } }
.hero-arrows{ display:flex; gap:10px; }
.hero-arrow{
  width:52px; height:52px; border-radius:50%; border:1px solid rgba(255,255,255,.35);
  color:#fff; display:grid; place-items:center; transition:background .25s, transform .25s, color .25s;
  backdrop-filter:blur(4px);
}
.hero-arrow:hover{ background:#fff; color:var(--navy); transform:scale(1.06); }
.hero-arrow svg{ width:22px; height:22px; }

/* ============================================================
   STATS / CONTADORES
   ============================================================ */
.stats{ position:relative; margin-top:-60px; z-index:20; }
.stats-grid{
  background:#fff; border-radius:var(--r-lg); box-shadow:var(--shadow-md);
  display:grid; grid-template-columns:repeat(4,1fr); overflow:hidden;
}
.stat{ padding:34px 26px; text-align:center; border-right:1px solid var(--line); }
.stat:last-child{ border-right:0; }
.stat-num{ font-family:var(--font-head); font-weight:800; font-size:2.6rem; color:var(--navy); line-height:1; }
.stat-num b{ color:var(--green); }
.stat-label{ color:var(--muted); font-size:.95rem; margin-top:8px; }

/* ============================================================
   ABOUT / NOSOTROS
   ============================================================ */
.about-grid{ display:grid; grid-template-columns:1.05fr 1fr; gap:64px; align-items:center; }
.about-media{ position:relative; }
.about-media img{ border-radius:var(--r-lg); box-shadow:var(--shadow-md); width:100%; height:520px; object-fit:cover; }
.about-badge{
  position:absolute; left:-26px; bottom:-26px; background:var(--navy); color:#fff;
  border-radius:var(--r-md); padding:24px 28px; box-shadow:var(--shadow-lg); text-align:center;
}
.about-badge .y{ font-family:var(--font-head); font-weight:800; font-size:2.4rem; line-height:1; color:var(--green); }
.about-badge .t{ font-size:.86rem; color:#cdd9ec; margin-top:4px; max-width:120px; }
.about-media .dots{ position:absolute; right:-18px; top:-18px; width:120px; height:120px;
  background-image:radial-gradient(var(--green) 2px, transparent 2px); background-size:16px 16px; opacity:.35; z-index:-1; }
.about-text h2{ font-size:clamp(1.9rem,3.5vw,2.7rem); }
.about-text p{ color:var(--muted); margin:18px 0; font-size:1.05rem; }
.about-values{ display:grid; grid-template-columns:1fr 1fr; gap:18px; margin:28px 0 32px; }
.about-value{ display:flex; gap:14px; align-items:flex-start; }
.about-value .ic{ width:46px; height:46px; border-radius:12px; background:rgba(124,194,67,.14); color:var(--green-700); display:grid; place-items:center; flex:none; }
.about-value .ic svg{ width:24px; height:24px; }
.about-value h4{ font-size:1.02rem; margin-bottom:3px; }
.about-value p{ margin:0; font-size:.92rem; }
.about-quote{ border-left:3px solid var(--green); padding-left:18px; font-style:italic; color:var(--ink); margin:26px 0; }
.about-quote cite{ display:block; margin-top:8px; font-style:normal; font-weight:600; color:var(--navy); font-size:.9rem; }
.about-quote cite span{ display:block; color:var(--muted); font-weight:400; }

/* ============================================================
   PROCESO DE VENTA
   ============================================================ */
.process-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:26px; position:relative; }
.process-line{ position:absolute; top:46px; left:12%; right:12%; height:2px;
  background:repeating-linear-gradient(90deg, var(--green) 0 10px, transparent 10px 20px); opacity:.5; z-index:0; }
.step{ position:relative; z-index:1; text-align:center; padding:8px; }
.step-ic{
  width:92px; height:92px; margin:0 auto 22px; border-radius:26px; background:#fff;
  box-shadow:var(--shadow-sm); display:grid; place-items:center; color:var(--navy);
  border:1px solid var(--line); transition:transform .3s, box-shadow .3s;
}
.step:hover .step-ic{ transform:translateY(-6px); box-shadow:var(--shadow-md); }
.step-ic svg{ width:40px; height:40px; }
.step-num{
  position:absolute; top:-6px; left:calc(50% + 26px); width:32px; height:32px; border-radius:50%;
  background:var(--green); color:#0c2c1e; font-family:var(--font-head); font-weight:700;
  display:grid; place-items:center; font-size:.95rem; box-shadow:0 6px 14px rgba(124,194,67,.4);
}
.step h4{ font-size:1.12rem; margin-bottom:8px; }
.step p{ color:var(--muted); font-size:.95rem; margin:0; }

/* ============================================================
   DEPARTAMENTOS / PRODUCTOS
   ============================================================ */
.dept-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.dept-grid .dept:first-child{ grid-column:span 1; }
.dept{
  position:relative; border-radius:var(--r-md); overflow:hidden; min-height:270px;
  box-shadow:var(--shadow-sm); display:flex; align-items:flex-end; isolation:isolate;
}
.dept img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:-2; transition:transform .6s ease; }
.dept::after{ content:""; position:absolute; inset:0; z-index:-1;
  background:linear-gradient(to top, rgba(8,26,52,.9) 8%, rgba(8,26,52,.35) 55%, rgba(8,26,52,.1) 100%); }
.dept:hover img{ transform:scale(1.08); }
.dept-body{ padding:26px; color:#fff; }
.dept-body h4{ color:#fff; font-size:1.25rem; }
.dept-body p{ color:#d3e0f1; font-size:.92rem; margin:6px 0 0; opacity:0; max-height:0; transition:.35s; }
.dept:hover .dept-body p{ opacity:1; max-height:60px; }
.dept-tag{ position:absolute; top:16px; left:16px; z-index:1; background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.3); backdrop-filter:blur(4px); color:#fff;
  font-size:.72rem; font-weight:600; letter-spacing:.08em; text-transform:uppercase; padding:6px 12px; border-radius:100px; }
.dept-big{ grid-column:span 2; grid-row:span 2; min-height:100%; }

/* ============================================================
   MARCAS
   ============================================================ */
.brands{ padding:56px 0; border-block:1px solid var(--line); background:#fff; }
.brands-head{ text-align:center; margin-bottom:32px; color:var(--muted); font-family:var(--font-head); font-weight:600; letter-spacing:.06em; text-transform:uppercase; font-size:.85rem; }
.marquee{ overflow:hidden; -webkit-mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); }
.marquee-track{ display:flex; gap:60px; width:max-content; animation:marquee 48s linear infinite; }
.marquee:hover .marquee-track{ animation-play-state:paused; }
@keyframes marquee{ to{ transform:translateX(-50%); } }
.brand-chip{ font-family:var(--font-head); font-weight:700; font-size:1.5rem; color:#a9b7c8; letter-spacing:-.01em; transition:color .3s; white-space:nowrap; }
.brand-chip:hover{ color:var(--navy); }

/* ============================================================
   EQUIPO
   ============================================================ */
.team-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:26px; }
.member{ text-align:center; }
.member-photo{ position:relative; border-radius:var(--r-md); overflow:hidden; box-shadow:var(--shadow-sm); aspect-ratio:1/1; margin-bottom:18px; }
.member-photo img{ width:100%; height:100%; object-fit:cover; transition:transform .5s; filter:saturate(1.02); }
.member:hover .member-photo img{ transform:scale(1.06); }
.member-photo::after{ content:""; position:absolute; inset:0; background:linear-gradient(to top, rgba(12,44,87,.55), transparent 45%); opacity:0; transition:.35s; }
.member:hover .member-photo::after{ opacity:1; }
.member-role-badge{ position:absolute; bottom:14px; left:50%; transform:translate(-50%,10px); z-index:2;
  background:var(--green); color:#0c2c1e; font-family:var(--font-head); font-weight:600; font-size:.78rem;
  padding:6px 14px; border-radius:100px; opacity:0; transition:.35s; white-space:nowrap; box-shadow:var(--shadow-sm); }
.member:hover .member-role-badge{ opacity:1; transform:translate(-50%,0); }
.member h4{ font-size:1.12rem; }
.member span{ color:var(--muted); font-size:.92rem; }
.team-note{ text-align:center; margin-top:44px; color:var(--muted); max-width:620px; margin-inline:auto; }

/* ============================================================
   TESTIMONIOS
   ============================================================ */
.tst-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.tst{ background:#fff; border-radius:var(--r-md); padding:34px; box-shadow:var(--shadow-sm); border:1px solid var(--line);
  position:relative; transition:transform .3s, box-shadow .3s; }
.tst:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }
.tst .quote-mark{ font-family:var(--font-head); font-size:4rem; line-height:.6; color:var(--green); opacity:.28; height:34px; }
.tst-stars{ display:flex; gap:3px; color:var(--amber); margin-bottom:14px; }
.tst-stars svg{ width:18px; height:18px; }
.tst p{ color:var(--ink); font-size:1.02rem; margin:0 0 22px; }
.tst-author{ display:flex; align-items:center; gap:14px; }
.tst-avatar{ width:50px; height:50px; border-radius:50%; background:var(--navy); color:#fff; display:grid; place-items:center;
  font-family:var(--font-head); font-weight:700; font-size:1.15rem; flex:none; }
.tst-author b{ display:block; color:var(--navy-900); font-weight:600; }
.tst-author span{ color:var(--muted); font-size:.86rem; }

/* ============================================================
   UBICACIÓN
   ============================================================ */
.loc-grid{ display:grid; grid-template-columns:1fr 1.1fr; gap:0; border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--shadow-md); background:#fff; }
.loc-info{ padding:52px; }
.loc-info h2{ font-size:clamp(1.7rem,3vw,2.3rem); }
.loc-info .lead{ color:var(--muted); margin:16px 0 30px; }
.loc-list{ display:flex; flex-direction:column; gap:22px; margin-bottom:32px; }
.loc-item{ display:flex; gap:16px; align-items:flex-start; }
.loc-item .ic{ width:50px; height:50px; border-radius:14px; background:rgba(16,58,114,.08); color:var(--navy); display:grid; place-items:center; flex:none; }
.loc-item .ic svg{ width:24px; height:24px; }
.loc-item h4{ font-size:1.02rem; margin-bottom:3px; }
.loc-item p,.loc-item a{ color:var(--muted); font-size:.98rem; margin:0; }
.loc-item a:hover{ color:var(--navy); }
.loc-map{ min-height:480px; }
.loc-map iframe{ width:100%; height:100%; border:0; display:block; filter:grayscale(.2) contrast(1.05); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band{ position:relative; overflow:hidden; background:linear-gradient(120deg,var(--navy) 0%, var(--navy-900) 100%); color:#fff; }
.cta-band::before{ content:""; position:absolute; right:-80px; top:-80px; width:360px; height:360px; border-radius:50%;
  background:radial-gradient(circle, rgba(124,194,67,.3), transparent 70%); }
.cta-inner{ display:flex; align-items:center; justify-content:space-between; gap:40px; flex-wrap:wrap; padding:64px 0; position:relative; z-index:1; }
.cta-inner h2{ color:#fff; font-size:clamp(1.8rem,3.4vw,2.6rem); max-width:640px; }
.cta-inner p{ color:#c3d2e8; margin-top:12px; max-width:520px; }
.cta-actions{ display:flex; gap:14px; flex-wrap:wrap; }

/* ============================================================
   CONTACTO (formulario)
   ============================================================ */
.contact-grid{ display:grid; grid-template-columns:1fr 1.15fr; gap:56px; align-items:start; }
.contact-side .eyebrow{ margin-bottom:14px; }
.contact-side h2{ font-size:clamp(1.8rem,3.2vw,2.5rem); }
.contact-side p{ color:var(--muted); margin:16px 0 28px; }
.contact-cards{ display:flex; flex-direction:column; gap:16px; }
.ccard{ display:flex; gap:16px; align-items:center; padding:20px 22px; border:1px solid var(--line); border-radius:var(--r-md);
  transition:border-color .25s, transform .25s, box-shadow .25s; background:#fff; }
.ccard:hover{ border-color:var(--green); transform:translateX(4px); box-shadow:var(--shadow-sm); }
.ccard .ic{ width:52px; height:52px; border-radius:14px; display:grid; place-items:center; flex:none; color:#fff; }
.ccard .ic.wa{ background:#25d366; } .ccard .ic.ph{ background:var(--navy); } .ccard .ic.ml{ background:var(--green-600); } .ccard .ic.pin{ background:var(--amber); color:#5a3d00; }
.ccard .ic svg{ width:24px; height:24px; }
.ccard b{ display:block; color:var(--navy-900); font-family:var(--font-head); }
.ccard span{ color:var(--muted); font-size:.94rem; }
.form-card{ background:#fff; border-radius:var(--r-lg); padding:40px; box-shadow:var(--shadow-md); border:1px solid var(--line); }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field{ margin-bottom:18px; }
.field label{ display:block; font-family:var(--font-head); font-weight:500; font-size:.9rem; color:var(--navy-900); margin-bottom:8px; }
.field input,.field textarea,.field select{
  width:100%; padding:14px 16px; border:1.5px solid var(--line); border-radius:12px; font-family:inherit; font-size:.98rem;
  color:var(--ink); background:var(--bg-soft); transition:border-color .2s, background .2s, box-shadow .2s;
}
.field input:focus,.field textarea:focus,.field select:focus{ outline:0; border-color:var(--green); background:#fff; box-shadow:0 0 0 4px rgba(124,194,67,.14); }
.field textarea{ resize:vertical; min-height:130px; }
.form-note{ font-size:.82rem; color:var(--muted); margin-top:6px; }

/* ============================================================
   PÁGINAS INTERNAS — PAGE HERO
   ============================================================ */
.page-hero{ position:relative; padding:88px 0 76px; background:linear-gradient(120deg,var(--navy) 0%, var(--navy-900) 100%); color:#fff; overflow:hidden; }
.page-hero::before{ content:""; position:absolute; inset:0; background-image:radial-gradient(rgba(255,255,255,.06) 1.5px, transparent 1.5px); background-size:26px 26px; }
.page-hero::after{ content:""; position:absolute; right:-100px; bottom:-140px; width:420px; height:420px; border-radius:50%;
  background:radial-gradient(circle, rgba(124,194,67,.28), transparent 70%); }
.page-hero .container{ position:relative; z-index:1; }
.page-hero h1{ color:#fff; font-size:clamp(2.2rem,5vw,3.4rem); }
.page-hero p{ color:#c3d2e8; max-width:600px; margin-top:16px; font-size:1.1rem; }
.crumbs{ display:flex; gap:8px; align-items:center; font-size:.9rem; color:#9fb2cd; margin-bottom:18px; }
.crumbs a:hover{ color:#fff; } .crumbs svg{ width:14px; height:14px; }

/* Hero dividido con obrero recortado */
.hero-split{ padding-bottom:0; }
.hero-split .container{ display:grid; grid-template-columns:1.15fr .85fr; gap:30px; align-items:center; }
.hero-split-text{ padding:20px 0 84px; }
.hero-split-media{ position:relative; align-self:end; text-align:center; min-height:1px; }
.hero-split-media img{ max-height:480px; width:auto; margin:0 auto; display:block; position:relative; z-index:1; filter:drop-shadow(0 24px 40px rgba(0,0,0,.45)); }
.hero-split-media::before{ content:""; position:absolute; left:50%; bottom:40px; transform:translateX(-50%); width:380px; height:380px; border-radius:50%; background:radial-gradient(circle, rgba(124,194,67,.4), transparent 68%); z-index:0; }
.hero-split-badge{ position:absolute; z-index:2; background:#fff; color:var(--navy-900); border-radius:16px; padding:14px 18px; box-shadow:var(--shadow-lg); display:flex; align-items:center; gap:12px; font-family:var(--font-head); }
.hero-split-badge svg{ width:34px; height:34px; color:#25d366; flex:none; }
.hero-split-badge b{ display:block; font-size:1.05rem; line-height:1.1; }
.hero-split-badge span{ font-size:.8rem; color:var(--muted); font-family:var(--font-body); }
.hero-split-badge.b1{ left:-10px; top:38%; }
.hero-split-badge.b2{ right:-6px; bottom:120px; }
@media (max-width:860px){
  .hero-split .container{ grid-template-columns:1fr; }
  .hero-split-media{ display:none; }
  .hero-split-text{ padding-bottom:20px; }
}

/* ============================================================
   MAESTROS ONLINE
   ============================================================ */
.maestros-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.mcard{ background:#fff; border:1px solid var(--line); border-radius:var(--r-md); padding:34px; text-align:center; transition:transform .3s, box-shadow .3s, border-color .3s; }
.mcard:hover{ transform:translateY(-8px); box-shadow:var(--shadow-md); border-color:transparent; }
.mcard .ic{ width:74px; height:74px; margin:0 auto 20px; border-radius:20px; display:grid; place-items:center;
  background:linear-gradient(135deg,var(--navy),var(--navy-700)); color:#fff; }
.mcard .ic svg{ width:36px; height:36px; }
.mcard h3{ font-size:1.2rem; margin-bottom:10px; }
.mcard p{ color:var(--muted); font-size:.96rem; margin:0; }
.maestros-cta{ margin-top:56px; background:linear-gradient(120deg,var(--green-600),var(--green-700)); border-radius:var(--r-lg); padding:52px; text-align:center; color:#fff; position:relative; overflow:hidden; }
.maestros-cta h2{ color:#fff; } .maestros-cta p{ color:#e8f6dc; max-width:560px; margin:14px auto 26px; }
.steps-inline{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; margin-top:30px; }
.step-pill{ background:rgba(255,255,255,.14); border:1px solid rgba(255,255,255,.28); border-radius:100px; padding:10px 20px; font-family:var(--font-head); font-weight:600; font-size:.92rem; }

/* ============================================================
   BLOG / TIPS
   ============================================================ */
.blog-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.post{ background:#fff; border:1px solid var(--line); border-radius:var(--r-md); overflow:hidden; transition:transform .3s, box-shadow .3s; display:flex; flex-direction:column; }
.post:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }
.post-img{ aspect-ratio:16/10; overflow:hidden; position:relative; }
.post-img img{ width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.post:hover .post-img img{ transform:scale(1.07); }
.post-cat{ position:absolute; top:14px; left:14px; background:var(--green); color:#0c2c1e; font-family:var(--font-head); font-weight:600; font-size:.74rem; padding:6px 12px; border-radius:100px; }
.post-body{ padding:26px; display:flex; flex-direction:column; flex:1; }
.post-meta{ display:flex; gap:14px; color:var(--muted); font-size:.82rem; margin-bottom:12px; }
.post-meta span{ display:inline-flex; align-items:center; gap:6px; } .post-meta svg{ width:14px; height:14px; }
.post h3{ font-size:1.18rem; margin-bottom:10px; }
.post p{ color:var(--muted); font-size:.95rem; margin:0 0 18px; flex:1; }
.post-link{ font-family:var(--font-head); font-weight:600; color:var(--navy); display:inline-flex; align-items:center; gap:8px; font-size:.92rem; }
.post-link svg{ width:16px; height:16px; transition:transform .25s; } .post:hover .post-link svg{ transform:translateX(4px); }

/* ============================================================
   OFERTAS
   ============================================================ */
.offer-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.offer{ background:#fff; border:1px solid var(--line); border-radius:var(--r-md); overflow:hidden; position:relative; transition:transform .3s, box-shadow .3s; }
.offer:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }
.offer-badge{ position:absolute; top:16px; right:16px; z-index:2; background:var(--amber); color:#5a3d00; font-family:var(--font-head); font-weight:800; font-size:1rem; width:64px; height:64px; border-radius:50%; display:grid; place-items:center; box-shadow:var(--shadow-sm); transform:rotate(8deg); }
.offer-img{ aspect-ratio:4/3; overflow:hidden; background:var(--bg-soft); }
.offer-img img{ width:100%; height:100%; object-fit:cover; transition:transform .5s; } .offer:hover .offer-img img{ transform:scale(1.06); }
.offer-body{ padding:24px; }
.offer-body .cat{ color:var(--green-700); font-family:var(--font-head); font-weight:600; font-size:.8rem; text-transform:uppercase; letter-spacing:.06em; }
.offer-body h3{ font-size:1.2rem; margin:8px 0 12px; }
.offer-price{ display:flex; align-items:baseline; gap:12px; margin-bottom:18px; }
.offer-price .now{ font-family:var(--font-head); font-weight:800; font-size:1.7rem; color:var(--navy); }
.offer-price .was{ color:var(--muted); text-decoration:line-through; font-size:1rem; }
.offer-banner{ background:linear-gradient(120deg,var(--amber),#ff8a00); border-radius:var(--r-lg); padding:20px 34px; display:flex; align-items:center; justify-content:center; gap:14px; text-align:center; color:#4a2f00; font-family:var(--font-head); font-weight:600; margin-bottom:44px; flex-wrap:wrap; }
.offer-banner svg{ width:26px; height:26px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer{ background:var(--navy-900); color:#a9bcd6; padding:72px 0 0; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:44px; padding-bottom:52px; }
.footer-logo{ height:40px; margin-bottom:20px; filter:brightness(0) invert(1); }
.footer-about p{ font-size:.95rem; line-height:1.7; margin:0 0 22px; }
.footer-social{ display:flex; gap:12px; }
.footer-social a{ width:42px; height:42px; border-radius:12px; background:rgba(255,255,255,.08); display:grid; place-items:center; color:#cdd9ec; transition:background .25s, transform .25s; }
.footer-social a:hover{ background:var(--green); color:#0c2c1e; transform:translateY(-3px); }
.footer-social svg{ width:19px; height:19px; }
.footer h4{ color:#fff; font-size:1.05rem; margin-bottom:22px; }
.footer-links a{ display:block; padding:7px 0; color:#a9bcd6; font-size:.95rem; transition:color .2s, padding .2s; }
.footer-links a:hover{ color:#fff; padding-left:6px; }
.footer-contact li{ display:flex; gap:12px; margin-bottom:16px; font-size:.95rem; align-items:flex-start; }
.footer-contact svg{ width:18px; height:18px; color:var(--green); flex:none; margin-top:2px; }
.footer-hours{ background:rgba(255,255,255,.05); border-radius:var(--r-md); padding:18px 20px; margin-top:6px; font-size:.9rem; }
.footer-hours b{ color:#fff; display:block; margin-bottom:6px; font-family:var(--font-head); }
.footer-bottom{ border-top:1px solid rgba(255,255,255,.08); padding:22px 0; display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; font-size:.86rem; }
.footer-bottom a:hover{ color:#fff; }

/* ============================================================
   WHATSAPP FLOTANTE
   ============================================================ */
.wa-float{ position:fixed; right:22px; bottom:22px; z-index:90; width:62px; height:62px; border-radius:50%;
  background:#25d366; color:#fff; display:grid; place-items:center; box-shadow:0 12px 30px rgba(37,211,102,.5);
  transition:transform .25s; }
.wa-float:hover{ transform:scale(1.08); }
.wa-float svg{ width:34px; height:34px; }
.wa-float::before{ content:""; position:absolute; inset:0; border-radius:50%; background:#25d366; z-index:-1; animation:waPulse 2.4s ease-out infinite; }
@keyframes waPulse{ 0%{ transform:scale(1); opacity:.6; } 100%{ transform:scale(1.9); opacity:0; } }
.wa-tip{ position:absolute; right:74px; top:50%; transform:translateY(-50%); background:#fff; color:var(--navy-900);
  font-family:var(--font-head); font-weight:600; font-size:.86rem; padding:9px 16px; border-radius:100px; box-shadow:var(--shadow-md);
  white-space:nowrap; opacity:0; visibility:hidden; transition:.25s; }
.wa-float:hover .wa-tip{ opacity:1; visibility:visible; right:78px; }

/* ============================================================
   POPUP / MODAL DE CONFIRMACIÓN
   ============================================================ */
.modal-overlay{
  position:fixed; inset:0; z-index:120; display:flex; align-items:center; justify-content:center; padding:24px;
  background:rgba(10,39,72,.55); backdrop-filter:blur(5px);
  opacity:0; visibility:hidden; transition:opacity .3s ease, visibility .3s ease;
}
.modal-overlay.open{ opacity:1; visibility:visible; }
.modal{
  background:#fff; border-radius:var(--r-lg); max-width:470px; width:100%; padding:46px 40px 40px;
  text-align:center; box-shadow:var(--shadow-lg); position:relative;
  transform:translateY(24px) scale(.95); transition:transform .38s cubic-bezier(.2,.8,.2,1);
}
.modal-overlay.open .modal{ transform:none; }
.modal-close{
  position:absolute; top:14px; right:14px; width:40px; height:40px; border-radius:10px;
  color:var(--muted); font-size:1.6rem; line-height:1; display:grid; place-items:center; transition:.2s;
}
.modal-close:hover{ background:var(--bg-soft); color:var(--navy); }
.modal-icon{
  width:92px; height:92px; border-radius:50%; margin:0 auto 24px; display:grid; place-items:center;
  background:rgba(124,194,67,.15); color:var(--green-600); position:relative;
}
.modal-icon svg{ width:46px; height:46px; }
.modal-icon::before{
  content:""; position:absolute; inset:-9px; border-radius:50%; border:2px solid rgba(124,194,67,.35);
  animation:ringPulse 2s ease-out infinite;
}
@keyframes ringPulse{ 0%{ transform:scale(1); opacity:.7; } 100%{ transform:scale(1.18); opacity:0; } }
.modal.is-error .modal-icon{ background:rgba(224,59,59,.12); color:#e03b3b; }
.modal.is-error .modal-icon::before{ border-color:rgba(224,59,59,.35); }
.modal h3{ font-size:1.55rem; margin-bottom:12px; }
.modal > p{ color:var(--muted); margin:0 0 24px; font-size:1.02rem; }
.modal-note{
  display:flex; align-items:flex-start; gap:12px; text-align:left;
  background:var(--bg-soft); border:1px solid var(--line); border-radius:var(--r-md);
  padding:16px 18px; margin-bottom:28px; font-size:.94rem; color:var(--ink); line-height:1.5;
}
.modal-note svg{ width:22px; height:22px; color:var(--navy); flex:none; margin-top:1px; }
.modal .btn{ width:100%; }

/* ============================================================
   ANIMACIONES DE SCROLL (reveal)
   ============================================================ */
.reveal{ opacity:0; transform:translateY(40px); transition:opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in{ opacity:1; transform:none; }
.reveal[data-delay="1"]{ transition-delay:.1s; } .reveal[data-delay="2"]{ transition-delay:.2s; }
.reveal[data-delay="3"]{ transition-delay:.3s; } .reveal[data-delay="4"]{ transition-delay:.4s; }
@media (prefers-reduced-motion:reduce){ .reveal{ opacity:1; transform:none; transition:none; } .slide-bg,.slide.active .anim{ animation:none !important; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1024px){
  .about-grid{ grid-template-columns:1fr; gap:40px; }
  .about-media img{ height:420px; }
  .process-grid{ grid-template-columns:1fr 1fr; gap:40px 26px; } .process-line{ display:none; } .step-num{ left:calc(50% + 24px); }
  .team-grid{ grid-template-columns:1fr 1fr; }
  .tst-grid,.dept-grid,.maestros-grid,.blog-grid,.offer-grid{ grid-template-columns:1fr 1fr; }
  .dept-big{ grid-column:span 2; grid-row:auto; }
  .loc-grid,.contact-grid{ grid-template-columns:1fr; }
  .loc-map{ min-height:360px; }
  .stats-grid{ grid-template-columns:1fr 1fr; } .stat:nth-child(2){ border-right:0; } .stat:nth-child(1),.stat:nth-child(2){ border-bottom:1px solid var(--line); }
  .footer-grid{ grid-template-columns:1fr 1fr; gap:36px; }
}
@media (max-width:760px){
  .section{ padding:68px 0; }
  .topbar-info span.hide-sm, .topbar-info a.hide-sm{ display:none; }
  .nav-menu, .nav-cta .btn{ display:none; }
  .nav-toggle{ display:grid; place-items:center; }
  .hero{ height:auto; min-height:88vh; }
  .stats{ margin-top:-40px; } .stats-grid{ grid-template-columns:1fr 1fr; }
  .about-values{ grid-template-columns:1fr; }
  .process-grid{ grid-template-columns:1fr; } .step-num{ left:calc(50% + 26px); }
  .team-grid,.tst-grid,.dept-grid,.maestros-grid,.blog-grid,.offer-grid{ grid-template-columns:1fr; }
  .dept-big{ grid-column:auto; }
  .loc-info,.form-card{ padding:30px; }
  .cta-inner{ padding:48px 0; flex-direction:column; align-items:flex-start; }
  .form-row{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; gap:32px; }
  .footer-bottom{ justify-content:center; text-align:center; }
  .about-badge{ left:0; }
}

/* ============================================================
   MAESTROS ONLINE — Red de maestros (registro + catálogo)
   ============================================================ */

/* Bloques informativos / hooks */
.info-strip{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:8px; }
.info-item{ display:flex; gap:14px; align-items:flex-start; }
.info-item .ic{ width:48px; height:48px; border-radius:12px; background:rgba(124,194,67,.14); color:var(--green-700); display:grid; place-items:center; flex:none; }
.info-item .ic svg{ width:24px; height:24px; }
.info-item h4{ font-size:1.02rem; margin-bottom:3px; }
.info-item p{ margin:0; color:var(--muted); font-size:.92rem; }

/* Especialidades (checkbox chips) */
.check-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.check-chip{ position:relative; display:flex; align-items:center; gap:10px; padding:12px 14px; border:1.5px solid var(--line);
  border-radius:12px; cursor:pointer; transition:border-color .2s, background .2s; font-size:.92rem; color:var(--ink); user-select:none; }
.check-chip:hover{ border-color:var(--green); }
.check-chip input{ position:absolute; opacity:0; width:0; height:0; }
.check-chip .box{ width:20px; height:20px; border-radius:6px; border:2px solid #cdd8e6; display:grid; place-items:center; flex:none; transition:.2s; background:#fff; }
.check-chip .box svg{ width:13px; height:13px; color:#fff; opacity:0; transition:opacity .15s; }
.check-chip input:checked ~ .box{ background:var(--green); border-color:var(--green); }
.check-chip input:checked ~ .box svg{ opacity:1; }
.check-chip:has(input:checked){ border-color:var(--green); background:rgba(124,194,67,.09); }
.check-chip input:focus-visible ~ .box{ box-shadow:0 0 0 3px rgba(124,194,67,.3); }

/* Subida de foto */
.file-drop{ display:flex; align-items:center; gap:16px; padding:16px 18px; border:1.6px dashed #c4d2e4; border-radius:12px;
  cursor:pointer; transition:border-color .2s, background .2s; background:var(--bg-soft); }
.file-drop:hover{ border-color:var(--green); background:#fff; }
.file-drop input{ display:none; }
.file-drop .fic{ width:52px; height:52px; border-radius:12px; background:#fff; border:1px solid var(--line); display:grid; place-items:center; color:var(--navy); flex:none; overflow:hidden; }
.file-drop .fic svg{ width:24px; height:24px; }
.file-drop .fic img{ width:100%; height:100%; object-fit:cover; }
.file-drop .ftxt b{ display:block; font-family:var(--font-head); font-size:.95rem; color:var(--navy-900); }
.file-drop .ftxt span{ font-size:.82rem; color:var(--muted); }

/* Disclaimer catálogo */
.disclaimer{ display:flex; gap:14px; background:#fff6e6; border:1px solid #ffe0a3; border-radius:var(--r-md);
  padding:18px 22px; margin-bottom:36px; color:#7a5a10; font-size:.93rem; line-height:1.55; }
.disclaimer svg{ width:24px; height:24px; color:#e6a010; flex:none; margin-top:1px; }
.disclaimer b{ color:#5c440c; }

/* Filtro de especialidades */
.filter-bar{ display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-bottom:40px; }
.filter-chip{ padding:9px 18px; border:1.5px solid var(--line); border-radius:100px; font-family:var(--font-head);
  font-weight:500; font-size:.9rem; cursor:pointer; transition:.2s; background:#fff; color:var(--ink); white-space:nowrap; }
.filter-chip:hover{ border-color:var(--navy); color:var(--navy); }
.filter-chip.active{ background:var(--navy); color:#fff; border-color:var(--navy); }
.filter-count{ text-align:center; color:var(--muted); margin-bottom:28px; font-size:.95rem; }

/* Tarjetas de maestros */
.maestro-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.mcard-perfil{ background:#fff; border:1px solid var(--line); border-radius:var(--r-md); overflow:hidden;
  transition:transform .3s, box-shadow .3s; display:flex; flex-direction:column; }
.mcard-perfil:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }
.mcard-perfil-top{ display:flex; gap:16px; padding:22px; align-items:center; }
.mcard-perfil-top img{ width:78px; height:78px; border-radius:50%; object-fit:cover; object-position:center 22%; flex:none; border:3px solid var(--bg-soft); background:var(--bg-soft); }
.mcard-perfil-top h3{ font-size:1.14rem; margin-bottom:4px; }
.mcard-perfil-top .ciudad{ color:var(--muted); font-size:.9rem; display:inline-flex; align-items:center; gap:5px; }
.mcard-perfil-top .ciudad svg{ width:14px; height:14px; color:var(--green-700); }
.mcard-badges{ display:flex; flex-wrap:wrap; gap:6px; padding:0 22px 14px; }
.mcard-badge{ background:rgba(16,58,114,.08); color:var(--navy); font-size:.74rem; font-weight:600; padding:5px 11px; border-radius:100px; }
.mcard-contact{ padding:16px 22px; border-top:1px solid var(--line); display:flex; flex-direction:column; gap:10px; margin-top:auto; }
.mcard-contact div, .mcard-contact a{ display:flex; align-items:center; gap:9px; font-size:.9rem; color:var(--ink); }
.mcard-contact a:hover{ color:var(--navy); }
.mcard-contact svg{ width:16px; height:16px; color:var(--green-700); flex:none; }
.mcard-actions{ display:flex; gap:8px; padding:0 22px 22px; }
.mcard-actions .btn{ flex:1; padding:11px 14px; font-size:.9rem; }
.mcard-rut{ font-size:.8rem; color:var(--muted); }

.empty-state{ text-align:center; padding:64px 24px; color:var(--muted); grid-column:1/-1; }
.empty-state svg{ width:56px; height:56px; color:#c4d2e4; margin-bottom:16px; }
.empty-state h3{ color:var(--navy-900); margin-bottom:8px; }

@media (max-width:1024px){
  .info-strip{ grid-template-columns:1fr; gap:16px; }
  .check-grid{ grid-template-columns:repeat(2,1fr); }
  .maestro-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:600px){
  .check-grid{ grid-template-columns:1fr; }
  .maestro-grid{ grid-template-columns:1fr; }
}

/* ============================================================
   OFERTAS — "Próximamente" (en construcción)
   ============================================================ */
.coming-grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:40px; align-items:center; }
.coming-media{ position:relative; text-align:center; }
.coming-media img{ max-height:470px; width:auto; margin:0 auto; position:relative; z-index:1; filter:drop-shadow(0 24px 44px rgba(0,0,0,.45)); }
.coming-media::before{ content:""; position:absolute; left:50%; bottom:30px; transform:translateX(-50%); width:360px; height:360px; border-radius:50%; background:radial-gradient(circle, rgba(124,194,67,.4), transparent 68%); z-index:0; }
.coming-badge{ display:inline-flex; align-items:center; gap:8px; background:var(--amber); color:#5a3d00; font-family:var(--font-head); font-weight:700; font-size:.82rem; letter-spacing:.04em; text-transform:uppercase; padding:8px 16px; border-radius:100px; margin-bottom:22px; }
.coming-badge svg{ width:16px; height:16px; }
.coming h2{ color:#fff; font-size:clamp(1.9rem,3.6vw,2.7rem); }
.coming p{ color:#c3d2e8; font-size:1.06rem; margin:18px 0; }
.coming-follow{ display:flex; align-items:center; gap:12px; flex-wrap:wrap; margin-top:26px; }
.coming-follow .lbl{ color:#9fb8dc; font-family:var(--font-head); font-weight:600; font-size:.9rem; }
.coming-social{ display:flex; gap:10px; }
.coming-social a{ width:46px; height:46px; border-radius:12px; display:grid; place-items:center; color:#fff; transition:transform .2s, background .2s; }
.coming-social a.fb{ background:#1877f2; } .coming-social a.ig{ background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.coming-social a:hover{ transform:translateY(-3px); }
.coming-social svg{ width:22px; height:22px; }
@media (max-width:900px){ .coming-grid{ grid-template-columns:1fr; text-align:center; } .coming-media{ order:-1; } .coming-follow{ justify-content:center; } }

/* ============================================================
   BLOG — Artículo (detalle de consejo)
   ============================================================ */
.article{ max-width:760px; margin:0 auto; }
.article-back{ display:inline-flex; align-items:center; gap:8px; color:var(--navy); font-family:var(--font-head); font-weight:600; margin-bottom:26px; font-size:.94rem; }
.article-back svg{ width:18px; height:18px; }
.article-back:hover{ color:var(--green-700); }
.article-hero{ width:100%; border-radius:var(--r-lg); overflow:hidden; margin-bottom:40px; box-shadow:var(--shadow-md); }
.article-hero img{ width:100%; height:auto; max-height:440px; object-fit:cover; display:block; }
.article-body{ font-size:1.08rem; color:#2b3948; line-height:1.8; }
.article-body p{ margin:0 0 22px; }
.article-body h2{ font-size:1.5rem; margin:40px 0 14px; }
.article-body h3{ font-size:1.22rem; margin:30px 0 10px; }
.article-body ul, .article-body ol{ margin:0 0 24px; padding-left:24px; }
.article-body li{ margin-bottom:10px; padding-left:4px; }
.article-body ul li{ list-style:disc; } .article-body ol li{ list-style:decimal; }
.article-body strong{ color:var(--navy-900); }
.article-body a{ color:var(--navy); font-weight:600; text-decoration:underline; }
.article-tip{ background:rgba(124,194,67,.1); border-left:4px solid var(--green); border-radius:0 12px 12px 0; padding:18px 22px; margin:0 0 26px; font-size:1rem; color:var(--ink); }
.article-tip b{ color:var(--green-700); }
.article-cta{ background:linear-gradient(120deg,var(--navy),var(--navy-900)); border-radius:var(--r-lg); padding:40px; text-align:center; margin-top:52px; color:#fff; }
.article-cta h3{ color:#fff; font-size:1.45rem; margin-bottom:10px; }
.article-cta p{ color:#c3d2e8; margin:0 auto 24px; max-width:480px; }
.article-cta .btns{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

/* Tarjetas de blog clicables */
a.post-img{ display:block; }
.post h3 a{ color:inherit; }
.post h3 a:hover{ color:var(--navy); }

/* Meta del artículo (fecha, lectura, categoría) */
.article-meta{ display:flex; gap:18px; flex-wrap:wrap; color:#9fb8dc; font-size:.9rem; margin-top:16px; }
.article-meta span{ display:inline-flex; align-items:center; gap:7px; }
.article-meta svg{ width:16px; height:16px; flex:none; }
