/* ===== VARIABLES & RESET ===== */
:root {
  --navy: #1B2A5B;
  --blue: #2B4C8C;
  --blue-light: #3A5FA0;
  --accent: #C8A44E;
  --accent-dark: #A8883A;
  --gray-dark: #4A4A4A;
  --gray: #6B7280;
  --gray-light: #F3F4F6;
  --white: #FFFFFF;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-dark);
  line-height: 1.6;
  background: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER & NAV ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo img {
  height: 70px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text .logo-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.5px;
}

.logo-text .logo-sub {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  padding: 8px 18px;
  border-radius: 50px;
  letter-spacing: 0.2px;
  position: relative;
}

.nav-links a::after { display: none; }

.nav-links a:hover {
  color: var(--blue);
  background: rgba(43, 76, 140, 0.08);
}

.nav-links a.active {
  color: var(--blue);
  background: rgba(43, 76, 140, 0.14);
  font-weight: 600;
}

.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 10px 26px !important;
  border-radius: 50px;
  font-weight: 600 !important;
  letter-spacing: 0.3px;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--blue) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(27, 42, 91, 0.25);
}

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: var(--transition);
  border-radius: 2px;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 90px;
}

/* Split hero - text left, image right */
.hero-split {
  display: grid;
  grid-template-columns: 2fr 3fr;
  min-height: 92vh;
  margin-top: 90px;
}

.hero-split-content {
  display: flex;
  align-items: center;
  background: var(--navy);
  padding: 60px 64px;
  position: relative;
  overflow: hidden;
}

/* Subtle diagonal lines pattern */
.hero-split-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255, 255, 255, 0.015) 40px,
    rgba(255, 255, 255, 0.015) 41px
  );
  pointer-events: none;
}

/* Glowing accent corner */
.hero-split-content::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 164, 78, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Accent bar on the left edge */
.hero-split-accent {
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 4px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
}

.hero-watermark {
  position: absolute;
  bottom: -40px;
  left: -20px;
  height: 280px;
  width: auto;
  opacity: 0.04;
  filter: brightness(0) invert(1);
  pointer-events: none;
}

.hero-split-text {
  max-width: 540px;
  margin-left: auto;
  position: relative;
  z-index: 1;
}

.hero-split-text h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-split-text h1 span {
  color: var(--accent);
}

.hero-split-text p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 32px;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.hero-split-text .hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-split-img {
  overflow: hidden;
}

.hero-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}

/* "Somos su aliado estratégico" — sits on its own line, in accent color */
.hero-tagline {
  display: inline-block;
  margin-top: 14px;
  color: var(--accent);
  font-weight: 600;
  font-size: 1.2rem;
}

/* ===== HERO PHOTO CAROUSEL ===== */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
  overflow: hidden;
  background: #141414;
}

/* Tall studio photos show in full (on the dark backdrop) instead of cropping */
.hero-carousel .hero-slide-contain {
  object-fit: contain;
}

/* Each photo stacks on top of the others and fades in when active */
.hero-carousel .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.7s ease;
  z-index: 1;
}

.hero-carousel .hero-slide.active {
  opacity: 1;
  z-index: 2;
}

/* Left / right arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  color: var(--navy);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.hero-arrow:hover {
  background: var(--white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.hero-prev { left: 16px; }
.hero-next { right: 16px; }

/* Dots at the bottom */
.hero-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.hero-dots button.active {
  background: var(--white);
  width: 26px;
  border-radius: 5px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27, 42, 74, 0.92) 0%, rgba(0, 102, 204, 0.75) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 700px;
  padding: 60px 0;
}

.hero-badge {
  display: inline-block;
  background: rgba(200, 164, 78, 0.2);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 164, 78, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
}

.btn-blue:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(43, 76, 140, 0.3);
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--gray-light);
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-dark .section-header h2 {
  color: var(--white);
}

.section-header .accent {
  color: var(--accent);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray);
}

.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.section-line {
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin: 0 auto 20px;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--navy);
  padding: 30px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 2px;
}

