/* =========================================
   0) RESET & BASE
========================================= */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; font-family: Arial, sans-serif; }
html { scroll-behavior: smooth; }

/* ==== VARIABLES ==== */
:root{
  --logo-h: 80px;                          
  --hero-overlap: clamp(16px, 4vw, 40px);  

  /* Colores base */
  --brand: #181818;
  --card-bg: #4a4a4a;
  --check: #10b981;
  --muted: #e9e9e9;

  /* Vars (About/Gallery) */
  --accent: #24bb2b;
  --surface: #f6f7f8;
  --ink: #111;
  --muted-ink: #565656;
  --card: #ffffff;
  --ring: rgba(16,185,129,.25);

  /* Overlay glass */
  --blur: 16px;
  --glass: rgba(24,24,24,.55);
  --glass2: rgba(30,30,30,.75);
  --ring-glass: rgba(255,255,255,.12);
  --accent-soft: #cfe974;
  --accent-soft-2: #a7d746;

  /* Paleta overlay (upgrade) */
  --menu-bg: #0c0f0d;
  --menu-panel: rgba(18,18,18,.78);
  --menu-stroke: rgba(255,255,255,.12);
  --neon: #8df87a;
  --neon-2: #3ee26b;
  --neon-tint: rgba(141,248,122,.18);
  --ink-invert: #e9f6ea;
}

/* =========================================
   1) UTILIDADES COMPARTIDAS: SECTION HEADERS & SURFACE
========================================= */
.section-head {
  text-align: center;
  margin: 0 auto clamp(16px, 3vw, 28px);
  max-width: 820px;
  position: relative;
}
.section-kicker {
  display: inline-block; font-weight: 900; font-size: .8rem;
  letter-spacing: .16em; text-transform: uppercase; color: #666;
  background: #fff; padding: 6px 10px; border-radius: 999px; border: 1px solid #eee;
}
.section-head h2 { font-size: clamp(26px, 4vw, 40px); margin: 10px 0 6px; letter-spacing: .02em; }
.section-underline {
  width: 96px; height: 6px; margin: 8px auto 0; border-radius: 999px;
  background: linear-gradient(90deg, rgba(0,0,0,0.06), var(--accent), rgba(0,0,0,0.06));
  box-shadow: 0 6px 14px rgba(0,0,0,.08);
}

/* Fondo “smoke” (versión unificada y fuerte) */
.section-surface{
  background: url("galery/fondo.png") center/cover fixed no-repeat !important;
  background-size: 100% !important;
  position: relative;
  isolation: isolate;
}
.section-surface::before{
  content: "";
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(5px);
  z-index: -1;
}
@media (max-width: 768px){
  .section-surface{ background-attachment: scroll !important; }
}

/* =========================================
   2) NAVBAR & MENU OVERLAY (Glass + Upgrade)
========================================= */
.navbar {
  position: fixed; inset-inline: 0; top: 0;
  height: var(--logo-h); width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 16px; z-index: 700;
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled { background-color: rgba(32, 32, 32, 0.85); box-shadow: 0 2px 5px rgba(0,0,0,0.3); }
.logo img { height: var(--logo-h); width: auto; object-fit: contain; margin: 0; display: block; }

.menu-toggle{
  height: var(--logo-h); display: flex; align-items: center; justify-content: center;
  font-size: calc(var(--logo-h) * .45); color: #fff; cursor: pointer; z-index: 1002;
  background: transparent; border: 0;
}
#menu-icon { display: inline-flex; align-items: center; gap: 8px; }
#menu-icon i{ font-size: 26px; line-height: 1; color: #111; }
.navbar.scrolled #menu-icon i{ color: #fff; }
#menu-icon i{ color: #f6fff8; } 
.oculto{ display:none !important; }

@media (max-width: 768px){ :root{ --logo-h: 56px; } }
@media (max-width: 480px){ :root{ --logo-h: 48px; } }

.menu-overlay{
  position: fixed; inset: 0; display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(1200px 800px at 10% -20%, rgba(141,248,122,.10), transparent 55%),
    radial-gradient(1000px 600px at 110% 120%, rgba(141,248,122,.06), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.88));
  opacity: 0; pointer-events: none; transition: opacity .28s ease; z-index: 1001;
}
.menu-overlay.active{ opacity: 1; pointer-events: auto; }

.menu-close{
  position: absolute; top: 16px; right: 18px;
  width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; cursor: pointer; color:#fff;
  background: rgba(255,255,255,.08); border:1px solid var(--menu-stroke);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.menu-close:hover{ background: rgba(255,255,255,.14); }

.menu-panel{
  width: min(1100px, 92vw);
  border-radius: 24px;
  padding: 28px clamp(16px,3vw,28px) 22px;
  color: var(--ink-invert);
  background:
    radial-gradient(1400px 900px at -10% -20%, rgba(141,248,122,.08), transparent 50%),
    radial-gradient(1200px 700px at 110% 120%, rgba(141,248,122,.05), transparent 50%),
    var(--menu-panel);
  backdrop-filter: blur(var(--blur));
  border: 1px solid var(--menu-stroke);
  box-shadow: 0 30px 80px rgba(0,0,0,.55), 0 0 0 1px rgba(141,248,122,.06) inset;
}

.menu-header{ text-align:center; margin-bottom:18px; }
.menu-logo{
  width:64px; height:64px; object-fit:cover; border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,.5), 0 0 0 3px var(--neon-tint);
}
.menu-title{ font-size:clamp(24px,4.2vw,36px); font-weight:900; margin-top:10px; letter-spacing:.02em; }
.menu-sub{ opacity:.85; }

.menu-grid{
  display:grid; gap:16px; grid-template-columns: repeat(3, minmax(0,1fr));
}
@media (max-width:900px){ .menu-grid{ grid-template-columns:1fr; } }

