/* ========================= */
/* ROOT / RESET / BASE       */
/* ========================= */
:root{
  --pink:#d80f5f;
  --blue:#0b2f66;
  --ink:#0b0f1a;
  --muted:#6b7280;
  --bg:#f6f7fb;
  --paper:#ffffff;
  --shadow: 0 18px 40px rgba(0,0,0,.18);
  --shadow2: 0 14px 28px rgba(0,0,0,.12);
  --radius: 18px;
  --max: 1150px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.35;
}
a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}


/* ========================= */
/* LAYOUT / UTILITIES        */
/* ========================= */
.container{max-width:var(--max); margin:0 auto; padding:0 16px}
.container--fluid{max-width:85%}

.section{padding:72px 0}

.section__head{
  margin-bottom:18px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.section__head h2{
  margin:0;
  font-size: clamp(24px, 2.4vw, 34px);
  letter-spacing:-.4px;
}
.section__head p{
  margin:0;
  color:var(--muted);
  font-weight:800;
  max-width:60ch;
}


/* ========================= */
/* BUTTONS / PILLS / CHIPS   */
/* ========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:999px;
  font-weight:1000;
  border:0;
  cursor:pointer;
  transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
  white-space:nowrap;
}
.btn--primary{
  background: linear-gradient(135deg, var(--pink), #ff4d8b);
  color:#fff;
  box-shadow: 0 14px 32px rgba(216,15,95,.30);
}
.btn--primary:hover{transform:translateY(-1px); filter:brightness(1.02)}
.btn--ghost{
  background:#fff;
  border:1px solid rgba(0,0,0,.12);
  color:#111827;
}
.btn--ghost:hover{transform:translateY(-1px)}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  font-weight:900;
  white-space:nowrap;
}

.chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 18px rgba(0,0,0,.06);
  font-weight:1000;
}
.chip--dark{
  background: rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.92);
  box-shadow:none;
}


/* ========================= */
/* HEADER / NAV              */
/* ========================= */
.header{
  position:sticky;
  top:0;
  z-index:999;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:1000;
  min-width:160px;
}
.brand__logo{
  height:70px;
  width:auto;
  object-fit:contain;
}

.nav{
  display:flex;
  gap:8px;
  align-items:center;
}
.nav__link{
  padding:10px 12px;
  border-radius:12px;
  font-weight:1000;
}
.nav__link:hover{background:rgba(0,0,0,.05)}

.header__cta{display:flex; gap:10px; align-items:center}
.hide-md{display:inline-flex}

.burger{
  display:none;
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.10);
  background:#fff;
  align-items:center;
  justify-content:center;
  gap:5px;
  flex-direction:column;
  cursor:pointer;
}
.burger span{
  width:18px;
  height:2px;
  background:#111827;
  border-radius:999px;
  transition: transform .18s ease, opacity .18s ease;
}
.burger.is-open span:nth-child(1){transform: translateY(7px) rotate(45deg)}
.burger.is-open span:nth-child(2){opacity:0}
.burger.is-open span:nth-child(3){transform: translateY(-7px) rotate(-45deg)}

.mobile{
  display:none;
  border-top: 1px solid rgba(0,0,0,.06);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
}
.mobile.is-open{display:grid}
.mobile__link{
  padding:14px 16px;
  font-weight:1000;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.mobile__link--call{
  background: linear-gradient(135deg, var(--pink), #ff4d8b);
  color:#fff;
  border-bottom:none;
}

/* HEADER responsive */
@media (max-width: 980px){
  .nav{display:none}
  .burger{display:flex}
  .hide-md{display:none}

  .header__inner{
    padding-left:20px;
    padding-right:20px;
  }

  .mobile{
    padding-left:12px;
    padding-right:12px;
  }

  .mobile__link{
    border-radius:14px;
    margin-bottom:6px;
  }

  .brand__logo{
    height:50px;
  }
}

@media (max-width: 980px){
  .hide-mobile{display:none !important;}
}


/* ========================= */
/* HERO                      */
/* ========================= */
.hero{
  position:relative;
  color:#fff;
  background: var(--blue);
  overflow:hidden;

  min-height:85vh;
  display:flex;
  align-items:center;
}
.hero__img{
  position:absolute;
  inset:0;
  background: url("media/fondo.jpeg") center/cover no-repeat;
  mix-blend-mode: overlay;
  opacity:.78;
  filter:saturate(1.2) contrast(1.05);
}

.hero__overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(1000px 420px at 15% 15%, rgba(255,255,255,.22), transparent 60%),
    radial-gradient(900px 420px at 70% 15%, rgba(216,15,95,.25), transparent 60%),
    linear-gradient(135deg, rgba(11,47,102,.92), rgba(11,47,102,.72));
}
.hero__inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:28px;
  padding: 0px 0 40px;
  align-items:center;
  width:100%;
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
  font-weight:1000;
  width:fit-content;
}

.hero h1{
  margin:14px 0 10px;
  font-size: clamp(36px, 4.5vw, 72px);
  line-height:1.05;
  letter-spacing: 0.5px;
  font-family: "Permanent Marker", cursive;
  font-weight: 400;

  color: transparent;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(
    110deg,
    #ffffff 0%,
    #ffffff 42%,
    rgba(255,255,255,.92) 46%,
    rgba(216,15,95,.95) 50%,
    rgba(11,47,102,.95) 54%,
    rgba(255,255,255,.92) 58%,
    #ffffff 70%,
    #ffffff 100%
  );
  background-size: 260% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;

  animation: heroShimmer 7s ease-in-out infinite;
}

