/* =========================================================
   TALLER MORELOS
   Diseño principal
   ========================================================= */

:root {
  --navy-950: #07111f;
  --navy-900: #0b1728;
  --navy-800: #10233c;
  --navy-700: #173451;

  --blue: #1769aa;
  --blue-light: #2588d8;

  --red: #c62828;
  --gold: #e0ad32;

  --white: #ffffff;
  --off-white: #f7f8fa;
  --gray-100: #eef1f4;
  --gray-200: #dfe4e9;
  --gray-400: #9ba6b2;
  --gray-600: #596675;
  --gray-800: #26313d;

  --text: #18222d;
  --text-light: #5d6875;

  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 18px 50px rgba(0, 0, 0, 0.14);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;

  --container: 1180px;

  --transition: 180ms ease;
}

/* =========================================================
   RESET
   ========================================================= */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

/* =========================================================
   UTILIDADES
   ========================================================= */

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 100px 0;
}

.section-light {
  background: var(--off-white);
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(37, 136, 216, 0.16),
      transparent 32%
    ),
    var(--navy-950);
}

.section-kicker,
.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-heading h2,
.section-content h2,
.section-contact h2 {
  margin: 0 0 20px;
  color: var(--navy-900);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

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

.section-heading > p:last-child,
.section-content > p,
.section-contact p {
  color: var(--text-light);
  font-size: 1.05rem;
}

.section-dark .section-content > p {
  color: rgba(255, 255, 255, 0.72);
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 76px;
  background: rgba(7, 9, 12, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  flex-shrink: 0;
}

.brand-logo {
  width: 195px;
  height: 86px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand-text span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 600;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  padding: 28px 0;
  transition:
    color var(--transition),
    opacity var(--transition);
}

.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.main-nav > a:not(.nav-cta):hover {
  color: var(--white);
}

.main-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 11px 17px;
  color: var(--navy-950);
  background: var(--gold);
  border-radius: 8px;
  transition:
    transform var(--transition),
    background var(--transition);
}

.nav-cta:hover {
  background: #edbd48;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  color: var(--white);
  background: transparent;
  border: 0;
  font-size: 1.7rem;
  cursor: pointer;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  overflow: hidden;

  /*
    Si esta imagen todavía no existe con este nombre,
    después la vamos a renombrar.
  */
  background:
  linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.96) 0%,
    rgba(0, 0, 0, 0.86) 42%,
    rgba(0, 0, 0, 0.38) 72%,
    rgba(0, 0, 0, 0.22) 100%
  ),
  url("assets/Imagenes/taller-ford.jpg") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.04),
      rgba(0, 0, 0, 0.32)
    );
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background:
    linear-gradient(
      90deg,
      var(--blue),
      var(--gold),
      var(--red)
    );
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 70px;
  padding-bottom: 70px;
}

.hero-content > .eyebrow {
  color: var(--gold);
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.8rem, 6.4vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero-copy {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

/* =========================================================
   BOTONES
   ========================================================= */

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-weight: 750;
  line-height: 1.2;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    border-color var(--transition);
}

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

.button-primary {
  color: var(--navy-950);
  background: var(--gold);
  box-shadow: 0 12px 28px rgba(224, 173, 50, 0.18);
}

.button-primary:hover {
  background: #edbd48;
  box-shadow: 0 16px 32px rgba(224, 173, 50, 0.25);
}

.button-secondary {
  color: var(--white);
  background: rgba(8, 10, 12, 0.58);
  border-color: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(8px);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.42);
}

.section-contact .button-secondary {
  color: var(--navy-900);
  background: transparent;
  border-color: var(--gray-200);
}

.section-contact .button-secondary:hover {
  background: var(--gray-100);
}

/* =========================================================
   TRUST BAR
   ========================================================= */

.trust-grid {
  max-width: 920px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-item {
  min-height: 94px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  color: var(--white);
  font-size: 0.95rem;
}

.trust-item span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
}

/* =========================================================
   LAYOUT DIVIDIDO
   ========================================================= */

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(50px, 8vw, 100px);
}

.section-content {
  max-width: 570px;
}

.section-content p {
  margin: 0 0 18px;
}

.section-media {
  position: relative;
}

.section-media::before {
  content: "";
  position: absolute;
  left: -16px;
  bottom: -16px;
  width: 52%;
  height: 52%;
  background: var(--gold);
  border-radius: var(--radius-md);
}

