/* ============================================
   EME Comunicaciones — design tokens & base
   Palette matched to the client's existing brand
   (navy #1D1B4D / teal #228B96) — see README for source.
   ============================================ */

:root{
  --navy: #1D1B4D;
  --navy-dark: #141335;
  --navy-soft: #3D3C6E;
  --teal: #228B96;
  --teal-dark: #1B6F78;
  --teal-soft: rgba(34,139,150,.12);
  --teal-softer: rgba(34,139,150,.08);
  --bg: #FFFFFF;
  --bg-soft: #F8FAFF;
  --bg-navy: var(--navy);
  --text: #1A1930;
  --text-muted: #6B6A9A;
  --text-on-navy: rgba(255,255,255,.88);
  --text-on-navy-soft: rgba(255,255,255,.65);
  --border: rgba(29,27,77,.1);
  --border-on-navy: rgba(255,255,255,.14);
  --red: #EF4444;
  --white: #FFFFFF;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(29,27,77,.06);
  --shadow-md: 0 10px 30px rgba(29,27,77,.10);
  --shadow-lg: 0 24px 60px rgba(29,27,77,.16);

  --container: 1180px;
  --font-display: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*, *::before, *::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--text);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  line-height:1.6;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family:var(--font-display); margin:0; line-height:1.15; color:var(--navy); }
p{ margin:0; }
button{ font-family:inherit; cursor:pointer; }
.container{ max-width:var(--container); margin:0 auto; padding:0 20px; }
section{ padding:72px 0; }
.visually-hidden{ position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; }