@keyframes heroShimmer {
  /* estado normal */
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

@media (prefers-reduced-motion: reduce){
  .hero h1{ animation: none; }
}

.hero p{
  margin:0 0 18px;
  font-size:16.5px;
  color: rgba(255,255,255,.88);
  max-width:60ch;
}

.hero__actions{display:flex; gap:12px; flex-wrap:wrap}

.hero__chips{
  margin-top:18px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.hero__card{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius:22px;
  padding:18px;
}

.hero__cardTop{
  display:flex;
  gap:12px;
  align-items:flex-start;
}

.hero__badge{
  width:44px;
  height:44px;
  border-radius:14px;
  background: linear-gradient(135deg, var(--pink), #ff4d8b);
  box-shadow: 0 14px 26px rgba(216,15,95,.28);
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
}

.hero__card h3{
  margin:0 0 6px;
  font-size:16px;
}
.hero__card p{
  margin:0;
  font-size:14px;
  color: rgba(255,255,255,.88);
}

.stats{
  margin-top:14px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}
.stat{
  padding:12px;
  border-radius:16px;
  background: rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.12);
}
.stat__num{
  font-size:22px;
  font-weight:1100;
  letter-spacing:-.3px;
}
.stat__label{
  margin-top:4px;
  font-size:12px;
  color: rgba(255,255,255,.80);
  font-weight:900;
}

.hero__cardActions{
  margin-top:14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.hero__miniList{
  margin-top:14px;
  display:grid;
  gap:10px;
}
.mini{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-weight:900;
  color: rgba(255,255,255,.90);
}
.mini i{margin-top:2px}

.hero__wave{
  position:absolute;
  left:0; right:0; bottom:-1px;
  height:70px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), var(--bg));
}

/* HERO responsive */
@media (max-width: 980px){
  .hero{
    min-height:auto;
    padding-top:16px;
  }

  .hero__inner{
    grid-template-columns:1fr;
    padding:42px 0 48px;
    gap:24px;
  }

  .hero h1{
    font-size: clamp(26px, 10vw, 40px);
    line-height:1.12;
  }

  .hero p{
    font-size:15px;
    line-height:1.45;
  }

  .hero__chips{gap:8px}
  .chip{padding:8px 10px; font-size:12px}

  .hero__actions{gap:10px}
  .hero__actions .btn{
    width:100%;
    justify-content:center;
  }

  .hero__card{padding:16px}
  .hero__cardTop{align-items:center}

  .hero__card h3{font-size:15px}
  .hero__card p{font-size:13px}

  .stats{
    grid-template-columns: 1fr 1fr 1fr;
    gap:8px;
  }
  .stat{padding:10px}
  .stat__num{font-size:18px}
  .stat__label{font-size:11px}

  .hero__miniList{gap:8px}
  .mini{font-size:13px}

  .hero__wave{height:40px}
}


/* ========================= */
/* SERVICES - QUICK (BASE)   */
/* ========================= */
.quick{margin-top:-40px}
.quick .container{position:relative}

.quick__grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:14px;
  margin-top:18px;
}

.quick__card{
  grid-column: span 3;
  background: rgba(255,255,255,.92);
  border:1px solid rgba(0,0,0,.06);
  border-radius:20px;
  box-shadow: var(--shadow2);
  padding:16px;
  transition: transform .15s ease, box-shadow .15s ease;
  position:relative;
  overflow:hidden;
}
.quick__card:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(0,0,0,.14);
}

.quick__icon{
  width:48px;
  height:48px;
  border-radius:16px;
  background: linear-gradient(135deg, var(--pink), #ff4d8b);
  box-shadow: 0 14px 26px rgba(216,15,95,.22);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
}

.quick__title{
  margin-top:12px;
  font-weight:1100;
  font-size:16px;
}
.quick__desc{
  margin-top:6px;
  color:var(--muted);
  font-weight:900;
  font-size:13px;
}
.quick__cta{
  margin-top:14px;
  display:inline-flex;
  gap:8px;
  align-items:center;
  font-weight:1100;
  color: var(--blue);
}

.trust{
  margin-top:18px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
  font-weight:1000;
}

/* SERVICES - QUICK responsive (solo cards grid si se usa) */
@media (max-width: 980px){
  .quick__card{grid-column: span 6}
}
@media (max-width: 520px){
  .quick__card{grid-column: span 12}
}


/* ========================= */
/* SERVICES - DETAILS CARDS  */
/* ========================= */
.details__grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:18px;
}

.svc{
  grid-column: span 6;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:22px;
  box-shadow: var(--shadow2);
  overflow:hidden;
  transition: transform .15s ease, box-shadow .15s ease;
}
.svc:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0,0,0,.14);
}

.svc__img{
  height:280px;
  background:#111827;
  overflow:hidden;
  position:relative;
}

.svc__body{padding:18px}

.svc__tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(216,15,95,.10);
  border:1px solid rgba(216,15,95,.20);
  color:#7a0b36;
  font-weight:1100;
  font-size:12px;
}

.svc__body h3{margin:10px 0 6px}
.svc__body p{margin:0 0 12px; color:var(--muted); font-weight:800}

