:root {
  /* 01. Color System */
  --industrial-red: #d32f2f;
  --industrial-red-dark: #b71c1c;
  --industrial-red-light: #ef5350;
  --steel-gray: #37474f;
  --steel-light: #546e7a;
  --steel-dark: #263238;
  --concrete: #eceff1;
  --metal: #b0bec5;
  --white: #ffffff;
  --black: #000000;

  --bg-main: #f8fafb;
  --bg-soft: #ffffff;
  --bg-panel: #eef2f4;
  --text-main: #ffffff;
  --text-dark: #1f2a30;
  --text-muted: #60717b;
  --line-soft: #d7e0e4;

  --accent: var(--industrial-red);
  --accent-hover: var(--industrial-red-dark);
  --ok: var(--industrial-red);
  --danger: #8f1a1a;
  --industrial-red-alpha: rgba(211, 47, 47, 0.2);

  /* 02. Elevation */
  --shadow-sm: 0 3px 10px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 22px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 16px 42px rgba(0, 0, 0, 0.18);
  --shadow-industrial: 0 16px 36px rgba(211, 47, 47, 0.2);

  /* 03. Motion */
  --transition-fast: 200ms;
  --transition-normal: 300ms;
  --transition-slow: 500ms;
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  /* 04. Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 0.75rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;

  /* 05. Radius */
  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 999px;

  /* 06. Layering */
  --z-base: 1;
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-toast: 1080;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text-dark);
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, sans-serif;
  background:
    linear-gradient(135deg, rgba(211, 47, 47, 0.03) 0%, transparent 34%),
    repeating-linear-gradient(
      -45deg,
      rgba(55, 71, 79, 0.02) 0,
      rgba(55, 71, 79, 0.02) 9px,
      transparent 9px,
      transparent 18px
    ),
    var(--bg-main);
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand span,
.contact-title,
.section-title,
.cta-title,
.stat-number {
  margin-top: 0;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.03em;
  line-height: 1.08;
  font-weight: 400;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4.8vw, 3.2rem);
}

h3 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

a {
  color: var(--steel-dark);
}

a:hover {
  color: var(--industrial-red);
}

*:focus-visible {
  outline: 3px solid var(--industrial-red);
  outline-offset: 2px;
}

.skip-to-main {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: var(--z-toast);
}

.skip-to-main:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  background: var(--white);
  color: var(--steel-dark);
  border: 2px solid var(--industrial-red);
  border-radius: var(--radius-sm);
}

.small,
small {
  color: var(--text-muted);
}

.text-muted {
  color: var(--text-muted) !important;
}

.text-white {
  color: var(--white) !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--industrial-red);
  transition: transform 0.3s var(--transition-smooth);
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.navbar {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.25s var(--transition-smooth);
}

.navbar-brand:hover,
.navbar-brand:focus {
  color: var(--white);
  transform: scale(1.02);
}

.btn,
.card,
.card-shell,
.product-card,
.testimonial-card,
.navbar-brand {
  will-change: transform;
}

.logo-nav {
  width: 50px;
  height: 46px;
  border-radius: 1px;
  padding: 5px;
  object-fit: contain;
}

.navbar-dark .navbar-nav .nav-link {
  position: relative;
  color: var(--concrete);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-left: 0.55rem;
  padding-right: 0.55rem;
  transition: color 0.25s var(--transition-smooth);
}

.navbar-dark .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0.55rem;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--industrial-red);
  transition: width 0.25s var(--transition-smooth);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--white);
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
  width: calc(100% - 1.1rem);
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.35);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(211, 47, 47, 0.3);
}

.btn {
  border-radius: var(--radius-md);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  transition:
    transform var(--transition-fast) var(--transition-smooth),
    box-shadow var(--transition-fast) var(--transition-smooth),
    background var(--transition-fast) var(--transition-smooth),
    color var(--transition-fast) var(--transition-smooth),
    border-color var(--transition-fast) var(--transition-smooth);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn:disabled,
.btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-cta-main,
.btn-primary,
.btn-nav-cta,
.btn-cta-whatsapp {
  border: 2px solid var(--industrial-red);
  background: var(--industrial-red);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-cta-main:hover,
.btn-primary:hover,
.btn-nav-cta:hover,
.btn-cta-whatsapp:hover {
  background: var(--industrial-red-dark);
  border-color: var(--industrial-red-dark);
  color: var(--white);
  box-shadow: var(--shadow-industrial);
}

.btn-outline-main,
.btn-secondary {
  border: 2px solid var(--industrial-red);
  color: var(--industrial-red);
  background: transparent;
}

.btn-outline-main:hover,
.btn-secondary:hover {
  background: var(--industrial-red);
  color: var(--white);
}

.btn-cta-whatsapp {
  border-radius: var(--radius-full);
}

.page-hero,
.contact-hero,
.hero-industrial {
  position: relative;
  overflow: hidden;
  padding: clamp(4.2rem, 9vw, 5.8rem) 0 clamp(2.3rem, 6vw, 3.4rem);
}

.page-hero::before,
.contact-hero::before,
.hero-industrial::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(211, 47, 47, 0.85), rgba(38, 50, 56, 0.9)),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.06) 0,
      rgba(255, 255, 255, 0.06) 8px,
      transparent 8px,
      transparent 20px
    );
}