/* ---- eyebrow / kicker ---- */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:.75rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
  color:var(--teal); background:var(--teal-soft); border:1px solid rgba(34,139,150,.25);
  padding:6px 14px; border-radius:var(--radius-pill); margin-bottom:16px;
}
.eyebrow--on-navy{ background:rgba(255,255,255,.08); border-color:var(--border-on-navy); color:#7FD8E0; }
.eyebrow::before{
  content:"";
  width:11px; height:11px; flex-shrink:0;
  background-color:currentColor;
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolygon points='12 2 15 9 22 9.5 17 14.5 18.5 22 12 18 5.5 22 7 14.5 2 9.5 9 9'/%3E%3C/svg%3E");
  mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolygon points='12 2 15 9 22 9.5 17 14.5 18.5 22 12 18 5.5 22 7 14.5 2 9.5 9 9'/%3E%3C/svg%3E");
  -webkit-mask-repeat:no-repeat; mask-repeat:no-repeat;
  -webkit-mask-size:contain; mask-size:contain;
  display:inline-block;
}
.hero .eyebrow::before{ display:none; }

.section-head{ max-width:640px; margin-bottom:40px; }
.section-head h2{ font-size:clamp(1.7rem, 3vw, 2.4rem); }
.section-head p{ color:var(--text-muted); margin-top:14px; font-size:1.02rem; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.accent{ color:var(--teal); }

/* ---- buttons ---- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:14px 26px; border-radius:var(--radius-pill); font-weight:700; font-size:.96rem;
  border:1px solid transparent; transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space:nowrap;
}
.btn:active{ transform:translateY(1px); }
.btn-primary{ background:var(--teal); color:#fff; box-shadow:0 10px 24px rgba(34,139,150,.32); }
.btn-primary:hover{ background:var(--teal-dark); transform:translateY(-2px); box-shadow:0 14px 30px rgba(34,139,150,.4); }
.btn-outline{ background:transparent; border-color:var(--border); color:var(--navy); }
.btn-outline:hover{ border-color:var(--navy); transform:translateY(-2px); }
.btn-outline-light{ background:transparent; border-color:var(--border-on-navy); color:#fff; }
.btn-outline-light:hover{ background:rgba(255,255,255,.08); transform:translateY(-2px); }
.btn-block{ width:100%; }
.btn svg{ width:18px; height:18px; }

/* ---- icons ---- */
.icon{ width:20px; height:20px; stroke:currentColor; fill:none; stroke-width:2.2; stroke-linecap:round; stroke-linejoin:round; flex-shrink:0; }
.icon-solid{ fill:currentColor; stroke:none; }
.icon-inline-sm{ width:.85em; height:.85em; display:inline; vertical-align:-0.05em; }
.icon-inline-xs{ width:.7em; height:.7em; display:inline; vertical-align:0; color:#7FD8E0; }
.icon-arrow-inline{ width:14px; height:14px; display:inline; vertical-align:-2px; }
.icon-18{ width:18px; height:18px; }

/* ============ TOPBAR ============ */
.topbar{
  position:sticky; top:0; z-index:60;
  background:rgba(255,255,255,.9); backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}
.topbar-inner{ display:flex; align-items:center; justify-content:space-between; gap:20px; padding:14px 20px; }
.brand{ display:flex; align-items:center; gap:10px; }
.brand-logo{ width:150px; height:auto; }
.nav-desktop{ display:none; align-items:center; gap:30px; }
.nav-desktop a{ font-weight:600; font-size:.95rem; color:var(--navy); position:relative; padding:6px 0; }
.nav-desktop a:hover{ color:var(--teal); }
.nav-desktop a.is-active{ color:var(--teal); }
.topbar-cta{ display:none; }
.nav-toggle{
  display:inline-flex; align-items:center; justify-content:center;
  width:42px; height:42px; border-radius:var(--radius-sm); border:1px solid var(--border); background:#fff;
}
.mobile-nav{
  display:none; flex-direction:column; gap:2px; background:#fff; border-top:1px solid var(--border);
  padding:10px 20px 18px;
}
.mobile-nav.is-open{ display:flex; }
.mobile-nav a{ padding:12px 4px; font-weight:600; border-bottom:1px solid var(--border); }
.mobile-nav .btn{ margin-top:12px; }

@media (min-width:900px){
  .nav-desktop{ display:flex; }
  .topbar-cta{ display:inline-flex; }
  .nav-toggle{ display:none; }
  .mobile-nav{ display:none !important; }
}

/* ============ HERO ============ */
.hero{
  background:
    radial-gradient(1100px 500px at 82% -10%, rgba(34,139,150,.35), transparent 60%),
    linear-gradient(160deg, #201d55 0%, var(--navy) 45%, var(--navy-dark) 100%);
  padding:64px 0 88px;
  overflow:hidden;
  position:relative;
}
.hero-grid{ display:grid; gap:44px; align-items:center; position:relative; z-index:1; }
.hero .eyebrow{ background:rgba(255,255,255,.08); border-color:var(--border-on-navy); color:#8FE3EA; }
.hero .eyebrow .dot{ width:6px; height:6px; border-radius:50%; background:#7FE6A8; display:inline-block; margin-right:2px; animation:pulse 1.6s ease-in-out infinite; }
.hero h1{ font-size:clamp(2.1rem, 5vw, 3.3rem); margin-top:16px; color:#fff; }
.hero h1 .accent{ display:inline; color:#5FD8E4; }
.hero-lead{ color:var(--text-on-navy-soft); font-size:1.08rem; margin-top:18px; max-width:52ch; }
.hero-ctas{ display:flex; flex-wrap:wrap; gap:14px; margin-top:32px; }
.hero .btn-outline{ background:rgba(255,255,255,.04); border-color:var(--border-on-navy); color:#fff; }
.hero .btn-outline:hover{ background:rgba(255,255,255,.1); }
.hero-stats{ display:grid; grid-template-columns:repeat(2,1fr); gap:22px 18px; margin-top:44px; padding-top:32px; border-top:1px solid var(--border-on-navy); }
.stat-item .num{ font-family:var(--font-display); font-size:1.9rem; font-weight:800; color:#fff; }
.stat-item .label{ font-size:.82rem; color:var(--text-on-navy-soft); margin-top:2px; }

/* live dashboard card */
.dash-wrap{ position:relative; }
.dash-card{
  background:rgba(255,255,255,.06); backdrop-filter:blur(14px);
  border:1px solid var(--border-on-navy);
  border-radius:var(--radius-lg); padding:26px; color:#fff;
  box-shadow:var(--shadow-lg); position:relative;
}
.dash-float{
  position:absolute; z-index:2; background:#fff; color:var(--navy);
  border-radius:var(--radius-md); padding:12px 16px; box-shadow:var(--shadow-lg);
  display:flex; align-items:center; gap:10px; white-space:nowrap;
}
.dash-float .df-icon{ width:34px; height:34px; border-radius:10px; background:var(--teal-soft); color:var(--teal); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.dash-float .df-num{ font-family:var(--font-display); font-weight:800; font-size:1.05rem; line-height:1.1; }
.dash-float .df-label{ font-size:.7rem; color:var(--text-muted); }
.dash-float--top{ top:-18px; right:16px; }
.dash-float--bottom{ bottom:-18px; left:16px; }
@media (max-width:539px){ .dash-float{ display:none; } }
.dash-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:18px; }
.dash-title{ font-weight:700; font-size:.98rem; }
.dash-live{ display:inline-flex; align-items:center; gap:6px; font-size:.72rem; font-weight:700; color:#7FE6A8; background:rgba(127,230,168,.12); padding:5px 10px; border-radius:var(--radius-pill); }
.dash-live .dot{ width:7px; height:7px; border-radius:50%; background:#7FE6A8; animation:pulse 1.6s ease-in-out infinite; }
.dash-channels{ display:flex; gap:8px; margin-bottom:18px; }
.dash-chip{ font-size:.74rem; font-weight:700; padding:6px 12px; border-radius:var(--radius-pill); background:rgba(255,255,255,.08); border:1px solid var(--border-on-navy); }
.dash-metrics{ display:grid; gap:12px; }
.dash-metric{ background:rgba(255,255,255,.06); border:1px solid var(--border-on-navy); border-radius:var(--radius-md); padding:14px 16px; }
.dash-metric-top{ display:flex; align-items:center; justify-content:space-between; margin-bottom:9px; }
.dash-metric .m-label{ font-size:.84rem; color:var(--text-on-navy-soft); }
.dash-metric .m-value{ font-family:var(--font-display); font-weight:800; color:#7FD8E0; font-size:1.15rem; }
.dash-bar{ height:5px; border-radius:var(--radius-pill); background:rgba(255,255,255,.1); overflow:hidden; }
.dash-bar-fill{ height:100%; border-radius:var(--radius-pill); background:linear-gradient(90deg, var(--teal), #5FD8E4); width:0; transition:width 1.1s cubic-bezier(.22,.9,.3,1); }
.dash-metric.is-visible .dash-bar-fill{ width:var(--fill, 60%); }
.dash-foot{ display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:18px; }
.dash-foot .f-num{ font-size:1.3rem; font-weight:800; font-family:var(--font-display); }
.dash-foot .f-label{ font-size:.74rem; color:var(--text-on-navy-soft); margin-top:2px; }

@keyframes pulse{ 0%,100%{ opacity:1; transform:scale(1);} 50%{ opacity:.4; transform:scale(.75);} }

@media (min-width:960px){
  .hero-grid{ grid-template-columns:1.05fr .95fr; }
}

/* ============ VALUE / ESPECIALIDAD ============ */
.spec-grid{ display:grid; gap:40px; }
.value-list{ display:grid; gap:22px; margin-top:32px; }
.value-row{ display:flex; align-items:flex-start; gap:16px; }
.value-icon{ width:42px; height:42px; border-radius:var(--radius-sm); background:var(--teal-soft); color:var(--teal); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.value-row h3{ font-size:1.02rem; margin-bottom:4px; }
.value-row p{ color:var(--text-muted); font-size:.92rem; }

.spec-card{
  background:linear-gradient(155deg, var(--navy) 0%, #2A2870 60%, var(--teal-dark) 130%);
  border-radius:var(--radius-lg); padding:30px; color:#fff; box-shadow:var(--shadow-lg);
}
.spec-card-num{ font-family:var(--font-display); font-weight:800; font-size:2.6rem; color:#5FD8E4; line-height:1; }
.spec-card-label{ font-size:.9rem; color:var(--text-on-navy-soft); margin-top:6px; }
.spec-tags{ display:flex; flex-wrap:wrap; gap:9px; margin-top:24px; }
.spec-tags .tag{ font-size:.8rem; font-weight:600; padding:7px 14px; border-radius:var(--radius-pill); background:rgba(255,255,255,.1); border:1px solid var(--border-on-navy); color:#fff; }

.stat-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:14px; margin-top:18px; }
.stat-box{ text-align:center; padding:20px 10px; border-radius:var(--radius-md); background:#fff; border:1px solid var(--border); box-shadow:var(--shadow-sm); }
.stat-box .num{ font-size:1.4rem; font-weight:800; color:var(--teal); font-family:var(--font-display); }
.stat-box .label{ font-size:.76rem; color:var(--text-muted); margin-top:4px; }

/* unified stat bar (portfolio / clientes section) */
.mini-stats{
  display:grid; grid-template-columns:repeat(2,1fr); gap:0; margin-top:40px;
  background:#fff; border:1px solid var(--border); border-radius:var(--radius-lg); box-shadow:var(--shadow-sm);
  overflow:hidden;
}
.mini-stat{ text-align:center; padding:24px 10px; position:relative; }
.mini-stat::after{ content:""; position:absolute; right:0; top:20%; bottom:20%; width:1px; background:var(--border); }
.mini-stat:nth-child(2n)::after{ display:none; }
.mini-stat .num{ font-size:1.6rem; font-weight:800; color:var(--teal); font-family:var(--font-display); }
.mini-stat .label{ font-size:.78rem; color:var(--text-muted); margin-top:4px; }

@media (min-width:960px){ .spec-grid{ grid-template-columns:1.1fr .9fr; } }
@media (min-width:640px){
  .mini-stats{ grid-template-columns:repeat(4,1fr); }
  .mini-stat::after{ display:block; }
  .mini-stat:last-child::after{ display:none; }
}

/* ============ SERVICES ============ */
.section-soft{ background:var(--bg-soft); }
.services-grid{ display:grid; gap:24px; grid-template-columns:1fr; }
.service-card{
  background:#fff; border:1px solid var(--border); border-radius:var(--radius-lg);
  padding:36px 28px; position:relative; overflow:hidden;
  transition:transform .2s ease, box-shadow .2s ease;
}
.service-card::after{
  content:""; position:absolute; left:0; right:0; bottom:0; height:3px;
  background:var(--teal); transform:scaleX(0); transform-origin:left;
  transition:transform .25s ease;
}
.service-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-lg); border-color:transparent; }
.service-card:hover::after{ transform:scaleX(1); }
.service-icon{
  width:58px; height:58px; border-radius:16px; background:var(--teal-soft); color:var(--teal);
  display:flex; align-items:center; justify-content:center; margin-bottom:18px;
  transition:box-shadow .25s ease, transform .25s ease;
}
.service-card:hover .service-icon{ box-shadow:0 0 0 8px rgba(34,139,150,.16), 0 10px 24px rgba(34,139,150,.28); transform:translateY(-2px); }
.service-card h3{ font-size:1.2rem; margin-bottom:10px; }
.service-card > p{ color:var(--text-muted); font-size:.95rem; margin-bottom:18px; }
.service-list{ display:grid; gap:10px; }
.service-list li{ display:flex; gap:10px; align-items:flex-start; font-size:.9rem; color:var(--text); }
.service-list .icon{ width:16px; height:16px; color:var(--teal); margin-top:3px; }
.service-link{ display:inline-flex; align-items:center; gap:6px; margin-top:20px; font-weight:700; color:var(--teal); font-size:.92rem; }
.service-link svg{ width:16px; height:16px; transition:transform .18s ease; }
.service-card:hover .service-link svg{ transform:translateX(4px); }

@media (min-width:720px){ .services-grid{ grid-template-columns:repeat(2,1fr);} }
@media (min-width:1080px){ .services-grid{ grid-template-columns:repeat(4,1fr);} }

/* ============ PORTFOLIO ============ */
.portfolio-grid{ display:grid; gap:16px; grid-template-columns:repeat(2,1fr); }
.portfolio-card{
  background:#fff; border:1px solid var(--border); border-radius:var(--radius-md);
  padding:22px 16px; text-align:center; transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.portfolio-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:rgba(34,139,150,.35); }
.portfolio-card{ text-align:left; padding-bottom:16px; }
.portfolio-card h4{ font-size:.86rem; color:var(--navy); font-weight:700; padding-top:14px; border-top:1px solid var(--border); margin-top:14px; }
.portfolio-card .role{ display:inline-block; margin-top:6px; font-size:.68rem; font-weight:700; color:var(--teal-dark); background:var(--teal-softer); padding:3px 9px; border-radius:var(--radius-pill); }

/* ---- recreated client logo marks (see Screenshot logos/) ---- */
.pf-logo{ display:flex; align-items:center; gap:10px; min-height:46px; }
.pf-logo.pf-center{ flex-direction:column; text-align:center; gap:2px; }
.pf-icon{ width:32px; height:32px; flex-shrink:0; display:flex; align-items:center; justify-content:center; color:var(--pf-color, var(--navy)); }
.pf-icon svg{ width:100%; height:100%; }
.pf-icon-box{ width:32px; height:32px; flex-shrink:0; border-radius:7px; background:var(--pf-color, var(--navy)); color:#fff; display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-weight:800; font-size:.8rem; }
.pf-icon-ring{ width:32px; height:32px; flex-shrink:0; border-radius:50%; border:1.6px solid var(--pf-color, var(--navy)); color:var(--pf-color, var(--navy)); display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-weight:800; font-size:.72rem; }
.pf-icon-circle{ width:32px; height:32px; flex-shrink:0; border-radius:50%; background:var(--pf-color, var(--navy)); color:#fff; display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-weight:800; font-size:.82rem; }
.pf-text{ display:flex; flex-direction:column; line-height:1.2; min-width:0; }
.pf-kicker{ font-size:.55rem; letter-spacing:.1em; text-transform:uppercase; color:var(--text-muted); font-weight:700; }
.pf-name{ font-family:var(--font-display); font-weight:800; font-size:.86rem; color:var(--navy); letter-spacing:.01em; }
.pf-name-lg{ font-size:1.05rem; }
.pf-name-serif{ font-family: Georgia, 'Times New Roman', serif; font-style:italic; font-weight:600; font-size:.92rem; color:var(--navy); }
.pf-name-teal{ color:var(--teal-dark); }
.pf-sub{ font-size:.56rem; letter-spacing:.08em; text-transform:uppercase; color:var(--text-muted); margin-top:1px; }
.pf-tagline{ font-style:italic; font-family:Georgia,serif; font-weight:500; font-size:.66rem; color:var(--text-muted); margin-top:1px; }
.pf-underline{ display:inline-block; width:34px; height:1px; background:var(--teal); margin:3px 0 2px; }
.pf-caps-lg{ font-family:var(--font-display); font-weight:800; font-size:1rem; letter-spacing:.06em; color:var(--navy); }
.pf-vline{ width:2px; height:30px; background:var(--teal); display:inline-block; }
.pf-dots{ display:flex; flex-direction:column; gap:3px; align-items:center; width:20px; flex-shrink:0; }
.pf-dots i{ width:5px; height:5px; border-radius:50%; background:var(--navy-soft); display:block; font-style:normal; }
.pf-dots i:nth-child(2){ background:var(--navy); width:6px; height:6px; }
.icon-14{ width:14px; height:14px; }

@media (min-width:640px){ .portfolio-grid{ grid-template-columns:repeat(3,1fr);} }
@media (min-width:960px){ .portfolio-grid{ grid-template-columns:repeat(4,1fr);} }

/* ---- portfolio carousel (portafolio.html) ---- */
.carousel{ position:relative; margin-top:40px; }
.carousel-viewport{
  overflow-x:auto; overflow-y:hidden; scroll-snap-type:x mandatory; scroll-behavior:smooth;
  scrollbar-width:none; -ms-overflow-style:none;
}
.carousel-viewport::-webkit-scrollbar{ display:none; }
.carousel-track{ display:flex; gap:16px; }
.carousel-track .portfolio-card{ flex:0 0 calc(50% - 8px); scroll-snap-align:start; }
.carousel-nav{
  position:absolute; top:50%; transform:translateY(-50%); z-index:2;
  width:40px; height:40px; border-radius:50%; background:#fff; border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-md);
  color:var(--navy); transition:background .18s ease, color .18s ease;
}
.carousel-nav:hover{ background:var(--teal); color:#fff; border-color:var(--teal); }
.carousel-nav:disabled{ opacity:.35; pointer-events:none; }
.carousel-nav--prev{ left:-8px; }
.carousel-nav--next{ right:-8px; }
.carousel-nav svg{ width:18px; height:18px; }
.carousel-dots{ display:flex; justify-content:center; gap:7px; margin-top:26px; }
.carousel-dots button{ width:8px; height:8px; border-radius:50%; background:var(--border); border:none; padding:0; transition:background .18s ease, width .18s ease; }
.carousel-dots button.is-active{ background:var(--teal); width:22px; border-radius:var(--radius-pill); }

@media (min-width:640px){ .carousel-track .portfolio-card{ flex:0 0 calc(33.333% - 11px); } }
@media (min-width:960px){ .carousel-track .portfolio-card{ flex:0 0 calc(25% - 12px); } .carousel-nav--prev{ left:-20px; } .carousel-nav--next{ right:-20px; } }

/* ============ TESTIMONIALS ============ */
.testi-grid{ display:grid; gap:20px; grid-template-columns:1fr; }
.testi-card{ background:#fff; border:1px solid var(--border); border-radius:var(--radius-lg); padding:26px; }
.stars{ display:flex; gap:3px; color:#FFB020; margin-bottom:14px; }
.stars svg{ width:16px; height:16px; }
.testi-quote{ font-size:.98rem; color:var(--text); margin-bottom:20px; }
.testi-person{ display:flex; align-items:center; gap:12px; }
.testi-avatar{ width:42px; height:42px; border-radius:50%; background:var(--navy); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:700; font-size:.85rem; }
.testi-name{ font-weight:700; font-size:.92rem; color:var(--navy); }
.testi-role{ font-size:.78rem; color:var(--text-muted); }

@media (min-width:820px){ .testi-grid{ grid-template-columns:repeat(3,1fr);} }

/* ============ CONTACT ============ */
.contact-section{ background:var(--navy); color:#fff; }
.contact-grid{ display:grid; gap:36px; }
.contact-section h2{ color:#fff; }
.contact-lead{ color:var(--text-on-navy-soft); margin-top:14px; max-width:48ch; }
.contact-channels{ display:grid; gap:20px; margin-top:32px; }
.contact-channel{ display:flex; align-items:flex-start; gap:14px; }
.channel-icon{ width:46px; height:46px; border-radius:12px; background:rgba(34,139,150,.18); color:var(--teal); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.channel-label{ font-size:.76rem; color:var(--text-on-navy-soft); text-transform:uppercase; letter-spacing:.06em; font-weight:700; }
.channel-value{ font-weight:700; margin-top:2px; }
.channel-value.pending{ font-weight:600; font-size:.88rem; color:var(--text-on-navy-soft); font-style:italic; }
.contact-socials{ display:flex; gap:10px; margin-top:26px; }
.social-btn{ width:44px; height:44px; border-radius:12px; background:rgba(255,255,255,.06); border:1px solid var(--border-on-navy); display:flex; align-items:center; justify-content:center; transition:background .18s ease, transform .18s ease; }
.social-btn:hover{ background:var(--teal); transform:translateY(-2px); }

.contact-form-card{ background:#fff; color:var(--text); border-radius:var(--radius-lg); padding:28px; box-shadow:var(--shadow-lg); }
.contact-form-card h3{ font-size:1.2rem; }
.contact-form-card .form-note{ color:var(--text-muted); font-size:.88rem; margin-top:6px; margin-bottom:22px; }
.form-row{ margin-bottom:16px; }
.form-row label{ display:block; font-size:.86rem; font-weight:700; margin-bottom:6px; color:var(--navy); }
.form-row input, .form-row textarea{
  width:100%; padding:12px 14px; border-radius:var(--radius-sm); border:1px solid var(--border);
  font-family:inherit; font-size:.95rem; background:var(--bg-soft); color:var(--text);
}
.form-row input:focus, .form-row textarea:focus{ outline:2px solid var(--teal); outline-offset:1px; background:#fff; }
.form-error{ display:none; color:var(--red); font-size:.8rem; margin-top:6px; }
.form-row.invalid .form-error{ display:block; }
.form-row.invalid input, .form-row.invalid textarea{ border-color:var(--red); }
.form-success{ display:none; background:var(--teal-softer); border:1px solid rgba(34,139,150,.3); border-radius:var(--radius-md); padding:16px; margin-top:16px; font-size:.9rem; color:var(--teal-dark); }
.form-success.is-visible{ display:block; }

@media (min-width:960px){ .contact-grid{ grid-template-columns:1fr 1fr; } }

/* ============ PENDING NOTICE ============ */
.pending-note{
  display:inline-flex; align-items:center; gap:6px; font-size:.78rem; font-weight:700;
  color:#9A6B00; background:#FFF3D6; border:1px solid #F3D48A; padding:4px 10px; border-radius:var(--radius-pill);
}

/* ============ PAGE HERO (interior pages) ============ */
.page-hero{ background:linear-gradient(180deg, var(--bg-soft), #fff); padding:52px 0 44px; }
.page-hero .eyebrow{ margin-bottom:14px; }
.page-hero h1{ font-size:clamp(1.9rem, 4vw, 2.6rem); }
.page-hero p{ color:var(--text-muted); margin-top:14px; max-width:60ch; font-size:1.02rem; }
.breadcrumbs{ font-size:.82rem; color:var(--text-muted); margin-bottom:16px; }
.breadcrumbs a{ color:var(--teal); font-weight:600; }

/* ============ CTA STRIP ============ */
.cta-strip{ background:var(--teal); color:#fff; text-align:center; padding:56px 0; }
.cta-strip h2{ color:#fff; font-size:clamp(1.5rem,3vw,2.1rem); }
.cta-strip p{ color:rgba(255,255,255,.85); margin-top:12px; }
.cta-strip .btn-primary{ background:var(--navy); box-shadow:0 10px 24px rgba(29,27,77,.35); margin-top:24px; }
.cta-strip .btn-primary:hover{ background:var(--navy-dark); }

/* ============ SERVICE DETAIL ============ */
.detail-grid{ display:grid; gap:34px; }
.detail-block{ margin-bottom:30px; }
.detail-block h2{ font-size:1.3rem; margin-bottom:14px; }
.detail-list{ display:grid; gap:12px; }
.detail-list li{ display:flex; gap:12px; align-items:flex-start; background:var(--bg-soft); border:1px solid var(--border); border-radius:var(--radius-md); padding:14px 16px; font-size:.93rem; }
.detail-list .icon{ color:var(--teal); margin-top:2px; }
.side-card{ background:var(--navy); color:#fff; border-radius:var(--radius-lg); padding:26px; position:sticky; top:100px; }
.side-card h3{ color:#fff; font-size:1.05rem; margin-bottom:12px; }
.side-card p{ color:var(--text-on-navy-soft); font-size:.9rem; margin-bottom:18px; }
.side-card .btn{ width:100%; }
@media (min-width:960px){ .detail-grid{ grid-template-columns:2fr 1fr; } }

/* ============ FAQ ============ */
.faq-list{ max-width:760px; margin:0 auto; }
.faq-item{ border-bottom:1px solid var(--border); padding:18px 0; }
.faq-q{ display:flex; justify-content:space-between; align-items:center; gap:16px; font-weight:700; color:var(--navy); cursor:pointer; }
.faq-q svg{ width:18px; height:18px; color:var(--teal); flex-shrink:0; transition:transform .2s ease; }
.faq-item.is-open .faq-q svg{ transform:rotate(45deg); }
.faq-a{ display:none; color:var(--text-muted); font-size:.94rem; margin-top:12px; max-width:70ch; }
.faq-item.is-open .faq-a{ display:block; }

/* ============ FOOTER ============ */
.site-footer{ background:var(--navy-dark); color:var(--text-on-navy-soft); padding:56px 0 24px; }
.footer-grid{ display:grid; gap:36px; grid-template-columns:1fr; margin-bottom:40px; }
.footer-brand p{ color:var(--text-on-navy-soft); margin-top:14px; font-size:.9rem; max-width:38ch; }
.footer-col h4{ color:#fff; font-size:.86rem; text-transform:uppercase; letter-spacing:.08em; margin-bottom:16px; }
.footer-col ul{ display:grid; gap:10px; }
.footer-col a{ font-size:.9rem; color:var(--text-on-navy-soft); }
.footer-col a:hover{ color:#7FD8E0; }
.footer-bottom{ border-top:1px solid rgba(255,255,255,.08); padding-top:22px; display:flex; flex-direction:column; gap:14px; font-size:.82rem; }
.footer-socials{ display:flex; gap:10px; }

@media (min-width:720px){ .footer-grid{ grid-template-columns:1.4fr 1fr 1fr; } }
@media (min-width:720px){ .footer-bottom{ flex-direction:row; align-items:center; justify-content:space-between; } }

/* ============ WHATSAPP FLOAT ============ */
.wa-float{
  position:fixed; right:20px; bottom:20px; z-index:70;
  width:56px; height:56px; border-radius:50%; background:#25D366; color:#fff;
  display:flex; align-items:center; justify-content:center; box-shadow:0 10px 24px rgba(37,211,102,.4);
  transition:transform .18s ease;
}
.wa-float:hover{ transform:translateY(-3px) scale(1.04); }
.wa-float svg{ width:28px; height:28px; }

/* ============ REVEAL ANIMATIONS ============ */
.reveal{ opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease; }
.reveal.is-visible{ opacity:1; transform:translateY(0); }
.reveal-delay-1{ transition-delay:.08s; }
.reveal-delay-2{ transition-delay:.16s; }
.reveal-delay-3{ transition-delay:.24s; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .reveal{ opacity:1; transform:none; transition:none; }
  .dash-live .dot{ animation:none; }
}