/* "Hecho en México" badge (replaces the old "100% empresa mexicana" stat) */
.stat-badge-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hecho-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border: 2px solid var(--accent);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.hecho-flag {
  width: 32px;
  height: auto;
  border-radius: 3px;
  flex-shrink: 0;
  display: block;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.hecho-text {
  color: var(--white);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.hecho-text strong {
  font-weight: 800;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 500;
}

/* ===== CARD GRID ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.card {
  display: block;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  color: inherit;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* "Conocer más ›" style link at the bottom of the feature cards */
.card-cta {
  display: inline-block;
  margin-top: 16px;
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}

.card:hover .card-cta {
  color: var(--accent);
  letter-spacing: 0.3px;
}

/* Photo header on the "¿Por qué elegirnos?" feature cards */
.card-photo {
  height: 190px;
  overflow: hidden;
}

.card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.card:hover .card-photo img {
  transform: scale(1.05);
}

.card-img {
  height: 240px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-img img {
  transform: scale(1.05);
}

.card-body {
  padding: 28px;
}

.card-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.card-body p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

.card-tag {
  display: inline-block;
  background: rgba(200, 164, 78, 0.1);
  color: var(--accent-dark);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}

/* ===== PRODUCT DETAIL SECTIONS ===== */
.product-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}

.product-feature.reverse {
  direction: rtl;
}

.product-feature.reverse > * {
  direction: ltr;
}

.product-feature-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.product-feature-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.product-feature-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.product-feature-content p {
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.8;
}

.product-feature-content ul {
  margin-bottom: 24px;
}

.product-feature-content li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  color: var(--gray-dark);
}

.product-feature-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ===== BRANDS GRID ===== */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  align-items: center;
}

.brand-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.brand-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.brand-card p {
  font-size: 0.85rem;
  color: var(--gray);
}

/* ===== NORMATIVIDAD ===== */
.norm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.norm-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--blue);
  transition: var(--transition);
}

.norm-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.norm-card .norm-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.norm-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.norm-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 52px;
  height: 52px;
  background: rgba(0, 102, 204, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  color: var(--gray);
  font-size: 0.95rem;
}

.contact-item a:hover {
  color: var(--blue);
}

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

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

/* ===== WHATSAPP FLOAT ===== */
.quote-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  background: var(--accent);
  border: none;
  color: var(--white);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(200, 164, 78, 0.45);
  transition: var(--transition);
}

.quote-float:hover {
  background: var(--accent-dark);
  transform: scale(1.05);
  box-shadow: 0 6px 30px rgba(200, 164, 78, 0.6);
}

.quote-float svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
  flex-shrink: 0;
}

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-brand img {
  height: 60px;
  filter: brightness(0) invert(1);
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  padding: 4px 0;
  font-size: 0.9rem;
}

.footer a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== CAROUSEL ===== */
.carousel-wrapper {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 60px;
}

.carousel-wrapper {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 24px;
  padding: 8px 0 32px;
  transition: transform 0.5s ease;
}

.carousel-card {
  position: relative;
  min-width: 340px;
  max-width: 340px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  flex-shrink: 0;
}

