/* ===== DESIGN TOKENS ===== */
:root {
  --blue-dark:   #123462;
  --blue:        #286b9d;
  --orange:      #f26621;
  --orange-dark: #d4561a;
  --dark:       #333333;
  --gray:       #808080;
  --light:      #E6E6E6;
  --white:      #ffffff;
  --bg:         #f7f7f7;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.16);
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;

  /* aliases kept for backward compat */
  --red-dark: var(--blue-dark);
  --red:      var(--blue);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--red-dark);
  color: rgba(255,255,255,0.92);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 7px 0;
  position: relative;
  z-index: 1001;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar-left span, .topbar-right span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar-left svg, .topbar-right svg {
  width: 13px; height: 13px; flex-shrink: 0;
}
.topbar-badge {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  padding: 3px 10px;
  font-weight: 600;
  color: #fff;
}
.topbar-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.92);
  transition: color .2s, opacity .2s;
  text-decoration: none;
}
.topbar-link:hover { color: #fff; opacity: 0.8; text-decoration: underline; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 2px solid var(--red);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo-link img { height: 50px; }
.logo-dark { display: none; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-item {
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 14.5px; font-weight: 600; color: var(--dark);
  cursor: pointer; border: none; background: none;
  transition: background .2s, color .2s;
  display: flex; align-items: center; gap: 4px;
}
.nav-item:hover, .nav-item.active {
  background: #e8f2f9;
  color: var(--red);
}
.nav-item.active { font-weight: 700; }

/* Dropdowns */
.nav-dropdown { position: relative; }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--light);
  min-width: 240px; padding: 8px; z-index: 200;
  animation: fadeDown .18s ease;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu { display: block; }
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.dropdown-item {
  display: block; padding: 10px 14px; border-radius: var(--radius-sm);
  font-size: 13.5px; font-weight: 500; color: var(--dark);
  transition: background .15s, color .15s;
}
.dropdown-item:hover { background: #e8f2f9; color: var(--red); }
.arrow { font-size: 11px; }
.hamburger { display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px;
  background: var(--dark); border-radius: 2px; transition: .3s; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(-45deg, #060f1e, var(--red-dark), var(--red), #12223a);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  position: relative;
  overflow: hidden;
  padding-top: 0;
}
@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.1) 0%, transparent 60%);
}
.hero-particles {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero-particles span {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: float 10s infinite ease-in-out;
  border: 1px solid rgba(255,255,255,0.05);
}
.hero-particles span:nth-child(1){width:400px;height:400px;top:-10%;right:5%;animation-delay:0s;}
.hero-particles span:nth-child(2){width:250px;height:250px;bottom:10%;left:2%;animation-delay:2s;}
.hero-particles span:nth-child(3){width:180px;height:180px;top:40%;right:35%;animation-delay:4s;}
@keyframes float {
  0%,100%{transform:translateY(0) scale(1) rotate(0deg);}
  50%{transform:translateY(-30px) scale(1.05) rotate(5deg);}
}
.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 720px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  opacity: 0;
  animation: heroReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes heroReveal {
  to { transform: translateY(0); opacity: 1; }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 18px; border-radius: 100px; font-size: 13px; font-weight: 600;
  margin-bottom: 24px; color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.hero h1 span {
  color: transparent;
  background: linear-gradient(135deg, #90c8ea, #fff);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  max-width: 540px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white); padding: 16px 32px; border-radius: 100px;
  font-size: 16px; font-weight: 700; border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(242,102,33,0.4);
  transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .3s, background .3s;
}
.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 36px rgba(242,102,33,0.6);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.05); border: 2px solid rgba(255,255,255,0.5);
  color: var(--white); padding: 14px 30px; border-radius: 100px;
  font-size: 16px; font-weight: 600; cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background .3s, border-color .3s, transform .3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  transform: translateY(-4px) scale(1.02);
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--light);
  padding: 28px 0;
  box-shadow: var(--shadow-sm);
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat-num { font-size: 2.2rem; font-weight: 900; color: var(--red-dark); }
.stat-label { font-size: 13px; color: var(--gray); font-weight: 500; margin-top: 2px; }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--white); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  display: inline-block; font-size: 11.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--red); background: #e8f2f9; padding: 4px 14px;
  border-radius: 100px; margin-bottom: 14px;
}
.section-title { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.section-sub { font-size: 1rem; color: var(--gray); max-width: 540px; margin: 0 auto; }

/* ===== CARDS GRID ===== */
.cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px 28px;
  border: 1.5px solid var(--light);
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  cursor: pointer;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--red); }