.section-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 420px;
  max-height: 570px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.section-dark .section-media::before {
  background: var(--blue);
}

.text-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--blue);
  font-weight: 750;
  transition:
    color var(--transition),
    transform var(--transition);
}

.text-link:hover {
  color: var(--navy-900);
  transform: translateX(3px);
}

/* =========================================================
   SERVICIOS
   ========================================================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 230px;
  padding: 32px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 4px;
  background: var(--blue);
  transition: width var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.service-card:hover::before {
  width: 100%;
}

.service-card h3 {
  margin: 10px 0 14px;
  color: var(--navy-900);
  font-size: 1.25rem;
  line-height: 1.25;
}

.service-card p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.95rem;
}

/* =========================================================
   GALERÍA
   ========================================================= */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 250px;
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition:
    transform 250ms ease,
    filter 250ms ease;
}

.gallery-grid img:hover {
  transform: scale(1.012);
  filter: contrast(1.03);
}

.gallery-grid img:nth-child(1) {
  grid-column: span 7;
}

.gallery-grid img:nth-child(2) {
  grid-column: span 5;
}

.gallery-grid img:nth-child(3) {
  grid-column: span 5;
}

.gallery-grid img:nth-child(4) {
  grid-column: span 7;
}

/* =========================================================
   CONTACTO
   ========================================================= */

.section-contact {
  background:
    linear-gradient(
      135deg,
      #f8fafc 0%,
      #eef3f7 100%
    );
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
  gap: clamp(50px, 8vw, 100px);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.contact-card {
  padding: 38px;
  font-style: normal;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.contact-card h3 {
  margin: 0 0 24px;
  color: var(--navy-900);
  font-size: 1.5rem;
}

.contact-card p {
  margin: 0 0 20px;
  color: var(--text-light);
  font-size: 0.95rem;
}

.contact-card a {
  color: var(--blue);
  font-weight: 650;
}

.contact-card a:hover {
  text-decoration: underline;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}

/* =========================================================
   WHATSAPP FLOTANTE
   ========================================================= */

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;

  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 13px 19px;

  color: var(--white);
  background: #128c4a;

  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;

  font-size: 0.88rem;
  font-weight: 800;

  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);

  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.floating-whatsapp:hover {
  background: #0f7c40;
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.3);
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.58);
  background: #07090c;
  font-size: 0.82rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer-inner p {
  margin: 0;
}

/* =========================================================
   FOCUS / ACCESIBILIDAD
   ========================================================= */

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

  .main-nav {
    gap: 14px;
    font-size: 0.8rem;
  }

  .main-nav > a:nth-child(4),
  .main-nav > a:nth-child(6) {
    display: none;
  }

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

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(3),
  .trust-item:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }
}

/* =========================================================
   MÓVIL
   ========================================================= */

@media (max-width: 800px) {

  html {
    scroll-padding-top: 72px;
  }

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section {
    padding: 76px 0;
  }

  .site-header,
.header-inner {
  min-height: 82px;
}

  .brand-logo {
    width: 80px;
    height: 80px;
  }

  .brand-text span {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 70px;
    left: 0;

    width: 100%;
    max-height: 0;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;

    overflow: hidden;

    color: var(--white);
    background: var(--navy-950);

    transition: max-height 260ms ease;
  }

  .main-nav.is-open {
    max-height: 620px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .main-nav > a,
  .main-nav > a:not(.nav-cta) {
    display: block;
    padding: 14px 20px;
  }

  .main-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin: 10px 20px 18px;
    text-align: center;
  }

  .hero {
    min-height: auto;
    background-position: 60% center;
  }

  .hero-content {
  padding-top: 60px;
  padding-bottom: 70px;
}

  .hero h1 {
    font-size: clamp(2.6rem, 12vw, 4.2rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
    margin-top: 45px;
  }

  .trust-item {
    min-height: 82px;
    padding: 16px;
  }

  .trust-item:first-child {
    padding-left: 16px;
  }

  .split-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .section-media {
    order: 2;
  }

  #nosotros .section-media {
    order: 2;
  }

  .section-media img {
    min-height: 320px;
  }

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

  .service-card {
    min-height: auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 210px;
  }

  .gallery-grid img:nth-child(n) {
    grid-column: span 1;
  }

  .contact-card {
    padding: 28px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 8px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
  }
}

/* =========================================================
   MÓVIL PEQUEÑO
   ========================================================= */

