@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --navy: #0D2348;
  --navy-2: #F0F5FF;
  --navy-3: #E4EDFF;
  --blue: #1658C5;
  --blue-light: #2E7DE9;
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --white: #FFFFFF;
  --text: #0D2348;
  --gray: #5A6E8A;
  --gray-light: #7A8FA8;
  --glass: rgba(13,35,72,0.06);
  --glass-border: rgba(13,35,72,0.12);
  --shadow: 0 8px 40px rgba(13,35,72,0.12);
  --radius: 16px;
  --radius-sm: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', sans-serif; }

a { text-decoration: none; color: inherit; }

img { max-width: 100%; border-radius: var(--radius); }

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(13,35,72,0.1);
  box-shadow: 0 2px 20px rgba(13,35,72,0.08);
  transition: all 0.3s;
  min-height: 78px;
}
nav.scrolled { background: rgba(255,255,255,0.99); min-height: 70px; }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.6rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
}
.nav-logo-img {
  height: 80px; width: auto; display: block;
  object-fit: contain; object-position: left center;
}
.logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--blue), var(--gold));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 800; color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.logo-text { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.1rem; }
.logo-text span { color: var(--gold); }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--gray); transition: color 0.2s; text-decoration: none; display: inline-block; padding: 0.5rem 0; }
.nav-links a:hover { color: var(--navy); }

/* Dropdown */
.nav-links .has-dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius-sm);
  min-width: 180px;
  list-style: none;
  flex-direction: column;
  padding: 0.5rem 0;
  z-index: 100;
  border: 1px solid var(--glass-border);
}
.nav-links .has-dropdown:hover .dropdown-menu { display: flex; }
.dropdown-menu li { width: 100%; }
.dropdown-menu a {
  padding: 0.75rem 1.5rem;
  display: block;
  color: var(--text);
  font-weight: 500;
}
.dropdown-menu a:hover {
  background: var(--navy-2);
  color: var(--blue);
}

.nav-phone {
  display: flex;
  align-items: center;
  margin-right: 1.5rem;
}

.nav-cta {
  background: linear-gradient(135deg, var(--blue), #1458b0);
  color: white; padding: 0.6rem 1.4rem;
  border-radius: 50px; font-weight: 600; font-size: 0.9rem;
  transition: all 0.3s; border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(30,111,217,0.4);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(30,111,217,0.6); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('assets/hero-bg.jpg') center/cover no-repeat;
  filter: brightness(0.25);
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(10,22,40,0.9) 0%, rgba(10,22,40,0.4) 60%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light); padding: 0.4rem 1rem; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
.hero-badge::before { content: '●'; color: var(--gold); }

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800; line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #ffffff;
}
.hero-title .accent { color: var(--blue-light); }
.hero-title .gold { color: var(--gold); }

.hero-subtitle {
  font-size: 1.1rem; color: var(--gray-light); margin-bottom: 2.5rem; max-width: 500px;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  background: linear-gradient(135deg, var(--blue), #1458b0);
  color: white; padding: 0.9rem 2rem;
  border-radius: 50px; font-weight: 700; font-size: 1rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: all 0.3s; box-shadow: 0 6px 25px rgba(30,111,217,0.5);
  border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(30,111,217,0.7); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.1); color: var(--white);
  padding: 0.9rem 2rem; border-radius: 50px;
  font-weight: 600; font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.8);
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: all 0.3s; cursor: pointer;
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: var(--white); color: var(--navy); transform: translateY(-3px); }

.hero-stats {
  display: flex; gap: 2rem; margin-top: 3rem; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num { font-size: 2rem; font-weight: 800; color: var(--gold); font-family: 'Plus Jakarta Sans', sans-serif; }
.stat-label { font-size: 0.75rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.05em; }

.hero-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.hero-img-wrap {
  position: relative; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
}
.hero-img-wrap img { width: 100%; height: 480px; object-fit: cover; }
.hero-img-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: rgba(10,22,40,0.9); backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border); border-radius: var(--radius-sm);
  padding: 1rem 1.5rem; display: flex; flex-direction: column; gap: 0.2rem;
}
.badge-label { font-size: 0.7rem; color: var(--gray); text-transform: uppercase; }
.badge-value { font-weight: 700; color: var(--gold); font-size: 1.2rem; }