.svc__list{
  margin:0 0 14px;
  padding:0;
  list-style:none;
  display:grid;
  gap:9px;
  color:#111827;
  font-weight:900;
}
.svc__list i{color: var(--pink)}

/* ========================= */
/* BEFORE / AFTER SLIDER     */
/* ========================= */
.ba{
  position:relative;
  height:280px;
  user-select:none;
  touch-action:none;
}

.ba__img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.ba__after{
  position:absolute;
  inset:0;
  width:50%;
  overflow:hidden;
}

.ba__line{
  position:absolute;
  top:0;
  bottom:0;
  left:50%;
  width:2px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
  transform: translateX(-1px);
}

.ba__handle{
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-50%, -50%);
  width:44px;
  height:44px;
  border-radius:999px;
  background: rgba(255,255,255,.92);
  border:1px solid rgba(0,0,0,.12);
  box-shadow: 0 14px 28px rgba(0,0,0,.16);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#111827;
}

.ba__range{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  opacity:0;
  cursor: ew-resize;
}

/* SERVICES - DETAILS responsive */
@media (max-width: 980px){
  .svc{grid-column: span 12}
  .svc__img{height:240px}
  .ba{height:240px}
  .ba__handle{width:42px; height:42px}
  .ba__range{cursor: default}
}

@media (max-width: 520px){
  .svc__img{height:220px}
  .ba{height:220px}
}


/* ========================= */
/* PROCESS (BACKGROUND)      */
/* ========================= */
.process{
  background: linear-gradient(180deg, rgba(11,47,102,.06), rgba(216,15,95,.06));
}


/* ========================= */
/* PROCESS (LEGACY GRID)     */
/* ========================= */
.process__grid{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:14px;
}
.step{
  grid-column: span 3;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:20px;
  box-shadow: var(--shadow2);
  padding:16px;
  position:relative;
  overflow:hidden;
  transition: transform .15s ease, box-shadow .15s ease;
}
.step:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(0,0,0,.14);
}
.step__num{
  position:absolute;
  top:12px;
  right:12px;
  font-weight:1100;
  color: rgba(11,47,102,.22);
  font-size:22px;
}
.step__icon{
  width:48px;
  height:48px;
  border-radius:16px;
  background: linear-gradient(135deg, var(--pink), #ff4d8b);
  box-shadow: 0 14px 26px rgba(216,15,95,.22);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
}
.step h3{margin:12px 0 8px}
.step p{margin:0; color:var(--muted); font-weight:800}

/* PROCESS (LEGACY GRID) responsive */
@media (max-width: 980px){
  .step{grid-column: span 6}
}
@media (max-width: 520px){
  .step{grid-column: span 12}
}


/* ========================= */
/* PROCESS 2 (INTERACTIVE)   */
/* ========================= */
.process2{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:18px;
  align-items:start;
  margin-top:18px;
}

.p2-card{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.06);
  border-radius:24px;
  box-shadow: var(--shadow);
  padding:18px;
  position: sticky;
  top:92px;
  overflow:hidden;
}
.p2-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(900px 260px at 10% 0%, rgba(216,15,95,.10), transparent 60%),
    radial-gradient(900px 260px at 100% 25%, rgba(11,47,102,.12), transparent 62%);
  pointer-events:none;
}
.p2-card > *{position:relative}