.page-hero .container,
.contact-hero .container,
.hero-industrial .container {
  position: relative;
  z-index: var(--z-base);
}

.page-hero,
.contact-hero,
.hero-industrial,
.page-hero h1,
.page-hero .lead,
.contact-hero h1,
.contact-hero p,
.hero-industrial h1,
.hero-industrial .lead {
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.8rem;
  padding: 0.22rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #ffd9d9;
}

.page-hero h1,
.hero-industrial h1,
.contact-hero h1,
.contact-title {
  font-size: clamp(2.1rem, 6vw, 4rem);
  margin-bottom: 0.75rem;
}

.page-hero .lead,
.hero-industrial .lead,
.contact-hero p {
  max-width: 60ch;
  font-size: clamp(1rem, 2.3vw, 1.2rem);
  color: #e4ecef;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.60rem;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 0.35rem 0.40rem;
  background: rgba(255, 255, 255, 0.08);
}

.hero-badges i {
  color: #ffd6d6;
  margin-right: 0.40rem;
}

.section-shell {
  position: relative;
  margin-top: 1.8rem;
  padding: clamp(2.2rem, 5vw, 3.5rem) 0;
  border-top: 1px solid var(--line-soft);
  background: var(--bg-soft);
}

.section-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(176, 190, 197, 0.1), transparent 28%);
  pointer-events: none;
}

.section-shell-tight {
  padding: clamp(1.5rem, 4vw, 2.5rem) 0;
}

.section-shell .container {
  position: relative;
  z-index: var(--z-base);
}

.section-dark {
  background:
    linear-gradient(130deg, rgba(0, 0, 0, 0.88), rgba(38, 50, 56, 0.95)),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 8px,
      transparent 8px,
      transparent 20px
    );
  color: var(--white);
}

.section-dark p,
.section-dark .section-subtitle {
  color: #c5d0d6;
}

.section,
.section-light {
  padding: clamp(2.3rem, 5vw, 3.4rem) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 1.7rem;
}

.section-title {
  color: var(--industrial-red);
  font-size: clamp(2rem, 4.8vw, 3.2rem);
  margin-bottom: 0.35rem;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 62ch;
  margin: 0 auto;
}

.home-trust-strip,
.trust-container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.trust-strip {

  padding: 1.2rem 0;
  margin: 0 2rem; /* margen lateral de 2rem */
  border-top: 2px solid var(--industrial-red);
  background: var(--bg-panel);

}

.trust-item {
  background: var(--white);
  border: 1px solid #d7e0e4;
  border-left: 4px solid var(--industrial-red);
  border-radius: var(--radius-lg);
  padding: 0.82rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition-fast) var(--transition-smooth),
    box-shadow var(--transition-fast) var(--transition-smooth);
}

.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.trust-icon,
.trust-item i {
  color: var(--industrial-red);
  font-size: 1.2rem;
}

.card-shell,
.quote-shell,
.sidebar-shell,
.pricing-card,
.product-card,
.blog-card,
.mini-card,
.featured-post {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #d6dfe3;
  border-left: 4px solid var(--industrial-red);
  border-radius: 14px;
  padding: 1.50rem 2.1rem;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
  transition:
    transform var(--transition-fast) var(--transition-smooth),
    box-shadow var(--transition-fast) var(--transition-smooth),
    border-color var(--transition-fast) var(--transition-smooth);
}

.card-shell:hover,
.quote-shell:hover,
.sidebar-shell:hover,
.pricing-card:hover,
.product-card:hover,
.blog-card:hover,
.mini-card:hover,
.featured-post:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: #b9c9d0;
}

