/* ============================================
   DENTAL SMILE — Professional Site CSS
   Design: Refined luxury / clinical elegance
   ============================================ */

:root {
  --navy: #0a2540;
  --navy-light: #1a3a5c;
  --blue: #1a6fb4;
  --blue-light: #2d8fd4;
  --accent: #00b4d8;
  --accent-soft: #e0f7fa;
  --cream: #f8f7f4;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --green: #22c55e;
  --purple: #7c3aed;
  --facebook-blue: #1877f2;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(10,37,64,.06);
  --shadow-md: 0 8px 30px rgba(10,37,64,.10);
  --shadow-lg: 0 20px 60px rgba(10,37,64,.14);
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

em { font-family: var(--font-display); font-style: italic; font-weight: 600; }

/* ── NAVBAR ── */
.navbar-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.navbar-wrapper.scrolled { box-shadow: var(--shadow-md); }

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -.02em;
}
.brand-icon {
  color: var(--blue);
  font-size: 1rem;
  animation: spin-slow 6s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
.brand-name em { font-style: normal; color: var(--blue); }

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
}

.nav-link {
  padding: .5rem .85rem;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: .35rem;
}
.nav-link:hover { color: var(--blue); background: var(--accent-soft); }
.nav-link.active { color: var(--blue); }

.nav-sistema {
  border: 1px solid var(--gray-200);
  font-size: .85rem;
}
.nav-sistema:hover { border-color: var(--blue); }

.btn-agenda {
  background: var(--navy);
  color: white !important;
  padding: .55rem 1.2rem;
  border-radius: 50px;
  font-size: .875rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-agenda:hover { background: var(--blue); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(26,111,180,.3); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all var(--transition);
  border-radius: 2px;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 2rem 60px;
  position: relative;
}

.hero-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .25;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--blue) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  bottom: 10%; left: 5%;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(10,37,64,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,37,64,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content { animation: fadeSlideUp .8s ease both; }
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--blue);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
}
.hero-title em { font-weight: 600; color: var(--blue); }

.hero-sub {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

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

.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--navy);
  color: white;
  padding: .9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
}
.btn-primary-lg:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26,111,180,.35);
}

.btn-ghost-lg {
  display: inline-flex;
  align-items: center;
  padding: .9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 1.5px solid var(--gray-200);
  color: var(--navy);
  transition: all var(--transition);
}
.btn-ghost-lg:hover { border-color: var(--blue); color: var(--blue); }

.hero-image-side {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeSlideUp .8s .2s ease both;
}

.hero-visual {
  width: 380px;
  height: 380px;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--accent-soft) 100%);
  border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: morph 8s ease-in-out infinite;
}
@keyframes morph {
  0%,100% { border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%; }
  33% { border-radius: 45% 55% 40% 60% / 55% 45% 55% 45%; }
  66% { border-radius: 55% 45% 60% 40% / 45% 60% 40% 55%; }
}
.tooth-svg-wrap { animation: float 4s ease-in-out infinite; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.tooth-hero-svg { width: 180px; height: auto; }

.hero-card {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .875rem;
  animation: float 5s ease-in-out infinite;
}
.hero-card strong { display: block; font-weight: 700; font-size: 1rem; color: var(--navy); }
.hero-card small { color: var(--gray-600); font-size: .78rem; }
.hero-card .card-icon { font-size: 1.5rem; }
.hero-card-1 { left: -20px; top: 20%; animation-delay: .5s; }
.hero-card-2 { right: -10px; bottom: 25%; animation-delay: 1s; }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .75rem;
  color: var(--gray-400);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--gray-400);
  animation: pulse-width 2s ease-in-out infinite;
}
@keyframes pulse-width {
  0%,100% { width: 40px; opacity: 1; }
  50% { width: 20px; opacity: .4; }
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--navy);
  color: white;
  padding: 3rem 2rem;
}
.stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  padding: 1rem 3rem;
  flex: 1;
  min-width: 180px;
}
.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: .3rem;
}
.stat-item span { font-size: .9rem; opacity: .7; }
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,.15);
}