/* Invisible link covering the whole card — makes it clickable to its product */
.card-cover-link {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.carousel-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.carousel-card .card-img {
  height: 200px;
  overflow: hidden;
}

.carousel-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.carousel-card:hover .card-img img {
  transform: scale(1.05);
}

.carousel-card .card-img-split {
  display: flex;
}

.carousel-card .card-img-split img {
  width: 50%;
  height: 100%;
  object-fit: cover;
}

.carousel-card .card-body {
  padding: 24px;
}

.carousel-card .card-tag {
  font-size: 0.95rem;
  padding: 6px 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.carousel-card .card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.carousel-card .card-body p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

.carousel-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  font-size: 1.6rem;
  color: var(--navy);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.carousel-btn:hover {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.carousel-prev { left: 8px; }
.carousel-next { right: 8px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(27, 42, 91, 0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.carousel-dot.active {
  background: var(--navy);
  width: 28px;
  border-radius: 5px;
}

@media (max-width: 968px) {
  .carousel-wrapper { padding: 0 48px; }
  .carousel-card { min-width: 290px; max-width: 290px; }
}

@media (max-width: 640px) {
  .carousel-wrapper { padding: 0 40px; }
  .carousel-card { min-width: 260px; max-width: 260px; }
  .carousel-btn { width: 36px; height: 36px; font-size: 1.3rem; }
  .carousel-prev { left: 2px; }
  .carousel-next { right: 2px; }
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 150px 0 80px;
  text-align: center;
  color: var(--white);
  margin-top: 90px;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.page-header p {
  font-size: 1.15rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.15rem;
  opacity: 0.85;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== IMAGE GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  transition: var(--transition);
  cursor: pointer;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

/* Image keeps square corners since the card wrapper already rounds them */
.gallery-item img {
  border-radius: 0;
}

/* Caption shown under every photo, always visible (no click needed) */
.gallery-caption {
  padding: 14px 18px;
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 90%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  color: var(--white);
  margin-top: 20px;
  font-size: 1rem;
  text-align: center;
  max-width: 700px;
  line-height: 1.6;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--accent);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.25);
  color: var(--accent);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-split-content {
    padding: 48px 24px;
    order: 1;
  }

  .hero-split-text {
    margin-left: 0;
  }

  .hero-split-text h1 {
    font-size: 2.2rem;
  }

  .hero-split-img {
    order: 0;
    height: 52vh;
    min-height: 300px;
  }

  .hero-carousel {
    min-height: 0;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 32px;
    gap: 20px;
    box-shadow: var(--shadow-lg);
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .product-feature {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .product-feature.reverse {
    direction: ltr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  .logo-text {
    display: none;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1.05rem;
  }

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

  .stat-item h3 {
    font-size: 2rem;
  }

  /* Hecho en México badge gets its own centered row on phones */
  .stat-badge-item {
    grid-column: 1 / -1;
    margin-top: 6px;
  }

  /* On phones the quote button collapses to a circular icon so it
     never blocks the screen (matches the WhatsApp button) */
  .quote-float {
    width: 60px;
    height: 60px;
    padding: 0;
    justify-content: center;
  }

  .quote-float span {
    display: none;
  }

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

  .hero-buttons {
    flex-direction: column;
  }

  .section {
    padding: 60px 0;
  }

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

  .page-header {
    padding: 120px 0 60px;
  }

  .page-header h1 {
    font-size: 2.2rem;
  }
}

/* Iconos de la sección "Nuestros valores" (página Nosotros).
   Antes eran emojis; ahora son imágenes PNG. El tamaño fijo evita
   que se vean de distinto tamaño entre una tarjeta y otra. */
.valor-icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
  margin: 0 auto 12px;
}

/* ===== Sección "Cobertura nacional" (página Nosotros) =====
   Dos columnas: a la izquierda las bases y los sectores,
   a la derecha el mapa de México con división estatal. */
.presencia-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) 1.2fr;
  gap: 40px;
  align-items: start;
}

.presencia-bloque + .presencia-bloque {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(27, 42, 91, 0.12);
}

.presencia-titulo {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

/* Banda de sectores: etiquetas horizontales a todo lo ancho */
.presencia-sectores-banda {
  margin-top: 44px;
  text-align: center;
}

.presencia-sectores-intro {
  max-width: 620px;
  margin: 0 auto 22px;
  color: var(--gray);
  font-size: 1rem;
}

.presencia-sectores-intro strong {
  color: var(--navy);
}

.presencia-sectores {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.presencia-sectores li {
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(27, 42, 91, 0.10);
  color: var(--gray-dark);
  font-size: 0.95rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.presencia-sectores strong {
  color: var(--navy);
}

/* La sede: única oficina propia, destacada como tarjeta */
.presencia-sede {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 18px 22px;
  margin-bottom: 32px;
  background: var(--white);
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.presencia-sede:hover,
.presencia-sede.activo {
  transform: translateX(4px);
  box-shadow: var(--shadow-lg);
}

.presencia-sede-etiqueta {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.presencia-sede strong {
  font-size: 1.35rem;
  color: var(--navy);
  line-height: 1.2;
}

.presencia-sede em {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--gray);
}

/* Zonas agrupadas por región. Uso columnas de texto (no grid) para que
   los tres bloques se repartan solos sin dejar un hueco al final. */
.presencia-regiones {
  column-count: 2;
  column-gap: 28px;
}

.presencia-region {
  break-inside: avoid;
  margin-bottom: 24px;
}

.presencia-region h4 {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 600;
  padding-bottom: 7px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(27, 42, 91, 0.12);
}

.presencia-region ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.presencia-zona {
  padding: 5px 8px;
  margin-left: -8px;
  border-radius: 6px;
  font-size: 0.93rem;
  color: var(--navy);
  transition: var(--transition);
}

.presencia-zona span {
  color: var(--gray);
  font-size: 0.82rem;
}

.presencia-zona:hover,
.presencia-zona.activo {
  background: rgba(200, 164, 78, 0.16);
}

/* Cifras */
.presencia-cifras {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(27, 42, 91, 0.12);
  text-align: center;
}

.presencia-cifras h3 {
  font-size: 3rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}

.presencia-cifras p {
  color: var(--gray);
  font-size: 0.92rem;
}

/* ----- El mapa ----- */
.presencia-mapa {
  align-self: center;
}

.mapa-mx {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

/* Cada estado: relleno tenue y línea divisoria */
.mapa-estado {
  fill: rgba(27, 42, 91, 0.11);
  stroke: rgba(27, 42, 91, 0.35);
  stroke-width: 0.6;
  stroke-linejoin: round;
  transition: var(--transition);
}

/* Zonas de operación: puntos azules */
.mapa-zona-punto {
  fill: var(--navy);
  stroke: var(--white);
  stroke-width: 1.4;
  transition: var(--transition);
}

.mapa-zona-halo {
  fill: rgba(27, 42, 91, 0);
  transition: var(--transition);
}

.mapa-zona.activo .mapa-zona-punto {
  fill: var(--accent);
  r: 6;
}

.mapa-zona.activo .mapa-zona-halo {
  fill: rgba(200, 164, 78, 0.28);
}

/* La sede: pin dorado con halo permanente */
.mapa-sede-halo {
  fill: rgba(200, 164, 78, 0.20);
}

.mapa-pin-gota {
  fill: var(--accent);
  transition: var(--transition);
}

.mapa-pin-punto {
  fill: var(--white);
}

/* Pin resaltado al pasar el mouse por su lugar en la lista */
.mapa-pin.activo .mapa-pin-gota {
  fill: var(--accent-dark);
}

.mapa-leyenda {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--gray);
}

.mapa-leyenda span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.leyenda-sede {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(200, 164, 78, 0.25);
}

.leyenda-zona {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--navy);
}

.leyenda-area {
  width: 16px;
  height: 10px;
  border-radius: 2px;
  background: rgba(27, 42, 91, 0.11);
  border: 1px solid rgba(27, 42, 91, 0.35);
}

/* En celular las dos columnas se apilan */
@media (max-width: 900px) {
  .presencia-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .presencia-cifras {
    gap: 16px;
  }
  .presencia-cifras h3 {
    font-size: 2.1rem;
  }
}

/* Encabezado dentro de la columna izquierda (alineado a la izquierda,
   en vez del encabezado centrado que dejaba mucho hueco a los lados) */
.presencia-encabezado {
  margin-bottom: 32px;
}

.presencia-encabezado .section-line {
  margin: 0 0 18px;
}

.presencia-encabezado h2 {
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.15;
}

.presencia-encabezado p {
  color: var(--gray);
  font-size: 1.02rem;
}

@media (max-width: 900px) {
  .presencia-encabezado {
    text-align: center;
  }
  .presencia-encabezado .section-line {
    margin: 0 auto 18px;
  }
}

/* ===== Página de Industrias =====
   Tarjetas con foto de fondo. Cada una lleva a su sección en Productos. */
.industrias-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}

.industria-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--navy);
  min-height: 320px;
  transition: var(--transition);
}

.industria-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.industria-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.industria-card:hover img {
  transform: scale(1.06);
}

/* Degradado oscuro para que el texto siempre se lea sobre la foto */
.industria-card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
  padding: 28px;
  background: linear-gradient(
    to top,
    rgba(15, 24, 52, 0.94) 0%,
    rgba(15, 24, 52, 0.78) 38%,
    rgba(15, 24, 52, 0.20) 70%,
    rgba(15, 24, 52, 0.08) 100%
  );
}

.industria-card-body h3 {
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 10px;
  line-height: 1.2;
}

.industria-card-body p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.93rem;
  line-height: 1.55;
  margin-bottom: 14px;
}

.industria-card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.industria-card-link::after {
  content: "→";
  transition: var(--transition);
}

.industria-card:hover .industria-card-link::after {
  transform: translateX(4px);
}

/* Nota de cierre: recuerda que la lista no es excluyente */
.industrias-nota {
  max-width: 640px;
  margin: 44px auto 0;
  text-align: center;
  color: var(--gray);
  font-size: 1rem;
}

.industrias-nota strong {
  color: var(--navy);
}

.industrias-nota a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
}

/* ===== Menús desplegables de la barra superior ===== */
.nav-drop {
  position: relative;
}

/* El botón del menú se ve igual que un enlace normal de la barra */
.nav-drop-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 18px;
  border-radius: 50px;
  letter-spacing: 0.2px;
  transition: var(--transition);
}

.nav-drop-toggle:hover,
.nav-drop:hover .nav-drop-toggle {
  color: var(--blue);
  background: rgba(43, 76, 140, 0.08);
}

/* Página actual dentro de este grupo */
.nav-drop.activo .nav-drop-toggle {
  color: var(--blue);
  background: rgba(43, 76, 140, 0.14);
  font-weight: 600;
}

/* Flechita */
.nav-caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.25s ease;
}