.menu-card{
  background: rgba(16,16,16,.7);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:16px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 18px 40px rgba(0,0,0,.4);
  transition: transform .18s ease, box-shadow .22s ease, border-color .22s ease;
}
.menu-card:hover{
  transform: translateY(-2px);
  border-color: rgba(141,248,122,.24);
  box-shadow: 0 24px 52px rgba(0,0,0,.55), 0 0 0 1px rgba(141,248,122,.10) inset;
}
.card-head{
  font-weight:900; letter-spacing:.08em; font-size:.9rem; opacity:.95;
  display:flex; align-items:center; gap:10px; margin-bottom:14px; color:#dfeee2;
}
.card-head i{ color: var(--neon); filter: drop-shadow(0 4px 8px rgba(141,248,122,.25)); }

.menu-card ul{ list-style:none; margin:0; padding:0; display:grid; gap:10px; }
.menu-card li{ margin:0; }
.menu-card a{
  position:relative; display:flex; align-items:center; gap:10px;
  text-decoration:none; color:#f6fff8; font-weight:600;
  padding:12px 14px; border-radius:12px;
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.10);
  transition: transform .15s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
  outline: none;
}
.menu-card a::before{
  content:""; position:absolute; left:8px; top:50%; transform:translateY(-50%);
  width:6px; height:6px; border-radius:50%; background: transparent;
  transition: background .2s ease, box-shadow .2s ease;
}
.menu-card a:hover{
  transform: translateY(-1px);
  background:rgba(255,255,255,.08); border-color: rgba(255,255,255,.22);
}
.menu-card a:hover::before{ background: var(--neon); box-shadow: 0 0 0 6px rgba(141,248,122,.14); }
.menu-card a:focus-visible{
  border-color: var(--neon);
  box-shadow: 0 0 0 3px rgba(141,248,122,.28), 0 10px 24px rgba(0,0,0,.4);
}

.menu-bigbtn{
  --b: rgba(141,248,122,.18);
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; width:100%; margin-bottom:10px;
  padding:14px 16px; border-radius:14px;
  text-decoration:none; font-weight:900; letter-spacing:.01em;
  color:#0c1406; background: linear-gradient(180deg, #eafee7, #ccfbd7);
  border:1px solid #c8f5d1;
  box-shadow: 0 14px 32px rgba(0,0,0,.28), 0 0 0 2px var(--b) inset;
  transition: transform .14s ease, box-shadow .22s ease, filter .18s ease;
}
.menu-bigbtn:hover{
  transform: translateY(-1px); filter: brightness(1.02);
  box-shadow: 0 18px 40px rgba(0,0,0,.34), 0 0 0 3px rgba(141,248,122,.22) inset;
}
.menu-bigbtn.is-cta{
  background: linear-gradient(180deg, #d4ffd0, #87f5a7);
  border-color: #aaf3bb;
  box-shadow: 0 16px 40px rgba(62,226,107,.26), 0 0 0 2px rgba(62,226,107,.25) inset;
}

.menu-divider{
  height: 1px; width: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.16), transparent);
  border: 0; margin: 12px 0;
}

.menu-social{ display:flex; gap:10px; margin-top:12px; }
.menu-social a{
  width:40px; height:40px; border-radius:12px; display:grid; place-items:center;
  color:#fff; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12);
  transition: transform .12s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.menu-social a:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.12); border-color: rgba(141,248,122,.35);
  box-shadow: 0 0 0 6px rgba(141,248,122,.14);
}

.menu-footer{ text-align:center; margin-top:16px; opacity:.85; }
.menu-footer a{ color:#d9f7de; text-decoration:none; font-weight:600; }
.menu-footer a:hover{ text-decoration:underline; color:#fff; }

@media (max-width: 900px){
  .menu-panel{ padding: 24px 16px 18px; }
  .menu-card{ padding:14px; }
  .menu-bigbtn{ padding:13px 14px; }
}

/* =========================================
   3) HERO (Video + Botones)
========================================= */
.video-container{ position: relative; overflow: hidden; min-height: calc(100vh + var(--hero-overlap)); }
@supports (height: 100dvh){ .video-container{ min-height: calc(100dvh + var(--hero-overlap)); } }
@supports (height: 100svh){ .video-container{ min-height: calc(100svh + var(--hero-overlap)); } }
.video-container video {
  position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%;
  transform: translate(-50%, -50%); z-index: -1; object-fit: cover;
  filter: brightness(1.08) contrast(1.02);
}
.video-container::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.30) 40%, rgba(0,0,0,.45));
  pointer-events:none; z-index: 0;
}