.card-shell-dark {
  background: linear-gradient(120deg, #11191d, #263238);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left-color: var(--industrial-red);
}

.quote-form-wrapper {
  border: 1px solid rgba(176, 190, 197, 0.45);
  border-left: 4px solid var(--industrial-red);
  border-radius: var(--radius-xl);
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(6px);
}

.form-label {
  margin-bottom: 0.35rem;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--steel-gray);
}

.form-control,
.form-select,
.form-input {
  border: 1px solid #c9d5db;
  border-radius: var(--radius-md);
  padding: 0.66rem 0.78rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--steel-dark);
  transition:
    border-color var(--transition-fast) var(--transition-smooth),
    box-shadow var(--transition-fast) var(--transition-smooth),
    background var(--transition-fast) var(--transition-smooth);
}

.form-control:focus,
.form-select:focus,
.form-input:focus {
  border-color: var(--industrial-red);
  box-shadow: 0 0 0 3px var(--industrial-red-alpha);
  outline: 0;
}

.form-check-input:checked {
  background-color: var(--industrial-red);
  border-color: var(--industrial-red);
}

.form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(211, 47, 47, 0.2);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.pricing-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
}

.pricing-card strong {
  display: block;
}

.pricing-card span,
.price-tag,
.quote-total strong,
.summary-amount {
  color: var(--industrial-red);
  font-weight: 700;
}

.pricing-card.active,
.addon-item.selected,
.addon-item[aria-pressed="true"],
.addon-item.active,
.choice-chip.active,
.choice-chip[aria-pressed="true"] {
  border-color: var(--industrial-red);
  background: #fff3f3;
  box-shadow: 0 0 0 0.2rem rgba(211, 47, 47, 0.15);
}

.addon-list {
  display: grid;
  gap: 0.56rem;
}

.addon-list-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.addon-item {
  border: 1px solid #d0dbe0;
  border-radius: 10px;
  background: #fff;
  padding: 0.62rem 0.8rem;
  display: flex;
  justify-content: space-between;
  transition: background 0.2s var(--transition-smooth),
    border-color 0.2s var(--transition-smooth);
}

.addon-item strong {
  margin-left: 0.6rem;
  color: var(--industrial-red);
}

.choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.choice-chip {
  border: 1px solid #cdd8de;
  border-radius: 999px;
  background: #fff;
  color: var(--steel-dark);
  padding: 0.42rem 0.82rem;
  font-weight: 600;
  transition: all 0.2s var(--transition-smooth);
}

.choice-chip:hover {
  border-color: var(--industrial-red);
  color: var(--industrial-red);
}

.quote-summary,
.summary-box {
  border: 1px solid #d5dfe4;
  border-radius: 12px;
  background: #f4f7f8;
  padding: 0.85rem;
}

.quote-total {
  margin-top: 0.45rem;
  font-size: 1.08rem;
}

.benefit-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.68rem;
}

.benefit-checklist li {
  position: relative;
  padding-left: 1.45rem;
}

.benefit-checklist li::before {
  content: "\2714";
  position: absolute;
  left: 0;
  color: var(--industrial-red);
  font-weight: 700;
}

.page-grid,
.page-grid-2,
.page-grid-3,
.products-grid,
.services-grid,
.stats-grid,
.kpi-row,
.footer-grid,
.contact-footer-content,
.testimonials-grid,
.form-grid {
  display: grid;
  gap: 1rem;
}

.page-grid {
  grid-template-columns: 1fr;
}

.page-grid-2 {
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  align-items: start;
}

.page-grid-3,
.products-grid,
.services-grid,
.testimonials-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stats-grid,
.kpi-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-item,
.kpi-box {
  text-align: center;
  background: linear-gradient(120deg, #10181d, #27343b);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1rem;
}

.stat-number,
.kpi-box strong {
  display: block;
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--industrial-red);
}

.stat-label {
  color: #d4dee3;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.table-specs {
  width: 100%;
  border-collapse: collapse;
}

.table-specs th,
.table-specs td {
  padding: 0.6rem 0.5rem;
  border-bottom: 1px solid #d2dde2;
  vertical-align: top;
}

.table-specs th {
  width: 36%;
  color: var(--steel-dark);
}

.filter-list,
.blog-toolbar {
  display: grid;
  gap: 0.85rem;
}

.meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  color: var(--text-muted);
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  border: 1px solid #d5e0e5;
  border-radius: 999px;
  padding: 0.2rem 0.52rem;
  background: #f6f9fa;
}

.card-image,
.card-image-sm,
.product-image {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  background: #e3ebef;
}

.card-image,
.product-image {
  height: 300px;
}

.card-image-sm {
  height: 200px;
}

.lazy-load {
  opacity: 0;
  transition: opacity var(--transition-normal) var(--transition-smooth);
}