.p2-card__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.p2-badge{
  display:inline-flex;
  gap:8px;
  align-items:center;
  font-weight:1100;
  color: rgba(11,47,102,.78);
  background: rgba(11,47,102,.06);
  border: 1px solid rgba(11,47,102,.10);
  padding:8px 10px;
  border-radius:999px;
  width:fit-content;
}
.p2-icon{
  width:52px;
  height:52px;
  border-radius:18px;
  background: linear-gradient(135deg, var(--pink), #ff4d8b);
  box-shadow: 0 14px 26px rgba(216,15,95,.22);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  flex:0 0 auto;
  font-size:22px;
}

.p2-title{
  margin:14px 0 8px;
  font-size:24px;
  letter-spacing:-.3px;
}
.p2-lead{
  margin:0;
  color: var(--muted);
  font-weight:900;
  line-height:1.5;
}

.p2-points{
  margin-top:14px;
  display:grid;
  gap:10px;
}
.p2-point{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:12px;
  border-radius:18px;
  background: rgba(11,47,102,.05);
  border: 1px solid rgba(11,47,102,.08);
  font-weight:1000;
}
.p2-point i{margin-top:2px; color: var(--pink)}

.p2-actions{
  margin-top:14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.p2-actions .btn{
  flex: 1 1 200px;
  justify-content:center;
}

.p2-meter{
  margin-top:16px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(0,0,0,.06);
  border-radius:18px;
  padding:12px;
}
.p2-meter__track{
  height:10px;
  border-radius:999px;
  background: rgba(11,47,102,.10);
  overflow:hidden;
}
.p2-meter__fill{
  height:100%;
  width:25%;
  border-radius:999px;
  background: linear-gradient(90deg, var(--blue), var(--pink));
  transition: width .22s ease;
}
.p2-meter__labels{
  margin-top:10px;
  display:flex;
  justify-content:space-between;
  color: rgba(11,47,102,.75);
  font-weight:1000;
  font-size:12px;
}

.process2__steps{
  display:grid;
  gap:12px;
}
.p2-step{
  width:100%;
  text-align:left;
  border:0;
  cursor:pointer;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.06);
  border-radius:22px;
  box-shadow: var(--shadow2);
  padding:14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.p2-step__left{
  display:flex;
  gap:12px;
  align-items:center;
}
.p2-step__num{
  width:40px;
  height:40px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:1100;
  color: rgba(11,47,102,.85);
  background: rgba(11,47,102,.06);
  border: 1px solid rgba(11,47,102,.10);
  flex:0 0 auto;
}
.p2-step__title{font-weight:1100; font-size:16px}
.p2-step__sub{
  margin-top:4px;
  color: var(--muted);
  font-weight:900;
  font-size:13px;
}
.p2-step__chev{
  color: rgba(11,47,102,.55);
  transition: transform .18s ease;
}
.p2-step:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(0,0,0,.14);
}
.p2-step.is-active{
  border-color: rgba(216,15,95,.22);
  box-shadow: 0 18px 38px rgba(216,15,95,.12);
}
.p2-step.is-active .p2-step__num{
  color:#fff;
  background: linear-gradient(135deg, var(--pink), #ff4d8b);
  border-color: rgba(216,15,95,.20);
}
.p2-step.is-active .p2-step__chev{
  transform: rotate(90deg);
  color: rgba(216,15,95,.75);
}

/* PROCESS 2 responsive */
@media (max-width: 980px){
  .process2{grid-template-columns:1fr}
  .p2-card{position:static; top:auto}
  .process2__preview{order:2}
  .process2__steps{order:1}
}

@media (max-width: 520px){
  .p2-title{font-size:20px}
  .p2-actions{display:grid}
  .p2-actions .btn{width:100%}
}


/* ========================= */
/* REVIEWS (CAROUSEL)        */
/* ========================= */
.reviews-carousel{
  position:relative;
  margin-top:18px;
}

.reviews-viewport{
  overflow:hidden;
  border-radius:24px;
  padding: 6px 6px 22px;
}

.reviews .quotes{
  display:flex;
  gap:16px;
  transform: translateX(0);
  transition: transform .35s ease;
  will-change: transform;
  padding-bottom:6px;
}

.reviews .quote{
  flex: 0 0 360px;
  padding:18px;
  border-radius:20px;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  box-shadow: 0 14px 28px rgba(0,0,0,.10);
}

.quote--accent{
  border:1px solid rgba(216,15,95,.22);
  box-shadow: 0 16px 34px rgba(216,15,95,.14);
}

.stars{
  display:flex;
  gap:6px;
  color:#f59e0b;
  font-weight:1100;
}
.quote p{margin:12px 0 10px; font-weight:900}
.by{color:var(--muted); font-weight:900}

.reviews-btn{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  box-shadow: var(--shadow2);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index:5;
  transition: transform .15s ease, filter .15s ease, opacity .15s ease;
}
.reviews-btn:hover{
  transform: translateY(-50%) translateY(-1px);
  filter: brightness(1.02);
}
.reviews-btn.prev{left:-10px}
.reviews-btn.next{right:-10px}
.reviews-btn.is-disabled{opacity:.35; pointer-events:none}

.reviews-dots{
  margin-top:16px;
  padding-top:2px;
  display:flex;
  gap:8px;
  justify-content:center;
}
.reviews-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.14);
  background: rgba(11,47,102,.10);
  cursor:pointer;
}
.reviews-dot.is-active{
  background: linear-gradient(135deg, var(--pink), #ff4d8b);
  border-color: rgba(216,15,95,.22);
}

/* REVIEWS responsive */
@media (max-width: 980px){
  .reviews .quote{flex: 0 0 86%}
  .reviews-btn{display:none}

  .quotes::-webkit-scrollbar{height:8px}
  .quotes::-webkit-scrollbar-thumb{
    background: rgba(11,47,102,.18);
    border-radius:999px;
  }
}
@media (max-width: 520px){
  .reviews .quote{flex: 0 0 92%}
}


/* ========================= */
/* CONTACT                   */
/* ========================= */
.contact__wrap{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items:stretch;
}

.contact__left{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:24px;
  box-shadow: var(--shadow2);
  padding:18px;
}
.contact__left h2{margin:0 0 8px}
.contact__left p{margin:0 0 14px; color:var(--muted); font-weight:900}

.contact__bullets{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
  margin-bottom:14px;
}
.bullet{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:12px;
  border-radius:16px;
  background: rgba(11,47,102,.05);
  border:1px solid rgba(11,47,102,.08);
  font-weight:1000;
}
.bullet i{margin-top:2px; color: var(--blue)}

.contact__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.contact__note{
  margin-top:14px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px;
  border-radius:16px;
  background: rgba(216,15,95,.08);
  border:1px solid rgba(216,15,95,.16);
  color:#7a0b36;
  font-weight:1000;
}

.form{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:24px;
  box-shadow: var(--shadow2);
  padding:18px;
  display:grid;
  gap:12px;
}
.form__row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.field{
  display:grid;
  gap:6px;
  font-weight:1000;
}
.field span{font-size:13px}

input,select,textarea{
  padding:12px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.12);
  font:inherit;
  outline:none;
  transition: box-shadow .15s ease, border-color .15s ease;
}
input:focus,select:focus,textarea:focus{
  border-color: rgba(216,15,95,.45);
  box-shadow: 0 0 0 4px rgba(216,15,95,.12);
}
.form button{width:100%}
.form__fineprint{
  margin-top:2px;
  font-weight:900;
  color:var(--muted);
  display:flex;
  gap:10px;
  align-items:center;
}

