/* ═══════════════════════════════════════════════
   HYDROKING — style.css
   Edit colors/fonts here; layout in index.html
═══════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --navy:        #04090F;
  --navy-mid:    #080F1A;
  --navy-card:   #0C1525;
  --navy-hover:  #101E35;
  --blue:        #1255B0;
  --blue-bright: #1976D2;
  --blue-glow:   #2196F3;
  --blue-light:  #64B5F6;
  --silver:      #BEC8D8;
  --silver-light:#E4EAF4;
  --white:       #FFFFFF;
  --muted:       #7A8FA8;
  --border:      rgba(255,255,255,0.07);
  --border-blue: rgba(33,150,243,0.3);
  --glow:        0 0 40px rgba(33,150,243,0.15);
  --glow-strong: 0 0 60px rgba(33,150,243,0.25);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.45);
  --shadow-hover:0 16px 60px rgba(0,0,0,0.6), 0 0 30px rgba(33,150,243,0.12);
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   18px;
  --transition:  0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--navy);
  color: var(--silver-light);
  font-family: 'Inter', sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── SELECTION ── */
::selection { background: var(--blue); color: #fff; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ── TYPOGRAPHY ── */
.eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-light);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.6rem;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--blue-glow);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--blue-glow);
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1rem;
}
.section-title .accent { color: var(--blue-glow); }
.section-sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.75;
}

/* ── LAYOUT ── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
section { padding: 6rem 1.5rem; }

/* ── GLOW DIVIDER ── */
.glow-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-glow), transparent);
  opacity: 0.4;
}

/* ── NAV ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 68px;
  background: rgba(4,9,15,0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  justify-content: space-between;
  transition: box-shadow var(--transition);
}
#nav.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.5), 0 0 20px rgba(33,150,243,0.08);
}
.nav-logo img { height: 42px; width: auto; filter: drop-shadow(0 0 8px rgba(33,150,243,0.4)); }
.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--silver);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--blue-glow);
  transition: width var(--transition);
  box-shadow: 0 0 6px var(--blue-glow);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta-btn {
  background: var(--blue);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  transition: background var(--transition), box-shadow var(--transition) !important;
  box-shadow: 0 0 20px rgba(18,85,176,0.4);
}
.nav-cta-btn::after { display: none !important; }
.nav-cta-btn:hover {
  background: var(--blue-bright) !important;
  box-shadow: 0 0 30px rgba(25,118,210,0.6) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--silver-light);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
#hero {
  margin-top: 68px;
  position: relative;
  overflow: hidden;
}
.hero-img-wrap {
  position: relative;
  width: 100%;
  max-height: 540px;
  overflow: hidden;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-overlay-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(transparent, var(--navy));
  pointer-events: none;
}

/* ── TRUST BAR ── */
#trust {
  background: linear-gradient(135deg, var(--navy-mid) 0%, #091426 100%);
  border-top: 1px solid var(--border-blue);
  border-bottom: 1px solid var(--border-blue);
  padding: 1.25rem 2rem;
}
.trust-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 1140px;
  margin: 0 auto;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--silver);
}
.trust-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(33,150,243,0.12);
  border: 1px solid var(--border-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  box-shadow: 0 0 12px rgba(33,150,243,0.15);
  flex-shrink: 0;
}

/* ── PAIN SECTION ── */
#pain {
  background: var(--navy);
  text-align: center;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.pain-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-card);
}
.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-glow));
  opacity: 0;
  transition: opacity var(--transition);
}
.pain-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-blue);
  box-shadow: var(--shadow-hover);
}
.pain-card:hover::before { opacity: 1; }
.pain-emoji { font-size: 2.2rem; margin-bottom: 1rem; }
.pain-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.pain-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── SOLUTION STRIP ── */
#solution {
  background: linear-gradient(135deg, var(--blue) 0%, #0D47A1 100%);
  padding: 3.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#solution::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
#solution .container { position: relative; }
#solution h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}
#solution p { font-size: 16px; color: rgba(255,255,255,0.82); max-width: 650px; margin: 0 auto 2rem; }
.solution-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--blue);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 34px;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  transition: transform var(--transition), box-shadow var(--transition);
}
.solution-cta:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 14px 40px rgba(0,0,0,0.4); }

/* ── SERVICES ── */
#servicios {
  background: var(--navy-mid);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.service-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  cursor: default;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
/* service-card base styles now in PHOTO CARDS block above */
/* ── SERVICE PHOTO CARDS ── */
.service-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-blue);
  box-shadow: var(--shadow-hover);
}