@media (max-width: 480px) {

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .brand-text strong {
    font-size: 0.9rem;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.2rem);
  }

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

  .trust-item {
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .trust-item:first-child {
    border-top: 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-actions .button {
    width: 100%;
  }

  .floating-whatsapp {
    min-height: 48px;
    padding: 11px 15px;
    font-size: 0.78rem;
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}/* =========================================================
   REDISEÑO PREMIUM — HEADER + HERO
   Taller Morelos
   ========================================================= */

/* HEADER MÁS SOBRIO Y TÉCNICO */

.site-header {
  background: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.header-inner {
  min-height: 82px;
}

.brand-logo {
  width: 220px;
  height: 82px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text strong {
  font-size: 1.04rem;
  letter-spacing: 0.035em;
}

.brand-text span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
}

.main-nav {
  gap: 26px;
  font-size: 0.84rem;
}

.main-nav > a:not(.nav-cta) {
  color: rgba(255, 255, 255, 0.72);
}

.main-nav > a:not(.nav-cta):hover {
  color: #ffffff;
}

.nav-cta {
  color: #06111f;
  background:
    linear-gradient(
      135deg,
      #f0b928,
      #d89413
    );
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(224, 173, 50, 0.18);
}

/* HERO CON ESTÉTICA DE INGENIERÍA AUTOMOTRIZ */

.hero {
  position: relative;
  min-height: calc(100vh - 82px);

  background:
  linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.96) 0%,
    rgba(0, 0, 0, 0.88) 34%,
    rgba(0, 0, 0, 0.58) 58%,
    rgba(0, 0, 0, 0.18) 100%
  ),
  url("assets/Imagenes/taller-ford.jpg") center 46% / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.28)
    );

  pointer-events: none;
}

.hero::after {
  height: 3px;
  background: #f5b400;
}

.hero-content {
  max-width: 1180px;
  padding-top: 96px;
  padding-bottom: 88px;
}

.hero-content > .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;

  color: #a8cbe2;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
}

.hero-content > .eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  background: #f0b928;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.hero-copy {
  max-width: 590px;
  margin-top: 22px;

  color: rgba(255, 255, 255, 0.74);
  font-size: 1.02rem;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 36px;
  gap: 16px;
}

.hero-actions .button {
  min-height: 54px;
  padding-inline: 24px;
  border-radius: 10px;
}

.hero-actions .button-primary {
  background:
    linear-gradient(
      135deg,
      #f0b928,
      #d89413
    );
  box-shadow:
    0 12px 28px rgba(218, 148, 19, 0.22);
}

.hero-actions .button-primary:hover {
  background:
    linear-gradient(
      135deg,
      #f6c849,
      #e5a923
    );
}

.hero-actions .button-secondary {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.18);
}

.hero-actions .button-secondary:hover {
  background: rgba(255, 255, 255, 0.09);
}

/* TRUST BAR MÁS ELEGANTE */

.trust-grid {
  max-width: 980px;
  margin-top: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(8px);
}

.trust-item {
  min-height: 88px;
  padding: 18px 22px;
}

.trust-item strong {
  color: #ffffff;
  font-size: 0.92rem;
}

.trust-item span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.76rem;
}

/* PEQUEÑO AJUSTE DE COLOR GLOBAL */

.section-kicker,
.eyebrow {
  color: #207fb8;
}

.text-link {
  color: #147bc0;
}

/* MÓVIL */

@media (max-width: 800px) {

  .header-inner {
    min-height: 72px;
  }

  .brand-logo {
    width: 64px;
    height: 48px;
  }

  .hero {
    min-height: auto;
    background-position: 62% center;
  }

  .hero-content {
    padding-top: 92px;
    padding-bottom: 76px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.3rem);
    line-height: 0.98;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .trust-grid {
    margin-top: 50px;
  }
}/* =========================================================
   REDISEÑO PREMIUM — SECCIÓN TRANSMISIONES
   ========================================================= */

#transmisiones {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #f8fafc 0%,
      #eef3f7 100%
    );
}

#transmisiones::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(32, 127, 184, 0.12),
    rgba(32, 127, 184, 0)
  );
  pointer-events: none;
}

#transmisiones .split-layout {
  gap: clamp(60px, 8vw, 110px);
}

#transmisiones .section-content {
  position: relative;
}

#transmisiones .section-kicker {
  color: #1c6f9f;
  letter-spacing: 0.18em;
}

