/* ================================================================
   PRINT.CSS — Regulariza MX
   Infografía vertical imprimible · A4 portrait
   ================================================================ */

@page {
  size: A4 portrait;
  margin: 0;
}

@media print {

  /* ── Forzar impresión de colores ── */
  *, *::before, *::after {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    animation-duration: 0s !important;
    transition-duration: 0s !important;
  }

  /* ── Forzar visibilidad de todos los elementos animados ── */
  .reveal, .reveal-left,
  .why-card-float, .why-card-main,
  .service-card, .step, .why-item,
  .hero-eyebrow, .hero-title, .hero-desc,
  .hero-actions, .hero-stat-stack {
    opacity: 1 !important;
    transform: none !important;
  }

  /* ── Ocultar navegación e interactivos ── */
  nav,
  .nav-hamburger {
    display: none !important;
  }

  /* ── Body ── */
  body {
    background-color: var(--beige-claro);
    margin: 0;
    padding: 0;
  }

  /* ================================================================
     HERO
     ================================================================ */
  .hero {
    min-height: auto;
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    page-break-after: avoid;
  }

  .hero-left {
    padding: 1.8cm 1cm 1.5cm 1.5cm;
    min-height: auto;
    justify-content: flex-start;
  }

  .hero-right {
    display: flex !important;
    padding: 1.8cm 1.2cm;
  }

  .hero-title {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
  }

  .hero-desc {
    font-size: 0.82rem;
    margin-bottom: 1.5rem;
  }

  .hero-stat-num {
    font-size: 2.2rem;
  }

  .hero-stat-label {
    font-size: 0.65rem;
  }

  .hero-stat-stack {
    gap: 1.5rem;
  }

  /* Botones del hero: mostrar como texto plano */
  .btn-primary,
  .btn-ghost {
    padding: 0.6rem 1.4rem;
    font-size: 0.75rem;
  }

  /* ================================================================
     TRUST STRIP
     ================================================================ */
  .trust-strip {
    padding: 0.5cm 1.5cm;
    flex-wrap: wrap;
    gap: 0.5rem 2rem;
    justify-content: flex-start;
  }

  .trust-sep {
    display: none;
  }

  .trust-item {
    font-size: 0.68rem;
  }

  /* ================================================================
     SERVICIOS
     ================================================================ */
  .section {
    padding: 0.7cm 1.5cm;
  }

  .section-title {
    font-size: 1.9rem;
    margin-bottom: 0.6rem;
  }

  .section-sub {
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    page-break-inside: avoid;
  }

  .service-card {
    padding: 1.2cm 0.8cm;
    page-break-inside: avoid;
  }

  .service-num {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }

  .service-icon {
    width: 30px;
    height: 30px;
    margin: 0 auto 0.8rem;
  }

  .service-title {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
  }

  .service-desc {
    font-size: 0.72rem;
    line-height: 1.6;
  }

  /* ================================================================
     PROCESO
     ================================================================ */
  .proceso-section {
    padding: 0.7cm 1.5cm;
    page-break-inside: avoid;
  }

  .proceso-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
    margin-top: 2rem;
  }

  .step {
    padding: 1.2rem 1rem;
    page-break-inside: avoid;
  }

  .step-title {
    font-size: 1.1rem;
  }

  .step-desc {
    font-size: 0.72rem;
    line-height: 1.6;
  }

  /* ================================================================
     POR QUÉ NOSOTROS
     ================================================================ */
  .why-section {
    padding: 0.7cm 1.5cm;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 1.2cm;
    align-items: start;
  }

  .why-visual {
    display: flex !important;
  }

  .why-card-float {
    opacity: 1 !important;
    transform: none !important;
    box-shadow: 0 4px 16px rgba(27,48,34,0.1);
  }

  .why-card-main-title {
    font-size: 1.6rem;
  }

  .why-item-title {
    font-size: 1.1rem;
  }

  .why-item-desc {
    font-size: 0.74rem;
    line-height: 1.6;
  }

  .why-list {
    gap: 1.2rem;
  }

  /* ================================================================
     CTA
     ================================================================ */
  .cta-section {
    padding: 0.7cm 1.5cm;
    page-break-inside: avoid;
  }

  .cta-title {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }

  .cta-sub {
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
  }

  .btn-primary-dark {
    font-size: 0.75rem;
    padding: 0.7rem 1.8rem;
    border: 2px solid var(--verde-bosque);
  }

  /* Ocultar botón secundario en print (uno es suficiente) */
  .btn-outline-dark {
    display: none;
  }

  /* ================================================================
     FOOTER
     ================================================================ */
  footer {
    padding: 0.5cm 1.5cm;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 1rem;
    page-break-inside: avoid;
  }

  .footer-brand-name {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
  }

  .footer-brand-desc,
  .footer-contact-item {
    font-size: 7pt;
    line-height: 1.6;
  }

  .footer-col-title {
    font-size: 6pt;
    margin-bottom: 0.6rem;
  }

  .footer-links a,
  .footer-links li {
    font-size: 7pt;
    margin-bottom: 0.3rem;
  }

  .footer-bottom {
    padding-top: 0.4rem;
    font-size: 6pt;
  }

}