/* ── SECTIONS COMMON ── */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
  padding: 0 1rem;
}
.section-tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--accent-soft);
  padding: .3rem .9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-tag.light { color: rgba(255,255,255,.8); background: rgba(255,255,255,.15); }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -.02em;
}
.section-header p { color: var(--gray-600); font-size: 1.05rem; line-height: 1.7; }

/* ── SERVICES GRID ── */
.services-section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.service-card {
  position: relative;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  animation: fadeSlideUp .6s var(--delay, 0s) ease both;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
  background: white;
}

.service-card-featured {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
  box-shadow: 0 12px 40px rgba(10,37,64,.25);
}
.service-card-featured .service-icon {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.2);
  color: var(--accent);
}
.service-icon-featured svg {
  stroke: var(--accent) !important;
  filter: drop-shadow(0 0 6px rgba(0,180,216,.4));
}
.service-card-featured h3 { color: #ffffff; }
.service-card-featured p { color: rgba(255,255,255,.8); }
.service-link-featured {
  color: var(--accent) !important;
  font-weight: 700;
}
.service-link-featured:hover { color: white !important; }
.service-card-featured:hover { background: var(--navy-light); transform: translateY(-4px); box-shadow: 0 16px 50px rgba(10,37,64,.35); }

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: .75rem;
  color: var(--navy);
}

.service-card p {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-link {
  font-size: .875rem;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  transition: gap var(--transition);
}
.service-link:hover { gap: .5rem; }

.badge-popular {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent);
  color: white;
  font-size: .72rem;
  font-weight: 700;
  padding: .2rem .65rem;
  border-radius: 50px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.services-cta { text-align: center; margin-top: 3rem; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--navy);
  color: white;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-primary:hover { background: var(--blue); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,111,180,.3); }
.btn-full { width: 100%; justify-content: center; }

/* ── WHY US ── */
.why-section {
  background: var(--cream);
  padding: 6rem 2rem;
}
.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-content .section-tag { display: inline-block; margin-bottom: 1rem; }
.why-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -.02em;
}
.why-content > p { color: var(--gray-600); line-height: 1.7; margin-bottom: 2rem; }

.why-list { list-style: none; margin-bottom: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.why-list li { display: flex; gap: 1rem; align-items: flex-start; }
.why-bullet {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .1rem;
}
.why-list li div { display: flex; flex-direction: column; gap: .25rem; }
.why-list li strong { font-size: .95rem; color: var(--navy); }
.why-list li span { font-size: .875rem; color: var(--gray-600); }

.why-visual { display: flex; flex-direction: column; gap: 1.5rem; }
.why-card-main {
  background: var(--navy);
  color: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.why-card-badge {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.why-card-badge span { color: #fbbf24; font-size: .9rem; }
.why-card-badge small { font-size: .78rem; opacity: .6; }
.why-card-main h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 1rem;
  opacity: .9;
}
.why-author { font-size: .8rem; opacity: .5; }

.why-stat-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.why-stat {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.why-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--blue);
  font-weight: 600;
}
.why-stat span { font-size: .8rem; color: var(--gray-600); }

/* ── CTA SECTION ── */
.cta-section {
  background: var(--navy);
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section.cta-small { padding: 5rem 2rem; }
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--blue) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: .3;
}
.cta-inner { position: relative; max-width: 700px; margin: 0 auto; }
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: white;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -.02em;
}
.cta-inner h2 em { color: var(--accent); }
.cta-inner p { color: rgba(255,255,255,.65); font-size: 1.05rem; line-height: 1.7; margin-bottom: 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn-white-lg {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: white;
  color: var(--navy);
  padding: .9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
}
.btn-white-lg:hover { background: var(--accent); color: white; transform: translateY(-2px); }

.btn-outline-white-lg {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1.5px solid rgba(255,255,255,.4);
  color: white;
  padding: .9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
}
.btn-outline-white-lg:hover { border-color: white; background: rgba(255,255,255,.08); }

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 130px 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,216,.25) 0%, transparent 70%);
  top: -100px; right: -50px;
}
.page-hero-content { position: relative; max-width: 700px; margin: 0 auto; }
.page-hero .section-tag { color: rgba(255,255,255,.8); background: rgba(255,255,255,.15); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: white;
  line-height: 1.2;
  margin: 1rem 0;
  letter-spacing: -.02em;
}
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.1rem; line-height: 1.7; }