.nav-drop:hover .nav-caret,
.nav-drop.abierto .nav-caret {
  transform: rotate(180deg);
}

/* El panel desplegable */
.nav-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 330px;
  padding: 10px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(27, 42, 91, 0.07);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 1001;
}

/* Puente invisible para que el mouse no "caiga" al bajar del botón al panel */
.nav-menu::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.nav-drop:hover .nav-menu,
.nav-drop.abierto .nav-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-menu a {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 11px 14px;
  border-radius: 9px;
}

.nav-menu a:hover {
  background: rgba(43, 76, 140, 0.07);
}

.nav-menu-icono {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  color: var(--accent);
}

.nav-menu a strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

.nav-menu a em {
  display: block;
  font-style: normal;
  font-size: 0.79rem;
  color: var(--gray);
  line-height: 1.4;
  margin-top: 2px;
}

/* "Ver todos los productos" al pie del panel */
.nav-menu-todos {
  justify-content: center;
  margin-top: 6px;
  padding-top: 13px !important;
  border-top: 1px solid rgba(27, 42, 91, 0.09);
  border-radius: 0 !important;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue) !important;
}

.nav-menu-todos:hover {
  background: none !important;
  color: var(--navy) !important;
}

/* ----- En celular: el panel se abre en línea, no flotando ----- */
@media (max-width: 968px) {
  .nav-drop {
    width: 100%;
  }

  .nav-drop-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 1rem;
  }

  .nav-menu {
    position: static;
    transform: none;
    min-width: 0;
    padding: 0 0 0 10px;
    margin-top: 4px;
    border: none;
    box-shadow: none;
    border-left: 2px solid rgba(200, 164, 78, 0.35);
    display: none;
    opacity: 1;
    visibility: visible;
  }

  .nav-drop.abierto .nav-menu {
    display: block;
    transform: none;
  }

  /* En celular el hover no aplica: solo abre al tocar */
  .nav-drop:hover .nav-menu {
    display: none;
  }

  .nav-drop.abierto:hover .nav-menu {
    display: block;
  }

  .nav-menu a {
    padding: 9px 8px;
  }
}

