:root{
  --navy:#0A3D62;
  --navy-2:#0F2740;
  --hueso:#F4F6F8;
  --acento:#F79F1F;
  --texto:#0f1b2b;
}

/* === HERO === */
.contacto--pro .c-hero{
  position:relative; overflow:hidden; color:#fff;
  background: radial-gradient(1200px 600px at 80% -10%, rgba(255,255,255,.06), transparent 60%),
              linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  padding: 68px 0 54px;
}
.c-hero__bg::before, .c-hero__bg::after{
  content:""; position:absolute; inset:-20%; pointer-events:none;
  background: radial-gradient(closest-side, rgba(247,159,31,.08), transparent 60%);
  animation: floaty 10s ease-in-out infinite alternate;
}
.c-hero__bg::after{ animation-duration: 13s; animation-delay: .5s; }
@keyframes floaty{ from{transform:translateY(-10px)} to{transform:translateY(16px)} }
.contacto--pro .c-hero h1{ margin:0 0 8px; font-size: clamp(32px, 4vw, 42px); }
.contacto--pro .c-hero p{ opacity:.92; margin:0 0 18px }

/* Botón WhatsApp */
.btn--whatsapp{
  background:#25D366; color:#0b1a0f; font-weight:800;
  padding:12px 20px; border-radius:12px; text-decoration:none; display:inline-block;
  box-shadow:0 12px 28px rgba(37,211,102,.35);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.btn--whatsapp:hover{ transform:translateY(-3px) scale(1.02); filter:saturate(1.05) }
.btn--sm{ padding:10px 14px; border-radius:10px }

/* === GRID === */
.c-grid{ background:linear-gradient(180deg,#fff 0,var(--hueso) 100%); padding:34px 0 }
.c-grid__inner{
  display:grid; grid-template-columns: 420px 1fr; gap:20px; align-items:start;
}

/* Tarjetas */
.c-card{
  background: rgba(255,255,255,.92);
  border:1px solid #e7eef5; border-radius:16px;
  box-shadow:0 16px 40px rgba(10,31,51,.06);
  padding:20px;
  transform: translateY(8px);
  transition: transform .3s ease, box-shadow .3s ease, border-color .25s ease;
}
.c-card:hover{ transform: translateY(0); box-shadow:0 22px 60px rgba(10,31,51,.10); }

/* Info */
.c-info h2{ margin:6px 0 10px }
.c-list{ list-style:none; margin:0; padding:0; display:grid; gap:12px }
.c-list li{ display:flex; align-items:center; gap:10px }
.c-ico{ font-size:1.1rem }
.c-link{ color:var(--navy); text-decoration:none; font-weight:800 }
.c-link:hover{ text-decoration:underline }

.c-social{ display:flex; gap:10px; margin-top:14px }
.c-social a{
  width:40px; height:40px; display:grid; place-items:center;
  background: var(--acento); color:#000; border-radius:50%;
  text-decoration:none; font-weight:900;
  box-shadow:0 10px 24px rgba(247,159,31,.35);
  transition: transform .2s ease, filter .2s ease;
}
.c-social a:hover{ transform: translateY(-3px); filter:brightness(1.05) }

/* Formulario */
.c-form h2{ margin:0 0 6px }
.c-form p{ opacity:.9; margin:0 0 12px }
.c-form__wrap{ margin-top:8px }
.c-legal{ font-size:.9rem; opacity:.8; margin-top:8px }
.c-legal a{ color:var(--navy) }

/* WPForms tuneado (si aplica) */
.wpforms-form input[type="text"],
.wpforms-form input[type="email"],
.wpforms-form input[type="tel"],
.wpforms-form textarea{
  border-radius:12px !important; border:1px solid #dfe7ef !important; padding:12px 14px !important;
  transition: box-shadow .2s ease, border-color .2s ease !important;
}
.wpforms-form input:focus,
.wpforms-form textarea:focus{
  outline:0 !important; border-color: var(--acento) !important;
  box-shadow: 0 0 0 4px rgba(247,159,31,.15) !important;
}
.wpforms-submit{
  background:var(--navy) !important; color:#fff !important; font-weight:800 !important; border-radius:12px !important;
  padding:12px 18px !important; border:0 !important; transition: transform .2s ease, box-shadow .2s ease !important;
}
.wpforms-submit:hover{ transform:translateY(-2px); box-shadow:0 10px 20px rgba(10,61,98,.25) !important; }

/* === MAPA === */
.c-map{ background:var(--hueso); padding:16px 0 40px }
.c-map__wrap iframe{
  width:100%; height:420px; border:0; border-radius:14px;
}
.c-map__note{ margin-top:10px; opacity:.85 }

/* === FAQ === */
.c-faq{ background: linear-gradient(180deg, var(--navy-2), var(--navy)); color:#fff; padding:44px 0 }
.c-faq h2{ text-align:center; margin:0 0 20px }
.faq-list{ max-width:900px; margin:0 auto; display:grid; gap:12px }
.faq-item{ border:1px solid rgba(255,255,255,.18); border-radius:12px; overflow:hidden; background:rgba(255,255,255,.05) }
.faq-q{
  width:100%; text-align:left; background:transparent; border:0; color:#fff; font-weight:800;
  padding:16px 18px; display:flex; align-items:center; justify-content:space-between; cursor:pointer;
  transition: color .25s ease, background .25s ease;
}
.faq-q:hover{ background:rgba(255,255,255,.06); color:#fff }
.faq-icon{ transition: transform .25s ease; font-weight:900 }
.faq-a{
  max-height:0; overflow:hidden; padding:0 18px; opacity:0;
  transition:max-height .3s ease, opacity .25s ease, padding .25s ease;
}
.faq-item.active .faq-a{ max-height:160px; padding:0 18px 16px; opacity:1 }
.faq-item.active .faq-icon{ transform:rotate(45deg) }

/* Reveal on scroll (usar .reveal anim) */
[data-reveal]{ opacity:0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease }
.revealed{ opacity:1 !important; transform: translateY(0) !important }

/* Responsive */
@media (max-width: 980px){
  .c-grid__inner{ grid-template-columns: 1fr }
}


.contacto-form {
  background: linear-gradient(180deg, #0A3D62, #0F2740);
  padding: 60px 20px;
  border-radius: 16px;
  color: #fff;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.contacto-form h2 {
  color: #F79F1F;
  margin-bottom: 12px;
}

.contacto-form .wpforms-form input,
.contacto-form .wpforms-form textarea {
  border-radius: 10px;
  border: none;
  padding: 14px;
  width: 100%;
}

.contacto-form .wpforms-form button {
  background: #25D366;
  color: #fff;
  font-weight: bold;
  border-radius: 12px;
  padding: 14px 20px;
  transition: transform 0.2s ease, background 0.3s ease;
}

.contacto-form .wpforms-form button:hover {
  transform: translateY(-2px);
  background: #1ebe57;
}


/**/
/* --- HERO base (si ya lo tienes, solo suma lo de __fx y chips) --- */
.contacto--pro .c-hero{
  position:relative; overflow:hidden; color:#fff;
  background: radial-gradient(1200px 600px at 80% -10%, rgba(255,255,255,.06), transparent 60%),
              linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  padding: 68px 0 54px;
  isolation:isolate; /* para mezclar bien capas */
}

/* Oscurecer sutil para legibilidad extra */
.contacto--pro .c-hero::after{
  content:""; position:absolute; inset:0; z-index:1; pointer-events:none;
  background: radial-gradient(1000px 520px at 65% -10%, rgba(0,0,0,.08), transparent 55%),
              linear-gradient(180deg, rgba(0,0,0,.14), transparent 40%);
}

/* Contenido por encima de FX */
.contacto--pro .c-hero .container{ position:relative; z-index:2 }
.contacto--pro .c-hero h1{ margin:0 0 8px; font-size: clamp(32px, 4vw, 42px); }
.contacto--pro .c-hero p{ opacity:.92; margin:0 0 18px }

/* --- FX flotantes --- */
.c-hero__fx{
  position:absolute; inset:0; z-index:0; pointer-events:none;
}

/* Chips dev flotantes */
.c-hero__fx .chip{
  position:absolute;
  left: var(--x); top: var(--y);
  transform: translate(-50%, -50%) scale(var(--sz,1));
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800; letter-spacing:.5px;
  font-size: clamp(10px, 1.1vw, 14px);
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  filter: blur(.1px);
  box-shadow: 0 12px 28px rgba(10,31,51,.15);
  /* flotación sutil */
  animation: chipFloat var(--d,1s) ease-in-out infinite alternate;
  opacity: .28;
  backdrop-filter: blur(2px);
  /* ← movimiento por el área (aleatorio) */
  transition:
    left var(--t, 12s) linear,
    top  var(--t, 12s) linear,
    transform .18s ease;
}


/* Animación de flotación */
@keyframes chipFloat{
  0%   { transform: translate(-50%, -50%) translateY(-8px) scale(var(--sz,1)) rotate(-1deg); }
  100% { transform: translate(-50%, -50%) translateY(10px)  scale(var(--sz,1)) rotate(1deg); }
}

/* Parallax opcional (si activas el JS) */
.c-hero.parallax-on .c-hero__fx .chip{
  transition: transform .15s ease;
}

/* Responsive: menos ruido en pantallas chicas */
@media (max-width: 680px){
  .c-hero__fx .chip{ opacity:.18; filter: blur(.2px); }
}
/* Si activas parallax JS */
.c-hero.parallax-on .c-hero__fx .chip{
  will-change: left, top, transform;
}

/**/
/* HERO */
.n-hero{
  position:relative;
  background: radial-gradient(1200px 700px at 70% -10%, rgba(255,255,255,.06), transparent 60%),
              linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color:#fff;
  padding:72px 0 56px;
  overflow:hidden;
}
.n-hero .badge{
  display:inline-block; background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.22);
  padding:6px 10px; border-radius:999px; font-weight:700; margin-bottom:10px
}
.n-hero h1{ font-size:clamp(28px,5vw,48px); margin:0 0 10px; line-height:1.1 }
.n-hero h1 .muted{ opacity:.75; font-weight:400; font-size:.8em }
.n-hero p{ opacity:.95; max-width:56ch }
.hero-grid{ display:grid; grid-template-columns: 1.2fr .8fr; gap:28px; align-items:center }
.hero-cta{ display:flex; gap:12px; margin:16px 0 10px }
.hero-badges{ display:flex; flex-wrap:wrap; gap:8px; margin:8px 0 0; padding:0; list-style:none }
.hero-badges li{ background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.18); padding:8px 12px; border-radius:999px }

/* foto */
.hero-photo{
  margin:0; text-align:center; position:relative; filter:drop-shadow(0 24px 48px rgba(0,0,0,.35));
}
.hero-photo img{
  width:320px; height:320px; object-fit:cover; border-radius:50%;
  border:4px solid rgba(255,255,255,.14);
  box-shadow:0 0 0 8px rgba(247,159,31,.12), inset 0 0 60px rgba(255,255,255,.06);
  transition:transform .25s ease;
}
.hero-photo figcaption{ margin-top:10px; opacity:.85 }

/* chips flotantes */
.c-hero__fx{ position:absolute; inset:0; pointer-events:none }
.c-hero__fx .chip{
  position:absolute; left:var(--x); top:var(--y);
  transform:translate(-50%,-50%) scale(var(--sz,1));
  padding:8px 12px; border-radius:999px;
  font-weight:800; font-size:12px; color:rgba(255,255,255,.9);
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.2);
  animation:floatY var(--d,16s) ease-in-out infinite alternate;
  transition: left var(--t,13s) linear, top var(--t,13s) linear, transform .15s ease;
  opacity:.3; backdrop-filter: blur(2px);
}
@keyframes floatY{ 0%{transform:translate(-50%,-50%) translateY(-8px) scale(var(--sz,1))}
  100%{transform:translate(-50%,-50%) translateY(10px) scale(var(--sz,1))} }