.card-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.card p { font-size: .9rem; color: var(--gray); line-height: 1.6; }
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; font-size: .875rem; font-weight: 600;
  color: var(--orange); transition: gap .2s;
}
.card:hover .card-link { gap: 10px; }

/* ===== CARD ICON COLORS ===== */
.card-icon svg { width: 26px; height: 26px; }
.icon-red    { background: #e8f2f9; color: var(--red); }
.icon-blue   { background: #eff6ff; color: #1d4ed8; }
.icon-green  { background: #f0fdf4; color: #15803d; }
.icon-orange { background: #fff7ed; color: #c2410c; }
.icon-sm { width: 18px; height: 18px; display: inline-flex; align-items: center; }
.icon-sm svg { width: 16px; height: 16px; }

/* ===== WHY CHOOSE US ===== */
.features-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; align-items: center; }
.features-img img { border-radius: var(--radius-lg); width: 100%; object-fit: cover; }
.features-list { display: flex; flex-direction: column; gap: 24px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
  width: 48px; height: 48px; min-width: 48px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(18,52,98,0.3);
}
.feature-icon svg { width: 24px; height: 24px; color: var(--white); }
.feature-text h4 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.feature-text p { font-size: .875rem; color: var(--gray); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, #060f1e 0%, var(--red-dark) 60%, var(--red) 100%);
  padding: 72px 0; text-align: center; color: var(--white);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.06) 0%, transparent 70%);
}
.cta-banner h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; margin-bottom: 16px; position: relative; }
.cta-banner p { font-size: 1.05rem; color: rgba(255,255,255,0.75); margin-bottom: 36px; position: relative; }