/* Image banner top */
.service-img-wrap {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
  background: var(--navy-hover);
  flex-shrink: 0;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
  user-select: none;
  -webkit-user-select: none;
}
.service-card:hover .service-img-wrap img {
  transform: scale(1.07);
}
/* Gradient overlay on image */
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(4,9,15,0.05) 0%,
    rgba(4,9,15,0.55) 100%
  );
  pointer-events: none;
}
/* Badge pinned bottom-left of image */
.service-img-badge {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(4,9,15,0.72);
  border: 1px solid var(--border-blue);
  color: var(--blue-light);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
/* Placeholder when image is missing */
.service-img-wrap.img-missing {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-card), var(--navy-hover));
  border-bottom: 1px dashed rgba(33,150,243,0.2);
}
.service-img-wrap.img-missing::after {
  content: 'Agregar foto del servicio';
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.6;
}
/* Card text body */
.service-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.service-body p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.25rem;
}
.service-cta {
  display: inline-flex;
  align-items: center;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--blue-light);
  text-transform: uppercase;
  transition: color var(--transition), gap var(--transition);
  gap: 4px;
}
.service-cta:hover {
  color: var(--blue-glow);
  gap: 8px;
}

/* ── MONTHLY SPECIAL ── */
#especial {
  background: var(--navy);
  padding: 5rem 1.5rem;
}
.special-wrap {
  background: var(--navy-card);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: var(--glow-strong), var(--shadow-card);
  max-width: 1000px;
  margin: 0 auto;
}
.special-img-side {
  position: relative;
  min-height: 380px;
  overflow: hidden;
}
.special-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.special-wrap:hover .special-img-side img { transform: scale(1.04); }
.special-badge {
  position: absolute;
  top: 1.25rem; left: 1.25rem;
  background: linear-gradient(135deg, #E53935, #B71C1C);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(229,57,53,0.5);
  animation: pulse-badge 2.5s ease-in-out infinite;
}
@keyframes pulse-badge {
  0%,100% { box-shadow: 0 4px 20px rgba(229,57,53,0.5); }
  50%      { box-shadow: 0 4px 32px rgba(229,57,53,0.8); }
}
.special-content {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.special-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.special-content p { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 1.75rem; }
.special-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  box-shadow: 0 6px 24px rgba(18,85,176,0.5);
  transition: transform var(--transition), box-shadow var(--transition);
  align-self: flex-start;
}
.special-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(18,85,176,0.7); }

/* ── BEFORE/AFTER GALLERY ── */
#galeria { background: var(--navy-mid); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 3.5rem;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-blue);
}
.gallery-item img,
.gallery-item video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,9,15,0.75) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
}
.gallery-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--navy-card), var(--navy-hover));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  padding: 1rem;
}
.gallery-placeholder .placeholder-icon { font-size: 2.5rem; opacity: 0.4; }
.gallery-placeholder span { opacity: 0.6; font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; }

/* ── WHY US ── */
#nosotros { background: var(--navy); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.why-card {
  padding: 1.75rem 1.5rem;
  border-left: 2px solid var(--blue);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgba(18,85,176,0.06);
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-left-color var(--transition);
  box-shadow: var(--shadow-card);
}
.why-card:hover {
  transform: translateX(4px);
  border-left-color: var(--blue-glow);
  box-shadow: var(--glow), var(--shadow-card);
}
.why-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--blue-glow);
  line-height: 1;
  margin-bottom: 0.3rem;
  text-shadow: 0 0 20px rgba(33,150,243,0.4);
}
.why-card h4 { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 0.35rem; }
.why-card p { font-size: 13px; color: var(--muted); }

/* ── TESTIMONIALS ── */
#testimonios { background: var(--navy-mid); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.testimonial-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-blue);
  box-shadow: var(--shadow-hover);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--blue);
  opacity: 0.15;
  line-height: 1;
}
.stars { color: #FFB300; font-size: 14px; margin-bottom: 0.75rem; letter-spacing: 2px; }
.testimonial-card p { font-size: 14px; color: var(--silver); line-height: 1.75; margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.author-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-glow));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; color: #fff; font-size: 15px;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(33,150,243,0.3);
}
.author-name { font-size: 13px; font-weight: 600; color: var(--white); }
.author-city { font-size: 12px; color: var(--muted); }

/* ── CONTACT ── */
#contacto { background: var(--navy); }
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3.5rem;
}
.contact-info h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.contact-info > p { font-size: 14px; color: var(--muted); margin-bottom: 2rem; line-height: 1.75; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1rem;
  font-size: 14px;
  color: var(--silver);
}
.contact-icon {
  width: 40px; height: 40px;
  background: rgba(18,85,176,0.15);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: 0 0 12px rgba(33,150,243,0.1);
  flex-shrink: 0;
  transition: box-shadow var(--transition);
}
.contact-detail:hover .contact-icon { box-shadow: 0 0 20px rgba(33,150,243,0.25); }
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 2rem;
  background: #128C7E;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(37,211,102,0.3);
  box-shadow: 0 6px 24px rgba(18,140,126,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(18,140,126,0.6); }