/* CONTACT responsive */
@media (max-width: 980px){
  .contact__wrap{grid-template-columns:1fr}
  .form__row{grid-template-columns:1fr}
  .contact__bullets{grid-template-columns:1fr}
}


/* ========================= */
/* FOOTER                    */
/* ========================= */
.footer{
  margin-top:60px;
  padding:32px 0 18px;
  color:var(--muted);
  font-weight:900;
  background:
    radial-gradient(900px 260px at 10% 0%, rgba(11,47,102,.06), transparent 60%),
    radial-gradient(900px 260px at 90% 20%, rgba(216,15,95,.06), transparent 62%),
    linear-gradient(180deg, #ffffff 0%, #f6f7fb 100%);
  border-top: 1px solid rgba(0,0,0,.06);
  backdrop-filter: blur(8px);
}

.footer__inner{
  padding:42px 0 28px;
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap:28px;
}

.footer__brand{
  display:flex;
  gap:18px;
  align-items:flex-start;
  flex-direction:column;
  align-items:flex-start;
}

.footer__logo{
  width:250px;
  height:auto;
  object-fit:contain;
}

.footer__meta{
  display:grid;
  gap:10px;
  font-weight:900;
  color:var(--muted);
}
.footer__meta a{
  display:inline-flex;
  gap:8px;
  align-items:center;
  font-weight:1100;
  color: rgba(11,47,102,.85);
}
.footer__meta a:hover{color: var(--pink)}

.footer__cols{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:22px;
}
.footer__col{display:grid; gap:10px}
.footer__title{
  font-weight:1100;
  color:#111827;
  margin-bottom:6px;
}
.footer__col a{
  font-weight:900;
  color: rgba(11,47,102,.75);
  transition: color .15s ease, transform .15s ease;
}
.footer__col a:hover{
  color: var(--pink);
  transform: translateX(2px);
}

.footer__bottom{
  border-top: 1px solid rgba(0,0,0,.06);
  padding:16px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  font-weight:900;
  color:var(--muted);
}
.footer__copy{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  align-items:center;
}
.footer__copy a{
  color: rgba(11,47,102,.85);
  font-weight:1100;
}
.footer__copy a:hover{color: var(--pink)}
.footer__sep{opacity:.5; margin:0 4px}

.toTop{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:10px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(0,0,0,.12);
  box-shadow: var(--shadow2);
  font-weight:1100;
  color: rgba(11,47,102,.85);
  transition: transform .15s ease, filter .15s ease;
}
.toTop:hover{transform: translateY(-1px); filter: brightness(1.02)}

/* FOOTER responsive */
@media (max-width: 980px){
  .footer{padding-left:12px; padding-right:12px}

  .footer__inner{
    grid-template-columns:1fr;
    text-align:center;
    justify-items:center;
  }

  .footer__brand{
    flex-direction:column;
    align-items:center;
  }

  .footer__meta{
    text-align:center;
    justify-items:center;
  }

  .footer__cols{
    grid-template-columns:1fr 1fr;
  }

  .footer__bottom{
    flex-direction:column;
    text-align:center;
    align-items:center;
  }

  .footer__copy{
    justify-content:center;
    text-align:center;
  }
}

@media (max-width: 520px){
  .footer__cols{grid-template-columns:1fr}
  .footer__logo{width:250px}
}


/* ========================= */
/* FLOATING CALL             */
/* ========================= */
.float-call{
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:90;
  display:none;
  align-items:center;
  gap:10px;
  padding:14px 16px;
  border-radius:999px;
  background: linear-gradient(135deg, var(--pink), #ff4d8b);
  color:#fff;
  font-weight:1100;
  box-shadow: 0 18px 40px rgba(216,15,95,.34);
  transition: transform .15s ease, filter .15s ease;
}
.float-call:hover{transform: translateY(-2px); filter:brightness(1.02)}

/* FLOATING CALL responsive */
@media (max-width: 980px){
  .float-call{display:inline-flex}
}


/* ========================= */
/* REVEAL ANIMATIONS         */
/* ========================= */
.reveal{
  opacity:0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible{
  opacity:1;
  transform: translateY(0);
}
[data-reveal="left"]{transform: translateX(16px)}
[data-reveal="left"].is-visible{transform: translateX(0)}
[data-reveal="up"]{transform: translateY(14px)}
[data-reveal="up"].is-visible{transform: translateY(0)}


/* ========================= */
/* SERVICES - RADIAL DESKTOP */
/* ========================= */
.pulse-highlight{
  outline: 4px solid rgba(216,15,95,.22);
  box-shadow: 0 18px 38px rgba(216,15,95,.16);
  transition: outline .2s ease, box-shadow .2s ease;
}

.services-split{
  display:grid;
  grid-template-columns: 640px 1fr;
  gap:18px;
  align-items:center;
  margin-top:18px;
}

.radial{
  position:relative;
  width: min(640px, 100%);
  aspect-ratio: 1 / 1;
  margin:0 auto;
}

.radial--left{
  width:640px;
  max-width:100%;
  aspect-ratio: 1 / 1;
}

.radial__center{
  position:absolute;
  inset:18%;
  background:#fff;
  border-radius:50%;
  border:5px solid rgba(216,15,95,.90);
  box-shadow: var(--shadow);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:22px;
  text-align:center;
}
.radial__center img{
  max-width:86%;
  height:auto;
}

.radial__ring{
  position:absolute;
  inset:8%;
  border-radius:50%;
  border:1px dashed rgba(11,47,102,.22);
  opacity:.8;
  pointer-events:none;
}

.radial__item{
  position:absolute;
  width:190px;
  transform: translate(-50%, -50%);
  text-align:center;
  user-select:none;
}

.radial__badge{
  width:74px;
  height:74px;
  margin:0 auto 10px;
  border-radius:999px;
  background: linear-gradient(135deg, var(--pink), #ff4d8b);
  box-shadow: 0 14px 26px rgba(216,15,95,.28);
  display:flex;
  align-items:center;
  justify-content:center;
  border:6px solid rgba(255,255,255,.92);
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
  color:#fff;
}
.radial__badge i{font-size:30px}

.radial__label{font-weight:1100; color:#111827}
.radial__desc{margin-top:4px; color:var(--muted); font-weight:900; font-size:13px}

.radial__item:hover .radial__badge{
  transform: scale(1.07);
  filter: brightness(1.05);
}

.radial__item.is-active .radial__badge{
  box-shadow: 0 18px 38px rgba(216,15,95,.34);
  filter: brightness(1.06);
  transform: scale(1.08);
}
.radial__item.is-active .radial__label{color: var(--blue)}

.pos-n{left:50%; top:10%}
.pos-nw{left:18%; top:28%}
.pos-ne{left:82%; top:28%}
.pos-sw{left:18%; top:82%}
.pos-se{left:82%; top:82%}

.services-right .svc-panel{padding:16px}

.svc-panel{
  background: rgba(255,255,255,.92);
  border:1px solid rgba(0,0,0,.06);
  border-radius:24px;
  box-shadow: var(--shadow);
  padding:18px;
  position:relative;
  overflow:hidden;
}
.svc-panel::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(900px 260px at 10% 0%, rgba(216,15,95,.10), transparent 60%),
    radial-gradient(900px 260px at 100% 25%, rgba(11,47,102,.12), transparent 62%);
  pointer-events:none;
}
.svc-panel > *{position:relative}

.svc-panel__top{
  display:flex;
  gap:12px;
  align-items:flex-start;
}

.svc-panel__icon{
  width:52px;
  height:52px;
  border-radius:18px;
  background: linear-gradient(135deg, var(--pink), #ff4d8b);
  box-shadow: 0 14px 26px rgba(216,15,95,.22);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  flex:0 0 auto;
  font-size:22px;
}

.svc-panel__kicker{
  display:inline-flex;
  gap:8px;
  align-items:center;
  font-weight:1100;
  color: rgba(11,47,102,.75);
  background: rgba(11,47,102,.06);
  border: 1px solid rgba(11,47,102,.10);
  padding:8px 10px;
  border-radius:999px;
  width:fit-content;
}

.svc-panel__title{
  margin:10px 0 8px;
  font-size:22px;
  letter-spacing:-.3px;
}
.svc-panel__lead{
  margin:0;
  color:var(--muted);
  font-weight:900;
  line-height:1.5;
}

.svc-panel__grid{
  margin-top:14px;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:12px;
}

.svc-panel__block{
  background: rgba(255,255,255,.72);
  border:1px solid rgba(0,0,0,.06);
  border-radius:18px;
  padding:14px;
}

.svc-panel__blockTitle{
  display:flex;
  gap:10px;
  align-items:center;
  font-weight:1100;
  color:#111827;
  margin-bottom:10px;
}

.svc-panel__list{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
  font-weight:900;
  color:#111827;
}
.svc-panel__list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
}
.svc-panel__list i{margin-top:2px; color: var(--pink)}

.svc-panel__tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.svc-tag{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:10px 12px;
  border-radius:999px;
  background: rgba(216,15,95,.08);
  border: 1px solid rgba(216,15,95,.16);
  font-weight:1100;
  color:#7a0b36;
  white-space:nowrap;
}

.svc-panel__actions{
  margin-top:14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.svc-panel__actions .btn{
  flex: 1 1 220px;
  justify-content:center;
}

.svc-panel__note{
  margin-top:14px;
  display:flex;
  gap:10px;
  align-items:center;
  padding:12px;
  border-radius:18px;
  background: rgba(11,47,102,.06);
  border: 1px solid rgba(11,47,102,.10);
  color: rgba(11,47,102,.85);
  font-weight:1000;
}

.svc-panel.is-swapping{
  transform: translateY(2px);
  opacity:.92;
  transition: opacity .18s ease, transform .18s ease;
}

/* SERVICES - RADIAL DESKTOP responsive */
@media (max-width: 980px){
  .services-split{
    display:block;
    margin-top:0;
  }

  .services-left,
  .services-right{
    display:none;
  }
}


/* ========================= */
/* SERVICES - MOBILE RADIAL  */
/* ========================= */
.services-mobile{
  display:none;
  margin-top:14px;
}

@media (max-width: 980px){
  .services-mobile{
    display:grid;
    gap:12px;
  }

  .mradial{
    position:relative;
    width:100%;
    aspect-ratio: 1 / 1;
    max-width:360px;
    margin:0 auto;
  }

  .mradial__center{
    position:absolute;
    inset:26%;
    background:#fff;
    border-radius:50%;
    border:4px solid rgba(216,15,95,.90);
    box-shadow: var(--shadow2);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:16px;
    z-index:2;
  }

  .mradial__center img{
    max-width:92%;
    height:auto;
  }

  .mradial__ring{
    position:absolute;
    inset:10%;
    border-radius:50%;
    border:1px dashed rgba(11,47,102,.22);
    opacity:.9;
    z-index:1;
  }

  .mradial__btn{
    position:absolute;
    width:56px;
    height:56px;
    border-radius:999px;
    border:6px solid rgba(255,255,255,.92);
    background: linear-gradient(135deg, var(--pink), #ff4d8b);
    box-shadow: 0 14px 26px rgba(216,15,95,.22);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:3;
    transition: transform .16s ease, filter .16s ease, box-shadow .16s ease;
  }

  .mradial__btn i{font-size:22px}

  .mradial__btn.is-active{
    transform: scale(1.06);
    filter: brightness(1.05);
    box-shadow: 0 18px 36px rgba(216,15,95,.30);
  }

  .mradial__btn:active{
    transform: scale(1.02);
  }

  .mradial__btn[data-service="residential"]{left:50%; top:10%; transform: translate(-50%, -50%);}
  .mradial__btn[data-service="commercial"]{left:88%; top:35%; transform: translate(-50%, -50%);}
  .mradial__btn[data-service="cabinets"]{left:72%; top:86%; transform: translate(-50%, -50%);}
  .mradial__btn[data-service="epoxy"]{left:28%; top:86%; transform: translate(-50%, -50%);}
  .mradial__btn[data-service="drywall"]{left:12%; top:35%; transform: translate(-50%, -50%);}

  .m-panel{
    background: rgba(255,255,255,.92);
    border:1px solid rgba(0,0,0,.06);
    border-radius:22px;
    box-shadow: var(--shadow2);
    padding:14px;
    position:relative;
    overflow:hidden;
    transition: transform .22s ease, opacity .22s ease;
    will-change: transform, opacity;
  }

  .m-panel::before{
    content:"";
    position:absolute;
    inset:-2px;
    background:
      radial-gradient(700px 200px at 10% 0%, rgba(216,15,95,.10), transparent 60%),
      radial-gradient(700px 200px at 100% 25%, rgba(11,47,102,.12), transparent 62%);
    pointer-events:none;
  }

  .m-panel > *{position:relative}

  .m-panel__top{
    display:flex;
    gap:10px;
    align-items:flex-start;
  }

  .m-panel__icon{
    width:44px;
    height:44px;
    border-radius:16px;
    background: linear-gradient(135deg, var(--pink), #ff4d8b);
    box-shadow: 0 14px 26px rgba(216,15,95,.18);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    flex:0 0 auto;
    font-size:18px;
  }

  .m-panel__kicker{
    display:inline-flex;
    gap:8px;
    align-items:center;
    font-weight:1100;
    color: rgba(11,47,102,.75);
    background: rgba(11,47,102,.06);
    border: 1px solid rgba(11,47,102,.10);
    padding:7px 10px;
    border-radius:999px;
    width:fit-content;
    font-size:12px;
  }

  .m-panel__title{
    margin-top:8px;
    font-weight:1100;
    font-size:16.5px;
    letter-spacing:-.2px;
  }

  .m-panel__lead{
    margin-top:6px;
    color:var(--muted);
    font-weight:900;
    line-height:1.45;
    font-size:13px;
  }

  .m-panel__bullets{
    margin-top:12px;
    display:grid;
    gap:8px;
  }

  .m-bullet{
    display:flex;
    gap:10px;
    align-items:flex-start;
    padding:10px 12px;
    border-radius:16px;
    background: rgba(11,47,102,.05);
    border: 1px solid rgba(11,47,102,.08);
    font-weight:1000;
    font-size:13px;
  }

  .m-bullet i{margin-top:2px; color: var(--pink)}

  .m-panel__actions{
    margin-top:12px;
    display:grid;
    gap:10px;
  }

  .m-panel__actions .btn{
    width:100%;
    justify-content:center;
  }

  .m-panel.is-swapping{
    opacity:0;
    transform: translateX(10px);
  }
}


/* ========================= */
/* SERVICES - QUICK MOBILE   */
/* ========================= */
.quick-mobile{display:none}

@media (max-width: 980px){
  .quick-mobile{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-top:14px;
  }

  .quick-mobile .quick__card{
    display:flex;
    align-items:center;
    gap:12px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(0,0,0,.06);
    border-radius:20px;
    box-shadow: var(--shadow2);
    padding:14px;
  }

  .quick-mobile .quick__icon{
    width:50px;
    height:50px;
    border-radius:16px;
    background: linear-gradient(135deg, var(--pink), #ff4d8b);
    box-shadow: 0 14px 26px rgba(216,15,95,.22);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    flex:0 0 auto;
  }

  .quick-mobile .quick__title{font-weight:1100}
  .quick-mobile .quick__desc{
    margin-top:4px;
    color:var(--muted);
    font-weight:900;
    font-size:13px;
  }

  .quick-mobile .quick__cta{
    margin-left:auto;
    display:inline-flex;
    gap:8px;
    align-items:center;
    font-weight:1100;
    color: var(--blue);
    white-space:nowrap;
  }
}

@media (max-width: 520px){
  .radial__item{width:145px}
  .radial__badge{width:66px; height:66px}
}

/* ========================= */
/* NUEVO */
/* ========================= */

/* 5 puntos equidistantes */
.pos-n{left:50%; top:8%;}
.pos-ne{left:84%; top:30%;}
.pos-se{left:72%; top:84%;}
.pos-sw{left:28%; top:84%;}
.pos-nw{left:16%; top:30%;}
/* ========================= */
/* SERVICES - DETAILS CARDS  */
/* ========================= */
.details__grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:18px;
}

.svc{
  grid-column: span 6;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:20px;
  box-shadow: var(--shadow2);
  overflow:hidden;
  transition: transform .15s ease, box-shadow .15s ease;
}

.svc:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0,0,0,.14);
}

.svc__img{
  height:260px;
  background:#111827;
  overflow:hidden;
}

.svc__body{padding:16px}

.svc__tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(216,15,95,.10);
  border:1px solid rgba(216,15,95,.20);
  color:#7a0b36;
  font-weight:1100;
  font-size:12px;
}

.svc__body h3{margin:10px 0 6px}
.svc__body p{margin:0 0 12px; color:var(--muted); font-weight:800}

.svc__list{
  margin:0 0 14px;
  padding:0;
  list-style:none;
  display:grid;
  gap:8px;
  color:#111827;
  font-weight:900;
}

.svc__list i{color: var(--pink)}

/* Responsive */
@media (max-width: 980px){
  .svc{grid-column: span 12}
  .svc__img{height:240px}
}

/* ========================= */
/* BEFORE / AFTER (REVEAL)   */
/* ========================= */
.ba{
  --pos:50%;
  --fade: 14px;
}

/* BEFORE recortado con mask */
.ba__before{
  position:absolute;
  inset:0;
  z-index:2;
  -webkit-mask-image: linear-gradient(
    to right,
    #000 0,
    #000 calc(var(--pos) - var(--fade)),
    rgba(0,0,0,0) calc(var(--pos) + var(--fade))
  );
  mask-image: linear-gradient(
    to right,
    #000 0,
    #000 calc(var(--pos) - var(--fade)),
    rgba(0,0,0,0) calc(var(--pos) + var(--fade))
  );
  -webkit-mask-repeat:no-repeat;
  mask-repeat:no-repeat;
  -webkit-mask-size:100% 100%;
  mask-size:100% 100%;
}

.ba__img--before{
  z-index:2;
}

.ba__handle{
  position:absolute;
  transform: translateX(-50%);
  width: 54px;
  border:0;
  background: transparent;
  cursor: ew-resize;
  display:grid;
  place-items:center;
  z-index:4;
}

.ba__handle::before{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  width:2px;
  left:50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,.88);
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.35));
}

.ba__knob{
  position:relative;
  width:44px;
  height:44px;
  border-radius:999px;
  background:#fff;
  display:grid;
  place-items:center;
  font-weight:1100;
  color:#111;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
}

.ba__handle:focus-visible .ba__knob{
  outline: 3px solid rgba(255,255,255,.92);
  outline-offset: 6px;
}

/* Tags dentro del área, no afectan layout */
.ba__tags{
  position:absolute;
  left:12px;
  right:12px;
  bottom:12px;
  display:flex;
  justify-content:space-between;
  pointer-events:none;
  z-index:5;
}

.ba__tag{
  display:inline-flex;
  padding:7px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.88);
  border:1px solid rgba(0,0,0,.10);
  color:#111;
  font-weight:900;
  font-size:12px;
}