/* ===== INNER PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, #060f1e 0%, var(--red-dark) 60%, var(--red) 100%);
  color: var(--white); padding: 100px 0 60px; text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 12px; }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto; }

/* ===== CONTENT CARD ===== */
.content-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light); margin: -40px auto 64px;
  max-width: 940px; position: relative;
}
.content-card h2 { font-size: 1.5rem; font-weight: 800; color: var(--dark); margin-bottom: 16px; }
.content-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--red-dark); margin: 24px 0 12px; }
.content-card p { color: #444; line-height: 1.75; margin-bottom: 12px; }
.content-card ul { list-style: none; padding: 0; }
.content-card ul li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid var(--light);
  color: #444; font-size: .95rem;
}
.content-card ul li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; }
.sub-cards { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 16px; margin-top: 24px; }
.sub-card {
  background: #e8f2f9; border: 1.5px solid #b8d6ec;
  border-radius: var(--radius-md); padding: 20px 16px;
  font-size: .9rem; font-weight: 600; color: var(--red-dark);
  display: flex; align-items: center; gap: 10px; cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.sub-card:hover { background: #c8e0f0; transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* ===== VALORES SECTION ===== */
.values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 20px; }
.value-item {
  background: var(--bg); border-radius: var(--radius-md); padding: 24px;
  border: 1.5px solid var(--light); transition: border-color .2s, box-shadow .2s;
}
.value-item:hover { border-color: var(--red-dark); box-shadow: var(--shadow-sm); }
.value-item h4 { font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.value-item p { font-size: .875rem; color: var(--gray); }

/* ===== CONTACT FORM ===== */
.form-wrapper { max-width: 700px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .875rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--light); font-family: 'Inter', sans-serif;
  font-size: .95rem; background: var(--white); color: var(--dark);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(40,107,157,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-required { color: #e02020; }
.form-hint { font-size: .78rem; color: var(--gray); margin-top: 4px; }
.btn-submit {
  width: 100%; padding: 14px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  color: var(--white); font-size: 1rem; font-weight: 700;
  border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(242,102,33,0.35);
  transition: transform .2s, box-shadow .2s;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(242,102,33,0.5); }
.btn-reset {
  width: 100%; padding: 12px; border-radius: var(--radius-md);
  background: var(--light); color: var(--dark); font-size: .95rem;
  font-weight: 600; border: 1.5px solid #ccc; cursor: pointer;
  transition: background .2s; margin-top: 10px;
}
.btn-reset:hover { background: #d4d4d4; }
.form-note {
  background: #e8f2f9; border-left: 4px solid var(--red);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 16px 20px; margin-bottom: 24px;
  font-size: .875rem; color: var(--red-dark); font-weight: 500;
}
.success-message {
  display: none; background: #f0fdf4; border: 1.5px solid #86efac;
  border-radius: var(--radius-md); padding: 24px; text-align: center; margin-top: 16px;
}
.success-message.show { display: block; }
.success-message h3 { color: #15803d; font-size: 1.1rem; margin-bottom: 6px; }
.success-message p { color: #166534; font-size: .9rem; }

/* ===== FOOTER ===== */
.footer { background: #060f1e; color: #e2e8f0; padding: 0 0 0; }

/* CTA Strip */
.footer-cta-strip {
  background: linear-gradient(90deg, var(--orange-dark) 0%, var(--orange) 100%);
  padding: 22px 0;
}
.footer-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.footer-cta-text {
  display: flex; align-items: center; gap: 12px;
  font-size: 1rem; font-weight: 600; color: #fff;
}
.footer-cta-text svg { width: 22px; height: 22px; flex-shrink: 0; color: rgba(255,255,255,0.9); }
.footer-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--orange-dark);
  padding: 11px 24px; border-radius: 100px;
  font-size: .9rem; font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  transition: transform .2s, box-shadow .2s;
}
.footer-cta-btn svg { width: 16px; height: 16px; }
.footer-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.25); }

/* Main grid */
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding: 64px 0 56px; }

/* Brand column */
.footer-logo { height: 42px; margin-bottom: 16px; }
.footer-brand p { color: #94a8bf; font-size: .88rem; line-height: 1.7; margin-top: 4px; }
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-link {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: #94a8bf; transition: background .2s, color .2s, transform .2s, border-color .2s;
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover { background: rgba(255,255,255,0.16); color: #fff; border-color: rgba(255,255,255,0.3); transform: translateY(-3px); }
.social-link--whatsapp:hover { background: #25d366; border-color: #25d366; color: #fff; }

/* Link columns */
.footer-links h4, .footer-contact h4 {
  font-size: .7rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: #90c8ea; margin-bottom: 16px;
}
.footer-h4-gap { margin-top: 28px !important; }
.footer-links a {
  display: flex; align-items: center; gap: 8px;
  color: #94a8bf; font-size: .875rem; padding: 5px 0;
  transition: color .15s, gap .15s;
}
.footer-links a svg { width: 14px; height: 14px; flex-shrink: 0; opacity: 0.6; transition: opacity .15s; }
.footer-links a:hover { color: #90c8ea; gap: 10px; }
.footer-links a:hover svg { opacity: 1; }

/* Contact column */
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 6px 0; color: #94a8bf; font-size: .875rem;
  transition: color .15s;
  text-decoration: none;
}
a.footer-contact-item:hover { color: #c8e0f0; }
a.footer-contact-item:hover .footer-contact-icon { background: rgba(144,200,234,0.18); border-color: rgba(144,200,234,0.35); }
.footer-contact-item em { font-style: normal; font-size: .75rem; color: #25d366; margin-left: 4px; font-weight: 600; }
.footer-contact-item--addr { cursor: default; }
.footer-contact-icon {
  width: 30px; height: 30px; min-width: 30px; border-radius: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
  margin-top: 1px;
}
.footer-contact-icon svg { width: 14px; height: 14px; color: #90c8ea; }
.footer-contact-icon--wa { background: rgba(37,211,102,0.12); border-color: rgba(37,211,102,0.2); }
.footer-contact-icon--wa svg { color: #25d366; }

/* Hours block */
.footer-hours {
  display: flex; align-items: flex-start; gap: 10px;
  margin-top: 16px; padding: 12px 14px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-sm);
}
.footer-hours svg { width: 14px; height: 14px; color: #90c8ea; flex-shrink: 0; margin-top: 2px; }
.footer-hours div { display: flex; flex-direction: column; gap: 2px; }
.footer-hours span { font-size: .8rem; color: #94a8bf; }

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  background: rgba(0,0,0,0.25);
}
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-copy { color: #4a6070; font-size: .8rem; }
.footer-trust-badges { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-badge-item {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .75rem; font-weight: 600; color: #4a6070;
  letter-spacing: .03em;
}
.footer-badge-item svg { width: 13px; height: 13px; color: #90c8ea; }

/* ===== CONTACT GRID ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; }
.contact-info h3 { font-size: .8rem; font-weight: 700; color: var(--red-dark); text-transform: uppercase; letter-spacing: .08em; margin: 20px 0 6px; }
.contact-info h3:first-child { margin-top: 0; }
.contact-info p { color: #444; font-size: .925rem; }

/* ===== BTN OUTLINE DARK ===== */
.btn-outline-dark { padding: 12px 22px; border-radius: var(--radius-sm); background: var(--light); color: var(--dark); font-size: .9rem; font-weight: 600; border: 1.5px solid #ccc; cursor: pointer; transition: background .2s; }
.btn-outline-dark:hover { background: #d4d4d4; }

/* ===== FLOATING BUTTONS ===== */
.float-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 1000;
}
.whatsapp-float, .insta-float {
  width: 58px;
  height: 58px;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
  transition: transform 0.3s ease, filter 0.3s ease;
}
.whatsapp-float {
  background-color: #25d366;
  animation: pulse-glow 2.2s infinite;
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
}
.insta-float {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.whatsapp-float svg, .insta-float svg { width: 32px; height: 32px; }
.whatsapp-float:hover, .insta-float:hover { transform: scale(1.1); filter: brightness(1.1); }
@keyframes pulse-glow {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.65); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .topbar-right { display: none; }
  .topbar-left { gap: 12px; font-size: 12px; }
  .nav-links { display: none; flex-direction: column; align-items: stretch;
    position: fixed; top: 72px; left: 0; right: 0;
    background: var(--white); border-bottom: 2px solid var(--red);
    padding: 16px; gap: 4px; z-index: 999; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .cards-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .features-img { display: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: 1fr; }
  .content-card { padding: 28px 20px; margin: -20px 16px 48px; }
  .dropdown-menu { position: static; box-shadow: none; border: none;
    border-radius: 0; padding: 0 0 0 16px; animation: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-cta-inner { flex-direction: column; text-align: center; }
  .footer-cta-text { justify-content: center; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-trust-badges { gap: 14px; }
  .contact-grid { grid-template-columns: 1fr; }
  .float-buttons { bottom: 20px; right: 20px; gap: 12px; }
  .whatsapp-float, .insta-float { width: 50px; height: 50px; }
  .whatsapp-float svg, .insta-float svg { width: 26px; height: 26px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .topbar-left span:last-child { display: none; }
}