.lazy-load.loaded {
  opacity: 1;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-reset li + li {
  margin-top: 0.48rem;
}

.breadcrumb-lite {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.breadcrumb-lite a {
  color: var(--steel-dark);
  text-decoration: none;
}

.breadcrumb-lite a:hover {
  color: var(--industrial-red);
}

.pagination-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.pagination-wrap a,
.pagination-wrap button {
  border: 1px solid #d1dde3;
  border-radius: 8px;
  padding: 0.33rem 0.62rem;
  background: #fff;
  color: var(--steel-dark);
  text-decoration: none;
}

.pagination-wrap .active {
  border-color: var(--industrial-red);
  color: var(--industrial-red);
  font-weight: 700;
}

.status-msg {
  min-height: 1.2em;
  font-size: 0.93rem;
  font-weight: 600;
}

.status-ok {
  color: var(--ok);
}

.status-error {
  color: var(--danger);
}

.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer,
.footer {
  margin-top: 2rem;
  padding: 3rem 0 1.5rem;
  background: var(--black);
  color: var(--metal);
  border-top: 3px solid var(--industrial-red);
}

.footer-grid {
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-description {
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-contact {
  margin-top: 1rem;
}

.footer-title,
.footer-brand-text {
  color: var(--white);
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link,
.site-footer a {
  color: var(--metal);
  text-decoration: none;
  transition: color 0.3s var(--transition-smooth);
}

.footer-link:hover,
.site-footer a:hover {
  color: var(--industrial-red);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link,
.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: all 0.3s var(--transition-smooth);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-link:hover,
.footer-social a:hover {
  background: var(--industrial-red);
  border-color: var(--industrial-red);
  color: var(--white);
  transform: translateY(-4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  color: var(--steel-light);
  font-size: 0.9rem;
}

.global-note {
  color: #a5b3b9;
  font-size: 0.9rem;
}

.business-address {
  margin: 0;
  font-style: normal;
  line-height: 1.6;
  color: var(--steel-dark);
}

.business-address a {
  color: var(--industrial-red);
}

.business-address a:hover {
  color: #8d1a18;
}

.business-address abbr {
  text-decoration: none;
  border-bottom: 0;
  cursor: default;
}

.business-address--compact {
  font-size: 0.92rem;
}

.site-footer .business-address,
.footer .business-address {
  color: #d9e4e8;
}

.site-footer .business-address a,
.footer .business-address a {
  color: #ffd9d9;
}

.site-footer .business-address a:hover,
.footer .business-address a:hover {
  color: #fff0f0;
}

.map-embed-wrap {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  overflow: hidden;
  background: #f4f7f8;
}

.map-embed-wrap iframe {
  display: block;
}

.verification-panel {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  background: #f8f9fa;
}

.verification-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--steel-dark);
}

.contact-main .section-shell {
  margin-top: 0;
  min-height: calc(100vh - 190px);
}

.contact-shell {
  padding-top: 1.8rem;
}

.contact-footer-content {
  grid-template-columns: 1.6fr 1fr;
}

.contact-footer-section {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
}

.contact-footer-reviews {
  text-align: center;
}

.blog-manage-note {
  border-left: 4px solid var(--industrial-red);
}

.featured-post h2 {
  line-height: 1.14;
}

.floating-wa,
.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 0;
  background: #25d366;
  color: #fff;
  font-size: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35);
  z-index: var(--z-fixed);
  animation: pulseWhatsapp 2s infinite;
}

.floating-wa:hover,
.whatsapp-float:hover {
  color: #fff;
  transform: scale(1.08);
}

.cookie-consent {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  max-width: 620px;
  z-index: var(--z-toast);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1rem;
  border: 1px solid #d4dee3;
  border-left: 4px solid var(--industrial-red);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.2s var(--transition-smooth), transform 0.2s var(--transition-smooth);
}

.cookie-consent.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-consent__text {
  margin: 0;
  color: var(--steel-dark);
  font-size: 0.92rem;
}

.cookie-consent__text a {
  color: var(--industrial-red);
  font-weight: 700;
}

.cookie-consent__actions {
  margin-left: auto;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.cookie-consent__btn {
  min-width: 130px;
  white-space: nowrap;
}

body.cookie-banner-visible .floating-wa,
body.cookie-banner-visible .whatsapp-float {
  bottom: 5.25rem;
}

@keyframes pulseWhatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--transition-smooth),
    transform 0.6s var(--transition-smooth);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.text-high-contrast {
  color: var(--black);
  font-weight: 600;
}

/* Utility layout helpers */
.grid {
  display: grid;
  gap: var(--spacing-md);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.d-flex {
  display: flex !important;
}

.d-grid {
  display: grid !important;
}

.d-block {
  display: block !important;
}

.d-none {
  display: none !important;
}

.justify-content-center {
  justify-content: center !important;
}

.align-items-center {
  align-items: center !important;
}

.gap-sm {
  gap: var(--spacing-sm) !important;
}

.gap-md {
  gap: var(--spacing-md) !important;
}

.gap-lg {
  gap: var(--spacing-lg) !important;
}

.mt-1 {
  margin-top: var(--spacing-xs) !important;
}

.mt-2 {
  margin-top: var(--spacing-sm) !important;
}

.mt-3 {
  margin-top: var(--spacing-md) !important;
}

.mt-4 {
  margin-top: var(--spacing-lg) !important;
}

.mt-5 {
  margin-top: var(--spacing-xl) !important;
}

.mb-1 {
  margin-bottom: var(--spacing-xs) !important;
}

.mb-2 {
  margin-bottom: var(--spacing-sm) !important;
}

.mb-3 {
  margin-bottom: var(--spacing-md) !important;
}

.mb-4 {
  margin-bottom: var(--spacing-lg) !important;
}

.mb-5 {
  margin-bottom: var(--spacing-xl) !important;
}

@media (max-width: 768px) {
  :root {
    --spacing-2xl: 2.25rem;
    --spacing-3xl: 3rem;
  }
}

@media (max-width: 480px) {
  :root {
    --spacing-xl: 1.5rem;
    --spacing-2xl: 2rem;
    --spacing-3xl: 2.5rem;
  }
}

@media (min-width: 992px) {
  .blog-toolbar {
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    align-items: end;
  }
}

@media (max-width: 1199px) {
  .page-grid-3,
  .products-grid,
  .services-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .home-trust-strip,
  .trust-container,
  .page-grid-2,
  .page-grid-3,
  .products-grid,
  .services-grid,
  .testimonials-grid,
  .stats-grid,
  .kpi-row,
  .footer-grid,
  .contact-footer-content,
  .addon-list-2,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .navbar-dark .navbar-nav .nav-link {
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
  }

  .btn-cta-whatsapp {
    width: fit-content;
    margin-top: 0.45rem;
  }

  .contact-footer-reviews,
  .contact-footer .footer-social {
    text-align: left;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .section-shell,
  .section,
  .section-light {
    padding-left: 0;
    padding-right: 0;
  }

  .page-hero,
  .contact-hero,
  .hero-industrial {
    padding-top: 4rem;
  }

  .card-shell,
  .quote-shell,
  .sidebar-shell,
  .pricing-card,
  .product-card,
  .blog-card,
  .mini-card,
  .featured-post,
  .quote-form-wrapper {
    padding: 1rem;
  }

  .btn,
  .btn-cta-main,
  .btn-outline-main,
  .btn-cta-whatsapp {
    width: 100%;
    justify-content: center;
  }

  .floating-wa,
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }

  .cookie-consent {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    max-width: none;
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-consent__actions {
    width: 100%;
    margin-left: 0;
  }

  .cookie-consent__actions .btn {
    width: auto;
    flex: 1;
  }

  body.cookie-banner-visible .floating-wa,
  body.cookie-banner-visible .whatsapp-float {
    bottom: 6rem;
  }
}

/* ========================
   HOME PAGE (INDEX)
======================== */
body[data-page="home"] {
  background: var(--white);
  color: var(--steel-dark);
}

body[data-page="home"] .header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: var(--z-sticky);
  border-bottom: 2px solid var(--industrial-red);
  transition: transform 0.3s var(--transition-smooth);
}

body[data-page="home"] .header.hidden {
  transform: translateY(-100%);
}

body[data-page="home"] .nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.75rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: transform 0.3s var(--transition-smooth);
}

.logo:hover {
  transform: scale(1.05);
}

.logo-img {
  width: 220px;
  height: 65px;
  border-radius: 4px;
  background: var(--white);
  padding: 6px;
}

.logo-text {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 0.05em;
}

body[data-page="home"] .nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

body[data-page="home"] .nav-link {
  color: var(--concrete);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  transition: color 0.3s var(--transition-smooth);
}

body[data-page="home"] .nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--industrial-red);
  transition: width 0.3s var(--transition-smooth);
}

body[data-page="home"] .nav-link:hover,
body[data-page="home"] .nav-link.active {
  color: var(--white);
}

body[data-page="home"] .nav-link:hover::after,
body[data-page="home"] .nav-link.active::after {
  width: 100%;
}

body[data-page="home"] .btn-nav-cta {
  background: var(--industrial-red);
  color: var(--white);
  padding: 0.65rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: all 0.3s var(--transition-smooth);
  border: 2px solid var(--industrial-red);
}

body[data-page="home"] .btn-nav-cta:hover {
  background: transparent;
  color: var(--industrial-red);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

body[data-page="home"] .mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.75rem;
  cursor: pointer;
}

body[data-page="home"] .hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(38, 50, 56, 0.95) 0%, rgba(0, 0, 0, 0.85) 100%),
    url("../images/Banner1.jpg") center/cover no-repeat;
  overflow: hidden;
  padding-top: 80px;
}