@media (max-width: 720px){
  .ba{--fade: 12px}
}

/* ========================= */
/* WORK (TIKTOK)             */
/* ========================= */
.work{
  background: linear-gradient(180deg, rgba(11,47,102,.05), rgba(216,15,95,.05));
}

.work__grid{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.work__card{
  grid-column: span 4;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 24px;
  box-shadow: var(--shadow2);
  overflow: hidden;
  transition: transform .15s ease, box-shadow .15s ease;
}

.work__card:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0,0,0,.14);
}

.work__embed{
  padding: 14px 14px 0;
}

/* Hace que el embed se vea centrado y no “pegado” */
.work__embed .tiktok-embed{
  margin: 0 auto !important;
}

.work__meta{
  padding: 12px 16px 16px;
}

.work__meta h3{
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 1100;
  color: #111827;
}

.work__meta p{
  margin: 0;
  color: var(--muted);
  font-weight: 900;
  line-height: 1.45;
}

.work__cta{
  margin-top: 18px;
}

.work__ctaBox{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow2);
}

.work__ctaBox h3{
  margin: 0 0 4px;
  font-size: 18px;
  letter-spacing: -.2px;
}

.work__ctaBox p{
  margin: 0;
  color: var(--muted);
  font-weight: 900;
}

/* Responsive */
@media (max-width: 980px){
  .work__card{ grid-column: span 12; }
  .work__ctaBox{
    flex-direction: column;
    text-align: center;
  }
  .work__ctaBox .btn{
    width: 100%;
    justify-content: center;
  }
}
