/* ══════════════════════════════════════════════════════════
   Disalva SpA — style.css
   Único archivo de estilos del sitio. Sin frameworks, sin imports.
   ══════════════════════════════════════════════════════════ */

/* ── Tipografía local (sin CDN externo) ── */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/barlow-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/barlow-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/barlow-700.woff2') format('woff2');
}

/* ── Tokens de diseño ── */
:root {
  /* paleta extraída del logo real de Disalva + acento industrial */
  --navy:        #253081;
  --navy-dark:   #171E54;
  --navy-light:  #3D4BB0;
  --steel:       #5B6577;
  --steel-light: #8A93A3;
  --accent:      #E8720C;
  --accent-dark: #B35809;
  --bg:          #F6F7F9;
  --surface:     #FFFFFF;
  --border:      #E1E4EA;
  --text:        #171B24;
  --text-2:      #4B5566;
  --text-3:      #7C8494;

  --max: 1280px;
  --radius: 8px;
  --radius-sm: 4px;
  --shadow: 0 4px 24px rgba(23, 30, 84, .08);
  --shadow-lg: 0 16px 48px rgba(23, 30, 84, .18);

  --font: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: inherit; }

h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: var(--navy-dark); }
h1 { font-size: 34px; }
h2 { font-size: 28px; }
h3 { font-size: 19px; }
p { color: var(--text-2); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

.section { padding: 56px 0; }
.section-alt { background: var(--surface); }
.section-dark { background: var(--navy-dark); color: #E7E9F5; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: rgba(231,233,245,.72); }
.section-dark .eyebrow { color: var(--accent); }

.section-head { max-width: 680px; margin-bottom: 32px; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 8px;
}
.section-lead { font-size: 16px; margin-top: 8px; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0; padding: 0; margin: -1px;
}
.skip-link {
  position: absolute; left: 12px; top: -50px;
  background: var(--navy); color: #fff; padding: 10px 16px; border-radius: var(--radius-sm);
  z-index: 1000; transition: top .15s;
}
.skip-link:focus { top: 12px; }

/* ── Botones ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  transition: background .15s, color .15s, border-color .15s, transform .1s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-light); }
.btn-accent { background: var(--accent-dark); color: #fff; }
.btn-accent:hover { background: var(--accent); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-outline-light:hover { background: #fff; color: var(--navy-dark); }
.btn-lg { min-height: 52px; padding: 14px 28px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 44px; min-width: 44px;
  padding: 8px 14px;
  border-radius: 20px;
  background: #1A8847;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}
.btn-whatsapp:hover { background: #156F39; }
.btn-whatsapp svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════════════ */
.site-header {
  background: var(--navy-dark);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo img { height: 48px; width: auto; filter: brightness(0) invert(1); }
.logo-wordmark {
  color: #fff; font-weight: 700; font-size: 17px; letter-spacing: .01em;
  padding-left: 12px; border-left: 1px solid rgba(255,255,255,.35);
  white-space: nowrap;
}
@media (max-width: 480px) { .logo-wordmark { display: none; } }

.main-nav ul { display: flex; align-items: center; gap: 4px; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: flex; align-items: center;
  height: 76px;
  padding: 0 14px;
  font-weight: 600;
  font-size: 15px;
  color: rgba(255,255,255,.82);
  border-bottom: 3px solid transparent;
  transition: color .15s, border-color .15s;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li.is-active > a { color: #fff; border-color: var(--accent); }

.has-dropdown { display: flex; align-items: center; }
.dropdown-toggle {
  display: none;
  background: transparent; border: none; color: rgba(255,255,255,.82);
  width: 44px; height: 44px; font-size: 14px;
}
.dropdown li a {
  display: block;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-weight: 500;
}

.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header-actions .btn { display: none; }

.nav-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: transparent; border: none;
  flex-shrink: 0;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: ''; display: block; position: relative;
  width: 24px; height: 2px; background: #fff;
  transition: transform .2s, opacity .2s;
}
.nav-toggle span::before { position: absolute; top: -8px; }
.nav-toggle span::after { position: absolute; top: 8px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-8px) rotate(-45deg); }

/* Mobile nav (default: collapsed) */
.main-nav {
  position: fixed;
  inset: 76px 0 0 0;
  background: var(--navy-dark);
  padding: 12px 20px 32px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .22s ease;
}
.main-nav.is-open { transform: translateX(0); }
.main-nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
.main-nav > ul > li > a { height: auto; padding: 15px 6px; border-bottom: 1px solid rgba(255,255,255,.08); }
.has-dropdown { flex-direction: column; align-items: stretch; }
.dropdown-toggle { display: flex; align-items: center; justify-content: center; position: absolute; right: 0; top: 0; }
.main-nav .dropdown {
  display: flex; flex-direction: column; align-items: stretch;
  position: static; box-shadow: none; background: rgba(255,255,255,.04);
  opacity: 1; visibility: visible; transform: none; max-height: 0; overflow: hidden; padding: 0 8px;
  transition: max-height .2s ease;
}
.dropdown.is-open { max-height: 320px; padding: 8px; }
.dropdown li a { color: rgba(255,255,255,.82); }
.dropdown li a:hover { background: rgba(255,255,255,.08); color: #fff; }
.header-mobile-actions { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.header-mobile-actions .btn { display: inline-flex; }

@media (min-width: 1024px) {
  .main-nav {
    position: static; inset: auto; background: transparent; padding: 0;
    transform: none; overflow: visible;
  }
  .main-nav > ul { flex-direction: row; align-items: center; gap: 4px; }
  .main-nav > ul > li > a { height: 76px; padding: 0 14px; border-bottom: 3px solid transparent; }
  .has-dropdown { flex-direction: row; align-items: center; }
  .dropdown-toggle { display: none; }
  .main-nav .dropdown {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 100%; left: 0; min-width: 260px;
    background: var(--surface); box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--radius) var(--radius); padding: 8px;
    opacity: 0; visibility: hidden; transform: translateY(6px); max-height: none; overflow: visible;
    transition: opacity .15s, transform .15s, visibility .15s;
  }
  .has-dropdown:hover .dropdown,
  .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
  .dropdown li a { color: var(--text); }
  .dropdown li a:hover { background: var(--bg); color: var(--navy); }
  .header-actions .btn { display: inline-flex; }
  .nav-toggle { display: none; }
  .header-mobile-actions { display: none; }
}

/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; }
.hero-page .hero-overlay {
  background: linear-gradient(100deg, rgba(15,20,58,.94) 0%, rgba(15,20,58,.82) 42%, rgba(15,20,58,.52) 100%);
}
.hero-content { position: relative; padding: 88px 0 72px; max-width: 840px; }
.hero-content h1 {
  color: #fff; font-size: 32px; margin-bottom: 16px;
  text-shadow:
    0 1px 0 rgba(0,0,0,.9), 1px 0 0 rgba(0,0,0,.9), -1px 0 0 rgba(0,0,0,.9), 0 -1px 0 rgba(0,0,0,.9),
    0 3px 6px rgba(0,0,0,.85),
    0 8px 24px rgba(0,0,0,.75);
}
.hero-content p {
  color: #fff; font-size: 16px; margin-bottom: 28px;
  text-shadow: 0 1px 3px rgba(0,0,0,.95), 0 4px 14px rgba(0,0,0,.8);
}
.hero .eyebrow {
  color: #fff;
  background: var(--navy);
  padding: 7px 14px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero-service-links { display: flex; width: 100%; max-width: 700px; margin: 0 auto 0; gap: 2px; }
.hero-content-center { margin: 0 auto; text-align: center; max-width: none; }
.hero-compact { display: flex; align-items: center; min-height: 320px; }
.hero-compact .hero-content { padding: 24px 0; width: 100%; }
.hero-compact .hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
@media (min-width: 768px) {
  .hero-compact { height: 600px; }
}
.btn-service-hero {
  flex: 1 1 0;
  display: flex; align-items: center; justify-content: center; text-align: center;
  background: var(--navy-dark); color: #fff; text-decoration: none;
  font-weight: 700; text-transform: uppercase; letter-spacing: .02em;
  font-size: 13px; line-height: 1.3; padding: 18px 16px;
  border-radius: 2px; transition: background .15s;
}
.btn-service-hero:hover { background: var(--navy); }
.btn-service-hero.is-accent { background: var(--navy); }
.btn-service-hero.is-accent:hover { background: var(--navy-light); }
.hero-stat { display: inline-flex; align-items: baseline; gap: 10px; border-top: 1px solid rgba(255,255,255,.25); padding-top: 18px; }
.stat-num { font-size: 30px; font-weight: 700; color: var(--accent); }
.stat-label {
  font-size: 14px; font-weight: 600; color: var(--navy-light);
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 5px 12px;
  border-radius: 20px;
}

.hero-page { position: relative; min-height: 260px; display: flex; align-items: center; overflow: hidden; color: #fff; }
.hero-page .hero-content { padding: 56px 0; max-width: 720px; }
.hero-page h1 { font-size: 30px; }

@media (min-width: 768px) {
  .hero-content h1 { font-size: 42px; }
  .hero-content { padding: 130px 0 100px; }
  .hero-page h1 { font-size: 38px; }
}
@media (min-width: 1024px) {
  .hero-content h1 { font-size: 50px; }
  .hero-content p { font-size: 18px; }
}

/* ── Breadcrumb ── */
.breadcrumb { padding: 14px 0; background: var(--surface); border-bottom: 1px solid var(--border); }
.breadcrumb ol {
  list-style: none;
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
  font-size: 13px; color: var(--text-3);
}
.breadcrumb li { display: flex; align-items: center; gap: 6px; }
.breadcrumb a { color: var(--text-3); }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb li:not(:last-child)::after { content: '/'; color: var(--border); }
.breadcrumb li[aria-current] { color: var(--text-2); font-weight: 500; }

/* ══════════════════════════════════════════════════════════
   TARJETAS DE SERVICIO
   ══════════════════════════════════════════════════════════ */
.cards-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .cards-grid-4, .cards-grid-3, .cards-grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cards-grid-4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 900px) { .cards-grid-3 { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .18s, box-shadow .18s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card.is-featured { border: 2px solid var(--accent); }
.service-card a { display: block; }
.service-card-img { aspect-ratio: 4/3; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; }
.service-card-body { padding: 20px; }
.service-card-body .badge-new {
  display: inline-block; font-size: 10.5px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: #A85408; background: #FDEEE0; padding: 3px 8px;
  border-radius: 20px; margin-bottom: 10px;
}
.service-card-body h3 { margin-bottom: 8px; }
.service-card-body p { font-size: 14.5px; margin-bottom: 14px; }
.link-more { font-weight: 600; font-size: 14px; color: var(--navy); display: inline-flex; align-items: center; gap: 6px; }
.service-card:hover .link-more { color: var(--accent-dark); }

/* ══════════════════════════════════════════════════════════
   QUIÉNES SOMOS / TEXTO INSTITUCIONAL
   ══════════════════════════════════════════════════════════ */
.about-grid { display: grid; gap: 32px; align-items: center; }
.about-grid img { border-radius: var(--radius); }
.about-text p { margin-bottom: 14px; }
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 56px; }
  .about-grid.reverse { direction: rtl; }
  .about-grid.reverse > * { direction: ltr; }
}

/* ══════════════════════════════════════════════════════════
   PROYECTO DESTACADO
   ══════════════════════════════════════════════════════════ */
.featured-project-grid { display: grid; gap: 32px; align-items: center; }
.featured-project-media { position: relative; border-radius: var(--radius); overflow: hidden; }
.featured-project-media img { width: 100%; }
.media-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.72), transparent);
  color: #fff; font-size: 12.5px; padding: 28px 14px 10px;
}
.featured-project-text .btn { margin-top: 8px; }
.featured-project-text ul { margin: 16px 0; display: flex; flex-direction: column; gap: 8px; }
.featured-project-text ul li { font-size: 14.5px; padding-left: 20px; position: relative; color: rgba(231,233,245,.85); }
.featured-project-text ul li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
@media (min-width: 900px) { .featured-project-grid { grid-template-columns: 1fr 1fr; gap: 56px; } }

/* ══════════════════════════════════════════════════════════
   ¿POR QUÉ ELEGIRNOS?
   ══════════════════════════════════════════════════════════ */
.why-grid { display: grid; gap: 24px; grid-template-columns: repeat(2, 1fr); }
.why-item { padding: 22px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.why-num { display: block; font-size: 34px; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 8px; }
.why-item h3 { font-size: 16px; margin-bottom: 6px; }
.why-item p { font-size: 13.5px; }
@media (min-width: 900px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }

/* ══════════════════════════════════════════════════════════
   CLIENTES
   ══════════════════════════════════════════════════════════ */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: center;
}
.clients-grid .client-logo {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 16/10;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .72;
  transition: filter .18s, opacity .18s;
}
.clients-grid .client-logo:hover { filter: grayscale(0); opacity: 1; }
@media (min-width: 640px) { .clients-grid { grid-template-columns: repeat(5, 1fr); } }

/* ══════════════════════════════════════════════════════════
   PROYECTOS (grid)
   ══════════════════════════════════════════════════════════ */
.project-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.project-tab {
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--text-2);
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 20px;
  min-height: 44px;
  transition: background .15s, color .15s, border-color .15s;
}
.project-tab:hover { border-color: var(--navy); color: var(--navy); }
.project-tab.is-active { background: var(--navy); border-color: var(--navy); color: #fff; }
.project-card.is-hidden { display: none; }

.project-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--navy-dark);
}
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; opacity: .82; }
a.project-card:hover img { transform: scale(1.05); opacity: 1; }
.project-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,14,40,.88) 0%, rgba(10,14,40,.15) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 18px;
  color: #fff;
}
.project-category { font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; }
.project-card-overlay h3 { color: #fff; font-size: 16.5px; }
.project-card.not-linked { cursor: default; }

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.site-footer { background: var(--navy-dark); color: rgba(231,233,245,.75); padding-top: 56px; }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1fr; padding-bottom: 40px; }
.footer-brand .footer-logo { height: 42px; width: auto; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-brand p { color: rgba(231,233,245,.68); font-size: 14px; max-width: 320px; margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.footer-social a:hover { background: var(--accent); }
.footer-social svg { width: 18px; height: 18px; fill: #fff; }
.footer-col h3 { color: #fff; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14.5px; color: rgba(231,233,245,.72); }
.footer-col a:hover { color: var(--accent); }
.footer-col li { font-size: 14.5px; color: rgba(231,233,245,.72); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 20px; font-size: 13px; text-align: center; color: rgba(231,233,245,.55); }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }

/* ══════════════════════════════════════════════════════════
   FORMULARIO DE CONTACTO
   ══════════════════════════════════════════════════════════ */
.contact-layout { display: grid; gap: 40px; grid-template-columns: 1fr; }
.contact-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 13.5px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; min-height: 46px; padding: 10px 14px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  background: var(--bg); color: var(--text); font-size: 15px;
  transition: border-color .15s;
}
.form-row textarea { min-height: 120px; resize: vertical; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--navy); background: #fff;
}
.form-row-2 { display: grid; gap: 18px; grid-template-columns: 1fr; }
.form-note { font-size: 12.5px; color: var(--text-3); margin-top: 12px; }
.form-fallback { font-size: 13.5px; margin-top: 14px; }
.form-fallback a { color: var(--navy); font-weight: 600; }
.contact-info-card { background: var(--navy-dark); color: #fff; border-radius: var(--radius); padding: 28px; }
.contact-info-card h3 { color: #fff; margin-bottom: 18px; }
.contact-info-item { display: flex; gap: 12px; margin-bottom: 18px; font-size: 14.5px; }
.contact-info-item strong { display: block; color: #fff; margin-bottom: 2px; }
.contact-info-item span, .contact-info-item a { color: rgba(231,233,245,.75); }
@media (min-width: 900px) {
  .contact-layout { grid-template-columns: 1.3fr .9fr; }
  .form-row-2 { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════════════════════
   PÁGINA DE GRACIAS
   ══════════════════════════════════════════════════════════ */
.thanks-block { text-align: center; padding: 90px 0; max-width: 560px; margin: 0 auto; }
.thanks-icon { width: 68px; height: 68px; border-radius: 50%; background: #FDEEE0; color: #A85408; display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; font-size: 32px; }

/* ══════════════════════════════════════════════════════════
   LISTA DE SERVICIOS (páginas interiores)
   ══════════════════════════════════════════════════════════ */
.scope-list { display: flex; flex-direction: column; gap: 10px; margin: 20px 0 28px; }
.scope-list li { display: flex; gap: 12px; font-size: 15px; color: var(--text-2); align-items: flex-start; }
.scope-list li::before { content: ''; width: 8px; height: 8px; margin-top: 7px; border-radius: 2px; background: var(--accent); flex-shrink: 0; }

.related-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.related-links a {
  font-size: 14px; font-weight: 600; color: var(--navy);
  border: 1.5px solid var(--border); border-radius: 20px; padding: 8px 16px;
}
.related-links a:hover { border-color: var(--navy); background: var(--surface); }

blockquote {
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 20px;
  margin: 20px 0;
  font-size: 16px;
  font-style: italic;
  color: var(--text);
}

/* CTA final de página */
.cta-band { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 40px 32px; text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,.78); margin-bottom: 22px; }
.cta-band .btn-group { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

.gallery-grid { margin: 24px 0; column-count: 1; column-gap: 16px; }
.gallery-grid img { border-radius: var(--radius); width: 100%; display: block; margin-bottom: 16px; break-inside: avoid; }
@media (min-width: 640px) { .gallery-grid { column-count: 2; } }

.article-body { max-width: 760px; }
.article-body h2 { margin: 32px 0 12px; font-size: 22px; }
.article-body p { margin-bottom: 14px; }
.article-body ul { margin: 0 0 16px; display: flex; flex-direction: column; gap: 8px; }
.article-body ul li { padding-left: 20px; position: relative; color: var(--text-2); }
.article-body ul li::before { content: '—'; position: absolute; left: 0; color: var(--accent-dark); }

/* facts strip on project pages */
.facts-strip { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin: 24px 0; }
.facts-strip div { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px 16px; }
.facts-strip strong { display: block; font-size: 20px; color: var(--navy); }
.facts-strip span { font-size: 12.5px; color: var(--text-3); }
@media (min-width: 640px) { .facts-strip { grid-template-columns: repeat(4,1fr); } }
