* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: "Roboto", Arial, sans-serif;
  background: #0d0d10;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: clip;
  max-width: 100%;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

[hidden] {
  display: none !important;
}

h1, h2, h3, h4 {
  font-family: "Oswald", "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.5px;
  margin: 0 0 0.5em;
  overflow-wrap: break-word;
}

.section {
  padding: clamp(60px, 8vw, 110px) 0;
}
@media (max-width: 576px) {
  .section {
    padding: 52px 0;
  }
}

.section-head {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 60px);
}
.section-head .kicker {
  display: inline-block;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ff6a00;
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(28px, 4.2vw, 48px);
  text-transform: uppercase;
  margin: 0;
}
.section-head p {
  color: #b6b6c0;
  max-width: 640px;
  margin: 16px auto 0;
  font-size: 1.05rem;
}

.fire-line {
  width: 70px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(135deg, #ff7a18 0%, #ff3d00 45%, #e10600 100%);
  margin: 14px auto 0;
}

.btn-fire {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #3ddc84 0%, #22c55e 45%, #16a34a 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.btn-fire::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}
.btn-fire:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  color: #ffffff;
  box-shadow: 0 14px 38px rgba(34, 197, 94, 0.5);
}
.btn-fire:hover::before {
  left: 130%;
}
.btn-fire:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 30px;
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: transparent;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.18s ease;
}
.btn-ghost:hover {
  border-color: #ff6a00;
  color: #ff6a00;
}

.text-fire {
  color: #ff6a00;
}

.text-red {
  color: #e10600;
}

