:root{
  --navy:#071427;
  --navy2:#0A1A33;
  --navy3:#0E2342;
  --gold:#C0C0C0;
  --gold-light:#D4AF37;
  --text:#0E1726;
  --muted:#6B7280;
  --line:#E6EAF1;
  --white:#ffffff;
  --shadow:0 18px 50px rgba(0,0,0,.16);
  --radius:10px;
  --radius-lg:14px;
  --container:1180px;

  --glass-bg:rgba(255,255,255,.04);
  --glass-bg-strong:rgba(255,255,255,.06);
  --glass-border:rgba(255,255,255,.10);
  --glass-border-strong:rgba(192,192,192,.20);
  --glass-highlight:linear-gradient(135deg, rgba(255,255,255,.06) 0%, transparent 38%, transparent 100%);
  --panel-dark:linear-gradient(145deg, rgba(10,26,51,.96), rgba(7,20,39,.98));
  --panel-light:linear-gradient(145deg, rgba(255,255,255,.96), rgba(244,247,250,.98));
  --shadow-soft:0 16px 36px rgba(0,0,0,.08);
  --shadow-dark:0 18px 42px rgba(0,0,0,.28);
  
  /* Colores para iconos */
  --wa-green: #25D366;
  --ig-purple: #d6249f;
  --ig-pink: #fd5949;
  --ig-orange: #fdf497;
  --ig-blue: #285AEB;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:#F7F8FA;
  line-height:1.5;
}

.container{
  width:min(var(--container), calc(100% - 48px));
  margin:0 auto;
}

/* TIPOGRAFÍA */
p, .p, .lead, .hero__text, .proposal__text, .pcard__p, .tcard__t, 
.contact-card__text, .contact-note p, .fdesc, .fplain{
  text-align:justify;
}

/* HEADER */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background:linear-gradient(180deg, rgba(7,20,39,.98), rgba(7,20,39,.92));
  border-bottom:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(10px);
}

.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  text-decoration:none;
  color:#fff;
  display:flex;
  align-items:baseline;
  gap:10px;
  white-space:nowrap;
  transition:all 0.3s ease;
}

.brand:hover{
  transform:scale(1.02);
  opacity:0.9;
}

.brand__ll{
  font-family:"Playfair Display", serif;
  font-weight:700;
  letter-spacing:.8px;
  font-size:30px;
}

.brand__and{
  color:var(--gold);
  font-weight:700;
  font-size:16px;
}

.brand__name{
  color:var(--gold);
  letter-spacing:4px;
  font-size:12px;
  font-weight:700;
}

.brand__ll.sm{font-size:22px;}
.brand__and.sm{font-size:14px;}
.brand__name.sm{
  font-size:11px;
  letter-spacing:3px;
}

.nav{
  display:flex;
  gap:22px;
  align-items:center;
}

.nav__link{
  color:rgba(255,255,255,.80);
  text-decoration:none;
  font-weight:500;
  padding:10px 6px;
  transition:all 0.3s ease;
  position:relative;
}

.nav__link::after{
  content:'';
  position:absolute;
  bottom:0;
  left:50%;
  transform:translateX(-50%);
  width:0;
  height:2px;
  background:var(--gold);
  transition:width 0.3s ease;
}

.nav__link:hover{
  color:#fff;
}

.nav__link:hover::after{
  width:80%;
}

/* BOTONES */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 18px;
  border-radius:10px;
  border:1px solid transparent;
  text-decoration:none;
  font-weight:700;
  letter-spacing:.4px;
  cursor:pointer;
  transition:all 0.3s ease;
  position:relative;
  overflow:hidden;
}

.btn::before{
  content:'';
  position:absolute;
  top:50%;
  left:50%;
  width:0;
  height:0;
  border-radius:50%;
  background:rgba(255,255,255,0.2);
  transform:translate(-50%, -50%);
  transition:width 0.6s ease, height 0.6s ease;
}

.btn:hover::before{
  width:300px;
  height:300px;
}

.btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 20px rgba(0,0,0,0.1);
}

.btn--contact{
  color:var(--gold);
  border-color:rgba(255,255,255,.85);
  background:transparent;
  padding:12px 18px;
}