#transmisiones .section-content h2 {
  max-width: 620px;
  margin-bottom: 24px;

  color: #081524;
  font-size: clamp(2.6rem, 4.6vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

#transmisiones .section-content p {
  max-width: 600px;
  color: #586575;
  font-size: 1.04rem;
  line-height: 1.85;
}

#transmisiones .text-link {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: #0e6ca8;
  font-weight: 800;
  letter-spacing: -0.01em;
}

#transmisiones .text-link::after {
  content: "↗";
  font-size: 1rem;
  transition: transform 180ms ease;
}

#transmisiones .text-link:hover::after {
  transform: translate(3px, -3px);
}

/* FOTO PRINCIPAL */

#transmisiones .section-media {
  position: relative;
  isolation: isolate;
}

#transmisiones .section-media::before {
  content: "";
  position: absolute;
  left: -22px;
  bottom: -22px;
  width: 54%;
  height: 54%;
  border-radius: 22px;
  background:
    linear-gradient(
      135deg,
      #0d6ba4,
      #174f77
    );
  z-index: -1;
}

#transmisiones .section-media::after {
  content: "TRANSMISIONES";
  position: absolute;
  right: -18px;
  top: 26px;
  z-index: 2;

  padding: 10px 14px;

  color: rgba(255, 255, 255, 0.94);
  background: rgba(5, 17, 31, 0.84);

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;

  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;

  backdrop-filter: blur(10px);
}

#transmisiones .section-media img {
  width: 100%;
  min-height: 460px;
  max-height: 600px;

  object-fit: cover;

  border-radius: 22px;
  border: 1px solid rgba(6, 23, 38, 0.08);

  box-shadow:
    0 28px 60px rgba(5, 18, 31, 0.18);
}

/* BLOQUES DE VALOR */

#transmisiones .section-content::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin-top: 30px;

  background:
    linear-gradient(
      90deg,
      #0e6ca8,
      #f0b928
    );
  border-radius: 999px;
}

/* MOBILE */

@media (max-width: 800px) {

  #transmisiones .section-content h2 {
    font-size: clamp(2.3rem, 10vw, 3.5rem);
  }

  #transmisiones .section-media img {
    min-height: 340px;
  }

  #transmisiones .section-media::after {
    right: 18px;
    top: 16px;
  }
}/* =========================================================
   REDISEÑO PREMIUM — SERVICIOS
   ========================================================= */

#servicios {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f7f9fb 100%
    );
}

#servicios::before {
  content: "";
  position: absolute;
  left: -180px;
  top: 120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(20, 123, 192, 0.08),
      rgba(20, 123, 192, 0)
    );
  pointer-events: none;
}

#servicios .section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

#servicios .section-kicker {
  color: #1c6f9f;
  letter-spacing: 0.18em;
}

#servicios .section-heading h2 {
  max-width: 740px;
  color: #071524;
  font-size: clamp(2.7rem, 4.8vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

#servicios .section-heading p {
  max-width: 680px;
  color: #647181;
  line-height: 1.8;
}

/* GRID */

#servicios .services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

/* TARJETAS */

#servicios .service-card {
  position: relative;
  min-height: 270px;
  padding: 34px 30px 30px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  overflow: hidden;

  background:
  linear-gradient(
    160deg,
    #080b0f 0%,
    #11161c 70%,
    #1b2026 100%
  );

  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;

  box-shadow:
    0 18px 45px rgba(6, 20, 34, 0.12);

  isolation: isolate;

  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

/* Número decorativo */

#servicios .service-card::after {
  position: absolute;
  top: 18px;
  right: 22px;

  color: rgba(255, 255, 255, 0.06);

  font-size: 5rem;
  font-weight: 900;
  line-height: 1;

  letter-spacing: -0.06em;

  z-index: -1;
}

#servicios .service-card:nth-child(1)::after {
  content: "01";
}

#servicios .service-card:nth-child(2)::after {
  content: "02";
}

#servicios .service-card:nth-child(3)::after {
  content: "03";
}

#servicios .service-card:nth-child(4)::after {
  content: "04";
}

#servicios .service-card:nth-child(5)::after {
  content: "05";
}

#servicios .service-card:nth-child(6)::after {
  content: "06";
}

#servicios .service-card:nth-child(7)::after {
  content: "07";
}

#servicios .service-card:nth-child(8)::after {
  content: "08";
}

