/* ============================================================
   GenUs Contractor — styles.css
   Paleta oficial: Naranja #F5A623 · Gris Carbón #595959 · Blanco
   Tipografía: Poppins (Google Fonts)
   v=20260617
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ─── Variables ──────────────────────────────────────────── */
:root {
  --bg:         #ffffff;
  --bg-alt:     #f2f2f2;
  --bg-dark:    #3d3d3d;
  --ink:        #1a1a1a;
  --ink-soft:   #595959;
  --ink-mute:   #8c8c8c;
  --accent:     #f5a623;
  --accent-d:   #c07d0a;
  --line:       rgba(89,89,89,0.15);
  --nav-h:      72px;
  --max-w:      1200px;
  --ease:       cubic-bezier(0.16,1,0.3,1);
  --r:          8px;
}

/* ─── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body { font-family: 'Poppins', sans-serif; background: var(--bg); color: var(--ink); line-height: 1.6; overflow-x: clip; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ─── Container ──────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ─── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 { line-height: 1.15; font-weight: 700; color: var(--ink); }
h1 { font-size: clamp(1.9rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 600; }
p { color: var(--ink-soft); line-height: 1.75; }

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--r);
  font-size: 0.875rem; font-weight: 600; letter-spacing: 0.02em;
  transition: all 0.25s var(--ease); cursor: pointer; white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-d); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,166,35,0.35); }
.btn-ghost { border: 2px solid rgba(255,255,255,0.75); color: #fff; background: transparent; }
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--bg-dark); transform: translateY(-2px); }
.btn-outline { border: 2px solid var(--accent); color: var(--accent); background: transparent; }
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-wa { background: #25d366; color: #fff; }
.btn-wa:hover { background: #128c7e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }
.btn-lg { padding: 15px 34px; font-size: 0.95rem; }

/* ─── Section ────────────────────────────────────────────── */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--bg-dark); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark p { color: rgba(255,255,255,0.72); }
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.section-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--accent); }
.section-title { margin-bottom: 14px; }
.section-sub { font-size: 1rem; max-width: 56ch; color: var(--ink-soft); margin-bottom: 52px; }
.section-header { margin-bottom: 60px; }
.text-center { text-align: center; }
.text-center .section-label { justify-content: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ─── Nav ────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h); display: flex; align-items: center;
  transition: background 0.35s, box-shadow 0.35s;
  padding: 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}