body[data-page="home"] .hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 2px,
    rgba(211, 47, 47, 0.03) 2px,
    rgba(211, 47, 47, 0.03) 4px
  );
  pointer-events: none;
}

body[data-page="home"] .hero-container,
body[data-page="home"] .container {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

body[data-page="home"] .hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
  z-index: var(--z-base);
}

body[data-page="home"] .hero-content {
  max-width: 800px;
}

body[data-page="home"] .hero-eyebrow {
  display: inline-block;
  color: var(--industrial-red-light);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  border: 2px solid var(--industrial-red);
  border-radius: 4px;
}

body[data-page="home"] .display-title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

body[data-page="home"] .hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--concrete);
  margin-bottom: 2rem;
  font-weight: 500;
  line-height: 1.6;
}

body[data-page="home"] .hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

body[data-page="home"] .badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s var(--transition-smooth);
}

body[data-page="home"] .badge:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--industrial-red);
  transform: translateY(-2px);
}

body[data-page="home"] .badge-icon {
  color: var(--industrial-red-light);
  font-size: 1.2rem;
}

body[data-page="home"] .hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

body[data-page="home"] .hero-media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

body[data-page="home"] .hero-media-image {
  width: 100%;
  height: min(70vh, 520px);
  object-fit: cover;
  display: block;
}