/* Línea superior */

#servicios .service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;

  width: 100%;
  height: 3px;

  background:
  linear-gradient(
    90deg,
    #f5b400,
    #ffd34d,
    #f5b400
  );

  transform: scaleX(0.22);
  transform-origin: left;

  transition: transform 220ms ease;
}

/* Contenido */

#servicios .service-card h3 {
  margin: 0 0 14px;

  color: #ffffff;

  font-size: 1.3rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

#servicios .service-card p {
  margin: 0;

  color: rgba(255, 255, 255, 0.62);

  font-size: 0.94rem;
  line-height: 1.7;
}

/* Hover */

#servicios .service-card:hover {
  transform: translateY(-8px);

  border-color: rgba(49, 165, 229, 0.22);

  box-shadow:
    0 24px 55px rgba(6, 20, 34, 0.2);
}

#servicios .service-card:hover::before {
  transform: scaleX(1);
}

/* Primera tarjeta más importante */

#servicios .service-card:first-child {
  background:
    linear-gradient(
      160deg,
      #0a0d11 0%,
      #14191f 60%,
      #242a30 100%
    );
}

/* Última tarjeta en grid impar */

#servicios .service-card:last-child:nth-child(3n + 1) {
  grid-column: 1 / -1;
  min-height: 190px;
}

/* RESPONSIVE */

@media (max-width: 1050px) {

  #servicios .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {

  #servicios .services-grid {
    grid-template-columns: 1fr;
  }

  #servicios .service-card {
    min-height: 220px;
  }

  #servicios .section-heading h2 {
    font-size: clamp(2.3rem, 10vw, 3.5rem);
  }
}/* =========================================================
   REDISEÑO PREMIUM — FLOTILLAS
   ========================================================= */

#flotillas {
  position: relative;
  overflow: hidden;

  background:
  linear-gradient(
    115deg,
    rgba(5, 6, 8, 0.99) 0%,
    rgba(11, 13, 16, 0.98) 48%,
    rgba(25, 27, 30, 0.96) 100%
  );
}

#flotillas::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(33, 130, 188, 0.14),
      transparent 34%
    ),
    radial-gradient(
      circle at 88% 25%,
      rgba(240, 185, 40, 0.07),
      transparent 25%
    );

  pointer-events: none;
}

#flotillas .split-layout {
  position: relative;
  z-index: 1;
  gap: clamp(60px, 8vw, 110px);
}

#flotillas .section-content {
  position: relative;
}

#flotillas .section-kicker {
  color: #8fc7e9;
  letter-spacing: 0.18em;
}

#flotillas .section-content h2 {
  max-width: 620px;

  color: #ffffff;

  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

#flotillas .section-content p {
  max-width: 610px;

  color: rgba(255, 255, 255, 0.66);

  font-size: 1.04rem;
  line-height: 1.85;
}

#flotillas .button-primary {
  margin-top: 14px;

  background:
    linear-gradient(
      135deg,
      #f0b928,
      #d99515
    );

  box-shadow:
    0 14px 30px rgba(218, 149, 21, 0.18);
}

#flotillas .button-primary:hover {
  background:
    linear-gradient(
      135deg,
      #f6c94b,
      #e4a522
    );
}

/* Imagen */

#flotillas .section-media {
  position: relative;
  isolation: isolate;
}

#flotillas .section-media::before {
  content: "";
  position: absolute;

  right: -22px;
  bottom: -22px;

  width: 54%;
  height: 54%;

  background:
    linear-gradient(
      135deg,
      #f0b928,
      #ba7410
    );

  border-radius: 22px;

  z-index: -1;
}

#flotillas .section-media::after {
  content: "FLOTILLAS";

  position: absolute;
  left: 18px;
  top: 18px;

  z-index: 2;

  padding: 10px 14px;

  color: rgba(255, 255, 255, 0.94);
  background: rgba(4, 13, 23, 0.84);

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;

  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;

  backdrop-filter: blur(10px);
}

#flotillas .section-media img {
  width: 100%;
  min-height: 450px;
  max-height: 590px;

  object-fit: cover;

  border-radius: 22px;

  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.35);
}

/* Detalle visual bajo el texto */

#flotillas .section-content::after {
  content: "";

  display: block;

  width: 72px;
  height: 3px;

  margin-top: 34px;

  background:
  linear-gradient(
    90deg,
    #f5b400,
    #ffd34d
  );

  border-radius: 999px;
}