/* ── SERVICES FULL ── */
.services-full { padding: 4rem 2rem; max-width: 1200px; margin: 0 auto; }

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 5rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.service-detail:last-child { border-bottom: none; }
.service-detail-alt { direction: rtl; }
.service-detail-alt > * { direction: ltr; }

.service-num {
  display: block;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: -.5rem;
}
.service-detail-content h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
  letter-spacing: -.02em;
}
.service-lead {
  font-size: 1.05rem;
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.service-detail-content p { color: var(--gray-600); line-height: 1.7; margin-bottom: 1.5rem; }

.service-benefits {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.service-benefits li {
  padding: .4rem 0;
  padding-left: 1.5rem;
  font-size: .9rem;
  color: var(--gray-600);
  position: relative;
}
.service-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

.service-detail-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-illus { width: 100%; padding: 2rem; display: flex; align-items: center; justify-content: center; }

/* ── ABOUT ── */
.about-section { padding: 6rem 2rem; }
.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.about-content .section-tag { display: inline-block; margin-bottom: 1rem; }
.about-content h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
}
.about-content p { color: var(--gray-600); line-height: 1.75; margin-bottom: 1.25rem; }
.about-content em { font-style: italic; color: var(--blue); font-family: var(--font-display); font-size: 1.05em; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding-top: 2rem;
}
.about-stat {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}
.about-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--blue);
}
.about-stat span { font-size: .85rem; color: var(--gray-600); }

/* ── VALUES ── */
.values-section { background: var(--gray-50); padding: 6rem 2rem; }
.values-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue); }
.value-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-soft);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 1.25rem;
}
.value-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; margin-bottom: .75rem; color: var(--navy); }
.value-card p { font-size: .875rem; color: var(--gray-600); line-height: 1.6; }

/* ── TECH ── */
.tech-section { padding: 6rem 2rem; }
.tech-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.tech-content .section-tag { display: inline-block; margin-bottom: 1rem; }
.tech-content h2 { font-family: var(--font-display); font-size: 2.5rem; font-weight: 400; line-height: 1.2; margin-bottom: 1.25rem; letter-spacing: -.02em; }
.tech-content p { color: var(--gray-600); line-height: 1.7; margin-bottom: 1.5rem; }
.tech-list { list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: .6rem; }
.tech-list li { padding-left: 1.5rem; position: relative; font-size: .9rem; color: var(--gray-600); }
.tech-list li::before { content: '→'; position: absolute; left: 0; color: var(--blue); font-weight: 700; }

.tech-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.tech-item {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  color: var(--blue);
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-600);
  transition: all var(--transition);
}
.tech-item:hover { background: var(--accent-soft); border-color: var(--blue); }
.tech-item svg { color: var(--blue); }

/* ── CONTACT ── */
.contact-section { padding: 4rem 2rem 6rem; }
.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact-info h2 { font-family: var(--font-display); font-size: 2.2rem; font-weight: 400; margin-bottom: 1rem; letter-spacing: -.02em; }
.contact-info > p { color: var(--gray-600); margin-bottom: 2rem; line-height: 1.7; }