body[data-page="home"] .hero-media-badge {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(0, 0, 0, 0.78);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  padding: 0.65rem 0.85rem;
  font-weight: 600;
}

body[data-page="home"] .hero-media-badge i {
  color: var(--industrial-red-light);
}

body[data-page="home"] .section {
  padding: 5rem 0;
}

body[data-page="home"] .trust-strip {
  background: var(--white);
  border-top: 3px solid var(--industrial-red);
  border-bottom: 1px solid var(--concrete);
  padding: 2rem 0;
}

body[data-page="home"] .trust-container {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

body[data-page="home"] .trust-item {
  gap: 1rem;
  padding: 1rem;
  background: var(--concrete);
  border-radius: 8px;
  transition: all 0.3s var(--transition-smooth);
}

body[data-page="home"] .trust-item:hover {
  transform: translateX(8px);
  border-left-width: 6px;
}

body[data-page="home"] .trust-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

body[data-page="home"] .trust-text {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--steel-dark);
  line-height: 1.4;
}

body[data-page="home"] .section-header {
  margin-bottom: 4rem;
}

body[data-page="home"] .section-subtitle {
  font-size: 1.1rem;
  max-width: 600px;
}

body[data-page="home"] .products-grid,
body[data-page="home"] .services-grid,
body[data-page="home"] .testimonials-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

body[data-page="home"] .product-card {
  overflow: hidden;
  position: relative;
  border-left-width: 0;
  display: flex;
  flex-direction: column;
}

body[data-page="home"] .product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--industrial-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--transition-smooth);
}

body[data-page="home"] .product-card:hover::before {
  transform: scaleX(1);
}

body[data-page="home"] .product-image {
  height: 240px;
  border-radius: 0;
  display: block;
  background: var(--concrete);
}

body[data-page="home"] .product-content {
  padding: 2rem;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1rem;
}

body[data-page="home"] .product-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--steel-dark);
  text-transform: uppercase;
}

body[data-page="home"] .product-description {
  color: var(--steel-light);
  margin-bottom: 0;
  line-height: 1.6;
  flex-grow: 1;
}

body[data-page="home"] .product-content .btn {
  margin-top: auto;
  align-self: flex-start;
}

@media (max-width: 1199px) {
  body[data-page="home"] .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

body[data-page="home"] .stats-section {
  background: var(--black);
  color: var(--white);
  padding: 4rem 0;
}

body[data-page="home"] .stats-reference {
  margin-bottom: 2rem;
  color: var(--metal);
  text-align: center;
}

body[data-page="home"] .stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  text-align: center;
}