.nav.scrolled { background: #fff; box-shadow: 0 2px 24px rgba(0,0,0,0.08); }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-symbol { width: auto; height: 44px; flex-shrink: 0; }
.nav-logo-symbol .top-block { transition: fill 0.3s; fill: #fff; }
.nav.scrolled .nav-logo-symbol .top-block { fill: #595959; }
.nav-logo-wordmark { display: flex; flex-direction: column; }
.nav-logo-name { font-size: 1.05rem; font-weight: 700; color: #fff; letter-spacing: -0.01em; line-height: 1.1; transition: color 0.3s; }
.nav-logo-name span { color: var(--accent); }
.nav.scrolled .nav-logo-name { color: var(--ink); }
.nav-logo-tag { font-size: 0.6rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.55); transition: color 0.3s; line-height: 1; }
.nav.scrolled .nav-logo-tag { color: var(--ink-mute); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 0.83rem; font-weight: 500; color: rgba(255,255,255,0.85); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav.scrolled .nav-links a { color: var(--ink-soft); }
.nav.scrolled .nav-links a:hover, .nav.scrolled .nav-links a.active { color: var(--accent); }
.nav-cta { padding: 10px 20px; font-size: 0.82rem; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; background: none; border: none; cursor: pointer; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.nav.scrolled .nav-hamburger span { background: var(--ink); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none; position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: #fff; flex-direction: column;
    align-items: center; justify-content: center; gap: 36px;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.15rem; color: var(--ink-soft) !important; }
  .nav-links a.active { color: var(--accent) !important; }
  .nav-cta-mobile { display: block !important; }
}
.nav-cta-mobile { display: none; }

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  padding-top: var(--nav-h); overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; opacity: 0; transition: opacity 2s ease-in-out; }
.hero-bg img.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(110deg, rgba(26,26,26,0.65) 0%, rgba(26,26,26,0.4) 55%, rgba(26,26,26,0.15) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 640px; padding: 60px 0; }
.hero-kicker {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
}
.hero-kicker::before { content: ''; width: 28px; height: 2px; background: var(--accent); display: block; }
.hero-title { color: #fff; margin-bottom: 18px; text-shadow: 0 2px 20px rgba(0,0,0,0.4); }
.hero-title em { color: var(--accent); font-style: normal; }
.hero-sub { color: rgba(255,255,255,0.82); font-size: 1.05rem; max-width: 50ch; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.45); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 32px; background: rgba(255,255,255,0.3);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1) translateY(0); }
  50% { opacity: 0.9; transform: scaleY(0.7) translateY(4px); }
}

/* ─── Proof bar ──────────────────────────────────────────── */
.proof-bar { background: var(--accent); padding: 22px 0; }
.proof-bar-inner { display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 20px; }
.proof-item { display: flex; align-items: center; gap: 10px; }
.proof-item-icon { font-size: 1.3rem; }
.proof-item-text { font-size: 0.82rem; font-weight: 600; color: #fff; }
.proof-divider { width: 1px; height: 28px; background: rgba(255,255,255,0.35); }
@media (max-width: 600px) { .proof-divider { display: none; } }

/* ─── Services grid ──────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 24px; }
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 36px 28px; transition: all 0.3s var(--ease); position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease);
}
.service-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.09); transform: translateY(-4px); }
.service-card:hover::after { transform: scaleX(1); }
.service-card-icon { font-size: 2.2rem; margin-bottom: 16px; }
.service-card-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--ink); }
.service-card-list { display: flex; flex-direction: column; gap: 6px; margin-top: 12px; }
.service-card-list li {
  font-size: 0.82rem; color: var(--ink-soft); display: flex; align-items: flex-start; gap: 8px;
}
.service-card-list li::before { content: '—'; color: var(--accent); flex-shrink: 0; }

/* ─── Why us ─────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 32px; }
.why-item { display: flex; flex-direction: column; gap: 12px; }
.why-icon {
  width: 52px; height: 52px; border-radius: 10px;
  background: rgba(245,166,35,0.1); display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem;
}
.why-title { font-size: 0.95rem; font-weight: 700; color: var(--ink); }
.why-desc { font-size: 0.83rem; color: var(--ink-soft); }

/* ─── Process steps preview ──────────────────────────────── */
.process-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
@media (max-width: 900px) { .process-strip { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .process-strip { grid-template-columns: 1fr; } }
.process-step {
  padding: 32px 24px; text-align: center;
  border-right: 1px solid var(--line); position: relative;
}
.process-step:last-child { border-right: none; }
@media (max-width: 900px) { .process-step { border-right: none; border-bottom: 1px solid var(--line); } }
.process-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--accent); color: #fff; font-size: 1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
}
.process-title { font-size: 0.88rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.process-desc { font-size: 0.78rem; color: var(--ink-soft); }

/* ─── Guarantee section ──────────────────────────────────── */
.guarantee-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.guarantee-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px; border-radius: 10px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s;
}
.guarantee-item:hover { background: rgba(255,255,255,0.1); }
.guarantee-icon { font-size: 1.8rem; flex-shrink: 0; margin-top: 2px; }
.guarantee-title { font-size: 0.92rem; font-weight: 600; color: #fff; margin-bottom: 4px; }
.guarantee-desc { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 2px; }
.faq-item { border-radius: 8px; overflow: hidden; border: 1px solid var(--line); margin-bottom: 2px; }
.faq-question {
  width: 100%; text-align: left; padding: 20px 24px;
  font-size: 0.9rem; font-weight: 600; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: #fff; transition: background 0.2s; cursor: pointer;
}
.faq-question:hover { background: var(--bg-alt); }
.faq-icon {
  width: 24px; height: 24px; border: 2px solid var(--accent); border-radius: 50%;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s, background 0.3s;
}
.faq-icon::after { content: '+'; font-size: 0.9rem; color: var(--accent); font-weight: 600; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent); }
.faq-item.open .faq-icon::after { color: #fff; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-answer-inner { padding: 4px 24px 20px; font-size: 0.875rem; color: var(--ink-soft); line-height: 1.75; }

/* ─── CTA section ────────────────────────────────────────── */
.cta-section { padding: 100px 0; background: var(--bg-alt); text-align: center; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }

/* ─── Floating WhatsApp ──────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45); transition: transform 0.3s var(--ease), box-shadow 0.3s;
  cursor: pointer;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(37,211,102,0.55); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
@media (max-width: 560px) { .wa-float { bottom: 18px; right: 18px; width: 52px; height: 52px; } }

/* ─── Footer ─────────────────────────────────────────────── */
.footer { background: var(--ink); }
.footer-top {
  padding: 64px 0 48px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px;
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo svg { width: 36px; height: 29px; }
.footer-logo-name { font-size: 1rem; font-weight: 700; color: #fff; }
.footer-logo-name span { color: var(--accent); }
.footer-desc { font-size: 0.83rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 22px; max-width: 260px; }
.footer-slogan { font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.4); letter-spacing: 0.06em; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center; font-size: 0.85rem;
  color: rgba(255,255,255,0.6); transition: all 0.2s;
}
.footer-social:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }
.footer-col-title {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff; margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.83rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.footer-contact-icon { color: var(--accent); flex-shrink: 0; font-size: 1rem; margin-top: 2px; }
.footer-contact-text { font-size: 0.83rem; color: rgba(255,255,255,0.55); }
.footer-contact-text a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; font-size: 0.78rem; color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--accent); }
@media (max-width: 560px) { .footer-bottom { text-align: center; justify-content: center; } }

/* ─── Reveal animations ──────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; } /* defensive override */
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }

/* ─── Page hero (inner pages) ────────────────────────────── */
.page-hero {
  background: var(--bg-dark); color: #fff;
  padding: calc(var(--nav-h) + 64px) 0 72px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(245,166,35,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.68); max-width: 52ch; margin-top: 4px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { color: rgba(255,255,255,0.25); }

/* ─── Services page ──────────────────────────────────────── */
.services-category { margin-bottom: 72px; }
.services-category:last-child { margin-bottom: 0; }
.services-cat-header {
  display: flex; align-items: center; gap: 16px; margin-bottom: 28px;
  padding-bottom: 16px; border-bottom: 2px solid var(--accent);
}
.services-cat-icon { font-size: 2rem; }
.services-cat-title { font-size: 1.3rem; font-weight: 700; }
.services-items-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 14px; }
.service-item {
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: 20px 22px; display: flex; align-items: flex-start; gap: 12px;
  transition: all 0.25s var(--ease);
}
.service-item:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.08); transform: translateY(-2px); border-color: rgba(245,166,35,0.3); }
.service-item-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; margin-top: 5px; }
.service-item-text { font-size: 0.875rem; font-weight: 500; color: var(--ink-soft); }

/* ─── Process full page ──────────────────────────────────── */
.process-full { display: flex; flex-direction: column; gap: 48px; max-width: 820px; margin: 0 auto; }
.process-full-step { display: grid; grid-template-columns: 76px 1fr; gap: 28px; align-items: start; }
.process-full-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--accent); color: #fff; font-size: 1.5rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.process-full-content { padding-top: 10px; }
.process-full-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.process-full-desc { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.8; }
@media (max-width: 560px) { .process-full-step { grid-template-columns: 1fr; } .process-full-num { margin: 0 auto; } }

/* ─── Blog ───────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.blog-card {
  background: #fff; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--line); transition: all 0.3s var(--ease);
}
.blog-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-4px); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 26px; }
.blog-cat { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.blog-card-title { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 10px; line-height: 1.35; }
.blog-card-excerpt { font-size: 0.83rem; color: var(--ink-soft); margin-bottom: 16px; }
.blog-meta { font-size: 0.76rem; color: var(--ink-mute); }

/* ─── Contact page ───────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start; }
@media (max-width: 820px) { .contact-layout { grid-template-columns: 1fr; } }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 28px; }
.contact-info-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(245,166,35,0.1); display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; flex-shrink: 0;
  overflow: hidden;
}
.contact-info-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 4px; }
.contact-info-value { font-size: 0.92rem; font-weight: 600; color: var(--ink); }
.contact-info-value a:hover { color: var(--accent); }

/* ─── Form ───────────────────────────────────────────────── */
.form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 0.8rem; font-weight: 600; color: var(--ink-soft); }
.form-input, .form-select, .form-textarea {
  padding: 12px 15px; border: 1.5px solid var(--line); border-radius: 8px;
  font-size: 0.875rem; color: var(--ink); background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(245,166,35,0.12);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-submit { align-self: flex-start; padding: 14px 34px; font-size: 0.9rem; }
.form-note { font-size: 0.78rem; color: var(--ink-mute); }
.form-success {
  display: none; padding: 18px 20px;
  background: rgba(37,211,102,0.08); border: 1px solid rgba(37,211,102,0.3);
  border-radius: 8px; color: #0a6640; font-size: 0.875rem; font-weight: 500;
  margin-top: 8px;
}

/* ─── Nosotros page ──────────────────────────────────────── */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 820px) { .about-layout { grid-template-columns: 1fr; } }
.about-img { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
@media (max-width: 560px) { .about-pillars { grid-template-columns: 1fr; } }
.about-pillar {
  padding: 22px 20px; border-radius: 10px;
  background: #fff; border-left: 4px solid var(--accent);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.about-pillar-icon { font-size: 1.5rem; margin-bottom: 8px; }
.about-pillar-title { font-size: 0.88rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.about-pillar-desc { font-size: 0.78rem; color: var(--ink-soft); }

.cert-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.cert-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; background: #fff; border: 1.5px solid var(--line);
  border-radius: 100px; font-size: 0.8rem; font-weight: 600; color: var(--ink-soft);
  transition: all 0.2s;
}
.cert-badge:hover { border-color: var(--accent); color: var(--accent); }
.cert-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.value-card { padding: 28px 22px; text-align: center; }
.value-num { font-size: 2.8rem; font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: 6px; }
.value-label { font-size: 0.88rem; font-weight: 600; color: #fff; }
.value-sub { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-top: 4px; }

/* ─── Privacy page ───────────────────────────────────────── */
.prose { max-width: 740px; margin: 0 auto; }
.prose h2 { font-size: 1.15rem; margin: 32px 0 10px; }
.prose p { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 14px; }
.prose ul { padding-left: 20px; list-style: disc; margin-bottom: 14px; }
.prose ul li { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 6px; }

/* ─── Utility ────────────────────────────────────────────── */
.accent { color: var(--accent); }
.mt-40 { margin-top: 40px; }
.mt-32 { margin-top: 32px; }
.divider { height: 1px; background: var(--line); }