.container-nx {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.text-center {
  text-align: center;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(135deg, #ff7a18 0%, #ff3d00 45%, #e10600 100%);
  z-index: 2000;
  box-shadow: 0 0 12px rgba(255, 106, 0, 0.7);
  transition: width 0.1s linear;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

[data-reveal-delay="1"] {
  transition-delay: 0.09s;
}

[data-reveal-delay="2"] {
  transition-delay: 0.18s;
}

[data-reveal-delay="3"] {
  transition-delay: 0.27s;
}

[data-reveal-delay="4"] {
  transition-delay: 0.36s;
}

[data-reveal-delay="5"] {
  transition-delay: 0.45s;
}

[data-reveal-delay="6"] {
  transition-delay: 0.54s;
}

.grad-fire {
  background: linear-gradient(100deg, #ff8a2b, #ff3d00, #e10600, #ff8a2b);
  background-size: 280% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradShift 6s ease infinite;
}

@keyframes gradShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes floatGlow {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-20px, 20px) scale(1.08);
  }
}
.embers {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.ember {
  position: absolute;
  bottom: -12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffb347 0%, #ff3d00 70%, transparent 100%);
  opacity: 0;
  animation: rise linear infinite;
}

@keyframes rise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 0.9;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-105vh) scale(0.3);
    opacity: 0;
  }
}
@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.hero-content > * {
  animation: heroIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-content > *:nth-child(1) {
  animation-delay: 0.05s;
}

.hero-content > *:nth-child(2) {
  animation-delay: 0.15s;
}

.hero-content > *:nth-child(3) {
  animation-delay: 0.25s;
}

.hero-content > *:nth-child(4) {
  animation-delay: 0.35s;
}

.hero-content > *:nth-child(5) {
  animation-delay: 0.45s;
}

.hero-form {
  animation: heroIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
.topbar {
  background: #08080a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: #b6b6c0;
}
.topbar .topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}
.topbar .topbar-contact {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.topbar .topbar-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.15s;
}
.topbar .topbar-contact a:hover {
  color: #ff6a00;
}
.topbar .topbar-contact i {
  color: #ff6a00;
}
.topbar .topbar-social {
  display: flex;
  gap: 16px;
}
.topbar .topbar-social a {
  font-size: 1rem;
  transition: color 0.15s;
}
.topbar .topbar-social a:hover {
  color: #ff6a00;
}
@media (max-width: 768px) {
  .topbar .topbar-social {
    display: none;
  }
  .topbar .topbar-contact {
    gap: 14px;
    font-size: 0.78rem;
    justify-content: center;
    width: 100%;
  }
  .topbar .topbar-inner {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .topbar .topbar-contact span,
  .topbar .topbar-contact a[href^=mailto] {
    display: none;
  }
  .topbar .topbar-contact {
    justify-content: center;
  }
}

.navbar-nx {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(10, 10, 12, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.navbar-nx.scrolled {
  background: rgba(8, 8, 10, 0.98);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}
.navbar-nx .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}
.navbar-nx .nav-logo {
  position: relative;
  z-index: 2;
  display: block;
  line-height: 0;
}
.navbar-nx .nav-logo img {
  height: 124px;
  width: auto;
  display: block;
  margin-bottom: -32px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.6));
}
.navbar-nx .nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin-inline: auto;
  margin-block: 0;
  padding: 0;
}
.navbar-nx .nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;
  position: relative;
  padding: 6px 0;
  transition: color 0.15s;
}
.navbar-nx .nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #ff7a18 0%, #ff3d00 45%, #e10600 100%);
  transition: width 0.2s ease;
}
.navbar-nx .nav-links a:hover {
  color: #ff6a00;
}
.navbar-nx .nav-links a:hover::after {
  width: 100%;
}
.navbar-nx .nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.navbar-nx .nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: #ffffff;
  font-size: 1.6rem;
  cursor: pointer;
}
@media (max-width: 992px) {
  .navbar-nx .nav-logo img {
    height: 94px;
    margin-bottom: -22px;
  }
  .navbar-nx .nav-toggle {
    display: block;
  }
  .navbar-nx .nav-links {
    margin: 0;
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 85vw);
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    background: #08080a;
    padding: 90px 28px 28px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
  }
  .navbar-nx .nav-links.open {
    transform: translateX(0);
  }
  .navbar-nx .nav-links a {
    font-size: 1.1rem;
    width: 100%;
  }
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
  z-index: 1029;
}
.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  padding: clamp(38px, 5vw, 72px) 0;
  background: linear-gradient(180deg, rgba(8, 8, 10, 0) 0%, rgba(8, 8, 10, 0.6) 100%), radial-gradient(circle at 75% 15%, rgba(225, 6, 0, 0.22), transparent 55%), #0d0d10;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 50% 40%, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero .hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  will-change: transform;
}
.hero .hero-glow-1 {
  right: -8%;
  top: 5%;
  width: 42vw;
  height: 42vw;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.28), transparent 62%);
  animation: floatGlow 11s ease-in-out infinite;
}
.hero .hero-glow-2 {
  left: -12%;
  bottom: -18%;
  width: 38vw;
  height: 38vw;
  background: radial-gradient(circle, rgba(225, 6, 0, 0.22), transparent 60%);
  animation: floatGlow 14s ease-in-out infinite reverse;
}
.hero .hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero .hero-content .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ff6a00;
  border: 1px solid rgba(255, 106, 0, 0.4);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 16px;
}
.hero .hero-content h1 {
  font-size: clamp(30px, 4.4vw, 52px);
  text-transform: uppercase;
  margin: 0 0 16px;
  letter-spacing: 0.5px;
}
.hero .hero-content .hero-lead {
  color: #b6b6c0;
  font-size: 1.02rem;
  max-width: 480px;
  margin-bottom: 26px;
}
.hero .hero-content .hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero .hero-content .hero-bullets {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hero .hero-content .hero-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
}
.hero .hero-content .hero-bullets i {
  color: #ff6a00;
  font-size: 1.2rem;
}
.hero .hero-form {
  background: rgba(22, 22, 27, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  border-top: 4px solid #e10600;
  padding: 24px 24px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
}
.hero .hero-form h3 {
  font-size: 1.4rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 4px;
}
.hero .hero-form .form-sub {
  text-align: center;
  color: #b6b6c0;
  font-size: 0.88rem;
  margin-bottom: 18px;
}
.hero .hero-form .form-group {
  margin-bottom: 12px;
}
.hero .hero-form .form-control {
  width: 100%;
  height: 46px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #1e1e25;
  color: #ffffff;
  padding: 0 16px;
  font-size: 0.98rem;
}
.hero .hero-form .form-control::placeholder {
  color: #8a8a94;
}
.hero .hero-form .form-control:focus {
  outline: none;
  border-color: #ff6a00;
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.15);
}
.hero .hero-form select.form-control {
  appearance: none;
  cursor: pointer;
}
.hero .hero-form textarea.form-control {
  height: auto;
  min-height: 90px;
  padding-top: 12px;
  resize: vertical;
}
.hero .hero-form .btn-fire {
  width: 100%;
  margin-top: 6px;
}
.hero .hero-form .form-msg {
  text-align: center;
  margin-top: 14px;
  font-weight: 600;
  font-size: 0.95rem;
  min-height: 1.2em;
}
.hero .hero-form .form-note {
  text-align: center;
  color: #8a8a94;
  font-size: 0.78rem;
  margin-top: 10px;
}
@media (max-width: 992px) {
  .hero .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero .hero-content {
    text-align: center;
  }
  .hero .hero-content .hero-lead {
    margin-inline: auto;
  }
  .hero .hero-content .hero-actions, .hero .hero-content .hero-bullets {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .hero .hero-content .hero-actions {
    flex-direction: column;
  }
  .hero .hero-content .hero-actions .btn-fire, .hero .hero-content .hero-actions .btn-ghost {
    width: 100%;
  }
  .hero .hero-content .hero-bullets {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero .hero-content .hero-bullets li {
    font-size: 0.92rem;
  }
  .hero .hero-form {
    padding: 20px 18px;
  }
}

.certs {
  background: #08080a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px 0;
}
.certs .certs-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 28px;
}
.certs .cert-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #b6b6c0;
}
.certs .cert-item i {
  font-size: 1.9rem;
  color: #ff6a00;
  flex-shrink: 0;
}
.certs .cert-item strong {
  display: block;
  color: #ffffff;
  font-family: "Oswald", "Roboto", sans-serif;
  font-size: 1.02rem;
  letter-spacing: 0.5px;
}
.certs .cert-item small {
  color: #8a8a94;
  font-size: 0.82rem;
}
@media (max-width: 768px) {
  .certs .certs-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 16px;
    justify-content: stretch;
  }
  .certs .cert-item {
    gap: 10px;
  }
  .certs .cert-item i {
    font-size: 1.6rem;
  }
  .certs .cert-item strong {
    font-size: 0.92rem;
  }
}
@media (max-width: 576px) {
  .certs .certs-inner {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-inline: auto;
  }
  .certs .cert-item {
    justify-content: flex-start;
  }
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 992px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  position: relative;
  background: #16161b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 34px 28px;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #ff7a18 0%, #ff3d00 45%, #e10600 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.feature-card .icon-box {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(225, 6, 0, 0.12);
  color: #ff6a00;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.feature-card h3 {
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.feature-card p {
  color: #b6b6c0;
  margin: 0;
  font-size: 0.97rem;
}
.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 106, 0, 0.45);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55), 0 0 22px rgba(255, 106, 0, 0.12);
}
.feature-card:hover::before {
  transform: scaleX(1);
}
.feature-card:hover .icon-box {
  background: linear-gradient(135deg, #ff7a18 0%, #ff3d00 45%, #e10600 100%);
  color: #ffffff;
  transform: translateY(-3px) rotate(-6deg);
}

.servicios {
  background: #0d0d10;
}

.productos {
  background: #08080a;
}
.productos .productos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 992px) {
  .productos .productos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .productos .productos-grid {
    grid-template-columns: 1fr;
  }
}
.productos .productos-cta {
  text-align: center;
  margin-top: 40px;
}
.productos .producto-card {
  background: #16161b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.productos .producto-card .producto-media {
  position: relative;
  height: 250px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 35%, rgba(225, 6, 0, 0.22), transparent 70%);
}
.productos .producto-card .producto-media i {
  font-size: 4.6rem;
  color: #e10600;
  filter: drop-shadow(0 8px 18px rgba(225, 6, 0, 0.45));
  transition: transform 0.3s ease, color 0.3s ease;
}
.productos .producto-card .producto-media img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.65));
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (max-width: 576px) {
  .productos .producto-card .producto-media {
    height: 220px;
  }
}
.productos .producto-card .producto-body {
  padding: 22px;
}
.productos .producto-card h3 {
  font-size: 1.2rem;
  text-transform: uppercase;
  margin: 10px 0 8px;
}
.productos .producto-card p {
  color: #b6b6c0;
  font-size: 0.9rem;
  margin-bottom: 14px;
}
.productos .producto-card .producto-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ff6a00;
  border: 1px solid rgba(255, 106, 0, 0.4);
  border-radius: 999px;
  padding: 4px 14px;
}
.productos .producto-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
  border-color: rgba(255, 106, 0, 0.45);
}
.productos .producto-card:hover .producto-media i {
  transform: translateY(-6px) scale(1.06);
  color: #ff6a00;
}
.productos .producto-card:hover .producto-media img {
  transform: translateY(-8px) scale(1.05);
}