body[data-page="home"] .stat-item {
  background: transparent;
  border: 0;
  padding: 0;
}

body[data-page="home"] .stat-number {
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  margin-bottom: 0.5rem;
}

body[data-page="home"] .stat-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--metal);
}

body[data-page="home"] .stat-period {
  display: block;
  margin-top: 0.55rem;
  font-size: 0.9rem;
  color: #c8d5da;
}

body[data-page="home"] .quote-section {
  background: var(--steel-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

body[data-page="home"] .quote-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(211, 47, 47, 0.05) 10px,
    rgba(211, 47, 47, 0.05) 20px
  );
  pointer-events: none;
}

body[data-page="home"] .quote-form-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
  position: relative;
}

body[data-page="home"] .quote-urgency-banner {
  max-width: 900px;
  margin: 0 auto 1rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(211, 47, 47, 0.2);
  color: #fff4f4;
  font-weight: 600;
}

body[data-page="home"] .quote-orientation-grid {
  max-width: 900px;
  margin: 0 auto 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.9rem;
}

body[data-page="home"] .quote-orientation-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  color: #f3f7f8;
}

body[data-page="home"] .quote-orientation-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  color: #ffffff;
}

body[data-page="home"] .quote-orientation-card p {
  margin: 0 0 0.32rem;
  font-size: 0.92rem;
}

body[data-page="home"] .quote-orientation-note {
  font-size: 0.8rem;
  opacity: 0.9;
}

body[data-page="home"] #quickQuoteMsg a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

body[data-page="home"] .form-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

body[data-page="home"] .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

body[data-page="home"] .form-group.full-width {
  grid-column: 1 / -1;
}

body[data-page="home"] .form-label {
  color: var(--concrete);
}

body[data-page="home"] .form-input,
body[data-page="home"] .form-select {
  padding: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--white);
  font-size: 1rem;
  font-family: "Barlow", sans-serif;
  transition: all 0.3s var(--transition-smooth);
}

body[data-page="home"] .form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

body[data-page="home"] .form-input:focus,
body[data-page="home"] .form-select:focus {
  outline: none;
  border-color: var(--industrial-red);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.2);
}

body[data-page="home"] .form-select option {
  background: var(--steel-dark);
  color: var(--white);
}

body[data-page="home"] .services-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

body[data-page="home"] .service-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  border: 2px solid var(--concrete);
  transition: all 0.3s var(--transition-smooth);
}

body[data-page="home"] .service-card:hover {
  border-color: var(--industrial-red);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

body[data-page="home"] .service-icon {
  font-size: 3rem;
  color: var(--industrial-red);
  margin-bottom: 1.5rem;
  display: block;
}

body[data-page="home"] .service-title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--steel-dark);
  text-transform: uppercase;
}

body[data-page="home"] .service-description {
  color: var(--steel-light);
  line-height: 1.6;
}

body[data-page="home"] .service-note {
  margin-top: 0.75rem;
  padding-top: 0.7rem;
  border-top: 1px dashed #d7dee2;
  font-size: 0.9rem;
  color: #40545d;
}

body[data-page="home"] .testimonials-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

body[data-page="home"] .testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--industrial-red);
  transition: all 0.3s var(--transition-smooth);
}

body[data-page="home"] .testimonial-card:hover {
  transform: translateY(-8px);
  border-left-width: 6px;
  box-shadow: var(--shadow-lg);
}

body[data-page="home"] .testimonial-head {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 1rem;
}

body[data-page="home"] .testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f04545, #b21f1f);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

body[data-page="home"] .testimonial-client {
  min-width: 0;
}

body[data-page="home"] .testimonial-quote {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--concrete);
}

body[data-page="home"] .testimonial-author {
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

body[data-page="home"] .testimonial-company-note {
  color: #c5d2d7;
  font-size: 0.92rem;
}

body[data-page="home"] .testimonial-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

body[data-page="home"] .testimonial-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  color: #eaf1f4;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

body[data-page="home"] .testimonial-verified {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  background: rgba(37, 211, 102, 0.15);
  color: #9df0bb;
  border: 1px solid rgba(37, 211, 102, 0.35);
}

body[data-page="home"] .testimonial-proof {
  text-align: center;
  margin-top: 2.2rem;
  padding: 1.2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
}

body[data-page="home"] .testimonial-proof-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: #ffd36e;
}

body[data-page="home"] .testimonial-proof .btn {
  min-width: 220px;
}