.btn--contact:hover{
  border-color:var(--gold);
  background:rgba(255,255,255,.05);
}

.btn--gold{
  background:linear-gradient(135deg, #d3d3d3, #b0b0b0);
  color:#071427;
  border-color:rgba(255,255,255,.22);
  box-shadow:0 10px 24px rgba(0,0,0,.14);
  font-weight:800;
}

.btn--gold:hover{
  background:linear-gradient(135deg, #e0e0e0, #c0c0c0);
  box-shadow:0 14px 28px rgba(0,0,0,.18);
}

.btn--ghost{
  background:transparent;
  color:rgba(255,255,255,.88);
  border-color:rgba(255,255,255,.22);
}

.btn--ghost:hover{
  background:rgba(255,255,255,.06);
  color:#fff;
}

/* BURGER MENU */
.burger{
  display:none;
  align-items:center;
  justify-content:center;
  width:48px;
  height:48px;
  padding:0;
  margin-left:auto;
  flex-shrink:0;
  border:1px solid rgba(192,192,192,.22);
  border-radius:14px;
  background:rgba(255,255,255,.05);
  backdrop-filter:blur(10px);
  cursor:pointer;
  position:relative;
  z-index:1001;
  transition:all 0.3s ease;
}

.burger:hover{
  background:rgba(255,255,255,.09);
  border-color:rgba(192,192,192,.40);
  transform:scale(1.05);
}

.burger span{
  position:absolute;
  left:50%;
  width:20px;
  height:2px;
  background:#C0C0C0;
  border-radius:999px;
  transform:translateX(-50%);
  transition:all 0.3s ease;
}

.burger span:nth-child(1){top:16px;}
.burger span:nth-child(2){top:23px;}
.burger span:nth-child(3){top:30px;}

.burger.active span:nth-child(1){
  top:23px;
  transform:translateX(-50%) rotate(45deg);
}

.burger.active span:nth-child(2){
  opacity:0;
  transform:translateX(-50%) scale(0);
}

.burger.active span:nth-child(3){
  top:23px;
  transform:translateX(-50%) rotate(-45deg);
}

.mnav{
  display:none;
  padding:10px 0 18px;
  border-top:1px solid rgba(255,255,255,.08);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown{
  from{
    opacity:0;
    transform:translateY(-10px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.mnav a{
  display:block;
  margin:0 auto;
  width:min(var(--container), calc(100% - 48px));
  color:rgba(255,255,255,.9);
  text-decoration:none;
  padding:12px 10px;
  border-radius:10px;
  transition:all 0.3s ease;
}

.mnav a:hover{
  background:rgba(255,255,255,.06);
  padding-left:20px;
}

.mnav.open{display:block;}

/* HERO */
.hero{
  min-height:92vh;
  background:radial-gradient(900px 500px at 50% 20%, rgba(255,255,255,.08), transparent 70%),
            linear-gradient(180deg, var(--navy), var(--navy2));
  color:#fff;
  position:relative;
  overflow:hidden;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:radial-gradient(rgba(255,255,255,.10) 1px, transparent 1px);
  background-size:34px 34px;
  opacity:.35;
  pointer-events:none;
}

.hero__inner{
  position:relative;
  padding:92px 0 56px;
  text-align:center;
}

.hero__pill{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:12px 18px;
  border-radius:999px;
  border:1px solid rgba(192,192,192,.45);
  color:rgba(192,192,192,.95);
  background:rgba(0,0,0,.10);
  font-weight:800;
  letter-spacing:2px;
  font-size:12px;
  backdrop-filter:blur(5px);
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp{
  from{
    opacity:0;
    transform:translateY(20px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.hero__dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--gold);
  display:inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse{
  0%,100%{opacity:1;transform:scale(1);}
  50%{opacity:0.5;transform:scale(1.1);}
}

.hero__logo{margin:24px 0 8px;}

.hero__ll{
  font-family:"Playfair Display", serif;
  font-size:92px;
  font-weight:700;
  letter-spacing:1px;
  animation: fadeInScale 1s ease;
}

@keyframes fadeInScale{
  from{
    opacity:0;
    transform:scale(0.9);
  }
  to{
    opacity:1;
    transform:scale(1);
  }
}

.hero__asoc{
  margin-top:10px;
  color:var(--gold);
  letter-spacing:10px;
  font-size:18px;
  font-weight:800;
}

.hero__divider{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  margin-top:18px;
  opacity:.9;
}

.hero__divider span{
  width:70px;
  height:2px;
  background:rgba(192,192,192,.55);
  animation: expandWidth 1.5s ease;
}

@keyframes expandWidth{
  from{width:0;}
  to{width:70px;}
}

.hero__divider i{
  width:6px;
  height:6px;
  border-radius:50%;
  background:rgba(192,192,192,.90);
  display:inline-block;
}

.hero__text{
  max-width:840px;
  margin:18px auto 0;
  color:rgba(255,255,255,.82);
  font-size:18px;
  line-height:1.7;
}

.hero__exp{
  margin:16px 0 32px;
  color:rgba(192,192,192,.90);
  font-weight:600;
  text-align:center;
}

.hero__exp strong{font-weight:900;}

.hero__actions{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}

.hero__down{
  display:inline-flex;
  margin-top:40px;
  width:44px;
  height:44px;
  border-radius:999px;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.16);
  color:rgba(255,255,255,.75);
  text-decoration:none;
  background:rgba(255,255,255,.04);
  transition:all 0.3s ease;
  animation: bounce 2s infinite;
}

@keyframes bounce{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(10px);}
}

.hero__down:hover{
  background:rgba(255,255,255,.08);
  color:#fff;
  border-color:var(--gold);
}

/* SECCIONES GENERALES */
.section{padding:96px 0;}

.section--light{
  background:#F7F8FA;
  position:relative;
}

.section--dark{
  background:radial-gradient(900px 500px at 15% 20%, rgba(255,255,255,.06), transparent 70%),
            linear-gradient(180deg, var(--navy), var(--navy2));
  color:#fff;
  position:relative;
}

.head{
  margin-bottom:48px;
  position:relative;
}

.head::after{
  content:'';
  position:absolute;
  bottom:-15px;
  left:0;
  width:60px;
  height:3px;
  background:var(--gold);
  border-radius:3px;
}

.kicker{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
  letter-spacing:2.5px;
  font-size:12px;
  color:var(--gold);
  text-transform:uppercase;
}

.kicker--gold{color:var(--gold);}

.kline{
  width:44px;
  height:2px;
  background:var(--gold);
  opacity:.9;
}

.kline--gold{background:var(--gold);}

.h2{
  font-family:"Playfair Display", serif;
  font-size:64px;
  line-height:1.02;
  margin:18px 0 30px;
  color:#0E1726;
}

.h2--dark{color:#fff;}

.lead{
  margin:16px 0 0;
  max-width:820px;
  color:rgba(14,23,38,.65);
  font-size:18px;
  line-height:1.7;
}

.lead--contacto{
  color:rgba(255,255,255,0.8);
  font-size:20px;
}

.p{
  color:rgba(14,23,38,.70);
  line-height:1.85;
  font-size:18px;
  margin:0 0 18px;
}

.p--dark{color:rgba(255,255,255,.78);}

/* GRIDS */
.grid-2{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:32px;
  align-items:start;
}

.grid-plan{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:34px;
  align-items:start;
}

/* TARJETAS CLARAS */
.stat, .acc, .tcard{
  position:relative;
  overflow:hidden;
  border-radius:14px;
  background:var(--panel-light);
  border:1px solid rgba(14,23,38,.08);
  box-shadow:0 14px 30px rgba(13,22,38,.06);
  transition:all 0.3s ease;
}

.stat::before, .acc::before, .tcard::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, rgba(255,255,255,.85) 0%, transparent 42%, transparent 100%);
  pointer-events:none;
}

.stat > *, .acc > *, .tcard > *{
  position:relative;
  z-index:1;
}

.stat:hover, .acc:hover, .tcard:hover{
  transform:translateY(-5px);
  box-shadow:0 20px 40px rgba(13,22,38,.15);
  border-color:rgba(192,192,192,.30);
}

/* STATS */
.stats{display:grid; gap:18px;}

.stat{padding:26px 22px;}

.stat__big{
  color:var(--gold);
  font-weight:900;
  font-size:52px;
  font-family:"Playfair Display", serif;
  line-height:1;
}

.stat__txt{
  margin-top:10px;
  font-weight:900;
  letter-spacing:2px;
  font-size:12px;
  color:rgba(14,23,38,.70);
}

.stat--border{
  border-color:rgba(192,192,192,.55);
  box-shadow:0 0 0 1px rgba(192,192,192,.20) inset;
}

/* TARJETAS OSCURAS */
.proposal, .pcard, .contact-other, .form{
  position:relative;
  overflow:hidden;
  border-radius:14px;
  background:var(--panel-dark);
  border:1px solid var(--glass-border);
  box-shadow:var(--shadow-dark);
}

.proposal::before, .pcard::before, .contact-other::before, .form::before{
  content:"";
  position:absolute;
  inset:0;
  background:var(--glass-highlight);
  pointer-events:none;
}

.proposal > *, .pcard > *, .contact-other > *, .form > *{
  position:relative;
  z-index:1;
}

/* PROPOSAL */
.proposal{
  padding:26px 22px;
  color:#fff;
}

.proposal__title{
  color:var(--gold);
  font-weight:900;
  letter-spacing:2px;
  font-size:12px;
}

.proposal__text{
  margin:12px 0 0;
  color:rgba(255,255,255,.80);
  line-height:1.8;
  font-size:16px;
}

/* PLAN CARDS */
.plan-cards{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:18px;
}

.pcard{
  padding:26px 22px;
  min-height:160px;
  transition:all 0.3s ease;
}

.pcard:hover{
  transform:translateY(-5px);
  border-color:rgba(192,192,192,.22);
  box-shadow:0 22px 40px rgba(0,0,0,.30);
}

.pcard__ico{
  width:50px;
  height:50px;
  border-radius:50%;
  background:linear-gradient(135deg, #1f3c88, #2a4a9e);
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  font-weight:700;
  margin-bottom:10px;
  box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

.pcard__t{
  margin:16px 0 10px;
  font-size:18px;
  font-weight:900;
  color:#fff;
}

.pcard__p{
  margin:0;
  line-height:1.75;
  color:rgba(255,255,255,.72);
}

/* ACORDEONES */
.acc-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:18px;
}

.acc{
  padding:18px;
}

.acc__btn{
  width:100%;
  display:flex;
  align-items:center;
  gap:14px;
  border:0;
  background:transparent;
  cursor:pointer;
  padding:6px 0;
  text-align:left;
}

.acc__icon{
  width:46px;
  height:46px;
  background:#0A1730;
  color:var(--gold);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  border-radius:12px;
  font-size:20px;
  transition:all 0.3s ease;
}

.acc:hover .acc__icon{
  transform:rotate(5deg) scale(1.05);
  background:#1a2a4a;
}

.acc__title{
  flex:1;
  font-weight:900;
  font-size:18px;
  color:#0E1726;
}

.acc__chev{
  color:rgba(14,23,38,.55);
  font-size:18px;
  transition:transform 0.3s ease;
}

.acc__panel{
  padding:10px 0 0 60px;
}

.acc__panel ul{
  margin:0;
  padding-left:18px;
}

.acc__panel li{
  margin:10px 0;
  color:rgba(14,23,38,.70);
  line-height:1.65;
  text-align:justify;
}

.acc.open{
  border-color:rgba(192,192,192,.45);
}

.acc.open .acc__chev{
  transform:rotate(180deg);
}

.acc.open .acc__panel li::marker{
  color:var(--gold);
}

/* CARRUSEL */
.car{position:relative;}

.car__controls{
  display:flex;
  justify-content:flex-end;
  gap:10px;
  margin:10px 0 18px;
}

.car__btn{
  width:46px;
  height:46px;
  border:1px solid var(--line);
  background:#fff;
  cursor:pointer;
  font-size:22px;
  border-radius:12px;
  transition:all 0.3s ease;
}

.car__btn:hover{
  background:#f1f3f6;
  transform:translateY(-2px);
  box-shadow:0 10px 22px rgba(0,0,0,.08);
  border-color:var(--gold);
  color:var(--gold);
}

.car__viewport{overflow:hidden;}

.car__track{
  display:flex;
  gap:18px;
  transition:transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change:transform;
}

.tcard{
  padding:28px 24px;
  min-width:calc((100% - 36px) / 3);
}

.tcard__q{
  color:var(--gold);
  font-weight:900;
  font-size:30px;
  margin-bottom:14px;
  font-family:"Playfair Display", serif;
}

.tcard__t{
  margin:0;
  color:rgba(14,23,38,.70);
  font-style:italic;
  line-height:1.9;
}

.tcard__line{
  height:1px;
  background:#EEF1F6;
  margin:22px 0;
}

.tcard__name{
  font-weight:900;
  font-size:18px;
}

.tcard__meta{
  margin-top:8px;
  color:rgba(14,23,38,.50);
}

.tcard__tag{
  display:inline-flex;
  margin-top:12px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(192,192,192,.10);
  border:1px solid rgba(192,192,192,.28);
  color:#4b5563;
  font-weight:900;
  font-size:12px;
}

/* ============================================
   SECCIÓN DE CONTACTO MEJORADA - VERSIÓN PROFESIONAL
   ============================================ */

.contact-grid--equal{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
  margin-top:40px;
}

/* PANELES DE CONTACTO */
.contact-panel{
  background:linear-gradient(145deg, rgba(10,26,51,.98), rgba(7,20,39,.98));
  border:1px solid rgba(192,192,192,.15);
  border-radius:24px;
  padding:32px;
  box-shadow:0 20px 40px rgba(0,0,0,0.3);
  position:relative;
  overflow:hidden;
  transition:all 0.3s ease;
  backdrop-filter:blur(10px);
}

.contact-panel:hover{
  transform:translateY(-5px);
  box-shadow:0 25px 50px rgba(0,0,0,0.4);
  border-color:rgba(192,192,192,.3);
}

.contact-panel::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:4px;
  background:linear-gradient(90deg, var(--gold), transparent);
}

.contact-panel::after{
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(circle at top right, rgba(192,192,192,0.1), transparent 70%);
  pointer-events:none;
}

.contact-panel__title{
  font-family:"Playfair Display", serif;
  font-size:28px;
  font-weight:700;
  color:#fff;
  margin:0 0 24px 0;
  padding-bottom:15px;
  border-bottom:2px solid rgba(192,192,192,0.2);
  position:relative;
}

.contact-panel__title::after{
  content:'';
  position:absolute;
  bottom:-2px;
  left:0;
  width:60px;
  height:2px;
  background:var(--gold);
}

/* ITEMS DE CONTACTO */
.contact-item{
  display:flex;
  gap:20px;
  padding:20px;
  margin-bottom:16px;
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(192,192,192,0.1);
  border-radius:16px;
  transition:all 0.3s ease;
  position:relative;
  overflow:hidden;
}

.contact-item:last-child{
  margin-bottom:0;
}

.contact-item:hover{
  background:rgba(255,255,255,0.06);
  border-color:rgba(192,192,192,0.25);
  transform:translateX(5px);
}

.contact-item--strong{
  background:rgba(255,255,255,0.05);
  border-left:4px solid var(--gold);
}

.contact-item--map{
  background:rgba(255,255,255,0.02);
}

/* ICONOS */
.contact-item__icon{
  width:56px;
  height:56px;
  min-width:56px;
  background:rgba(192,192,192,0.1);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--gold);
  font-size:24px;
  transition:all 0.3s ease;
  position:relative;
}

.contact-item:hover .contact-item__icon{
  transform:scale(1.1) rotate(5deg);
  background:rgba(192,192,192,0.2);
}

.wa-icon{
  width:28px;
  height:28px;
  transition:all 0.3s ease;
}

/* EFECTOS ESPECIALES PARA WHATSAPP */
.contact-item:has(.wa-icon):hover .wa-icon{
  color:#25D366;
  filter:drop-shadow(0 0 8px rgba(37,211,102,0.5));
  transform:scale(1.15);
}

/* EFECTOS ESPECIALES PARA INSTAGRAM */
.contact-item:has(svg[viewBox="0 0 24 24"]):hover svg{
  background:radial-gradient(circle at 30% 30%, #fdf497, #fd5949, #d6249f, #285AEB);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  animation: instagramGradient 3s ease infinite;
}

@keyframes instagramGradient{
  0%{background-position:0% 0%;}
  50%{background-position:100% 100%;}
  100%{background-position:0% 0%;}
}

/* CONTENIDO */
.contact-item__content{
  flex:1;
}

.contact-item__label{
  display:block;
  font-size:12px;
  font-weight:800;
  letter-spacing:1.5px;
  color:var(--gold);
  text-transform:uppercase;
  margin-bottom:6px;
}

.contact-item__text{
  color:rgba(255,255,255,0.9);
  font-size:15px;
  line-height:1.6;
  margin:0 0 10px 0;
}

.contact-item__text--gold{
  color:var(--gold);
  font-size:20px;
  font-weight:700;
  margin-bottom:15px;
  word-break:break-word;
}

.contact-item__link{
  color:#fff;
  text-decoration:none;
  font-size:18px;
  font-weight:600;
  display:inline-block;
  transition:all 0.3s ease;
  position:relative;
  padding-bottom:2px;
}

.contact-item__link::after{
  content:'';
  position:absolute;
  bottom:0;
  left:0;
  width:0;
  height:1px;
  background:var(--gold);
  transition:width 0.3s ease;
}

.contact-item__link:hover{
  color:var(--gold);
  transform:translateX(3px);
}

.contact-item__link:hover::after{
  width:100%;
}

/* BOTÓN DE EMAIL */
.contact-btn{
  width:100%;
  margin-top:10px;
  padding:16px;
  font-size:14px;
  letter-spacing:1.5px;
  border-radius:12px;
  background:linear-gradient(135deg, #d3d3d3, #b0b0b0);
  color:#071427;
  font-weight:800;
  border:none;
  position:relative;
  overflow:hidden;
}

.contact-btn::before{
  content:'✉';
  position:absolute;
  left:-30px;
  top:50%;
  transform:translateY(-50%);
  font-size:20px;
  opacity:0;
  transition:all 0.3s ease;
}

.contact-btn:hover::before{
  left:20px;
  opacity:1;
}

.contact-btn:hover{
  padding-left:45px;
  background:linear-gradient(135deg, #e0e0e0, #c0c0c0);
}

/* MAPA */
.contact-map{
  margin:15px 0 15px;
  border-radius:16px;
  overflow:hidden;
  border:2px solid rgba(192,192,192,0.15);
  transition:all 0.3s ease;
  box-shadow:0 10px 20px rgba(0,0,0,0.2);
}

.contact-map:hover{
  border-color:rgba(192,192,192,0.4);
  transform:scale(1.02);
}

.contact-map iframe{
  width:100%;
  height:220px;
  display:block;
  transition:all 0.3s ease;
}

/* FOOTER */
.footer{
  background:linear-gradient(180deg, var(--navy), #050E1E);
  color:rgba(255,255,255,.75);
  padding:56px 0 22px;
  position:relative;
  overflow:hidden;
}

.footer::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:1px;
  background:linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer__grid{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr;
  gap:40px;
  padding-bottom:26px;
  border-bottom:1px solid rgba(255,255,255,.10);
  position:relative;
}

.fdesc{
  margin:16px 0 0;
  color:rgba(255,255,255,.68);
  line-height:1.8;
}

.ftitle{
  color:var(--gold);
  letter-spacing:2px;
  font-weight:900;
  font-size:12px;
  margin-bottom:14px;
  text-transform:uppercase;
}

.flink{
  display:block;
  color:rgba(255,255,255,.75);
  text-decoration:none;
  margin:12px 0;
  transition:all 0.3s ease;
  position:relative;
  padding-left:0;
}

.flink:hover{
  color:#fff;
  padding-left:5px;
}

.footer-contact-link{
  display:flex;
  align-items:center;
  gap:10px;
  transition:all 0.3s ease;
}

.footer-contact-link:hover{
  transform:translateX(5px);
}

.footer-contact-link:hover .wa-icon--footer{
  color:#25D366;
  transform:scale(1.2);
  filter:drop-shadow(0 0 5px rgba(37,211,102,0.5));
}

.wa-icon--footer{
  width:18px;
  height:18px;
  transition:all 0.3s ease;
}

.fplain{
  margin-top:10px;
  color:rgba(255,255,255,.68);
  line-height:1.7;
  transition:all 0.3s ease;
}

.fplain:hover{
  color:var(--gold);
  transform:translateX(3px);
}

.fplain--link{
  display:inline-block;
  text-decoration:none;
  color:rgba(255,255,255,.68);
  transition:all 0.3s ease;
}

.fplain--link:hover{
  color:var(--gold);
  text-decoration:underline;
  transform:translateX(3px);
}

.fbottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  padding-top:18px;
  font-size:14px;
}

.fbottom__left{color:rgba(255,255,255,.55);}

.fbottom__right{
  color:rgba(192,192,192,.90);
  font-weight:800;
  display:flex;
  align-items:center;
  gap:12px;
}

.goldline{
  display:inline-block;
  width:28px;
  height:2px;
  background:rgba(192,192,192,.7);
}

/* RESPONSIVE */
@media (max-width:980px){
  .nav{display:none;}
  .burger{display:flex;}

  .header__inner{
    gap:12px;
    padding:14px 0;
  }

  .brand__ll{font-size:26px;}
  .brand__and{font-size:15px;}
  .brand__name{font-size:11px;}

  .grid-2,
  .grid-plan,
  .acc-grid,
  .contact-grid--equal{
    grid-template-columns:1fr;
  }

  .footer__grid{
    grid-template-columns:1fr;
    gap:30px;
  }

  .h2{
    font-size:42px;
  }

  .hero__ll{
    font-size:58px;
  }

  .hero__asoc{
    letter-spacing:6px;
    font-size:16px;
  }

  .contact-panel{
    padding:24px;
  }

  .contact-panel__title{
    font-size:24px;
  }
}

@media (max-width:768px){
  .section{
    padding:64px 0;
  }

  .h2{
    font-size:36px;
  }

  .hero__ll{
    font-size:48px;
  }

  .hero__asoc{
    letter-spacing:4px;
    font-size:14px;
  }

  .hero__text{
    font-size:16px;
  }

  .contact-item{
    flex-direction:column;
    gap:15px;
  }

  .contact-item__icon{
    width:48px;
    height:48px;
    min-width:48px;
  }

  .contact-item__text--gold{
    font-size:18px;
  }

  .contact-item__link{
    font-size:16px;
  }

  .contact-map iframe{
    height:180px;
  }

  .fbottom{
    flex-direction:column;
    text-align:center;
  }
}

@media (max-width:480px){
  .container{
    width:calc(100% - 32px);
  }

  .h2{
    font-size:28px;
  }

  .hero__ll{
    font-size:38px;
  }

  .hero__asoc{
    letter-spacing:3px;
    font-size:12px;
  }

  .hero__actions{
    flex-direction:column;
    gap:10px;
  }

  .hero__actions .btn{
    width:100%;
  }

  .contact-panel{
    padding:20px;
  }

  .contact-panel__title{
    font-size:22px;
  }

  .contact-item{
    padding:15px;
  }

  .contact-item__text--gold{
    font-size:16px;
  }

  .contact-btn{
    padding:14px;
    font-size:13px;
  }
}
/* ============================================
   CARRUSEL DE CLIENTES - VERSIÓN MÓVIL MEJORADA
   ============================================ */

/* Contenedor principal del carrusel */
.car {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10px 0 20px;
}

/* Controles del carrusel */
.car__controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 25px;
}

.car__btn {
  width: 44px;
  height: 44px;
  border: 2px solid rgba(192, 192, 192, 0.3);
  background: white;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.car__btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(192,192,192,0.3);
}

.car__btn:active {
  transform: scale(0.95);
}

/* Viewport del carrusel */
.car__viewport {
  overflow: hidden;
  margin: 0 -5px;
  padding: 5px;
}

/* Track de tarjetas */
.car__track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Tarjetas de testimonio */
.tcard {
  flex: 0 0 calc(33.333% - 14px);
  min-width: calc(33.333% - 14px);
  background: white;
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(192,192,192,0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tcard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), #e5e5e5);
  opacity: 0.5;
}

.tcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  border-color: rgba(192,192,192,0.3);
}

/* Comillas */
.tcard__q {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 10px;
  right: 20px;
  font-weight: 700;
}

/* Texto del testimonio */
.tcard__t {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(14,23,38,0.8);
  margin: 0 0 20px 0;
  font-style: italic;
  position: relative;
  z-index: 1;
  padding-right: 30px;
}

/* Línea separadora */
.tcard__line {
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 20px 0 15px;
  width: 60px;
}

/* Nombre del cliente */
.tcard__name {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 5px;
  font-family: 'Playfair Display', serif;
}

/* Meta / rubro */
.tcard__meta {
  font-size: 14px;
  color: rgba(14,23,38,0.5);
  margin-bottom: 15px;
}

/* Etiqueta de áreas legales */
.tcard__tag {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(192,192,192,0.1);
  border: 1px solid rgba(192,192,192,0.3);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.tcard:hover .tcard__tag {
  background: rgba(192,192,192,0.2);
  border-color: var(--gold);
}

/* Dots / indicadores */
.car__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.car__dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(192,192,192,0.3);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.car__dots .dot.active {
  width: 30px;
  border-radius: 10px;
  background: var(--gold);
}

.car__dots .dot:hover {
  background: var(--gold);
  transform: scale(1.2);
}

/* ============================================
   MEDIA QUERIES - VERSIÓN MÓVIL
   ============================================ */

/* Tablet (hasta 980px) */
@media (max-width: 980px) {
  .tcard {
    flex: 0 0 calc(50% - 10px);
    min-width: calc(50% - 10px);
  }
  
  .car__controls {
    justify-content: center;
  }
  
  .tcard__q {
    font-size: 50px;
  }
}

/* Móvil grande (hasta 768px) */
@media (max-width: 768px) {
  .tcard {
    flex: 0 0 calc(100% - 20px);
    min-width: calc(100% - 20px);
    padding: 25px 20px;
  }
  
  .car__track {
    gap: 15px;
  }
  
  .car__viewport {
    margin: 0;
  }
  
  .car__controls {
    margin-bottom: 20px;
  }
  
  .car__btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .tcard__q {
    font-size: 45px;
    top: 5px;
    right: 15px;
  }
  
  .tcard__t {
    font-size: 15px;
    line-height: 1.7;
  }
  
  .tcard__name {
    font-size: 18px;
  }
  
  .tcard__meta {
    font-size: 13px;
  }
  
  .tcard__tag {
    padding: 6px 14px;
    font-size: 11px;
  }
  
  .car__dots .dot {
    width: 8px;
    height: 8px;
  }
  
  .car__dots .dot.active {
    width: 25px;
  }
}

/* Móvil pequeño (hasta 480px) */
@media (max-width: 480px) {
  .tcard {
    padding: 20px 15px;
  }
  
  .tcard__q {
    font-size: 40px;
    top: 5px;
    right: 10px;
  }
  
  .tcard__t {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  
  .tcard__line {
    width: 40px;
    margin: 15px 0 10px;
  }
  
  .tcard__name {
    font-size: 16px;
  }
  
  .tcard__meta {
    font-size: 12px;
    margin-bottom: 12px;
  }
  
  .tcard__tag {
    padding: 5px 12px;
    font-size: 10px;
  }
  
  .car__controls {
    gap: 8px;
  }
  
  .car__btn {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  
  .car__dots {
    margin-top: 20px;
    gap: 8px;
  }
  
  .car__dots .dot {
    width: 6px;
    height: 6px;
  }
  
  .car__dots .dot.active {
    width: 20px;
  }
}

/* Móvil muy pequeño (hasta 360px) */
@media (max-width: 360px) {
  .tcard {
    padding: 15px 12px;
  }
  
  .tcard__q {
    font-size: 35px;
  }
  
  .tcard__t {
    font-size: 13px;
    padding-right: 20px;
  }
  
  .tcard__name {
    font-size: 15px;
  }
  
  .tcard__meta {
    font-size: 11px;
  }
  
  .tcard__tag {
    padding: 4px 10px;
    font-size: 9px;
  }
}