.logos-marquee {
  margin-top: 44px;
}

.logos-row {
  overflow: hidden;
  padding: 6px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.logos-track {
  display: flex;
  width: max-content;
  gap: 26px;
  animation: marquee 70s linear infinite;
}

.logos-row:hover .logos-track {
  animation-play-state: paused;
}

.cliente-logo {
  position: relative;
  flex: 0 0 auto;
  width: 168px;
  height: 82px;
  border-radius: 14px;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.cliente-logo img {
  position: absolute;
  inset: 14px 20px;
  width: calc(100% - 40px);
  height: calc(100% - 28px);
  object-fit: contain;
  object-position: center;
  transition: opacity 0.25s ease;
}
.cliente-logo .logo-color {
  opacity: 0;
}
.cliente-logo:hover {
  background: #fff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.5);
}
.cliente-logo:hover .logo-mono {
  opacity: 0;
}
.cliente-logo:hover .logo-color {
  opacity: 1;
}
@media (max-width: 576px) {
  .cliente-logo {
    width: 140px;
    height: 72px;
  }
  .cliente-logo img {
    inset: 12px 16px;
    width: calc(100% - 32px);
    height: calc(100% - 24px);
  }
}

.porque {
  background: linear-gradient(135deg, #ff7a18 0%, #ff3d00 45%, #e10600 100%);
}
.porque .section-head .kicker {
  color: rgba(255, 255, 255, 0.9);
}
.porque .section-head h2 {
  color: #ffffff;
}
.porque .section-head p {
  color: rgba(255, 255, 255, 0.92);
}
.porque .fire-line {
  background: #ffffff;
}
.porque .stats-row .stat,
.porque .feature-card {
  background: rgba(13, 13, 16, 0.85);
  border-color: rgba(0, 0, 0, 0.28);
}
.porque .feature-card:hover {
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
}
.porque .cert-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.porque .cert-logos img {
  height: 44px;
  width: auto;
  opacity: 0.88;
  transition: opacity 0.18s ease;
}
.porque .cert-logos img:first-child {
  height: 52px;
}
.porque .cert-logos:hover img {
  opacity: 1;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.stats-row .stat {
  text-align: center;
  padding: 26px 16px;
  background: #16161b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
}
.stats-row .stat .stat-num {
  font-family: "Oswald", "Roboto", sans-serif;
  font-size: clamp(34px, 5vw, 52px);
  color: #ff6a00;
  line-height: 1;
}
.stats-row .stat .stat-num.stat-text {
  font-size: clamp(24px, 3.4vw, 36px);
  text-transform: uppercase;
}
.stats-row .stat .stat-label {
  color: #b6b6c0;
  font-size: 0.92rem;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.proceso {
  background: #08080a;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.steps .step {
  position: relative;
  text-align: center;
  padding: 0 12px;
}
.steps .step .step-num {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff7a18 0%, #ff3d00 45%, #e10600 100%);
  color: #ffffff;
  font-family: "Oswald", "Roboto", sans-serif;
  font-size: 1.6rem;
  box-shadow: 0 10px 30px rgba(225, 6, 0, 0.35);
}
.steps .step h3 {
  font-size: 1.15rem;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.steps .step p {
  color: #b6b6c0;
  font-size: 0.92rem;
  margin: 0;
}
.steps .step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 32px;
  left: calc(50% + 40px);
  width: calc(100% - 80px);
  height: 2px;
  background: rgba(255, 255, 255, 0.16);
}
@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .steps .step:not(:last-child)::after {
    display: none;
  }
}

.recordatorio {
  background: linear-gradient(135deg, #ff7a18 0%, #ff3d00 45%, #e10600 100%);
  color: #ffffff;
}
.recordatorio .reminder-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.recordatorio h2 {
  font-size: clamp(28px, 4vw, 44px);
  text-transform: uppercase;
  color: #ffffff;
}
.recordatorio p {
  font-size: 1.08rem;
  opacity: 0.95;
  max-width: 520px;
}
.recordatorio .reminder-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  background: rgba(0, 0, 0, 0.25);
  padding: 22px;
  border-radius: 14px;
}
.recordatorio .reminder-form .form-control {
  flex: 1 1 180px;
  height: 52px;
  border-radius: 10px;
  border: 0;
  padding: 0 16px;
  background: #fff;
  color: #131414;
}
.recordatorio .reminder-form .btn {
  height: 52px;
  border: 0;
  border-radius: 10px;
  padding: 0 26px;
  background: #08080a;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: filter 0.15s;
}
.recordatorio .reminder-form .btn:hover {
  filter: brightness(1.3);
}
.recordatorio .reminder-form .form-msg {
  flex-basis: 100%;
  font-weight: 600;
  min-height: 1em;
}
@media (max-width: 992px) {
  .recordatorio .reminder-box {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .recordatorio p {
    margin-inline: auto;
  }
}
@media (max-width: 576px) {
  .recordatorio .reminder-form {
    flex-direction: column;
    padding: 18px;
  }
  .recordatorio .reminder-form .form-control,
  .recordatorio .reminder-form .btn {
    width: 100%;
    flex: none;
  }
}

.clientes {
  background: #0d0d10;
  text-align: center;
  overflow: hidden;
  padding-bottom: clamp(30px, 4vw, 52px);
}

.contacto {
  background: #08080a;
  padding-top: clamp(30px, 4vw, 52px);
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contacto-grid .contacto-info .info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 26px;
}
.contacto-grid .contacto-info .info-item .info-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(225, 6, 0, 0.12);
  color: #ff6a00;
  font-size: 1.3rem;
}
.contacto-grid .contacto-info .info-item h4 {
  font-size: 1.05rem;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contacto-grid .contacto-info .info-item p, .contacto-grid .contacto-info .info-item a {
  color: #b6b6c0;
  margin: 0;
}
.contacto-grid .contacto-info .info-item a:hover {
  color: #ff6a00;
}
.contacto-grid .contacto-info .map-embed {
  margin-top: 10px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.contacto-grid .contacto-info .map-embed iframe {
  width: 100%;
  height: 240px;
  border: 0;
  display: block;
  filter: grayscale(0.4) invert(0.9) hue-rotate(180deg);
}
.contacto-grid .contacto-form {
  background: #16161b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  border-top: 4px solid #e10600;
  padding: 32px 28px;
}
.contacto-grid .contacto-form .form-group {
  margin-bottom: 16px;
}
.contacto-grid .contacto-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contacto-grid .contacto-form .form-control {
  width: 100%;
  height: 52px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #1e1e25;
  color: #ffffff;
  padding: 0 16px;
}
.contacto-grid .contacto-form .form-control::placeholder {
  color: #8a8a94;
}
.contacto-grid .contacto-form .form-control:focus {
  outline: none;
  border-color: #ff6a00;
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.15);
}
.contacto-grid .contacto-form textarea.form-control {
  height: auto;
  min-height: 120px;
  padding-top: 12px;
  resize: vertical;
}
.contacto-grid .contacto-form .btn-fire {
  width: 100%;
}
.contacto-grid .contacto-form .form-msg {
  text-align: center;
  margin-top: 14px;
  font-weight: 600;
  min-height: 1.2em;
}
@media (max-width: 992px) {
  .contacto-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .contacto-grid .contacto-form .form-row {
    grid-template-columns: 1fr;
  }
}

.form-msg.ok {
  color: #34d399;
}

.form-msg.err {
  color: #ff6b6b;
}

.cotizador .cotz-head {
  text-align: center;
  margin-bottom: 18px;
}
.cotizador .cotz-progress {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  margin: 4px 0 8px;
}
.cotizador .cotz-progress span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff7a18 0%, #ff3d00 45%, #e10600 100%);
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.cotizador .cotz-stepinfo {
  color: #b6b6c0;
  font-size: 0.85rem;
  margin: 0;
}
.cotizador .cotz-lbl {
  display: block;
  font-size: 0.85rem;
  color: #b6b6c0;
  margin: 14px 0 8px;
  font-weight: 600;
}
.cotizador .cotz-lbl:first-child {
  margin-top: 0;
}
.cotizador .cotz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.cotizador .cotz-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 14px;
  border-radius: 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  background: #1e1e25;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s, background 0.15s, transform 0.12s;
}
.cotizador .cotz-opt i {
  color: #ff6a00;
  font-size: 1.1rem;
  width: 1.2em;
  text-align: center;
}
.cotizador .cotz-opt:hover {
  border-color: rgba(255, 106, 0, 0.55);
  transform: translateY(-2px);
}
.cotizador .cotz-opt.selected {
  border-color: #ff6a00;
  background: rgba(255, 106, 0, 0.14);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.15);
}
.cotizador .cotz-opt.selected i {
  color: #ffffff;
}
.cotizador .cotz-opt.selected::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: auto;
  padding-left: 8px;
  font-size: 0.85rem;
  color: #ff6a00;
}
.cotizador .cotz-hint {
  text-align: center;
  font-size: 0.8rem;
  color: #8a8a94;
  margin: 0 0 12px;
}
.cotizador .cotz-hint i {
  color: #ff6a00;
  margin-right: 5px;
}
.cotizador .cotz-counter {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cotizador .cotz-counter .form-control {
  text-align: center;
  -moz-appearance: textfield;
}
.cotizador .cotz-counter .form-control::-webkit-outer-spin-button,
.cotizador .cotz-counter .form-control::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.cotizador .cotz-counter .cotz-minus, .cotizador .cotz-counter .cotz-plus {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  background: #1e1e25;
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.cotizador .cotz-counter .cotz-minus:hover, .cotizador .cotz-counter .cotz-plus:hover {
  border-color: #ff6a00;
  background: rgba(255, 106, 0, 0.14);
}
.cotizador .form-control.mb {
  margin-bottom: 12px;
}
.cotizador .cotz-summary {
  margin-top: 6px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  color: #b6b6c0;
  line-height: 1.7;
}
.cotizador .cotz-summary strong {
  color: #ffffff;
  font-family: "Roboto", Arial, sans-serif;
}
.cotizador .cotz-nav {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
}
.cotizador .cotz-nav .cotz-next, .cotizador .cotz-nav .cotz-submit {
  flex: 1;
}
.cotizador .cotz-nav .cotz-back {
  flex: 0 0 auto;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: #b6b6c0;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}
.cotizador .cotz-nav .cotz-back:hover {
  color: #ffffff;
  border-color: #ffffff;
}
.cotizador .cotz-wa {
  text-align: center;
  margin: 12px 0 0;
  font-size: 0.85rem;
  color: #8a8a94;
}
.cotizador .cotz-wa a {
  color: #22c55e;
  font-weight: 700;
}
.cotizador .cotz-wa a:hover {
  color: #16a34a;
}
@media (max-width: 576px) {
  .cotizador .cotz-options {
    grid-template-columns: 1fr;
  }
  .cotizador .cotz-options-2 {
    grid-template-columns: 1fr 1fr;
  }
  .cotizador .cotz-opt {
    padding: 13px 14px;
    font-size: 0.95rem;
  }
  .cotizador .cotz-nav {
    flex-wrap: wrap;
  }
  .cotizador .cotz-summary {
    font-size: 0.86rem;
  }
}

.clases {
  background: #0d0d10;
}
.clases .clases-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
@media (max-width: 1199px) {
  .clases .clases-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
}
@media (max-width: 992px) {
  .clases .clases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .clases .clases-grid {
    grid-template-columns: 1fr;
  }
}
.clases .clase-card {
  position: relative;
  overflow: hidden;
  background: #16161b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 30px 24px 26px;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.clases .clase-card .clase-letter {
  position: absolute;
  top: -18px;
  right: 6px;
  font-family: "Oswald", "Roboto", sans-serif;
  font-size: 7rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, #ff7a18 0%, #ff3d00 45%, #e10600 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.18;
  pointer-events: none;
}
.clases .clase-card .clase-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(225, 6, 0, 0.12);
  color: #ff6a00;
  font-size: 1.7rem;
}
.clases .clase-card h3 {
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.clases .clase-card p {
  color: #b6b6c0;
  font-size: 0.9rem;
  margin-bottom: 16px;
  min-height: 40px;
}
.clases .clase-card .clase-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #ffffff;
  background: rgba(255, 106, 0, 0.16);
  border: 1px solid rgba(255, 106, 0, 0.4);
  border-radius: 999px;
  padding: 5px 14px;
}
.clases .clase-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 106, 0, 0.45);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
}
.clases .clase-card:hover .clase-letter {
  opacity: 0.3;
}
.clases .clases-note {
  text-align: center;
  margin: 36px 0 0;
  color: #b6b6c0;
}
.clases .clases-note i {
  color: #ff6a00;
  margin-right: 6px;
}

.mobile-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1050;
  background: rgba(8, 8, 10, 0.98);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.5);
}
.mobile-bar .mb-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 9px 4px;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.mobile-bar .mb-btn i {
  font-size: 1.25rem;
}
.mobile-bar .mb-call i {
  color: #ff6a00;
}
.mobile-bar .mb-wa i {
  color: #25d366;
}
.mobile-bar .mb-quote {
  background: linear-gradient(135deg, #ff7a18 0%, #ff3d00 45%, #e10600 100%);
}
.mobile-bar .mb-quote i, .mobile-bar .mb-quote span {
  color: #ffffff;
}
@media (max-width: 768px) {
  .mobile-bar {
    display: flex;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 64px;
  }
}
.footer {
  background: #08080a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 64px 0 0;
  color: #b6b6c0;
}
.footer .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer .footer-brand img {
  height: 96px;
  margin-bottom: 16px;
}
.footer .footer-brand p {
  font-size: 0.92rem;
  max-width: 280px;
}
.footer .footer-brand .footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.footer .footer-brand .footer-social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #1e1e25;
  color: #ffffff;
  transition: background 0.18s, transform 0.18s;
}
.footer .footer-brand .footer-social a:hover {
  background: linear-gradient(135deg, #ff7a18 0%, #ff3d00 45%, #e10600 100%);
  transform: translateY(-3px);
}
.footer h4 {
  font-size: 1.05rem;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 18px;
}
.footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-links li {
  margin-bottom: 10px;
}
.footer .footer-links a {
  font-size: 0.92rem;
  transition: color 0.15s;
}
.footer .footer-links a:hover {
  color: #ff6a00;
}
.footer .footer-contact .fc-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.92rem;
}
.footer .footer-contact i {
  color: #ff6a00;
  margin-top: 3px;
}
.footer .footer-contact a:hover {
  color: #ff6a00;
}
.footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 16px;
  text-align: center;
  font-size: 0.85rem;
  color: #8a8a94;
}
@media (max-width: 992px) {
  .footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .footer .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  .footer .footer-brand img {
    height: 76px;
    margin-inline: auto;
  }
  .footer .footer-brand p {
    margin-inline: auto;
  }
  .footer .footer-social {
    justify-content: center;
  }
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1040;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 1.9rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  animation: wa-pulse 2.4s infinite;
  transition: transform 0.18s ease;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  color: #fff;
}

@keyframes wa-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
.to-top {
  position: fixed;
  right: 24px;
  bottom: 92px;
  z-index: 1040;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #1e1e25;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, background 0.18s;
}
.to-top.show {
  opacity: 1;
  visibility: visible;
}
.to-top:hover {
  background: linear-gradient(135deg, #ff7a18 0%, #ff3d00 45%, #e10600 100%);
}

@media (max-width: 768px) {
  .whatsapp-float {
    display: none;
  }
  .to-top {
    bottom: 78px;
    right: 16px;
  }
}
