/* ============================================================
   COPETROL CAMYK · FILADELFIA
   Estilo: industrial bold, alto contraste, energético
   ============================================================ */

:root {
  /* Paleta Copetrol */
  --c-red:        #E30613;
  --c-red-dark:   #B8050F;
  --c-orange:     #FF6A1A;
  --c-yellow:     #FFC107;
  --c-blue:       #0072CE;
  --c-navy:       #0A1628;
  --c-charcoal:   #161F2C;
  --c-charcoal-2: #1F2A3A;
  --c-cream:      #F5F1EA;
  --c-cream-2:    #ECE6DC;
  --c-white:      #FFFFFF;
  --c-grey:       #7A8896;
  --c-grey-2:     #4A5868;

  /* Tipografías */
  --f-display: 'Anton', 'Archivo Black', 'Impact', sans-serif;
  --f-head:    'Archivo', 'Manrope', system-ui, sans-serif;
  --f-body:    'Manrope', system-ui, -apple-system, sans-serif;

  /* Espaciado */
  --container: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 28px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-charcoal);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

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

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 32px;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background .3s ease, padding .3s ease;
}
.nav.is-scrolled {
  background: rgba(10, 22, 40, 0.96);
  padding: 10px 32px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--c-white);
}
.nav__logo {
  width: 38px;
  height: 38px;
  flex: none;
  filter: drop-shadow(0 2px 6px rgba(227,6,19,.4));
}
.nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav__brand-text strong {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: .04em;
}
.nav__brand-text em {
  font-style: normal;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-orange);
  font-weight: 600;
}

.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  margin-right: 16px;
}
.nav__links a {
  color: rgba(255,255,255,.78);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: color .2s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--c-orange);
  transition: width .25s ease;
}
.nav__links a:hover { color: var(--c-white); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .02em;
  transition: transform .2s, box-shadow .2s;
}
.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(37,211,102,.35);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav__burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--c-white);
  transition: transform .25s, opacity .25s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--c-white);
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: contrast(1.02) saturate(1.05);
}
.hero__bg-grad {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(95deg,
      rgba(10,22,40,.96) 0%,
      rgba(10,22,40,.78) 38%,
      rgba(10,22,40,.32) 62%,
      rgba(10,22,40,.12) 100%),
    linear-gradient(180deg, rgba(10,22,40,.4) 0%, transparent 30%, rgba(10,22,40,.6) 100%);
}

.hero__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 140px 32px 100px;
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(6px);
}
.hero__eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-orange);
  box-shadow: 0 0 12px var(--c-orange);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}

.hero__title {
  font-family: var(--f-display);
  font-size: clamp(56px, 10vw, 132px);
  line-height: .9;
  letter-spacing: -.01em;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.hero__title .t1 {
  display: block;
  color: var(--c-orange);
  text-shadow: 0 4px 30px rgba(255,106,26,.4);
  animation: rise .8s ease .1s both;
}
.hero__title .t2 {
  display: block;
  margin-top: 4px;
  animation: rise .8s ease .3s both;
}
.hero__title .hl {
  position: relative;
  display: inline-block;
}
.hero__title .hl::after {
  content: '';
  position: absolute;
  left: -4px; right: -4px;
  bottom: 10px;
  height: 14px;
  background: var(--c-red);
  z-index: -1;
  transform: skew(-6deg);
}

@keyframes rise {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: none; }
}

.hero__sub {
  max-width: 540px;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,.82);
  margin-bottom: 36px;
  animation: rise .8s ease .5s both;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 64px;
  animation: rise .8s ease .7s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .03em;
  transition: transform .2s, box-shadow .25s, background .2s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--c-red);
  color: var(--c-white);
  box-shadow: 0 8px 24px rgba(227,6,19,.35);
}
.btn--primary:hover {
  background: var(--c-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(227,6,19,.5);
}
.btn--ghost {
  background: transparent;
  color: var(--c-white);
  border: 2px solid rgba(255,255,255,.35);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--c-white);
  transform: translateY(-2px);
}

.hero__strip {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 600px;
  padding: 24px 28px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  animation: rise .8s ease .9s both;
}
.hero__strip li {
  display: flex;
  flex-direction: column;
  border-left: 2px solid var(--c-orange);
  padding-left: 14px;
}
.hero__strip li:first-child { border-left-color: var(--c-red); }
.hero__strip li:last-child { border-left-color: var(--c-yellow); }
.hero__strip strong {
  font-family: var(--f-display);
  font-size: 28px;
  letter-spacing: .02em;
}
.hero__strip span {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 14px;
  z-index: 1;
}
.hero__scroll span {
  display: block;
  width: 3px;
  height: 8px;
  background: var(--c-white);
  border-radius: 2px;
  margin: 7px auto;
  animation: scroll-down 1.6s ease infinite;
}
@keyframes scroll-down {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(18px); opacity: 0; }
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  background: var(--c-orange);
  overflow: hidden;
  padding: 16px 0;
  border-top: 4px solid var(--c-red);
  border-bottom: 4px solid var(--c-navy);
}
.ticker__track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
  font-family: var(--f-display);
  font-size: 28px;
  letter-spacing: .08em;
  color: var(--c-navy);
}
.ticker__track .sep { color: var(--c-white); }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SECCIONES BASE
   ============================================================ */