.hero-promo-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: linear-gradient(135deg, var(--gold), #a88030);
  border-radius: var(--radius-sm); padding: 1rem 1.5rem;
  display: flex; align-items: center; gap: 0.75rem;
  box-shadow: 0 8px 30px rgba(201,168,76,0.5);
  animation: pulse-gold 2.5s infinite;
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 8px 30px rgba(201,168,76,0.5); }
  50% { box-shadow: 0 8px 40px rgba(201,168,76,0.9); }
}
.promo-icon { font-size: 2rem; }
.promo-label { display: block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; color: rgba(13,35,72,0.7); }
.promo-val { display: block; font-size: 1.1rem; font-weight: 800; color: var(--navy); font-family: 'Plus Jakarta Sans', sans-serif; }

/* ── SECTION BASE ── */
section { padding: 6rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  color: var(--blue); font-size: 0.8rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  line-height: 1.15; margin-bottom: 1rem; color: var(--navy);
}
.section-subtitle {
  color: var(--gray); font-size: 1.05rem; max-width: 600px;
}

/* ── PILLARS ── */
.pillars { background: var(--navy-2); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
  width: 100%;
}
.pillar-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  align-self: stretch;
  white-space: normal;
  background: var(--white);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 2.5rem 2rem;
  transition: all 0.3s; position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.pillar-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(30,111,217,0.08), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.pillar-card:hover { transform: translateY(-8px); border-color: rgba(22,88,197,0.3); box-shadow: 0 20px 50px rgba(13,35,72,0.15); }
.pillar-card:hover::before { opacity: 1; }
.pillar-icon {
  width: 60px; height: 60px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin-bottom: 1.5rem;
}
.pillar-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--navy); }
.pillar-card p { color: var(--gray); font-size: 0.95rem; line-height: 1.7; }

/* ── PÓLIZAS DE MANTENIMIENTO ── */
.polizas { background: var(--navy); padding: 6rem 2rem; }
.polizas .section-tag { color: var(--gold-light); }
.polizas .section-title { color: white; }
.polizas .section-subtitle { color: rgba(255,255,255,0.65); }

.poliza-promo-banner {
  display: flex; align-items: center; gap: 1.25rem;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: var(--radius); padding: 1.25rem 2rem;
  margin: 2rem 0 3.5rem; max-width: 700px;
}
.promo-banner-icon { font-size: 2.5rem; }
.poliza-promo-banner strong { color: var(--gold-light); font-size: 1.1rem; display: block; margin-bottom: 0.2rem; }
.poliza-promo-banner p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin: 0; }

.polizas-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }

.poliza-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); overflow: hidden;
  transition: all 0.3s; display: flex; flex-direction: column;
}
.poliza-card.featured {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
  transform: scale(1.03);
  box-shadow: 0 0 60px rgba(201,168,76,0.2);
}
.poliza-card:hover { transform: translateY(-8px) scale(1.01); }
.poliza-card.featured:hover { transform: translateY(-8px) scale(1.04); }