/* Responsive */

@media (max-width: 800px) {

  #nosotros .split-layout {
  gap: 38px;
}

#nosotros .section-media img {
  min-height: 0;
  max-height: none;
  height: auto;
  object-fit: contain;
}

  #flotillas .section-content h2 {
    font-size: clamp(2.4rem, 10vw, 3.7rem);
  }

  #flotillas .section-media img {
    min-height: 340px;
  }

  #flotillas .section-media::after {
    left: 14px;
    top: 14px;
  }
}#flotillas {
  padding-top: 90px;
  padding-bottom: 90px;
}/* =========================================================
   REDISEÑO PREMIUM — NOSOTROS
   ========================================================= */

#nosotros {
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      #f8fafc 0%,
      #ffffff 100%
    );
}

#nosotros::before {
  content: "";
  position: absolute;
  right: -160px;
  top: 80px;

  width: 340px;
  height: 340px;

  border-radius: 50%;

  background:
  radial-gradient(
    circle,
    rgba(245, 180, 0, 0.08),
    rgba(245, 180, 0, 0)
  );

  pointer-events: none;
}

#nosotros .split-layout {
  position: relative;
  z-index: 1;

  gap: clamp(60px, 8vw, 110px);
}

#nosotros .section-content {
  position: relative;
}

#nosotros .section-kicker {
  color: #a87500;
  letter-spacing: 0.18em;
}

#nosotros .section-content h2 {
  max-width: 680px;

  color: #071524;

  font-size: clamp(2.7rem, 4.8vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

#nosotros .section-content p {
  max-width: 620px;

  color: #5f6c7a;

  font-size: 1.04rem;
  line-height: 1.85;
}

/* destacar al responsable */

#nosotros .section-content strong {
  color: #0c3655;
  font-weight: 800;
}

/* imagen */

#nosotros .section-media {
  position: relative;
  isolation: isolate;
}

#nosotros .section-media::before {
  content: "";

  position: absolute;

  left: -20px;
  bottom: -20px;

  width: 52%;
  height: 52%;

  background:
    linear-gradient(
      135deg,
      #f0b928,
      #c27b12
    );

  border-radius: 22px;

  z-index: -1;
}

#nosotros .section-media::after {
  content: "+20 AÑOS";

  position: absolute;

  right: 18px;
top: 18px;

  z-index: 2;

  padding: 10px 14px;

  color: rgba(255, 255, 255, 0.96);
  background: rgba(5, 17, 31, 0.86);

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;

  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;

  backdrop-filter: blur(10px);
}

#nosotros .section-media img {
  width: 100%;

  min-height: 470px;
  max-height: 610px;

  object-fit: cover;

  border-radius: 22px;

  border: 1px solid rgba(8, 21, 36, 0.08);

  box-shadow:
    0 28px 60px rgba(5, 18, 31, 0.18);
}

/* detalle gráfico */

#nosotros .section-content::after {
  content: "";

  display: block;

  width: 70px;
  height: 3px;

  margin-top: 32px;

  background:
  linear-gradient(
    90deg,
    #f5b400,
    #ffd34d
  );

  border-radius: 999px;
}

/* responsive */

@media (max-width: 800px) {

  #nosotros .section-content h2 {
    font-size: clamp(2.3rem, 10vw, 3.6rem);
  }

  #nosotros .section-media img {
    min-height: 340px;
  }

  #nosotros .section-media::after {
  display: none;
}
}/* =========================================================
   REDISEÑO PREMIUM — TRABAJOS
   ========================================================= */

#trabajos {
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      #f6f8fb 0%,
      #eef3f7 100%
    );
}

#trabajos::before {
  content: "";
  position: absolute;
  left: -160px;
  bottom: -120px;

  width: 360px;
  height: 360px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(20, 123, 192, 0.08),
      rgba(20, 123, 192, 0)
    );

  pointer-events: none;
}

#trabajos .section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

#trabajos .section-kicker {
  color: #a87500;
  letter-spacing: 0.18em;
}

#trabajos .section-heading h2 {
  color: #071524;

  font-size: clamp(2.7rem, 4.8vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

#trabajos .section-heading p {
  max-width: 680px;

  color: #627080;

  font-size: 1.04rem;
  line-height: 1.8;
}

/* Galería */

#trabajos .gallery-grid {
  display: grid;

  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 250px;

  gap: 18px;
}