.section {
  padding: 110px 0;
  position: relative;
}
.section--dark {
  background: var(--c-navy);
  color: var(--c-white);
}
.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 80% 10%, rgba(255,106,26,.08), transparent 60%),
    radial-gradient(700px 400px at 10% 90%, rgba(227,6,19,.08), transparent 60%);
  pointer-events: none;
}
.section--cream {
  background: var(--c-cream);
  color: var(--c-charcoal);
}

.section__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}
.section__head--left {
  text-align: left;
  margin: 0 0 56px;
}
.section__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: 14px;
  padding: 6px 14px;
  background: rgba(255,106,26,.12);
  border-radius: 999px;
}
.section__title {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -.005em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section__lead {
  font-size: 18px;
  line-height: 1.55;
  color: currentColor;
  opacity: .78;
  max-width: 600px;
  margin: 0 auto;
}
.section__head--left .section__lead { margin: 0; }

/* ============================================================
   PRODUCTOS / COMBUSTIBLES
   ============================================================ */
.fuels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.fuel {
  position: relative;
  padding: 36px 32px 32px;
  border-radius: var(--radius-lg);
  background: var(--c-charcoal);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  border: 1px solid rgba(255,255,255,.06);
}
.fuel:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
.fuel::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  opacity: .14;
  filter: blur(20px);
  transition: transform .5s ease;
}
.fuel:hover::before { transform: scale(1.4); }

.fuel--blue::before { background: #1E90FF; }
.fuel--orange::before { background: var(--c-orange); }
.fuel--dark::before { background: #00CC99; }
.fuel--red::before { background: var(--c-red); }

.fuel__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.fuel--blue .fuel__tag   { background: rgba(30,144,255,.18);  color: #5BB0FF; }
.fuel--orange .fuel__tag { background: rgba(255,106,26,.22);  color: var(--c-orange); }
.fuel--dark .fuel__tag   { background: rgba(0,204,153,.2);    color: #4FD9B6; }
.fuel--red .fuel__tag    { background: rgba(227,6,19,.22);    color: #FF5560; }

.fuel h3 {
  font-family: var(--f-display);
  font-size: clamp(40px, 5vw, 58px);
  letter-spacing: .02em;
  line-height: .95;
  margin-bottom: 12px;
}
.fuel--blue h3   { color: #5BB0FF; }
.fuel--orange h3 { color: var(--c-orange); }
.fuel--dark h3   { color: #4FD9B6; }
.fuel--red h3    { color: #FF5560; }

.fuel p {
  color: rgba(255,255,255,.74);
  margin-bottom: 22px;
  font-size: 16px;
}

.fuel__bullets {
  list-style: none;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 20px;
}
.fuel__bullets li {
  position: relative;
  padding: 8px 0 8px 26px;
  color: rgba(255,255,255,.82);
  font-size: 15px;
}
.fuel__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 14px;
  height: 2px;
  background: currentColor;
  opacity: .5;
}

/* ============================================================
   SERVICIOS
   ============================================================ */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service {
  background: var(--c-white);
  border: 1px solid var(--c-cream-2);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
  position: relative;
  overflow: hidden;
}
.service:hover {
  transform: translateY(-6px);
  border-color: var(--c-cream-2);
  box-shadow: 0 18px 38px rgba(10,22,40,.08);
}
.service__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--c) 12%, transparent);
  color: var(--c);
  margin-bottom: 22px;
  transition: transform .25s ease;
}
.service:hover .service__icon {
  transform: rotate(-6deg) scale(1.08);
}
.service h3 {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 21px;
  margin-bottom: 10px;
  color: var(--c-navy);
  letter-spacing: -.01em;
}
.service p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--c-grey-2);
}

/* ============================================================
   UBICACIÓN
   ============================================================ */
.ubic {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.ubic__list {
  list-style: none;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ubic__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 22px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
}
.ubic__list svg {
  flex: none;
  color: var(--c-orange);
  margin-top: 2px;
}
.ubic__list strong {
  display: block;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--c-white);
  margin-bottom: 2px;
}
.ubic__list span {
  display: block;
  font-size: 15px;
  color: rgba(255,255,255,.7);
}
.ubic__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.ubic__map {
  position: relative;
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,.4);
  border: 4px solid rgba(255,255,255,.05);
}
.ubic__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(.2) contrast(.95);
}

/* ============================================================
   NOSOTROS
   ============================================================ */
.nosotros {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
}
.nosotros__copy p {
  margin-bottom: 18px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-grey-2);
}
.nosotros__copy p strong { color: var(--c-navy); font-weight: 700; }