.poliza-header {
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.poliza-badge {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.8rem; border-radius: 50px; margin-bottom: 1rem;
}
.poliza-badge.blue { background: rgba(46,125,233,0.2); color: #7BB8F8; }
.poliza-badge.gold { background: rgba(201,168,76,0.25); color: var(--gold-light); }
.poliza-badge.green { background: rgba(78,204,163,0.2); color: #7DEDD4; }

.poliza-header h3 { font-size: 1.5rem; font-weight: 800; color: white; margin-bottom: 0.5rem; }
.poliza-header p { color: rgba(255,255,255,0.55); font-size: 0.9rem; }

.poliza-price {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.poliza-price .desde { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.poliza-price .monto { font-size: 2.5rem; font-weight: 800; color: white; font-family: 'Plus Jakarta Sans', sans-serif; }
.poliza-price .monto span { font-size: 1rem; color: rgba(255,255,255,0.5); font-weight: 400; }
.poliza-price .gratis-tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: linear-gradient(135deg, var(--gold), #a88030);
  color: var(--navy); font-size: 0.8rem; font-weight: 800;
  padding: 0.3rem 0.9rem; border-radius: 50px; margin-top: 0.5rem;
}

.poliza-features {
  list-style: none; padding: 1.5rem 2rem;
  display: flex; flex-direction: column; gap: 0.75rem;
  flex: 1;
}
.poliza-features li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.9rem; color: rgba(255,255,255,0.75);
}
.poliza-features li::before {
  content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 0.1rem;
}


.poliza-cta {
  margin: 0 2rem 2rem;
  display: block; text-align: center;
  padding: 0.9rem 1.5rem; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem; transition: all 0.3s;
}
.poliza-cta.primary {
  background: linear-gradient(135deg, var(--blue), #1458b0);
  color: white; box-shadow: 0 6px 25px rgba(30,111,217,0.5);
}
.poliza-cta.gold {
  background: linear-gradient(135deg, var(--gold), #a88030);
  color: var(--navy); box-shadow: 0 6px 25px rgba(201,168,76,0.4);
}
.poliza-cta.green {
  background: linear-gradient(135deg, var(--green), #3ba380);
  color: white; box-shadow: 0 6px 25px rgba(78,204,163,0.4);
}
.poliza-cta.outline {
  border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.8);
}
.poliza-cta:hover { transform: translateY(-2px); }

.poliza-disclaimer {
  margin: 0 2rem 0.75rem;
  font-size: 0.8rem; color: rgba(255,255,255,0.45);
  display: flex; align-items: center; gap: 0.4rem;
}

.poliza-nota {
  display: flex; align-items: flex-start; gap: 1rem;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 1.5rem 2rem; margin-top: 3rem;
  font-size: 0.9rem; color: rgba(255,255,255,0.6);
}
.poliza-nota span { font-size: 1.5rem; flex-shrink: 0; }
.poliza-nota strong { color: rgba(255,255,255,0.9); }

/* ── TIERS / CATALOG ── */
.catalog { background: var(--white); }
.tiers-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 3.5rem; }
.tier-card {
  background: var(--white); border: 1px solid var(--glass-border);
  border-radius: var(--radius); overflow: hidden;
  transition: all 0.3s; position: relative;
  box-shadow: var(--shadow);
}
.tier-card.featured {
  border-color: var(--gold); box-shadow: 0 0 40px rgba(201,168,76,0.25);
}
.tier-badge-top {
  background: var(--gold); color: var(--navy);
  text-align: center; padding: 0.4rem; font-size: 0.75rem; font-weight: 700;
}
.tier-img { width: 100%; height: 220px; object-fit: cover; }
.tier-body { padding: 1.75rem; }
.tier-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-light); margin-bottom: 0.5rem; }
.tier-body h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 0.75rem; color: var(--navy); }
.tier-price { margin: 1rem 0; }
.tier-price .from { font-size: 0.8rem; color: var(--gray); }
.tier-price .amount { font-size: 2rem; font-weight: 800; color: var(--gold); font-family: 'Plus Jakarta Sans', sans-serif; }
.tier-price .period { font-size: 0.8rem; color: var(--gray); }
.tier-features { list-style: none; margin: 1rem 0 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.tier-features li { font-size: 0.9rem; color: var(--gray); display: flex; align-items: center; gap: 0.5rem; }
.tier-features li::before { content: '✓'; color: var(--blue-light); font-weight: 700; flex-shrink: 0; }
.tier-cta {
  width: 100%; padding: 0.8rem; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem; cursor: pointer;
  transition: all 0.3s; border: none;
}
.tier-cta.primary { background: linear-gradient(135deg, var(--blue), #1458b0); color: white; }
.tier-cta.gold { background: linear-gradient(135deg, var(--gold), #a88030); color: var(--navy); }
.tier-cta.primary:hover, .tier-cta.gold:hover { transform: translateY(-2px); filter: brightness(1.05); }
.tier-cta.outline { background: var(--navy); color: #ffffff; border: 2px solid var(--navy); }
.tier-cta.outline:hover { background: #0f2a5e; transform: translateY(-2px); }

/* ── LEASING CALCULATOR ── */
.calculator { background: var(--navy-2); }
.calc-wrap {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 3rem;
  max-width: 800px; margin: 3rem auto 0;
  backdrop-filter: blur(20px);
}
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.calc-label { font-size: 0.85rem; font-weight: 600; color: var(--gray-light); margin-bottom: 0.75rem; }
.calc-select {
  width: 100%; padding: 0.9rem 1rem;
  background: rgba(255,255,255,0.07); border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm); color: var(--white); font-size: 1rem;
  appearance: none; cursor: pointer;
}
.calc-select option { background: var(--navy-2); }
.calc-slider { width: 100%; margin: 0.5rem 0; accent-color: var(--blue); }
.calc-slider-val { font-size: 1.5rem; font-weight: 800; color: var(--blue-light); }
.calc-result {
  background: linear-gradient(135deg, rgba(30,111,217,0.2), rgba(201,168,76,0.1));
  border: 1px solid rgba(30,111,217,0.3);
  border-radius: var(--radius-sm); padding: 1.5rem;
  grid-column: 1/-1; margin-top: 1rem;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; text-align: center;
}
.calc-kpi label { font-size: 0.75rem; color: var(--gray); text-transform: uppercase; }
.calc-kpi .val { font-size: 1.8rem; font-weight: 800; font-family: 'Plus Jakarta Sans', sans-serif; }
.val-blue { color: var(--blue-light); }
.val-gold { color: var(--gold); }
.val-green { color: #4ECCA3; }

/* ── BRANDS BANNER ── */
.brands-banner {
  background: var(--white); border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border); padding: 1.75rem 0; overflow: hidden;
}
.brands-label {
  text-align: center; font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--gray); margin-bottom: 1.5rem;
}
.brands-track-wrap { overflow: hidden; position: relative; }
.brands-track-wrap::before, .brands-track-wrap::after {
  content: ''; position: absolute; top: 0; width: 80px; height: 100%; z-index: 2;
}
.brands-track-wrap::before { left: 0; background: linear-gradient(to right, white, transparent); }
.brands-track-wrap::after  { right: 0; background: linear-gradient(to left, white, transparent); }
.brands-track {
  display: flex; align-items: center; gap: 3rem; width: max-content;
  animation: brandScroll 28s linear infinite;
}
.brands-track:hover { animation-play-state: paused; }
@keyframes brandScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.brand-item {
  display: flex; align-items: center; justify-content: center;
  padding: 0.75rem 1.75rem; border: 1px solid var(--glass-border);
  border-radius: 10px; background: white; min-width: 150px; height: 80px;
  transition: all 0.3s; flex-shrink: 0;
}
.brand-item:hover { box-shadow: var(--shadow); border-color: var(--blue); transform: translateY(-3px); }
.brand-logo-img {
  height: 50px; width: auto; max-width: 160px;
  object-fit: contain; border-radius: 0;
  display: block;
}
.brand-kavo    { color: #003087; font-family: 'Georgia', serif; font-size: 1.3rem; }
.brand-nsk     { color: #CC0000; letter-spacing: 2px; }
.brand-gnatus  { color: #0066CC; letter-spacing: 1px; font-size: 0.9rem; }
.brand-adec    { color: #1A1A1A; font-family: 'Georgia', serif; font-size: 1.2rem; }
.brand-acteon  { color: #E8501A; letter-spacing: 2px; font-size: 0.9rem; }
.brand-midmark { color: #004B87; letter-spacing: 1px; font-size: 0.85rem; }
.brand-wh      { color: #003366; letter-spacing: 2px; }
.brand-dentsply { color: #003DA5; font-size: 0.75rem; letter-spacing: 1px; }
.brand-dentsply small { display: block; color: #0070C0; font-size: 0.65rem; letter-spacing: 3px; }


.nosotros-section { background: var(--white); padding: 6rem 2rem; }
.nosotros-header { text-align: center; margin-bottom: 4rem; }

.nosotros-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: start; margin-bottom: 5rem;
}
.nosotros-lead {
  font-size: 1.2rem; font-weight: 600; color: var(--navy);
  line-height: 1.7; margin-bottom: 1.25rem;
  border-left: 4px solid var(--gold); padding-left: 1.25rem;
}
.nosotros-body { color: var(--gray); line-height: 1.8; margin-bottom: 1rem; font-size: 0.975rem; }

.nosotros-stats {
  display: flex; gap: 2rem; margin-top: 2.5rem;
  padding-top: 2rem; border-top: 1px solid var(--glass-border);
}
.nstat-num { font-size: 1.75rem; font-weight: 800; color: var(--blue); font-family: 'Plus Jakarta Sans', sans-serif; }
.nstat-label { font-size: 0.75rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.05em; }

.nosotros-img { position: relative; }
.nosotros-img img { width: 100%; height: 320px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }

.nosotros-pillars {
  display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem;
}
.npillar {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--navy-2); border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm); padding: 1rem 1.25rem;
  transition: all 0.3s;
}
.npillar:hover { background: var(--white); box-shadow: var(--shadow); }
.npillar > span { font-size: 1.4rem; flex-shrink: 0; }
.npillar strong { display: block; font-weight: 700; color: var(--navy); font-size: 0.95rem; margin-bottom: 0.2rem; }
.npillar p { color: var(--gray); font-size: 0.85rem; margin: 0; }

/* Misión / Visión / Valores */
.mvv-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem;
  margin-top: 2rem;
}
.mvv-card {
  background: var(--navy-2); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 2.5rem 2rem;
  transition: all 0.3s; box-shadow: var(--shadow);
}
.mvv-card.featured {
  background: var(--navy); border-color: var(--gold);
  box-shadow: 0 0 40px rgba(201,168,76,0.2);
}
.mvv-card.featured h3 { color: white; }
.mvv-card.featured p { color: rgba(255,255,255,0.7); }
.mvv-card:hover { transform: translateY(-6px); }
.mvv-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.mvv-card h3 { font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: 1rem; }
.mvv-card p { color: var(--gray); font-size: 0.95rem; line-height: 1.75; }

.valores-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.valores-list li { font-size: 0.9rem; color: var(--gray); }
.valores-list li strong { color: var(--blue); }
.mvv-card.featured .valores-list li { color: rgba(255,255,255,0.7); }
.mvv-card.featured .valores-list li strong { color: var(--gold-light); }

/* ── WHY ALPHA DENT ── */
.why { background: var(--navy-2); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 3rem; }
.why-img img { width: 100%; height: 450px; object-fit: cover; box-shadow: var(--shadow); }
.why-features { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.why-feat {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.25rem; border-radius: var(--radius-sm);
  border: 1px solid transparent; transition: all 0.3s;
}
.why-feat:hover { background: var(--white); border-color: var(--glass-border); box-shadow: var(--shadow); }
.why-feat-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.why-feat-icon.blue { background: rgba(30,111,217,0.2); }
.why-feat-icon.gold { background: rgba(201,168,76,0.2); }
.why-feat-icon.green { background: rgba(78,204,163,0.15); }
.why-feat h4 { font-weight: 700; margin-bottom: 0.3rem; font-size: 1rem; color: var(--navy); }
.why-feat p { color: var(--gray); font-size: 0.9rem; }

/* ── PROCESS ── */
.process { background: var(--navy-3); }
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-top: 3.5rem; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 40px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  z-index: 0;
}
.step {
  text-align: center; position: relative; z-index: 1;
  background: var(--navy-3); padding: 0.5rem;
}
.step-num {
  width: 64px; height: 64px; margin: 0 auto 1.25rem;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.3rem;
  border: 2px solid var(--blue); color: var(--blue);
  background: var(--white);
}
.step h4 { font-weight: 700; margin-bottom: 0.5rem; font-size: 1rem; color: var(--navy); }
.step p { color: var(--gray); font-size: 0.85rem; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 3.5rem; }
.testi-card {
  background: var(--white); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 2rem;
  transition: all 0.3s; box-shadow: var(--shadow);
}
.testi-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(13,35,72,0.15); }
.testi-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; }
.testi-text { color: var(--gray); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; font-family: 'Plus Jakarta Sans', sans-serif;
}
.testi-name { font-weight: 700; font-size: 0.95rem; }
.testi-clinic { color: var(--gray); font-size: 0.8rem; }

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1658C5 100%);
  text-align: center; padding: 6rem 2rem;
  color: white;
}
.cta-section .section-tag { color: var(--gold-light); }
.cta-section .section-title { color: white; }
.cta-section p { color: rgba(255,255,255,0.8); }
.cta-section .section-title { max-width: 700px; margin: 0 auto 1rem; }
.cta-section p { color: var(--gray-light); margin-bottom: 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT FORM ── */
.contact { background: var(--navy-2); }
.contact-info h3 { color: var(--navy); }
.contact-info p { color: var(--gray); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-top: 3rem; }
.contact-info h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.contact-info p { color: var(--gray-light); margin-bottom: 2rem; }
.contact-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem; border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border); margin-bottom: 1rem;
  background: var(--white); box-shadow: var(--shadow);
}
.contact-item-icon { 
  font-size: 1.5rem; 
  color: var(--white);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--blue);
  border-radius: 50%;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.35);
}
.contact-item-label { font-size: 0.75rem; color: var(--gray); }
.contact-item-val { font-weight: 600; color: var(--navy); word-wrap: break-word; overflow-wrap: break-word; word-break: break-word; }

.contact-item > div:not(.contact-item-icon) {
  min-width: 0;
  flex: 1;
}

.form {
  background: var(--white); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.85rem 1rem;
  background: var(--navy-2); border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm); color: var(--navy); font-size: 0.95rem;
  font-family: 'Inter', sans-serif; transition: border-color 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--blue); background: white;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-light); }
.form-group select option { background: var(--white); color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%; padding: 1rem;
  background: linear-gradient(135deg, var(--blue), #1458b0);
  color: white; border: none; border-radius: 50px;
  font-weight: 700; font-size: 1rem; cursor: pointer;
  transition: all 0.3s; box-shadow: 0 6px 25px rgba(30,111,217,0.4);
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(30,111,217,0.6); }

/* ── FOOTER ── */
footer {
  background: var(--navy); padding: 3rem 2rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: white;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; max-width: 1200px; margin: 0 auto; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin: 1rem 0 1.5rem; max-width: 280px; }
.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--glass); border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: all 0.3s;
}
.social-link:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-3px); }
.footer-col h4 { font-weight: 700; margin-bottom: 1rem; color: white; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { color: rgba(255,255,255,0.55); font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul a:hover { color: white; }
.footer-bottom {
  text-align: center; padding-top: 2rem; margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4); font-size: 0.85rem;
  max-width: 1200px; margin: 2rem auto 0;
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
  box-shadow: 0 6px 25px rgba(37,211,102,0.5); transition: all 0.3s;
}
.wa-float:hover { transform: scale(1.1) translateY(-3px); box-shadow: 0 12px 35px rgba(37,211,102,0.7); }

/* ── ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── SOCIAL FOLLOW ── */
.social-follow {
  background: linear-gradient(135deg, var(--navy) 0%, #0f2a5e 100%);
  padding: 3.5rem 0;
}
.social-follow-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  flex-wrap: wrap;
}
.social-follow-text h3 {
  font-size: 1.6rem; font-weight: 700; color: white; margin-bottom: 0.4rem;
}
.social-follow-text p { color: rgba(255,255,255,0.65); font-size: 0.95rem; }
.social-follow-icons { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.sf-link {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  color: white; transition: all 0.3s; text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.sf-link svg { width: 20px; height: 20px; flex-shrink: 0; }
.sf-fb { background: #1877f2; }
.sf-fb:hover { background: #0d65d9; transform: translateY(-2px); }
.sf-ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.sf-ig:hover { opacity: 0.88; transform: translateY(-2px); }
.sf-tt { background: #010101; border: 1px solid rgba(255,255,255,0.2); }
.sf-tt:hover { background: #222; transform: translateY(-2px); }
.sf-li { background: #0a66c2; }
.sf-li:hover { background: #0856a8; transform: translateY(-2px); }
.sf-x { background: #000000; border: 1px solid rgba(255,255,255,0.2); }
.sf-x:hover { background: #333333; transform: translateY(-2px); }

/* Social links in footer */
.social-link {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: white;
  transition: all 0.3s; text-decoration: none;
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover { background: var(--gold); transform: translateY(-3px); }

/* npillar dot (replaces emoji) */
.npillar-dot {
  display: inline-block; width: 10px; height: 10px;
  border-radius: 50%; background: var(--gold); flex-shrink: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .tiers-grid, .process-steps { grid-template-columns: repeat(2,1fr); }
  .process-steps::before { display: none; }
  .pillars-grid, .testi-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-phone, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hamburger span { background: var(--navy); }
  nav.open .nav-links {
    display: flex !important; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,0.98); padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(13,35,72,0.1);
  }
  nav.open .nav-links a { color: var(--navy); }
  .polizas-grid { grid-template-columns: 1fr; }
  .poliza-card.featured { transform: scale(1); }
  .hero-content, .why-grid, .contact-grid, .footer-grid,
  .nosotros-grid, .mvv-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .tiers-grid, .testi-grid, .process-steps { grid-template-columns: 1fr; }
  
  .pillars-grid { grid-template-columns: 1fr; }

  .calc-grid, .form-row { grid-template-columns: 1fr; }
  .calc-result { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .social-follow-inner { flex-direction: column; text-align: center; }
  .social-follow-icons { justify-content: center; }
}