.content {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  color: #ffffff; text-align: center; padding: 20px; width: min(100%, 1000px); z-index: 1;
}
.content h1, .content h2 { color: #e4e4e4; font-weight: 800; text-shadow: 0 5px 10px rgba(0,0,0,.85); }
.content h1 { color: #ffffff; font-size: clamp(26px, 4vw, 48px); margin-bottom: 20px; }


.content button{
  padding: 14px 30px; font-size: 1rem; background: transparent; color: #fff;
  border: 2px solid rgba(19, 160, 26, 0.986); border-radius: 12px;
  font-weight: 800; cursor: pointer; position: relative; overflow: hidden; isolation: isolate;
  box-shadow: none; backdrop-filter: none; margin: 0 8px;
  transition: color .2s ease, border-color .2s ease, transform .15s ease, box-shadow .2s ease;
  will-change: transform;
}
.content button::before{
  content: ""; position: absolute; inset: 0; background: #3cce43;
  transform: translateY(100%); transition: transform .25s ease; z-index: -1; border-radius: inherit;
}
.content button:hover{ color:#ffffff; border-color:hsl(120, 76%, 33%); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,.35); }
.content button:hover::before{ transform: translateY(0); }
.content button:active{ transform: translateY(0); box-shadow: 0 3px 9px rgba(0,0,0,.35); }
.content button:focus-visible{ outline: 2px solid #fff; outline-offset: 3px; }

@media (max-width: 600px){
  .content button{ display: block; width: 80%; margin: 10px auto; }
}

/* =========================================
   4) SOCIAL FLOTANTE (barra izquierda)
========================================= */
.social-sidebar { position: fixed; top: 40%; left: 0; display: flex; flex-direction: column; z-index: 999; }
.social-sidebar a { display: flex; align-items: center; justify-content: center; height: 40px; width: 40px; margin: 0; color: white; text-decoration: none; font-size: 18px; transition: all 0.3s ease; }
.social-sidebar a:hover { transform: scale(1.1); opacity: 0.9; }
.social-sidebar .facebook { background: #3b5998; }
.social-sidebar .x { background: #000; }
.social-sidebar .email { background: #7c7c7c; }
.social-sidebar .linkedin { background: #0077b5; }
.social-sidebar .messenger { background: #0084ff; }
.social-sidebar .share { background: #8bc34a; }
.social-sidebar .pinterest { background: #bd081c; }
.social-sidebar .sms { background: #222222; }
@media (max-width: 768px) { .social-sidebar { display: none; } }

/* =========================================
   5) ABOUT (Sección)
========================================= */
.about{ background: var(--surface); padding: clamp(28px, 6vw, 72px) 16px; }
.about-grid{
  max-width: 1100px; margin: 0 auto;
  display: grid; gap: clamp(18px, 3vw, 28px);
  grid-template-columns: 1.1fr 1.7fr; align-items: start;
}
@media (max-width: 900px){ .about-grid{ grid-template-columns: 1fr; } }

/* Columna izquierda */
.about-media{
  background: var(--card); border-radius: 18px; padding: clamp(16px, 3.2vw, 22px);
  box-shadow: 0 10px 24px rgba(0,0,0,.08); border: 1px solid #ececec;
}
.about-logo{ width: 180px; max-width: 100%; border-radius: 16px; display:block; margin: 2px auto 14px; }
.about-bullets{ list-style: none; padding: 0; margin: 10px 0 12px 0; display: grid; gap: 10px; }
.about-bullets li{ display: flex; gap: 10px; align-items: center; color: var(--muted-ink); font-size: .95rem; }
.about-bullets i{ color: var(--accent); min-width: 18px; }

/* mini-stats */
.about-stats{ margin-top: 12px; display: grid; gap: 10px; grid-template-columns: repeat(3,1fr); }
.about-stats .stat{ background: #fafafa; border: 1px solid #eee; border-radius: 14px; padding: 10px; text-align: center; }
.about-stats .stat strong{ display:block; font-size: 1.1rem; color: var(--ink); }
.about-stats .stat span{ display:block; font-size: .75rem; color: #6b6b6b; }

/* Columna derecha */
.about-card{
  background: var(--card); border-radius: 20px; padding: clamp(18px, 3.5vw, 28px);
  border: 1px solid #eaeaea; box-shadow: 0 16px 36px rgba(0,0,0,.08); position: relative;
}
.about-card::after{ content:""; position:absolute; inset: -1px; border-radius: 20px; pointer-events:none; box-shadow: 0 0 0 2px var(--ring); opacity: .35; }
.about-head .kicker{ text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; color: #777; margin-bottom: 6px; }
.about-head h2{ font-size: clamp(22px, 3vw, 34px); line-height: 1.15; color: var(--ink); margin-bottom: 10px; }
.about-text{ color: var(--muted-ink); line-height: 1.65; font-size: 1rem; margin-bottom: 14px; }

/* Highlights */
.about-highlights{ display: grid; gap: 12px; margin: 10px 0 6px; }
.about-highlights .item{ display:flex; gap: 12px; align-items: flex-start; padding: 10px; border: 1px dashed #e5e5e5; border-radius: 12px; background: linear-gradient(180deg, #fff, #fcfcfc); }
.about-highlights i{ color: var(--accent); font-size: 1.15rem; margin-top: 2px; }
.about-highlights h4{ margin: 0 0 3px 0; font-size: 1rem; color: var(--ink); }
.about-highlights p{ margin: 0; color: #666; font-size: .92rem; line-height: 1.45; }

/* CTA */
.about-cta{ display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; margin-bottom: 8px; }
.btn-primary, .btn-secondary{
  display:inline-block; padding: 12px 16px; border-radius: 12px; font-weight: 800; font-size: .95rem; text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn-primary{ background: var(--accent); color: #fff; border: 2px solid var(--accent); }
.btn-primary:hover{ transform: translateY(-1px); box-shadow: 0 10px 24px rgba(0,0,0,.12); }
.btn-secondary{ background: transparent; color: var(--ink); border: 2px solid #111; }
.btn-secondary:hover{ color: #fff; background: #111; transform: translateY(-1px); }

/* badges */
.about-badges{ display:flex; flex-wrap:wrap; gap: 8px; margin-top: 6px; }
.about-badges span{
  display:inline-flex; align-items:center; gap: 6px; background:#f2f2f2; color:#444; border:1px solid #e7e7e7;
  padding: 6px 10px; border-radius: 999px; font-size: .82rem;
}
.about-badges i{ color: var(--accent); }

/* =========================================
   6) BEFORE & AFTER
========================================= */
.before-after{
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 72px) 16px;
}
.ba-grid{
  display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; align-items: stretch;
  margin: 0 auto; max-width: 1400px;
}
.ba-card{
  flex: 0 1 clamp(360px, 42vw, 440px);
  background:#f7f7f7; border-radius:14px; padding:16px;
}
@media (min-width: 1280px){ .ba-card{ flex-basis: 440px; } }
.ba-caption{ font-size:1rem; color:#333; margin-top:10px; }

.ba-wrap{ position: relative; border-radius:12px; overflow:hidden; user-select:none; aspect-ratio: 4 / 5; }
.ba-img{ width:100%; height:100%; object-fit:cover; display:block; }
.ba-overlay{ position:absolute; inset:0; width:50%; overflow:hidden; }
.ba-overlay .ba-img{ width:100%; height:100%; object-fit:cover; }

.ba-slider{
  position:absolute; left:0; right:0; bottom:12px;
  width:90%; margin:0 auto;
  -webkit-appearance:none; appearance:none;
  background:rgba(255,255,255,.7); height:6px; border-radius:999px;
  outline:none; border:1px solid #e3e3e3;
}
.ba-slider::-webkit-slider-thumb,
.ba-slider::-moz-range-thumb{
  width: 20px; height: 20px; background: rgba(251, 255, 0, 0.87);
  border-radius: 50%; border: 2px solid #fff;
  box-shadow: 0 0 0 2px rgba(16,185,129,.25); cursor: pointer;
}

.ba-labels {
  position: absolute; top: 8px; left: 8px; right: 8px;
  display: flex; justify-content: space-between;
  pointer-events: none; z-index: 2;
}
.ba-labels .lbl {
  font-size: 0.85rem; font-weight: 700; letter-spacing: .03em;
  padding: 4px 8px; border-radius: 999px; color: #fff;
}
.ba-labels .before { background: rgba(200,0,0,0.75); }
.ba-labels .after  { background: rgba(0,180,0,0.75); }

/* =========================================
   7) GALLERY (Imágenes & Videos) + LIGHTBOX
========================================= */
.gallery { background: #f6f7f8; padding: clamp(32px, 6vw, 72px) 16px; }
.gallery-head { text-align: center; }
.gallery-head h2{ font-weight: 900; }
.gallery-head p{ color:#666; margin-top:6px; }

.gallery-grid{
  display: grid; gap: 18px;
  grid-template-columns: repeat(4, minmax(0,1fr));
  max-width: 1280px; margin: 0 auto;
}
@media (max-width: 1200px){ .gallery-grid{ grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (max-width: 900px){  .gallery-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 560px){  .gallery-grid{ grid-template-columns: 1fr; } }

.gallery-item{
  background: #fff; border: 1px solid #e9e9e9; border-radius: 16px; padding: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  transition: transform .15s ease, box-shadow .2s ease;
  position: relative;
}
.gallery-item:hover{ transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.10); }

.gallery-item img{
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: 12px; display: block; transition: transform .35s ease, filter .35s ease;
}
.gallery-item::after{
  content:"View"; position: absolute; inset: 10px; border-radius: 12px;
  display: grid; place-items: center; font-weight: 800; letter-spacing: .06em;
  color: rgba(255,255,255,.0); background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.28));
  pointer-events: none; opacity: 0; transition: opacity .25s ease, color .25s ease;
}
.gallery-item:hover::after{ opacity: 1; color: rgba(255,255,255,.95); }
.gallery-item:hover img{ transform: scale(1.03); filter: brightness(.98); }

/* Videos en la grilla */
.gallery-item video {
  width: 100%; height: 100%; object-fit: cover; border-radius: 12px; cursor: pointer;
  transition: transform .4s ease, filter .4s ease;
}
.gallery-item:hover video { transform: scale(1.05); filter: brightness(0.9); }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.9);
  justify-content: center; align-items: center; z-index: 2000;
}
.lightbox img {
  max-width: 90%; max-height: 90%; border-radius: 10px; box-shadow: 0 4px 24px rgba(0,0,0,.5);
}
.lightbox .close {
  position: absolute; top: 20px; right: 30px; color: white; font-size: 2rem; cursor: pointer; font-weight: bold;
}
.lightbox-video {
  display: none; max-width: 90%; max-height: 90%; border-radius: 10px; box-shadow: 0 4px 24px rgba(0,0,0,.5);
}

/* ===== Reset mínimo para standalone (opcional si ya lo tienes) ===== */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

/* ==== VARIABLES (fallback) ==== */
:root{
  --logo-h: 80px;
  --brand: #181818;        
  --card-bg: #2b2b2b;     
  --check: #10b981;        
  --muted: #e9e9e9;        
}

/* =========================================
   PRICING (#packages)
========================================= */
.pricing{
  background: var(--brand);
  padding: clamp(28px, 6vw, 64px) 16px;
  text-align: center;
}
.pricing-title{
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: #c7c7c7;
  margin-bottom: 6px;
}
.pricing-subtitle{
  max-width: 900px;
  margin: 0 auto 24px;
  color: #b3b3b3;
  font-size: clamp(14px, 2vw, 18px);
}

.pricing-grid{
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0,1fr));
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 1024px){
  .pricing-grid{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px){
  .pricing-grid{ grid-template-columns: 1fr; }
}

.plan-card{
  background: var(--card-bg);
  color: var(--muted);
  border-radius: 16px;
  padding: clamp(16px, 3vw, 24px);
  box-shadow: 0 12px 24px rgba(0,0,0,.25);
  position: relative;
  overflow: hidden;
  text-align: left;
}
.plan-head h3{
  text-align: center;
  color: #fff;
  font-weight: 900;
  letter-spacing: .5px;
  font-size: clamp(15px, 2.6vw, 22px);
}

.plan-prices{
  list-style: none;
  margin: 12px 0 8px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.plan-prices li{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-weight: 700;
}
.plan-prices span{ font-size: clamp(16px, 2.2vw, 20px); }
.plan-prices strong{ font-size: clamp(18px, 3.2vw, 32px); color: #d1c7c7; }

.plan-features{
  list-style: none;
  margin: 14px 0 4px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.plan-features li{
  position: relative;
  padding-left: 28px;
  line-height: 1.45;
  color: #f4f4f4;
}
.plan-features li::before{
  content: "✓";
  position: absolute; left: 0; top: 0;
  font-weight: 900; color: var(--check);
}

/* Destacados */
.plan-card.popular{
  outline: 3px solid #08be17;
  box-shadow: 0 16px 30px rgba(0,0,0,.35);
}
.badge-popular{
  position: absolute;
  top: 12px; right: 12px;
  background: #10b10b;
  color: #c5c5c5;
  font-weight: 800;
  font-size: .78rem;
  padding: 6px 10px;
  border-radius: 999px;
}

/* Nota obligatoria debajo de cada paquete */
.plan-note{
  margin-top: 14px;
  line-height: 1.45;
  font-size: clamp(12px, 1.9vw, 14px);
  color: #e8e8e8;
  background: rgba(16,185,129,.12);
  border-left: 3px solid var(--check);
  padding: 10px 12px;
  border-radius: 8px;
}

/* Add-ons (ya venían en tu INTERIOR DETAIL) */
.addons{ margin-top: 10px; }
.addons-title{
  font-weight: 800;
  margin: 6px 0 4px;
  color: #f1f1f1;
}
.addons-list{
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.addons-list li{
  display: flex; justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px dashed rgba(255,255,255,.08);
}

/* compensación anclas por navbar fijo (ajusta --logo-h si difiere) */
#packages { scroll-margin-top: calc(var(--logo-h) + 24px); }


/* =========================================
   REQUEST SERVICE / BOOKING FORM
========================================= */

#booking {
  padding: 60px 20px; 
}

.formulario-container {
  max-width: 920px;
  margin: 96px auto 64px;
  padding: 40px 28px;
  background: #e5e7eb;      
  border-radius: 20px;       
  box-shadow: 0 14px 38px rgba(0,0,0,.12); 
}

.titulodeformulario {
  font-size: clamp(22px,2.6vw,30px);
  text-align:center;
  margin-bottom: 18px;
  font-weight: 900;
  letter-spacing: .01em;
  position: relative;
}

/* animación del título */
.titulodeformulario.title-animated {
  color:#0f172a;
  -webkit-text-stroke: 0px #0df03e;
          text-stroke: 1px #00d10a;
  text-shadow: 0 0 10px rgba(134,239,172,.25);
  animation: greenGlow 3s ease-in-out infinite;
}
.titulodeformulario.title-animated::after {
  content:"";
  display:block;
  height:4px; width: 140px; margin: 10px auto 0; border-radius: 999px;
  background: linear-gradient(90deg,#00c52b,#353434,#12bb50);
  box-shadow: 0 6px 18px rgba(134,239,172,.25);
  background-size: 200% 100%;
  animation: barSlide 4s ease-in-out infinite;
}
@keyframes greenGlow {
  0%,100%{ text-shadow: 0 0 8px rgba(134,239,172,.18); }
  50%{ text-shadow: 0 0 16px rgba(134,239,172,.38); }
}
@keyframes barSlide {
  0%,100%{ background-position: 0% 50%; }
  50%{ background-position: 100% 50%; }
}

/* === Bloque principal del formulario con borde animado === */
.formulario-mejorado {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: clamp(18px,2.8vw,28px);
  box-shadow: 0 18px 40px rgba(0,0,0,.06);
  border: none; /* quitamos borde fijo */
}

/* Pseudo-elemento para el borde animado del bloque */
.formulario-mejorado::before {
  content:"";
  position:absolute;
  inset: -6px;        
  border-radius: 24px;
  padding: 6px;       
  background: linear-gradient(90deg,#00c52b,#353434,#12bb50,#00c52b);
  background-size: 200% 100%;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  animation: barSlide 4s ease-in-out infinite;
  pointer-events: none;
}

/* grid */
.fila-formulario {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 16px;
}
@media (max-width: 720px){
  .fila-formulario{ grid-template-columns: 1fr; gap: 14px; }
}
.campo-formulario{ min-width: 0; }
.campo-formulario label {
  display:block; margin: 0 0 8px 2px;
  font-weight: 800; font-size: .92rem; color:#0f172a; letter-spacing:.01em;
}

/* inputs base */
.formulario-mejorado .campo-formulario input,
.formulario-mejorado .campo-formulario textarea,
.formulario-mejorado select,
.formulario-mejorado input[type="date"],
.formulario-mejorado input[type="time"] {
  width: 100%;
  border: 1px solid #e6e8eb;
  background: linear-gradient(#fafafa, #ffffff);
  color: #0f172a; border-radius: 12px;
  padding: 12px 14px; font-size: 15px; line-height: 1.4;
  transition: border-color .18s ease, box-shadow .2s ease, background .18s ease, transform .08s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6), 0 1px 2px rgba(15,23,42,.04);
  position: relative;
  z-index: 1;
}
.formulario-mejorado .campo-formulario textarea{ min-height: 130px; resize: vertical; }
.formulario-mejorado .campo-formulario input::placeholder,
.formulario-mejorado .campo-formulario textarea::placeholder{ color:#9aa0a6; }

/* hover */
.formulario-mejorado .campo-formulario input:hover,
.formulario-mejorado .campo-formulario textarea:hover,
.formulario-mejorado select:hover{ border-color:#cfd6dd; background: #fff; }

/* ===============================
   ANIMACIÓN BORDES INPUTS FOCUS (conic-gradient)
================================= */

/* variable y animación para el giro */
:root { --angle: 0deg; }
@keyframes rotateBorder { to { --angle: 360deg; } }

.formulario-mejorado .campo-formulario input:focus,
.formulario-mejorado .campo-formulario textarea:focus,
.formulario-mejorado select:focus,
.formulario-mejorado input[type="date"]:focus,
.formulario-mejorado input[type="time"]:focus {
  outline: none;
  background: #fff;
  border-radius: 12px;

  /* borde grueso y animado */
  border: 3px solid transparent;
  border-image: conic-gradient(
    from var(--angle),
    #ffffff 0%,
    #ffffff 40%,
    rgba(0,0,0,0) 70%,
    rgba(0,0,0,0) 100%
  ) 1;
  animation: rotateBorder 1s linear infinite;

  /* glow */
  box-shadow:
    0 0 14px rgba(255,255,255,.75),
    0 0 26px rgba(255,255,255,.45),
    0 0 60px rgba(23,146,68,.35);
}

/* validación */
.is-invalid{ border-color:#dc2626 !important; box-shadow: 0 0 0 3px rgba(250, 246, 2, 0.18) !important; }
.is-valid{ border-color:#16a34a !important; box-shadow: 0 0 0 3px rgba(22,163,74,.18) !important; }

/* select con flecha */
.formulario-mejorado select {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  padding-right: 40px;
  background-image:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="%23677" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"/></svg>');
  background-repeat: no-repeat; background-position: right 12px center; background-size: 18px;
}

/* add-ons */
.addons-grid {
  display:grid; grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px 18px; margin-top:8px;
}
@media (max-width: 520px){ .addons-grid{ grid-template-columns: 1fr; } }
.addons-grid label {
  display:flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 14px; min-height:64px; text-align:center;
  font-size:.95rem; font-weight:700;
  background:#fff; border:1px dashed #e6e6e6; border-radius:12px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease, transform .1s ease;
}
.addons-grid label:hover{ border-color:#cfe3d0; box-shadow:0 0 0 3px rgba(16,185,129,.12); }
.addons-grid input[type="checkbox"]{
  appearance:none; width:18px; height:18px;
  border:2px solid #bdbdbd; border-radius:4px;
}
.addons-grid input[type="checkbox"]:checked{
  background:#16a34a; border-color:#00d11c; box-shadow: inset 0 0 0 3px #fff;
}

/* notas y contador */
.form-note{ text-align:center; color:#6b7280; font-size:.92rem; margin:-6px 0 14px; }
.contador-caracteres{ text-align:right; font-size:.78rem; color:#6b7280; margin-top:6px; }

/* consentimiento */
.campo-consentimiento {
  grid-column: 1 / -1;
  background: #fbfbfb; border: 1px solid #efefef;
  border-radius: 12px; padding: 12px 14px;
}
.checkbox-label{ display:flex; gap:10px; align-items:flex-start; cursor:pointer; }
.checkbox-label input[type="checkbox"]{
  appearance: none; width: 18px; height: 18px;
  border: 2px solid #bdbdbd; border-radius: 4px; margin-top: 3px;
}
.checkbox-label input[type="checkbox"]:checked{
  background: #16a34a; border-color: #16a34a; box-shadow: inset 0 0 0 3px #fff;
}
.texto-consentimiento{ font-size:.9rem; line-height:1.5; color:#222; }
.linkpriv{ color:#0d9488; text-decoration:underline; }
.linkpriv:hover{ color:#0b766c; }

/* mensaje */
.form-msg{
  margin-top: 16px;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  padding: 12px 16px;
  display: none;
}
.form-msg.exito{
  display:block; background:#0f3f25; color:#aefad1;
  border:1px solid #22c55e; box-shadow:0 6px 18px rgba(34,197,94,.25);
  animation: fadeIn .6s ease;
}
.form-msg.error{
  display:block; background:#3f0f0f; color:#ffcaca;
  border:1px solid #ef4444; box-shadow:0 6px 18px rgba(239,68,68,.25);
  animation: fadeIn .6s ease;
}
@keyframes fadeIn {
  from{ opacity:0; transform: translateY(8px); }
  to{ opacity:1; transform: translateY(0); }
}

/* botón enviar */
.boton-enviar {
  display:inline-block; background: linear-gradient(180deg,#22c55e,#16a34a);
  color:#fff; border:0; padding: 12px 22px;
  font-weight:900; letter-spacing:.01em;
  font-size:15px; border-radius:12px;
  cursor:pointer; margin: 6px auto 0;
  transition: transform .12s ease, box-shadow .2s ease, filter .2s ease;
  box-shadow: 0 12px 26px rgba(34,197,94,.25);
}
.boton-enviar:hover{
  transform: translateY(-1px); filter: brightness(1.02);
  box-shadow: 0 18px 36px rgba(34,197,94,.28);
}
.boton-enviar:active{ transform: translateY(0); }



/* =========================================
   10) SOCIAL SECTION (#social)
========================================= */
.social-section.section-surface{ background: var(--surface); }
.social-head{ text-align:center; padding: clamp(28px,6vw,64px) 16px 0; }
.social-head h2{ font-size: clamp(26px,4vw,40px); font-weight: 900; }
.social-section .section-underline{
  width:120px; height:4px; border-radius:999px; margin:12px auto 0;
  background: linear-gradient(90deg,#00c52b,#353434,#12bb50);
}
.social-grid{
  max-width:1100px; margin:18px auto 64px;
  display:grid; gap:16px; grid-template-columns: repeat(4, minmax(0,1fr));
  padding: 0 16px;
}
@media (max-width:1024px){ .social-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width:560px){  .social-grid{ grid-template-columns: 1fr; } }

.social-card{
  display:flex; align-items:center; gap:14px; padding:16px; border-radius:16px;
  text-decoration:none; color:#111; background:#fff; border:1px solid #ececec;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.social-card:hover{
  transform: translateY(-2px); box-shadow: 0 16px 36px rgba(0,0,0,.10); border-color: #e2e2e2;
}
.social-card i{
  font-size:22px; width:40px;height:40px; border-radius:12px; display:grid;place-items:center; color:#fff;
}
.social-card .txt h3{ font-size:1.05rem; margin:0 0 4px 0; }
.social-card .txt p{ margin:0; color:#555; font-size:.9rem; }
.social-card .arrow{ margin-left:auto; font-weight:900; opacity:.6; }
.social-card.fb i{ background:#1877F2; }
.social-card.ig i{ background:linear-gradient(45deg,#f58529,#feda77,#dd2a7b,#8134af,#515bd4); }
.social-card.tk i{ background:#000; }
.social-card.wa i{ background:#25D366; }

/* =========================================
   11) FIND-US (Mapa)
========================================= */
#find-us{ scroll-margin-top: calc(var(--logo-h) + 24px); }
.maps-section{ padding: clamp(28px,6vw,72px) 16px; }

.map-grid{
  max-width: 1100px; margin: 0 auto;
  display: grid; gap: 18px;
  grid-template-columns: 1fr 1.6fr; align-items: start;
}
@media (max-width: 960px){ .map-grid{ grid-template-columns: 1fr; } }

.map-card{
  background: #fff; border: 1px solid #eaeaea; border-radius: 18px;
  padding: clamp(16px,2.6vw,24px); box-shadow: 0 16px 36px rgba(0,0,0,.08);
}
.map-title{ margin: 0 0 8px 0; font-size: clamp(18px,2.8vw,22px); font-weight: 900; color: var(--ink); }
.map-text{ color: #555; line-height: 1.6; margin-bottom: 12px; }
.map-actions{ display: flex; gap: 10px; flex-wrap: wrap; }

.btn-map{
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; font-weight: 800; font-size: .95rem;
  padding: 10px 14px; border-radius: 12px; color: #0c1406;
  background: linear-gradient(180deg,#eafee7,#ccfbd7);
  border: 1px solid #c8f5d1;
  box-shadow: 0 12px 26px rgba(0,0,0,.12), 0 0 0 2px rgba(141,248,122,.16) inset;
  transition: transform .12s ease, filter .18s ease, box-shadow .2s ease;
}
.btn-map.soft{
  background: #111; color:#e9f6ea; border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 12px 26px rgba(0,0,0,.18);
}
.btn-map:hover{ transform: translateY(-1px); filter: brightness(1.02); }
.btn-map:focus-visible{ outline: 2px solid #8df87a; outline-offset: 3px; }
.map-note{ display:block; margin-top: 10px; color:#777; }

.map-embed{
  position: relative; width: 100%;
  border-radius: 18px; overflow: hidden;
  border: 1px solid #eaeaea;
  box-shadow: 0 16px 36px rgba(0,0,0,.1);
  padding-top: 56.25%; /* 16:9 */
}
.map-embed iframe{ position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* =========================================
   12) LEGAL (bloque final)
========================================= */
.pultimo{
  margin: 0; padding: 10px 16px; text-align: center; color: #bfbfbf; background: #101010;
}
.pultimo:first-of-type{
  padding-top: 18px; padding-bottom: 6px; border-top: 1px solid rgba(255,255,255,.08);
}
.pultimo:last-of-type{
  padding-top: 6px; padding-bottom: 18px; font-size: 12px; color: #a8a8a8;
}
.loultimo1{
  color: #e3e3e3; text-decoration: none; font-weight: 600; font-size: 13px;
  padding: 6px 8px; transition: color .2s ease, transform .15s ease;
}
.loultimo1:hover{ color: #ffffff; transform: translateY(-1px); }
.loultimo1:focus-visible{ outline: 2px solid #8df87a; outline-offset: 3px; border-radius: 6px; }
@media (max-width: 520px){
  .pultimo:first-of-type{ line-height: 1.9; }
}

/* =========================================
   13) ACCESIBILIDAD / REDUCED MOTION
========================================= */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* =========================================
   14) MENSAJES DEL FORMULARIO (exito/error)
========================================= */
.form-msg{ display: none; }
.form-msg.exito{
  display: block; background: #0f3f25; color: #aefad1; border: 1px solid #22c55e;
  box-shadow: 0 6px 18px rgba(34,197,94,.25); animation: fadeIn .6s ease;
}
.form-msg.error{
  display: block; background: #3f0f0f; color: #ffcaca; border: 1px solid #ef4444;
  box-shadow: 0 6px 18px rgba(239,68,68,.25); animation: fadeIn .6s ease;
}
@keyframes fadeIn { from{ opacity:0; transform: translateY(8px); } to{ opacity:1; transform: translateY(0); } }

 .loultimo1:link,
.loultimo1:visited,
.loultimo1:active {
  color: rgb(42, 134, 34) !important;  
}

.loultimo1:hover {
  color: #e7da21; 
  text-decoration: underline; 
}
/* ===== FIX Before & After slider thumb (forzar GOLD) ===== */
.before-after .ba-card .ba-slider::-webkit-slider-thumb{
  background: #d4af37 !important; 
  border: 2px solid #ffffff !important;
}
.before-after .ba-card .ba-slider::-moz-range-thumb{
  background: #d4af37 !important;
  border: 2px solid #ffffff !important;
}

/* opcional: asegurar apariencia consistente */
.before-after .ba-card .ba-slider{
  -webkit-appearance: none;
  appearance: none;
}
.before-after .ba-card .ba-slider::-webkit-slider-thumb{
  -webkit-appearance: none;
  appearance: none;
  width: 20px; height: 20px; border-radius: 50%;
}
/* ===== Centrar botón "Request Booking" ===== */
.fila-formulario .boton-enviar{
  grid-column: 1 / -1;      
  justify-self: center;    
  display: block;           
  margin: 16px auto 0;      
}

/* ——— Inputs: que no desborden en móvil/iOS ——— */
.formulario-mejorado{
  overflow: hidden;               
}

.formulario-mejorado .campo-formulario input,
.formulario-mejorado .campo-formulario textarea,
.formulario-mejorado select,
.formulario-mejorado input[type="date"],
.formulario-mejorado input[type="time"]{
  box-sizing: border-box;         
  max-width: 100%;
}

/* iOS: quita UI nativa que rompe padding y redondeos */
.formulario-mejorado input[type="date"],
.formulario-mejorado input[type="time"]{
  -webkit-appearance: none;
  appearance: none;
  background-clip: padding-box;   
  padding-right: 12px;
}

/* Borde animado en focus: más delgado en pantallas chicas */
@media (max-width: 560px){
  .formulario-mejorado .campo-formulario input:focus,
  .formulario-mejorado .campo-formulario textarea:focus,
  .formulario-mejorado select:focus,
  .formulario-mejorado input[type="date"]:focus,
  .formulario-mejorado input[type="time"]:focus{
    border-width: 2px;            
  }
}

/* ——— Add-ons: alineación consistente ——— */
.addons-grid{
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px 18px;
}

.addons-grid label{
  display: grid;                          
  grid-template-columns: 22px 1fr;       
  align-items: center;
  justify-content: initial;               
  text-align: left;
  gap: 10px;
  padding: 12px 14px;
  min-height: 64px;                      
}

.addons-grid input[type="checkbox"] {
  appearance: none;            
  -webkit-appearance: none;
  -moz-appearance: none;

  margin: 0;
  align-self: center;

  width: 14px;                 
  height: 14px;                

  border: 2px solid #080808;
  border-radius: 4px;
  cursor: pointer;
  transform: scale(0.8);

  background-color: #030303;   
  transition: all 0.2s ease;
}

/* Estado marcado */
.addons-grid input[type="checkbox"]:checked {
  background: #16a34a;        
  border-color: #000000;
  position: relative;
}

/* Dibujar un ✔  */
.addons-grid input[type="checkbox"]:checked::after {
  content: "✔";
  position: center;
  top: -2px;
  left: 2px;
  font-size: 12px;
  color: #0c0c0c;
}
/* En móviles, una sola columna pero mantenemos la grilla interna del label */
@media (max-width: 520px){
  .addons-grid{ grid-template-columns: 1fr; }
}

/* ===== Botón cerrar solo con X blanca ===== */
.menu-close {
  position: fixed;
  top: calc(16px + env(safe-area-inset-top));
  right: calc(16px + env(safe-area-inset-right));
  z-index: 1102;

  background: none;   
  border: none;       
  color: #fff;        
  font-size: 28px;   
  cursor: pointer;
}

.menu-close:hover {
  color: #ccc;       
}

/* ===== TOAST (avisos flotantes) ===== */
.toast-container{
  position: fixed;
  top: calc(16px + env(safe-area-inset-top));
  right: calc(16px + env(safe-area-inset-right));
  z-index: 5000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none; 
}

.toast{
  min-width: 260px;
  max-width: min(92vw, 420px);
  background: rgba(17,17,17,.92);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  border-left: 4px solid #10b981; 
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 14px 38px rgba(0,0,0,.28);
  display: flex;
  align-items: start;
  gap: 10px;
  transform: translateY(-14px);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
  pointer-events: auto; 
}

.toast.show{ transform: translateY(0); opacity: 1; }

.toast .toast-icon{
  font-size: 18px;
  line-height: 1;
  margin-top: 2px;
}

.toast .toast-text{
  font-size: 14px;
  line-height: 1.35;
}

.toast .toast-close{
  margin-left: auto;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  opacity: .85;
}
.toast .toast-close:hover{ opacity: 1; }

/* variantes */
.toast.error{ border-left-color: #dc2626; background: rgba(24,0,0,.92); }
.toast.info { border-left-color: #3b82f6; background: rgba(0,8,24,.92); }

/* ==== Consentimiento  ==== */
.fila-formulario .campo-consentimiento .checkbox-label{
  display:flex !important;
  align-items:flex-start !important;
  gap:10px !important;
  cursor:pointer;
}

.fila-formulario .campo-consentimiento .checkbox-label .texto-consentimiento{
  flex:1 1 auto;
  display:inline-block;
  font-size:14px;
  line-height:1.5;
  color:#111;
}

/* reset duro + tamaño pequeño del check */
.fila-formulario .campo-consentimiento .checkbox-label input[type="checkbox"]{
  all:unset;
  box-sizing:border-box;

  width:16px !important;
  height:16px !important;
  flex:0 0 16px !important;

  margin:0 !important;
  padding:0 !important;
  border:2px solid #555 !important;
  border-radius:3px !important;
  background:#fff !important;

  display:inline-block !important;
  position:relative !important;
  transform:none !important;
  box-shadow:none !important;
  outline:none !important;
  cursor:pointer !important;
  transition:background .2s, border-color .2s, box-shadow .2s !important;
}

.fila-formulario .campo-consentimiento .checkbox-label input[type="checkbox"]:hover,
.fila-formulario .campo-consentimiento .checkbox-label input[type="checkbox"]:focus{
  border-color:#16a34a !important;
  box-shadow:0 0 0 2px rgba(22,163,74,.2) !important;
}

.fila-formulario .campo-consentimiento .checkbox-label input[type="checkbox"]:checked{
  background:#16a34a !important;
  border-color:#16a34a !important;
}

.fila-formulario .campo-consentimiento .checkbox-label input[type="checkbox"]:checked::after{
  content:"✔";
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%, -55%);
  font-size:12px;
  color:#fff;
  pointer-events:none;
}

/* ===== Pricing cards fix: note at the bottom ===== */
.plan-card{
  display: flex;
  flex-direction: column;   
  min-height: 100%;         
}

.plan-head{ margin-bottom: 16px; }
.plan-prices{ margin-bottom: 16px; }
.plan-features{ margin-bottom: 16px; }

/* La nota siempre al fondo */
.plan-note{
  margin-top: auto;         
  padding: 12px 14px;
  background: #1f3b31;      
  color: #e6f2ec;
  border-radius: 10px;
  line-height: 1.35;
  border: 1px solid rgba(255,255,255,.08);
  font-size: .95rem;
}

/* estilo de la card destacada */
.plan-card.popular{
  outline: 3px solid #17d948;
  outline-offset: -6px;
}

/* todas las columnas estiren igual */
.pricing-grid{ align-items: stretch; }