#trabajos .gallery-grid img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  border-radius: 18px;

  border: 1px solid rgba(7, 21, 36, 0.06);

  box-shadow:
    0 16px 38px rgba(5, 18, 31, 0.12);

  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

#trabajos .gallery-grid img:hover {
  transform: translateY(-4px) scale(1.01);

  box-shadow:
    0 24px 48px rgba(5, 18, 31, 0.18);

  filter:
    contrast(1.03)
    saturate(1.04);
}

/* composición editorial */

#trabajos .gallery-grid img:nth-child(1) {
  grid-column: span 7;
}

#trabajos .gallery-grid img:nth-child(2) {
  grid-column: span 5;
}

#trabajos .gallery-grid img:nth-child(3) {
  grid-column: span 5;
}

#trabajos .gallery-grid img:nth-child(4) {
  grid-column: span 7;
}

/* pequeña etiqueta visual */

#trabajos .gallery-grid {
  position: relative;
}

#trabajos .gallery-grid::before {
  content: "TRABAJO REAL";

  position: absolute;
  top: -18px;
  right: 0;

  z-index: 2;

  padding: 9px 13px;

  color: rgba(255, 255, 255, 0.96);
  background: rgba(5, 17, 31, 0.88);

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;

  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.18em;

  backdrop-filter: blur(10px);
}

/* Responsive */

@media (max-width: 800px) {

  #trabajos .section-heading h2 {
    font-size: clamp(2.3rem, 10vw, 3.6rem);
  }

  #trabajos .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }

  #trabajos .gallery-grid img:nth-child(n) {
    grid-column: span 1;
  }
}

@media (max-width: 520px) {

  #trabajos .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  #trabajos .gallery-grid::before {
    position: static;
    display: inline-flex;
    width: max-content;
    margin-bottom: 8px;
  }
}#trabajos {
  padding-top: 100px;
  padding-bottom: 100px;
}/* =========================================================
   REDISEÑO PREMIUM — CONTACTO
   ========================================================= */

#contacto {
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #f7f9fb 0%,
      #eef3f7 52%,
      #e9f0f5 100%
    );
}

#contacto::before {
  content: "";
  position: absolute;
  right: -180px;
  top: -120px;

  width: 420px;
  height: 420px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(20, 123, 192, 0.1),
      rgba(20, 123, 192, 0)
    );

  pointer-events: none;
}

#contacto .contact-layout {
  position: relative;
  z-index: 1;

  gap: clamp(60px, 8vw, 110px);
}

#contacto .section-kicker {
  color: #a87500;
  letter-spacing: 0.18em;
}

#contacto h2 {
  max-width: 660px;

  color: #071524;

  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

#contacto p {
  max-width: 620px;

  color: #5f6d7b;

  font-size: 1.04rem;
  line-height: 1.8;
}

#contacto .contact-actions {
  margin-top: 34px;
  gap: 14px;
}

#contacto .contact-actions .button {
  min-height: 54px;
  padding-inline: 24px;
  border-radius: 10px;
}

#contacto .contact-actions .button-primary {
  background:
    linear-gradient(
      135deg,
      #f0b928,
      #d89413
    );

  color: #07111e;

  box-shadow:
    0 14px 30px rgba(218, 148, 19, 0.18);
}

#contacto .contact-actions .button-secondary {
  color: #0d2137;
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(13, 33, 55, 0.12);
}

#contacto .contact-actions .button-secondary:hover {
  background: #ffffff;
}

/* TARJETA DE DATOS */

#contacto .contact-card {
  position: relative;
  padding: 38px;

  background:
  linear-gradient(
    160deg,
    #07090c 0%,
    #0d1014 75%,
    #1b1e22 100%
  );

  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;

  box-shadow:
    0 28px 60px rgba(5, 18, 31, 0.18);

  overflow: hidden;
}

#contacto .contact-card::before {
  content: "OAXACA DE JUÁREZ";

  position: absolute;
  top: 18px;
  right: 18px;

  padding: 9px 12px;

  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;

  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

#contacto .contact-card h3 {
  margin-bottom: 28px;

  color: #ffffff;

  font-size: 1.6rem;
  letter-spacing: -0.02em;
}

#contacto .contact-card p {
  color: rgba(255, 255, 255, 0.68);

  font-size: 0.96rem;
  line-height: 1.75;
}

#contacto .contact-card strong {
  color: rgba(255, 255, 255, 0.92);
}