body[data-page="home"] .testimonial-proof .btn:hover {
  color: var(--white);
}

body[data-page="home"] .cta-section {
  background: linear-gradient(135deg, var(--industrial-red) 0%, var(--industrial-red-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

body[data-page="home"] .cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.05) 20px,
    rgba(255, 255, 255, 0.05) 40px
  );
  pointer-events: none;
}

body[data-page="home"] .cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: var(--z-base);
}

body[data-page="home"] .cta-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  color: var(--white);
}

body[data-page="home"] .cta-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
}

body[data-page="home"] .btn-cta-large {
  background: var(--white);
  color: var(--industrial-red);
  font-size: 1.2rem;
  padding: 1.25rem 3rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

body[data-page="home"] .btn-cta-large:hover {
  background: var(--concrete);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}


body[data-page="home"] .whatsapp-float {
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 2rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: var(--z-fixed);
}

@media (max-width: 968px) {
  body[data-page="home"] .nav-container {
    position: relative;
  }

  body[data-page="home"] .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 2px);
    left: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid var(--industrial-red);
    border-radius: 8px;
    padding: 1rem;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
  }

  body[data-page="home"] .nav-links.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  body[data-page="home"] .mobile-menu-toggle {
    display: block;
  }

  body[data-page="home"] .mobile-menu-toggle.is-active {
    color: var(--industrial-red-light);
  }

  body[data-page="home"] .products-grid,
  body[data-page="home"] .services-grid,
  body[data-page="home"] .testimonials-grid,
  body[data-page="home"] .form-grid,
  body[data-page="home"] .trust-container,
  body[data-page="home"] .stats-grid,
  body[data-page="home"] .hero-container {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .hero-cta-group {
    flex-direction: column;
  }

  body[data-page="home"] .hero-media {
    max-width: 540px;
    width: 100%;
    justify-self: center;
  }

  body[data-page="home"] .btn {
    width: 100%;
    justify-content: center;
  }

  body[data-page="home"] .nav-links .btn-nav-cta {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 640px) {
  body[data-page="home"] .nav-container {
    padding: 0.75rem 1rem;
  }

  body[data-page="home"] .container,
  body[data-page="home"] .hero-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  body[data-page="home"] .hero-container {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  body[data-page="home"] .section {
    padding: 3rem 0;
  }

  body[data-page="home"] .quote-form-wrapper {
    padding: 2rem 1.5rem;
  }

  body[data-page="home"] .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    font-size: 1.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media print {
  .site-header,
  .header,
  .floating-wa,
  .whatsapp-float,
  .cookie-consent,
  .btn,
  .navbar,
  .footer-social,
  .mobile-menu-toggle {
    display: none !important;
  }

  body {
    background: #fff !important;
    color: #000 !important;
  }

  a,
  .footer-link,
  .site-footer a {
    color: #000 !important;
    text-decoration: underline;
  }

  .card-shell,
  .quote-shell,
  .sidebar-shell,
  .pricing-card,
  .product-card,
  .blog-card,
  .mini-card,
  .featured-post,
  .quote-form-wrapper {
    background: #fff !important;
    color: #000 !important;
    border-color: #d0d0d0 !important;
    box-shadow: none !important;
  }
}

/* Contenedor principal */
.testimonial-proof {
  text-align: center;
  max-width: 400px;
  margin: 20px auto;
  padding: 25px;
  border: 1px solid #eee;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Título */
.testimonial-proof-title {
  font-weight: 600;
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 12px;
}

/* Estrellas de calificación */
.rating-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  color: #fbbc05; /* amarillo estilo Google */
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.rating-stars .rating-value {
  color: #555;
  font-size: 0.9rem;
  margin-left: 5px;
}

/* Texto descriptivo */
.testimonial-proof-text {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

/* Botón de Google */
.btn-google {
  display: inline-block;
  padding: 10px 18px;
  border: 2px solid #4285F4;
  color: #4285F4;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-google:hover {
  background-color: #4285F4;
  color: #fff;
  transform: translateY(-2px);
}

.footer-social a,
.social-link {
  text-decoration: none; /* quita la línea */
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.page-grid-article {
  gap: 2rem; /* separación entre columnas */
}

@media (min-width: 992px) {
  .page-grid-article {
    grid-template-columns: 3fr 1fr; /* artículo principal + sidebar */
  }
}
.sidebar-shell {
  width: 100%;
  max-width: 300px; /* ancho máximo del sidebar */
}
#articleView {
  width: 100%;
  max-width: 800px; /* ancho máximo del artículo */
  margin: 0 auto; /* centra horizontalmente */
}