.kpi {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.kpi > div {
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 22px 18px;
  border-left: 4px solid var(--c-orange);
}
.kpi > div:nth-child(2) { border-left-color: var(--c-red); }
.kpi > div:nth-child(3) { border-left-color: var(--c-navy); }
.kpi strong {
  display: block;
  font-family: var(--f-display);
  font-size: 36px;
  color: var(--c-navy);
  line-height: 1;
  margin-bottom: 6px;
}
.kpi span {
  font-size: 13px;
  color: var(--c-grey-2);
  font-weight: 500;
}

.nosotros__card {
  position: relative;
  background: linear-gradient(135deg, var(--c-red) 0%, #8C0410 100%);
  color: var(--c-white);
  padding: 56px 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
}
.nosotros__card::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 260px;
  height: 260px;
  background: var(--c-orange);
  border-radius: 50%;
  opacity: .25;
  filter: blur(40px);
  z-index: -1;
}
.nosotros__card-tag {
  font-family: var(--f-display);
  font-size: 80px;
  line-height: .85;
  color: rgba(255,255,255,.18);
  margin-bottom: 16px;
  letter-spacing: .04em;
}
.nosotros__card h3 {
  font-family: var(--f-display);
  font-size: 36px;
  line-height: 1;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.nosotros__card p {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,.92);
}

/* ============================================================
   CONTACTO
   ============================================================ */
.contacto__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 30px 26px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  color: var(--c-white);
  transition: transform .25s ease, border-color .25s, background .25s;
}
.contact-card svg { color: var(--c-orange); margin-bottom: 8px; }
.contact-card strong {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 17px;
}
.contact-card span {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  word-break: break-word;
}
.contact-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.08);
  border-color: var(--c-orange);
}
.contact-card--wa svg { color: #25D366; }
.contact-card--wa:hover { border-color: #25D366; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #06101F;
  color: rgba(255,255,255,.7);
  padding: 56px 0 36px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  align-items: start;
}
.footer__brand {
  display: flex;
  gap: 14px;
  align-items: center;
}
.footer__logo { width: 44px; height: 44px; flex: none; }
.footer__brand strong {
  display: block;
  color: var(--c-white);
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 2px;
  letter-spacing: -.01em;
}
.footer__brand span {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  color: rgba(255,255,255,.65);
  font-size: 14px;
  transition: color .2s;
}
.footer__links a:hover { color: var(--c-orange); }
.footer__copy {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,.5);
}

/* ============================================================
   FAB WhatsApp
   ============================================================ */
.fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(37,211,102,.45);
  z-index: 90;
  transition: transform .25s ease;
  animation: pulse-fab 2.2s ease infinite;
}
.fab:hover { transform: scale(1.1); }
@keyframes pulse-fab {
  0%, 100% { box-shadow: 0 14px 30px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.5); }
  50%      { box-shadow: 0 14px 30px rgba(37,211,102,.45), 0 0 0 16px rgba(37,211,102,0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav { padding: 12px 20px; gap: 12px; }
  .nav__links {
    position: fixed;
    inset: 64px 0 0 0;
    background: var(--c-navy);
    flex-direction: column;
    gap: 0;
    padding: 24px;
    transform: translateX(100%);
    transition: transform .3s ease;
    margin: 0;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    font-size: 18px;
  }
  .nav__cta { padding: 8px 14px; font-size: 13px; }
  .nav__cta span { display: none; }
  .nav__burger { display: flex; margin-left: 4px; }
  .nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__burger.is-open span:nth-child(2) { opacity: 0; }
  .nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero__inner { padding: 130px 24px 90px; }
  .hero__title .hl::after { bottom: 6px; height: 10px; }

  .section { padding: 80px 0; }

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

  .ubic { grid-template-columns: 1fr; gap: 36px; }
  .ubic__map { height: 320px; }

  .nosotros { grid-template-columns: 1fr; gap: 36px; }

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

  .footer__inner { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .hero__inner { padding: 120px 20px 80px; }
  .hero__eyebrow { font-size: 11px; padding: 6px 12px; }
  .hero__sub { font-size: 16px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; padding: 14px 22px; }
  .hero__strip { grid-template-columns: 1fr; gap: 14px; padding: 20px; }
  .hero__strip li { border-left: none; border-top: 2px solid var(--c-orange); padding-left: 0; padding-top: 10px; }
  .hero__strip li:first-child { border-top-color: var(--c-red); }
  .hero__strip li:last-child { border-top-color: var(--c-yellow); }

  .section__head { margin-bottom: 44px; }

  .ticker__track { font-size: 22px; }
  .services { grid-template-columns: 1fr; }
  .contacto__grid { grid-template-columns: 1fr; }
  .kpi { grid-template-columns: 1fr; }
  .nosotros__card { padding: 40px 28px; }
  .nosotros__card-tag { font-size: 56px; }
  .nosotros__card h3 { font-size: 28px; }

  .fab { width: 54px; height: 54px; bottom: 18px; right: 18px; }
}

/* Accesibilidad: reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