#contacto .contact-card a {
  color: #f5b400;
  font-weight: 700;
}

#contacto .contact-card a:hover {
  color: #ffffff;
  text-decoration: none;
}

/* LINKS SOCIALES Y MAPS */

#contacto .social-links {
  margin-top: 24px;
  padding-top: 22px;

  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#contacto .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 40px;
  padding: 9px 14px;

  color: rgba(255, 255, 255, 0.88);

  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;

  font-size: 0.82rem;
  font-weight: 750;

  transition:
    background 180ms ease,
    transform 180ms ease,
    border-color 180ms ease;
}

#contacto .social-links a:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

/* detalle gráfico */

#contacto .contact-layout > div:first-child::after {
  content: "";
  display: block;

  width: 72px;
  height: 3px;

  margin-top: 34px;

  background:
  linear-gradient(
    90deg,
    #f5b400,
    #ffd34d
  );

  border-radius: 999px;
}

/* RESPONSIVE */

@media (max-width: 800px) {

  #contacto h2 {
    font-size: clamp(2.4rem, 10vw, 3.7rem);
  }

  #contacto .contact-card {
    padding: 28px;
  }

  #contacto .contact-card::before {
    position: static;
    display: inline-flex;
    margin-bottom: 22px;
  }

  #contacto .social-links {
    flex-direction: column;
    align-items: stretch;
  }

  #contacto .social-links a {
    width: 100%;
  }
}#contacto {
  padding-top: 80px;
  padding-bottom: 80px;
}@media (max-width: 520px) {
  #trabajos .gallery-grid::before {
    display: none;
  }
}@media (max-width: 520px) {
  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    min-height: 44px;
    padding: 10px 14px;
    font-size: 0.74rem;
    opacity: 0.96;
  }
}@media (min-width: 801px) {
  .brand-logo {
    width: 300px;
    height: 95px;
    object-fit: contain;
  }

  .brand-text {
    display: none;
  }

  .header-inner {
    min-height: 110px;
  }
}.hero-highlight {
  color: #f5b400;
}.hero-years {
  color: #f5b400;
  font-weight: 700;
}/* Indicador amarillo del menú — escritorio */
@media (min-width: 801px) {
  .main-nav > a:not(.nav-cta) {
    position: relative;
  }

  .main-nav > a[href="#inicio"]::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -9px;
    height: 2px;
    background: #f5b400;
    border-radius: 999px;
  }
}/* =========================================================
   NUEVA IDENTIDAD — TRANSMISIONES NEGRO + AMARILLO
   ========================================================= */

#transmisiones .section-kicker {
  color: #a97700;
}

#transmisiones .text-link {
  color: #a87500;
}

#transmisiones .section-media::before {
  background: #f5b400;
}

#transmisiones .section-media::after {
  color: #ffffff;
  background: rgba(10, 10, 10, 0.88);
  border-color: rgba(245, 180, 0, 0.25);
}

#transmisiones .section-content::after {
  background:
    linear-gradient(
      90deg,
      #f5b400,
      #d89500
    );
}/* Alinear las últimas 2 tarjetas de servicios — escritorio */
@media (min-width: 801px) {
  .services-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .service-card {
    grid-column: span 2;
  }

  .service-card:nth-child(7),
  .service-card:nth-child(8) {
    grid-column: span 3;
  }
}/* Corrección definitiva del grid de servicios — escritorio */
@media (min-width: 801px) {
  #servicios .services-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  #servicios .service-card {
    grid-column: span 2;
  }

  #servicios .service-card:nth-child(7),
  #servicios .service-card:nth-child(8) {
    grid-column: span 3;
  }
}@media (min-width: 801px) {
  .main-nav > a[href="#inicio"] {
    color: #f5b400;
  }
}@media (max-width: 800px) {
  .main-nav {
    background: #07090c;
    justify-content: flex-start;
    gap: 0;
  }

  .main-nav.is-open {
  max-height: 360px;
}

  .main-nav > a,
.main-nav > a:not(.nav-cta) {
  padding: 9px 20px;
}

  .nav-cta {
    flex: 0 0 auto;
    min-height: 0;
    height: auto;
    margin: 8px 20px 14px;
    padding: 13px 18px;
  }
  
  .floating-whatsapp {
  right: 12px;
  bottom: 12px;

  min-height: 44px;
  padding: 10px 14px;

  font-size: 0.76rem;
}
}