/* Al llegar a una sección por enlace con ancla (#cobertura, #productos...),
   deja espacio para que la barra fija de arriba no tape el título. */
section[id] {
  scroll-margin-top: 110px;
}

/* ===== Misión y Visión (página Nosotros) =====
   Antes la palabra iba en una burbujita chica; ahora va centrada y grande. */
.mv-titulo {
  display: block;
  text-align: center;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.01em;
  margin-bottom: 6px;
}

.mv-frase {
  text-align: center;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 18px;
}

/* ===== Texto justificado de "Nuestra Historia" ===== */
.product-feature-content .texto-justificado {
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

/* ===== Carrusel de fotos (manual, sin avance automático) ===== */
.foto-carrusel {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: #12181f;
}

.foto-carrusel .carrusel-foto {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.foto-carrusel .carrusel-foto.activa {
  opacity: 1;
}

.carrusel-flecha {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: var(--navy);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.carrusel-flecha:hover {
  background: var(--white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.carrusel-prev { left: 14px; }
.carrusel-next { right: 14px; }

.carrusel-puntos {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.carrusel-puntos button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.carrusel-puntos button.activo {
  background: var(--white);
  transform: scale(1.3);
}

/* ===== Página de Normatividad =====
   El texto de cada norma va justificado: son párrafos densos y así
   quedan con el margen derecho parejo, como en un documento técnico. */
.norm-card p {
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

/* ===== Página de Normatividad =====
   Tarjetas tipográficas: la sigla es el elemento gráfico, sin iconos. */
.norma-grupo {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  margin-bottom: 36px;
}

.norma-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
}

.norma-card {
  display: flex;
  flex-direction: column;
  padding: 30px 28px;
  background: var(--white);
  border-radius: var(--radius);
  border-top: 3px solid var(--accent);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.norma-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Caja de marca: mismo alto para todas, traiga logo o sigla.
   Así la cuadrícula se ve pareja aunque los logos tengan proporciones
   muy distintas (NOM es muy ancho, ASEA casi cuadrado). */
.norma-marca {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 62px;
  margin-bottom: 12px;
}

.norma-marca img {
  max-height: 100%;
  max-width: 190px;
  width: auto;
  object-fit: contain;
}

/* Cuando no hay logo, la sigla ocupa su lugar */
.norma-sigla {
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.norma-card h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray);
  line-height: 1.4;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(27, 42, 91, 0.10);
}

.norma-card p {
  font-size: 0.94rem;
  color: var(--gray-dark);
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

/* Línea que aclara que se atiende a sector público y privado */
.norma-sectores {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(27, 42, 91, 0.12);
}

.norma-sectores strong {
  color: var(--navy);
}