.contact-cards { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2.5rem; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all var(--transition);
  background: white;
}
.contact-card:hover { border-color: var(--blue); transform: translateX(4px); box-shadow: var(--shadow-sm); }
.contact-card-green:hover { border-color: #22c55e; }
.contact-card-purple:hover { border-color: #7c3aed; }
.contact-card-blue:hover { border-color: #1877f2; }

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: var(--gray-50);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.contact-card-green .contact-card-icon { color: #22c55e; }
.contact-card-purple .contact-card-icon { color: #7c3aed; }
.contact-card-blue .contact-card-icon { color: #1877f2; }

.contact-card-info { flex: 1; }
.contact-card-info strong { display: block; font-size: .9rem; color: var(--navy); margin-bottom: .15rem; }
.contact-card-info span { display: block; font-size: .85rem; color: var(--gray-600); }
.contact-card-info small { font-size: .78rem; color: var(--gray-400); }
.contact-card-arrow { color: var(--gray-400); }

.contact-sistema {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  color: white;
}
.contact-sistema h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: .5rem; }
.contact-sistema p { font-size: .875rem; opacity: .7; margin-bottom: 1.25rem; line-height: 1.6; }
.contact-sistema .btn-primary { background: var(--accent); color: var(--navy); }
.contact-sistema .btn-primary:hover { background: white; }

/* ── FORM ── */
.contact-form-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-form-card h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: .4rem; }
.contact-form-card > p { color: var(--gray-600); font-size: .9rem; margin-bottom: 2rem; }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--navy);
  background: white;
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); }
.field-error { color: #dc2626; font-size: .8rem; }

.form-success {
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  color: #15803d;
  margin-bottom: 1.5rem;
}
.form-success svg { flex-shrink: 0; }
.form-success strong { display: block; font-size: .9rem; }
.form-success span { font-size: .8rem; }

/* ── MAP ── */
.map-section { padding: 0 2rem 6rem; }
.map-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}
.map-info .section-tag { display: inline-block; margin-bottom: 1rem; }
.map-info h2 { font-family: var(--font-display); font-size: 2.2rem; font-weight: 400; line-height: 1.2; margin-bottom: 1rem; letter-spacing: -.02em; }
.map-info > p { color: var(--gray-600); margin-bottom: 2rem; line-height: 1.7; }

.map-details { display: flex; flex-direction: column; gap: 1.25rem; }
.map-detail-item { display: flex; align-items: flex-start; gap: 1rem; }
.map-detail-item svg { color: var(--blue); flex-shrink: 0; margin-top: .15rem; }
.map-detail-item div { display: flex; flex-direction: column; gap: .2rem; }
.map-detail-item strong { font-size: .9rem; color: var(--navy); }
.map-detail-item span { font-size: .85rem; color: var(--gray-600); }
.map-detail-item a { color: var(--blue); }

.map-embed {
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 5rem 2rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .brand-name { color: white; }
.footer-brand > p { font-size: .875rem; line-height: 1.7; margin: 1rem 0 1.5rem; }
.footer-social { display: flex; gap: .75rem; }
.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--blue); border-color: var(--blue); color: white; }

.footer-col h4 {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col li a {
  font-size: .875rem;
  transition: color var(--transition);
}
.footer-col li a:hover { color: white; }

.footer-contact { gap: .9rem !important; }
.footer-contact li { display: flex; align-items: flex-start; gap: .6rem; }
.footer-contact li svg { flex-shrink: 0; margin-top: .1rem; }
.footer-contact li a { color: rgba(255,255,255,.7); }
.footer-contact li a:hover { color: white; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  text-align: center;
  font-size: .8rem;
  opacity: .5;
}
.footer-bottom a { color: var(--accent); }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.4);
  z-index: 999;
  transition: all var(--transition);
  animation: pulse-float 2s ease-in-out infinite;
}
@keyframes pulse-float {
  0%,100% { box-shadow: 0 4px 24px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.4); }
  50% { box-shadow: 0 4px 24px rgba(37,211,102,.4), 0 0 0 10px rgba(37,211,102,0); }
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 1.5rem;
    gap: .5rem;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    z-index: 999;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-link { padding: .75rem 1rem; }
  .btn-agenda { text-align: center; }

  .hero {
    grid-template-columns: 1fr;
    padding: 100px 1.5rem 3rem;
    min-height: auto;
    text-align: center;
  }
  .hero-image-side { display: none; }
  .hero-actions { justify-content: center; }
  .hero-scroll { display: none; }

  .stats-inner { gap: 0; }
  .stat-divider { display: none; }
  .stat-item { padding: 1rem 1.5rem; min-width: 140px; }

  .services-grid { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 3rem; }
  .service-detail { grid-template-columns: 1fr; gap: 2rem; }
  .service-detail-alt { direction: ltr; }
  .service-detail-visual { min-height: 220px; }

  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .tech-inner { grid-template-columns: 1fr; gap: 3rem; }

  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .map-inner { grid-template-columns: 1fr; }
  .map-embed { height: 300px; }

  .footer-inner { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
}