.wa-btn svg { width: 22px; height: 22px; fill: #25D366; flex-shrink: 0; }

/* ── FORM ── */
.form-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-card);
}
.form-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.form-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-glow); box-shadow: 0 0 8px var(--blue-glow); animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 8px var(--blue-glow); }
  50%      { box-shadow: 0 0 16px var(--blue-glow), 0 0 30px rgba(33,150,243,0.4); }
}
.form-header span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--silver-light);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { margin-bottom: 14px; }
.form-field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 14px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-field select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%237A8FA8' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-field select option { background: var(--navy-card); color: var(--white); }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--muted); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--blue-glow);
  box-shadow: 0 0 0 3px rgba(33,150,243,0.12), 0 0 16px rgba(33,150,243,0.08);
  background: rgba(33,150,243,0.04);
}
.form-field textarea { resize: vertical; min-height: 90px; }
.consent-wrap { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 18px; }
.consent-wrap input[type="checkbox"] { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--blue-glow); cursor: pointer; flex-shrink: 0; }
.consent-wrap label { font-size: 12px; color: var(--muted); cursor: pointer; line-height: 1.55; }
.form-error {
  display: none;
  font-size: 13px;
  color: #EF9A9A;
  background: rgba(211,47,47,0.1);
  border: 1px solid rgba(211,47,47,0.3);
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
}
.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 6px 28px rgba(18,85,176,0.45);
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}
.submit-btn:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(18,85,176,0.65); }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* ── FORM SUCCESS ── */
.form-success { display: none; text-align: center; padding: 2.5rem 1rem; }
.success-check {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(27,94,32,0.25);
  border: 1px solid #2E7D32;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin: 0 auto 1.25rem;
  box-shadow: 0 0 24px rgba(46,125,50,0.3);
}
.form-success h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem; font-weight: 700;
  color: var(--white); margin-bottom: 0.5rem;
}
.form-success p { font-size: 14px; color: var(--muted); margin-bottom: 1.5rem; }
.summary-box {
  text-align: left;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: 13px;
  margin-bottom: 1.5rem;
}
.sum-row {
  display: flex; justify-content: space-between;
  padding: 5px 0; border-bottom: 1px solid var(--border);
}
.sum-row:last-child { border-bottom: none; }
.sum-row span:first-child { color: var(--muted); }
.sum-row span:last-child { color: var(--silver-light); text-align: right; max-width: 55%; word-break: break-word; }
.reset-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: border-color var(--transition), color var(--transition);
}
.reset-btn:hover { border-color: var(--border-blue); color: var(--blue-light); }

/* ── SPINNER ── */
.spinner {
  display: inline-block;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── FOOTER ── */
footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  padding: 3.5rem 2rem 2rem;
}
.footer-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand img { height: 48px; margin-bottom: 1rem; filter: drop-shadow(0 0 6px rgba(33,150,243,0.3)); }
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver-light);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { font-size: 13px; color: var(--muted); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--blue-light); }
.social-links { display: flex; gap: 12px; margin-top: 1.5rem; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: 16px;
  transition: border-color var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  background: rgba(255,255,255,0.03);
}
.social-link:hover {
  border-color: var(--border-blue);
  color: var(--blue-light);
  box-shadow: 0 0 16px rgba(33,150,243,0.2);
  transform: translateY(-2px);
}
.footer-bottom {
  max-width: 1140px; margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 12px; color: var(--muted); }
.footer-bottom a { color: var(--blue-light); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--blue-glow); }

/* ── FLOATING WA BUTTON ── */
.float-wa {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: float-pulse 3s ease-in-out infinite;
}
.float-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37,211,102,0.7);
  animation: none;
}
.float-wa svg { width: 30px; height: 30px; fill: #fff; }
@keyframes float-pulse {
  0%,100% { box-shadow: 0 8px 32px rgba(37,211,102,0.5); }
  50%      { box-shadow: 0 8px 48px rgba(37,211,102,0.75); }
}
.float-wa-tooltip {
  position: absolute;
  right: 68px; top: 50%;
  transform: translateY(-50%);
  background: var(--navy-card);
  border: 1px solid var(--border-blue);
  color: var(--white);
  font-size: 13px; font-weight: 500;
  white-space: nowrap;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.float-wa:hover .float-wa-tooltip { opacity: 1; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── MOBILE NAV OVERLAY ── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(4,9,15,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-blue);
  padding: 1.5rem 2rem 2rem;
  z-index: 999;
  flex-direction: column;
  gap: 1.25rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--silver-light);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--blue-light); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .contact-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .special-wrap { grid-template-columns: 1fr; }
  .special-img-side { min-height: 250px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  #fundador .container > div { grid-template-columns: 1fr !important; gap: 2rem !important; }
}
@media (max-width: 600px) {
  section { padding: 4rem 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .trust-inner { gap: 1.25rem; }
  .trust-item span { display: none; }
  .float-wa { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}
