:root {
  --hoc-dark: #020910;
  --hoc-dark-2: #06131d;
  --hoc-blue: #071b29;
  --hoc-blue-soft: #0b2638;
  --hoc-orange: #ff7a00;
  --hoc-orange-2: #ff9b19;
  --hoc-white: #f5f7fa;
  --hoc-muted: rgba(245, 247, 250, 0.72);
  --hoc-border: rgba(255, 122, 0, 0.42);
  --hoc-glow: rgba(255, 122, 0, 0.48);
  --max-width: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #03101a;
  color: var(--hoc-white);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ============================= */
/* NAVBAR */
/* ============================= */

.hoc-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 50;
  padding: 0px 0px 0;
  transition: padding 0.35s ease, background 0.35s ease, backdrop-filter 0.35s ease;
}

.hoc-navbar.is-scrolled {
  background:
    radial-gradient(circle at top, rgba(255, 122, 0, 0.12), transparent 34%),
    rgba(2, 10, 16, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.26);
}

.hoc-nav-shell {
  position: relative;
  height: 94px;
  overflow: hidden;
  margin: 0 auto;
  padding: 0 22px;
  padding-top: 1rem;

  display: grid;
  grid-template-columns: 260px 1fr 260px;
  align-items: start;
  gap: 18px;
}

/* Línea angular tipo HOC */
.hoc-nav-shell::before {
  content: "";
  position: absolute;
  
    left:0;
    right:0;
    top:0;
    bottom:0px;
  z-index: -1;

  border: 1px solid rgba(255, 122, 0, 0.20);
  border-left: none;
  border-right: none;
  border-top: 0;

  background:
    linear-gradient(90deg,
      rgba(2, 18, 39, 0.18) 0%,
      rgba(255, 122, 0, 0.08) 22%,
      rgba(255, 122, 0, 0.03) 50%,
      rgba(255, 122, 0, 0.08) 78%,
      rgba(2, 18, 39, 0.18) 100%
    );

  
  clip-path: polygon(
    0 0,
    100% 0,

    100% 100%,
    82% 100%,

    79.5% calc(100% - 14px),

    20.5% calc(100% - 14px),

    18% 100%,

    0 100%
);

  opacity: 0.95;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.hoc-nav-shell::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: 13px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 8%,
    rgba(255, 122, 0, 0.65),
    rgb(255, 144, 41),
    rgba(255, 122, 0, 0.65),
    transparent 92%
  );
  opacity: 0.85;
}

.hoc-navbar.is-scrolled .hoc-nav-shell::before {
  background:
    linear-gradient(90deg,
      rgb(2, 10, 15),
      rgba(6, 22, 34, 0.86),
      rgb(2, 10, 15)
    );
  border-color: rgba(255, 122, 0, 0.28);
  box-shadow:
    0 0 0 1px rgba(255, 122, 0, 0.06),
    0 18px 60px rgba(0, 0, 0, 0.28);
}

.hoc-logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.hoc-logo img {
  display: block;
  width: clamp(150px, 1vw, 205px);
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.45));
}

.hoc-nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 46px);
}

.hoc-nav-links a {
   position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    gap: 6px;
  font-size: 0.96rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.76);
  letter-spacing: 0.01em;
  padding: 14px 0;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}
.hoc-nav-links a iconify-icon{
    font-size:1rem;
    color:inherit;
    flex-shrink:0;
    display:block;
}

.hoc-nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 0;
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--hoc-orange), transparent);
  box-shadow: 0 0 18px var(--hoc-glow);
  transition: width 0.25s ease;
}

.hoc-nav-links a:hover,
.hoc-nav-links a.active {
  color: var(--hoc-orange-2);
  text-shadow: 0 0 16px rgba(255, 122, 0, 0.32);
}

.hoc-nav-links a:hover::after,
.hoc-nav-links a.active::after {
  width: 120%;
}

.hoc-nav-cta {
  justify-self: end;
  min-height: 54px;
  padding: 0 24px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  font-weight: 800;
  color: var(--hoc-white);

  border: 1px solid rgba(255, 122, 0, 0.78);
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  background:
    linear-gradient(180deg, rgba(255, 122, 0, 0.10), rgba(255, 122, 0, 0.02)),
    rgba(4, 14, 22, 0.42);

  clip-path: polygon(
    10px 0,
    100% 0,
    100% calc(100% - 10px),
    calc(100% - 10px) 100%,
    0 100%,
    0 10px
  );

  box-shadow:
    inset 0 0 18px rgba(255, 122, 0, 0.08),
    0 0 22px rgba(255, 122, 0, 0.20);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.nav-cta-active{
    background:
    linear-gradient(180deg, rgba(255, 123, 0, 0.856), rgba(151, 74, 2, 0.829)),
    rgba(4, 14, 22, 0.897);
}

.nav-cta-active span{
    color: white !important;
}
.hoc-nav-cta span {
  font-size: 1.7rem;
  line-height: 1;
  color: var(--hoc-orange);
}

.hoc-nav-cta:hover {
  transform: translateY(-2px);
  background:
    linear-gradient(180deg, rgba(255, 122, 0, 0.22), rgba(255, 122, 0, 0.04)),
    rgba(4, 14, 22, 0.58);
  box-shadow:
    inset 0 0 24px rgba(255, 122, 0, 0.13),
    0 0 34px rgba(255, 122, 0, 0.34);
}

.hoc-menu-btn {
  display: none;
  justify-self: end;
  width: 48px;
  height: 44px;
  border: 1px solid rgba(255, 122, 0, 0.38);
  background: rgba(3, 12, 20, 0.46);
  cursor: pointer;
  padding: 0 12px;
  border-radius: 2px;
}

.hoc-menu-btn span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--hoc-orange);
  box-shadow: 0 0 12px rgba(255, 122, 0, 0.42);
}

/* Mobile menu */
.hoc-mobile-menu {
  display: none;
  z-index: 60;
}

/*====================================================
BACKDROP MENÚ MÓVIL
====================================================*/

.hoc-menu-backdrop{

    position:fixed;

    inset:0;

    z-index:40;

    opacity:0;

    visibility:hidden;

    transition:
        opacity .35s ease,
        visibility .35s ease,
        backdrop-filter .35s ease;

    backdrop-filter:blur(0px);

    -webkit-backdrop-filter:blur(0px);

    background:rgba(0,0,0,0);

}

/* cuando el menú está abierto */

.hoc-menu-backdrop.active{

    opacity:1;

    visibility:visible;

    backdrop-filter:blur(16px);

    -webkit-backdrop-filter:blur(16px);

    background:
        radial-gradient(
            circle at top,
            rgba(255,122,0,.12),
            transparent 45%
        ),
        rgba(2,8,14,.50);

}

/* ============================= */
/* HERO */
/* ============================= */

.hoc-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: left;

  padding: 150px 24px 100px;
  background: var(--hoc-dark);
}

.hoc-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("images/hero-bg5.webp");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hoc-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(2, 9, 16, 0.048) 0%, rgba(2, 9, 16, 0) 42%, rgba(2, 9, 16, 0.048) 100%),
    linear-gradient(90deg, rgb(1, 11, 19), rgba(2, 9, 16, 0.486), rgba(2, 9, 16, 0));
}

/* Textura técnica muy sutil */
.hoc-hero-tech {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.34;

  background-image:
    linear-gradient(rgba(255, 122, 0, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 122, 0, 0.10) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(circle at center, transparent 0%, black 68%, black 100%);
}

.hoc-hero-content {
  position: relative;
  z-index: 5;
  width: min(100%, 980px);
  text-align: left;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 3rem;

  animation: hocFadeUp 0.9s ease both;
}

.hoc-badge {
  position: relative;
  margin-bottom: 26px;
  padding: 12px 34px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  font-size: clamp(0.78rem, 0.8vw, 0.92rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hoc-orange-2);

  border: 1px solid rgba(255, 122, 0, 0.58);
  background:
    linear-gradient(180deg, rgba(255, 122, 0, 0.08), rgba(255, 122, 0, 0.02)),
    rgba(3, 13, 21, 0.50);

  clip-path: polygon(
    18px 0,
    calc(100% - 18px) 0,
    100% 50%,
    calc(100% - 18px) 100%,
    18px 100%,
    0 50%
  );

  box-shadow:
    inset 0 0 18px rgba(255, 122, 0, 0.08),
    0 0 28px rgba(255, 122, 0, 0.16);
}

.hoc-badge::before,
.hoc-badge::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hoc-orange));
}

.hoc-badge::before {
  right: 100%;
}

.hoc-badge::after {
  left: 100%;
  transform: rotate(180deg);
}

.hoc-badge span {
  width: 9px;
  height: 9px;
  background: var(--hoc-orange);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  box-shadow: 0 0 16px rgba(255, 122, 0, 0.8);
}

.hoc-hero h1 {
  margin: 0;
  max-width: 950px;

  font-family: "Barlow Condensed", "Inter", sans-serif;
  font-size: clamp(3.6rem, 5vw, 9rem);
  line-height: 0.88;
  font-weight: 800;
  letter-spacing: 0.015em;
  text-transform: uppercase;

  color: #fcfdfd;
  text-shadow:
    0 4px 0 rgba(0, 0, 0, 0.20),
    0 20px 50px rgba(0, 0, 0, 0.52);
}

.hoc-hero h1 strong {
  display: block;
  margin-top: 8px;

  font-style: normal;
  color: var(--hoc-orange);
  text-shadow:
    0 0 18px rgba(255, 122, 0, 0.28),
    0 8px 0 rgba(0, 0, 0, 0.20),
    0 22px 54px rgba(0, 0, 0, 0.56);
}

.hoc-hero p {
  
  max-width: 460px;

  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.8;
  color: #f7f7f7;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.56);
}

.hoc-hero-actions {
  margin-top: 42px;
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.hoc-btn {
  min-width: 230px;
  min-height: 62px;
  padding: 0 30px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;

  clip-path: polygon(
    12px 0,
    100% 0,
    100% calc(100% - 12px),
    calc(100% - 12px) 100%,
    0 100%,
    0 12px
  );

  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.hoc-btn span {
  font-size: 1.8rem;
  line-height: 1;
}

.hoc-btn-primary {
  color: #fff;
  border: 1px solid rgba(255, 177, 70, 0.9);
  background:
    linear-gradient(180deg, rgba(255, 123, 0, 0.92), rgba(219, 95, 0, 0.92));
  box-shadow:
    inset 0 0 20px rgba(255, 255, 255, 0.16),
    0 0 34px rgba(255, 122, 0, 0.42),
    0 20px 50px rgba(0, 0, 0, 0.42);
}

.hoc-btn-secondary {
  color: #fff;
  border: 1px solid rgba(255, 122, 0, 0.58);
  background:
    linear-gradient(180deg, rgba(255, 122, 0, 0.08), rgba(255, 122, 0, 0.02)),
    rgba(3, 13, 21, 0.48);
  box-shadow:
    inset 0 0 18px rgba(255, 122, 0, 0.06),
    0 18px 48px rgba(0, 0, 0, 0.38);
}

.hoc-btn-primary:hover,
.hoc-btn-secondary:hover {
  transform: translateY(-3px);
}

.hoc-btn-primary:hover {
  box-shadow:
    inset 0 0 24px rgba(255, 255, 255, 0.18),
    0 0 42px rgba(255, 122, 0, 0.56),
    0 24px 60px rgba(0, 0, 0, 0.48);
}

.hoc-btn-secondary:hover {
  background:
    linear-gradient(180deg, rgba(255, 122, 0, 0.16), rgba(255, 122, 0, 0.04)),
    rgba(3, 13, 21, 0.62);
  box-shadow:
    inset 0 0 22px rgba(255, 122, 0, 0.10),
    0 0 30px rgba(255, 122, 0, 0.20),
    0 20px 54px rgba(0, 0, 0, 0.44);
}

.hoc-hero-bottom-glow {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 34%;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center bottom, rgba(255, 123, 0, 0), transparent 42%),
    linear-gradient(180deg, transparent, #03101a 84%, #03101a 100%);
}

/* ============================= */
/* TEST SECTION */
/* ============================= */

.hoc-test-section {
  position: relative;
  padding: 110px 24px;
  background:
    radial-gradient(circle at top, rgba(255, 122, 0, 0.10), transparent 34%),
    linear-gradient(180deg, #03101a, #061928 55%, #030b12);
}

.hoc-test-section::after{
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--hoc-orange),
    transparent
  );
  box-shadow: var(--hoc-glow) 0 0 28px;
}

.hoc-test-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.hoc-section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--hoc-orange-2);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
}

.hoc-test-inner h2 {
  margin: 0;
  font-family: "Barlow Condensed", "Inter", sans-serif;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.hoc-test-inner p {
  max-width: 680px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.70);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 1100px) {
  .hoc-nav-shell {
    grid-template-columns: 210px 1fr 225px;
  }

  .hoc-nav-links {
    gap: 24px;
  }

  .hoc-nav-links a {
    font-size: 0.9rem;
  }

  .hoc-nav-cta {
    padding: 0 18px;
    font-size: 0.9rem;
  }
}

@media (max-width: 920px) {
  .hoc-navbar {
    padding: 0px;
    height: 80px;
  }

  .hoc-nav-shell {
    min-height: 70px;
    grid-template-columns: 1fr auto;
    padding: 0 16px;
    align-items:center;
  }

  .hoc-logo img {
    width: 152px;
  }

  .hoc-nav-links,
  .hoc-nav-cta {
    display: none;
  }

  .hoc-menu-btn {
    display: block;
  }

  .hoc-mobile-menu {
    max-width: var(--max-width);
    margin: 10px auto 0;
    padding: 18px;

    display: grid;
    gap: 12px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;

    background:
      radial-gradient(circle at top right, rgba(255, 122, 0, 0.13), transparent 40%),
      rgba(3, 14, 22, 0.92);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 122, 0, 0.22);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);

    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  }

  .hoc-mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .hoc-mobile-menu a {
    padding: 13px 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.025);
  }

  .hoc-mobile-menu a.active {
    color: var(--hoc-orange-2);
  }

  .hoc-mobile-cta {
    color: #fff !important;
    background: linear-gradient(180deg, rgba(255, 150, 26, 0.95), rgba(255, 105, 0, 0.95)) !important;
    border-color: rgba(255, 177, 70, 0.75) !important;
    text-align: center;
  }

  .hoc-hero {
    padding-top: 138px;
  }

  .hoc-badge::before,
  .hoc-badge::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .hoc-hero {
    min-height: 100svh;
    padding: 130px 18px 82px;
  }

  .hoc-hero-bg {
    background-position: center;
  }

  .hoc-hero-overlay {
    background:
      radial-gradient(circle at 50% 38%, rgba(255, 122, 0, 0.10), transparent 34%),
      linear-gradient(180deg, rgba(2, 9, 16, 0.48) 0%, rgba(2, 9, 16, 0.36) 42%, rgba(2, 9, 16, 0.96) 100%),
      linear-gradient(90deg, rgba(2, 9, 16, 0.78), rgba(2, 9, 16, 0.28), rgba(2, 9, 16, 0.78));
  }

  .hoc-badge {
    width: min(100%, 360px);
    padding: 11px 22px;
    letter-spacing: 0.10em;
  }

  .hoc-hero h1 {
    font-size: clamp(3.25rem, 17vw, 3rem);
  }

  .hoc-hero p {
    margin-top: 24px;
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .hoc-hero-actions {
    width: 100%;
    margin-top: 34px;
    gap: 14px;
  }

  .hoc-btn {
    width: 100%;
    min-width: unset;
    min-height: 58px;
  }

  .hoc-test-section {
    padding: 82px 18px;
  }
}

@media (max-width: 420px) {
  

  .hoc-nav-shell {
    min-height: 64px;
  }
  .hoc-logo{
    margin-bottom:0.5rem;
  }

  .hoc-logo img {
    width: 102px;
  }

  .hoc-hero {
    padding-top: 120px;
  }

  .hoc-badge {
    font-size: 0.68rem;
  }
}

/* ============================= */
/* ANIMATION */
/* ============================= */

@keyframes hocFadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.brands-section{
  position: relative;
  background: #03101a;
  padding: 4rem 0 4rem;
  overflow: hidden;
  margin-top:4rem;
}

.brands-section::after{
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--hoc-orange),
    transparent
  );
  box-shadow: var(--hoc-glow) 0 0 28px;
}

/* HEADER */

.brands-header{
  text-align: center;
  margin-bottom: 3.5rem;
  padding: 0 2rem;
}

.brands-top-title{
  display: block;

  color: #0066ff;

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.brands-header h2{
  font-size: clamp(30px, 4vw, 42px);

  font-weight: 800;
  font-family: var(--font-display);
  color: #07182d;

  margin-bottom: 1.2rem;
}

.brands-line{
  width: 70px;
  height: 3px;

  background: #0066ff;

  margin: 0 auto;

  border-radius: 50px;
}

/* SLIDER */

.brands-slider-hero {
  position: absolute;
  bottom: 1.3rem;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 10px 0;
  overflow: hidden;
}

.brands-track-hero {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: brandsScroll 68s linear infinite;
}

.brands-track-hero img {
  width: 90px;
  height: auto;
  object-fit: contain;
  opacity: 0.5;
  filter: brightness(0) invert(1); /* blanco para que se vea sobre el hero oscuro */
  transition: opacity .3s ease, transform .3s ease;
}

.brands-track-hero img:hover {
  opacity: 1;
  transform: scale(1.05);
}

.brands-fade-hero-left {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 100px; /* altura aprox del slider */
  background: linear-gradient(to right, #03101a 0%, transparent 100%);
  z-index: 5;
  pointer-events: none;
}

.brands-fade-hero-right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(to left, #03101a 0%, transparent 100%);
  z-index: 5;
  pointer-events: none;
}

/* FADE LATERAL */



/* ANIMACIÓN */

@keyframes brandsScroll{

  from{
    transform: translateX(0);
  }

  to{
    transform: translateX(-50%);
  }

}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:768px){

  .brands-section{
    padding: 4rem 0;
  }

  .brands-header{
    margin-bottom: 2.5rem;
  }

  .brands-header h2{
    font-size: 32px;
  }

  .brands-track{
    gap: 3rem;
    animation-duration: 68s;
  }

  .brands-track img{
    width: 95px;
  }

  .brands-fade{
    width: 60px;
  }

}

.about-section{

    position:relative;

    
    background:#04111b;

    padding:100px 0;

    overflow:hidden;

}

/*.about-section::after{
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--hoc-orange),
    transparent
  );
  box-shadow: var(--hoc-glow) 0 0 28px;
}*/

.about-grid{

    max-width:1400px;
    margin:auto;

    display:grid;

    grid-template-columns: minmax(420px, 520px) minmax(520px, 1fr);

    gap:110px;

    align-items:center;

    position:relative;

    z-index:5;

}


/*=========================
Imagen
=========================*/

.image-frame{

    position:relative;

    width:450px;
    height: 600px;
    padding:14px;

    border:1px solid rgba(255,130,0,.35);

    background:#08151f;

    clip-path:polygon(
    30px 0,
    calc(100% - 30px) 0,
    100% 30px,
    100% calc(100% - 30px),
    calc(100% - 30px) 100%,
    30px 100%,
    0 calc(100% - 30px),
    0 30px);

    box-shadow:

    0 0 60px rgba(255,120,0,.08),

    inset 0 0 30px rgba(255,120,0,.05);

}


.image-frame::before{

    content:"";

    position:absolute;

    inset:8px;

    border:1px solid rgba(255,140,0,.22);

    clip-path:inherit;

}


.image-frame img{

    width:100%;
    height: 100%;

    display:block;
    object-fit: cover;
    object-position: 100% 10% ;

    clip-path:inherit;

}



/*=========================
Texto
=========================*/

.section-tag{

    color:#ff8b17;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    display:flex;

    gap:10px;

    align-items:center;

    margin-bottom:25px;

}
.about-image{
  padding: 3rem;
  margin-left: 2rem;
}

.about-content h2{

    font-size:50px;

    line-height:1;

    color:white;

    margin-bottom:35px;

    font-family:"Barlow Condensed";

    text-transform:uppercase;

}

.about-content h2 span{

    display:block;

    color:#ff8200;

}


.about-content p{

    color:#b9c4cf;

    line-height:1.9;

    font-size:16px;

    margin-bottom:18px;

    max-width:700px;

}


/*=========================
Inferior
=========================*/

.about-bottom{

    display:flex;

    align-items:center;

    gap:45px;

    margin-top:45px;

    flex-wrap:wrap;

}


.btn-about{

    height:64px;

    padding:0 42px;

    display:flex;

    align-items:center;

    gap:18px;

    color:white;

    font-weight:700;

    text-decoration:none;

    border:1px solid #ff8200;

    background:linear-gradient(180deg,#ff8f22,#f86f00);

    clip-path:polygon(
    15px 0,
    100% 0,
    100% calc(100% - 15px),
    calc(100% - 15px) 100%,
    0 100%,
    0 15px);

    transition:.35s;

}

.btn-about:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 40px rgba(255,120,0,.35);

}


.about-features{

    display:flex;

    gap:14px;

    flex-wrap:wrap;

}


.feature{

    display:flex;

    align-items:center;

    gap:10px;

    padding:13px 18px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,130,0,.18);

    border-radius:60px;

    backdrop-filter:blur(12px);

    transition:.35s;

}


.feature:hover{

    border-color:#ff8200;

    background:rgba(255,130,0,.08);

    transform:translateY(-4px);

}


.feature i{

    color:#ff8200;

    font-size:18px;

}

.feature span{

    color:white;

    font-weight:600;

    font-size:15px;

}


/*=========================
Glow
=========================*/

.about-glow{

    position:absolute;

    right:-220px;

    top:10%;

    width:700px;

    height:700px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(255,120,0,.18),
    transparent 70%);

    filter:blur(70px);

}


.about-lines{

    position:absolute;

    right:-120px;

    top:20px;

    width:620px;

    height:620px;

    opacity:.12;

    background-image:

    linear-gradient(#ff8200 1px,transparent 1px),

    linear-gradient(90deg,#ff8200 1px,transparent 1px);

    background-size:45px 45px;

    transform:rotate(18deg);

    mask-image:radial-gradient(circle,black 40%,transparent 90%);

}

.about-content{

    width:100%;

    max-width:760px;

}

@media (max-width:1200px){

.about-grid{

    grid-template-columns:430px 1fr;

    gap:70px;

}

.about-content h2{

    font-size:44px;

}

.about-content p{

    font-size:15px;

}

}

@media (max-width:992px){

.hoc-hero-content{
  margin: 0 auto;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.about-section{

    padding:90px 0;

}

.about-grid{

    grid-template-columns:1fr;

    gap:55px;

    max-width:700px;

}

.about-image{

    display:flex;
    justify-content:center;

}

.image-frame{

    width:100%;
    max-width:500px;

}

.about-content{

    max-width:100%;
    text-align:center;

}

.section-tag{

    justify-content:center;

}

.about-content h2{

    font-size:42px;

}

.about-content p{

    margin:auto;
    margin-bottom:18px;

}

.about-bottom{

    justify-content:center;

}

.about-features{

    justify-content:center;

}

}

@media (max-width:576px){

.about-section{

    padding:70px 20px;

}

.about-content h2{

    font-size:34px;

}

.about-content p{

    font-size:15px;
    line-height:1.8;

}

.about-bottom{

    flex-direction:column;

    gap:30px;

}

.btn-about{

    width:100%;

    justify-content:center;

}

.about-features{

    width:100%;

    justify-content:center;

    gap:10px;

}

.feature{

    width:calc(50% - 6px);

    justify-content:center;

    padding:14px 12px;

}

.feature span{

    font-size:14px;

}

.about-glow{

    width:420px;
    height:420px;

    right:-180px;

}

.about-lines{

    width:380px;
    height:380px;

    right:-120px;

}

.about-image{
    margin-left: 0;
    padding: 0;
}

}

.container{
    width:min(92%,1400px);
    margin:0 auto;
}

.catalog-section{
    position:relative;
    padding:130px 0;
    background: linear-gradient(to bottom, #04111b 0%, #06131d 30%, #010305 90%);
    overflow:hidden;
}

.catalog-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:90px;
    position:relative;
    z-index:5;
}

.catalog-content{
    max-width:620px;
    margin-left: 3rem;
}

.catalog-content h2{
    margin:25px 0;
    font-family:"Barlow Condensed";
    font-size:54px;
    line-height:1;
    text-transform:uppercase;
    color:#fff;
}

.catalog-content h2 span{
    display:block;
    color:#ff8200;
}

.catalog-content p{
    color:#bcc8d4;
    line-height:1.9;
    font-size:16px;
    margin-bottom:18px;
}

.catalog-btn{
    margin-top:22px;
    width:max-content;
    height:64px;
    padding:0 34px;
    display:flex;
    align-items:center;
    gap:18px;
    text-decoration:none;
    color:#fff;
    font-weight:700;
    background:linear-gradient(180deg,#ff8f22,#f26b00);
    border:1px solid rgba(255,170,90,.6);
    clip-path:polygon(
    14px 0,
    100% 0,
    100% calc(100% - 14px),
    calc(100% - 14px) 100%,
    0 100%,
    0 14px);
    transition:.35s;
    box-shadow:0 0 35px rgba(255,120,0,.25);
}

.catalog-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 45px rgba(255,120,0,.35);
}

.catalog-btn i{
    font-size:18px;
}

.catalog-image{
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
}

.catalog-image a{
    display:block;
}

.catalog-image img{
    width:100%;
    max-width:410px;
    transition:.45s;
    filter:drop-shadow(0 30px 50px rgba(0,0,0,.45));
    border-radius: 20px;
}

.catalog-image:hover img{
    transform:
        translateY(-10px)
        rotate(-2deg)
        scale(1.03);
}

.catalog-glow{
    position:absolute;
    right:8%;
    top:50%;
    width:520px;
    height:520px;
    transform:translateY(-50%);
    border-radius:50%;
    background:radial-gradient(circle,
    rgba(255, 123, 0, 0.719),
    transparent 72%);
    filter:blur(80px);
    pointer-events:none;
}

.catalog-lines{
    position:absolute;
    right:0;
    top:0;
    width:520px;
    height:100%;
    opacity:.2;
    background-image:
    linear-gradient(#ff8200 1px,transparent 1px),
    linear-gradient(90deg,#ff8200 1px,transparent 1px);
    background-size:55px 55px;
    mask-image:
    radial-gradient(circle,
    black 30%,
    transparent 95%);
}

@media (max-width:1200px){

.catalog-grid{
    gap:60px;
}

.catalog-content h2{
    font-size:46px;
}

.catalog-image img{
    max-width:360px;
}

}

@media (max-width:992px){

.catalog-section{
    padding:90px 0;
}

.catalog-grid{
    grid-template-columns:1fr;
    gap:60px;
}

.catalog-content{
    max-width:100%;
    text-align:center;
    margin-left: 0;
}

.catalog-content .section-tag{
    justify-content:center;
}

.catalog-btn{
    margin:30px auto 0;
}

.catalog-image{
    order:-1;
}

.catalog-image img{
    max-width:360px;
}

.catalog-glow{
    right:50%;
    transform:translate(50%,-50%);
}

}

@media (max-width:576px){

.catalog-section{
    padding:70px 0;
}

.catalog-content h2{
    font-size:34px;
}

.catalog-content p{
    font-size:15px;
}

.catalog-image img{
    max-width:270px;
}

.catalog-btn{
    width:100%;
    justify-content:center;
}

}

.services-section{
    position:relative;
    padding:140px 0;
    background:#04111b;
    overflow:hidden;
    isolation:isolate;
}

.services-section::after{
    content:"";
    position:absolute;
    left:10%;
    right:10%;
    top:0;
    height:1px;
    background:linear-gradient(
        90deg,
        transparent,
        var(--hoc-orange),
        transparent
    );
    box-shadow:var(--hoc-glow) 0 0 28px;
}

.services-parallax{
    position:absolute;
    inset:0;
    background:url(images/parallax.png) center/cover fixed;
    opacity:0.2;
    z-index:-1;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title h2{
    margin-top:22px;
    font-family:"Barlow Condensed";
    font-size:58px;
    text-transform:uppercase;
    color:#fff;
    line-height:.95;
}

.section-title h2 span{
    display:block;
    color:var(--hoc-orange);
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:32px;
}

.service-card{

    position:relative;

    height:560px;

    overflow:hidden;

    clip-path:polygon(
        28px 0,
        calc(100% - 28px) 0,
        100% 28px,
        100% calc(100% - 28px),
        calc(100% - 28px) 100%,
        28px 100%,
        0 calc(100% - 28px),
        0 28px
    );

    background:linear-gradient(

135deg,

#ff7a00,

#ffb347,

#ff7a00

);
transition: all 0.3s ease-in-out;

}

.service-card::before{

    content:"";

    position:absolute;

    inset:1px;

    background:#04111b;

    clip-path:inherit;

    z-index:1;
    transition: all 0.3s ease-in-out;

}

.service-card img{

    position:absolute;

    inset:1px;

    width:calc(100% - 2px);

    height:calc(100% - 2px);

    object-fit:cover;

    clip-path:inherit;

    filter:brightness(.4);

    z-index:2;
    transition: all 0.3s ease-in-out;

}

.service-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        180deg,
        rgba(4,17,27,.05),
        rgba(4,17,27,.15) 45%,
        rgba(4,17,27,.96) 100%
    );
    z-index: 3;
}

.service-content{
    position:absolute;
    left:40px;
    right:40px;
    bottom:40px;
    z-index:5;
}


.service-icon{

    position:relative;

    width:78px;
    height:78px;
    margin-bottom:28px;

    display:grid;
    place-items:center;

    clip-path:polygon(
        25% 6%,
        75% 6%,
        100% 50%,
        75% 94%,
        25% 94%,
        0 50%
    );

    background:#ff84009a;
    transition: 0.3s ease-in-out;

}

.service-icon::before{

    content:"";

    position:absolute;

    inset:1.5px;

    background:#030b11;

    clip-path:inherit;
    transition: 0.3s ease-in-out;

}
.service-icon i{
  position:relative;
    z-index:2;
    color:var(--hoc-orange);
    font-size:30px;
}

.service-content h3{
    margin:0 0 16px;
    color:#fff;
    font-size:34px;
    font-family:"Barlow Condensed";
    text-transform:uppercase;
}

.service-content p{
    color:#c2ccd5;
    line-height:1.8;
    font-size:15px;
    margin-bottom:24px;
}

.service-content span{
    color:var(--hoc-orange);
    font-weight:700;
    display:flex;
    align-items:center;
    gap:12px;
}

.service-card:hover{
    transform:translateY(-10px);
    border-color:rgba(255,130,0,.55);
    box-shadow:0 30px 70px rgba(0,0,0,.45);
}

.service-card:hover img{
    transform:scale(1.08);
    filter:brightness(1);
}

.service-card:hover .service-icon{
    background:#ff8400;
    box-shadow:0 0 28px rgba(255,130,0,.35);
}
.service-card:hover .service-icon::before{
    background:#041324;
}

@media (max-width:1200px){

.services-grid{
    gap:24px;
}

.service-card{
    height:500px;
}

.service-content{
    left:28px;
    right:28px;
    bottom:30px;
}

.section-title h2{
    font-size:50px;
}

}

@media (max-width:992px){

.services-section{
    padding:100px 0;
}

.services-grid{
    grid-template-columns:1fr;
    max-width:700px;
    margin:auto;
    gap:28px;
}

.service-card{
    height:460px;
}

.section-title h2{
    font-size:42px;
}

}

@media (max-width:576px){

.services-section{
    padding:80px 0;
}

.section-title{
    margin-bottom:50px;
}

.section-title h2{
    font-size:34px;
}

.service-card{
    height:390px;
}

.service-icon{
    width:62px;
    height:62px;
}

.service-icon i{
    font-size:24px;
}

.service-content{
    left:22px;
    right:22px;
    bottom:24px;
}

.service-content h3{
    font-size:28px;
}

.service-content p{
    font-size:14px;
    line-height:1.7;
}

}

.stats-section{
    position:relative;
    padding:130px 0;
    background: linear-gradient(to bottom, #000 0%, #05131d 100%);
    overflow:hidden;
}

.stats-section::after{
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--hoc-orange),
    transparent
  );
  box-shadow: var(--hoc-glow) 0 0 28px;
}

.stats-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:90px;
    position:relative;
    z-index:2;
}

.stats-image{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.stats-image-bg{
    position:absolute;
    width:520px;
    height:520px;
    border-radius:50%;
    background:
    radial-gradient(circle,
    rgba(255,130,0,.20),
    transparent 70%);
    filter:blur(70px);
}

.stats-image img{
    position:relative;
    width:100%;
    max-width:620px;
    z-index:2;
    filter:drop-shadow(0 35px 45px rgba(0,0,0,.45));
}

.stats-content{
    max-width:640px;
}

.stats-content h2{
    margin:25px 0;
    color:#fff;
    font-family:"Barlow Condensed";
    font-size:56px;
    line-height:1;
    text-transform:uppercase;
}

.stats-content h2 span{
    display:block;
    color:var(--hoc-orange);
}

.stats-content p{
    color:#bcc7d1;
    line-height:1.9;
    margin-bottom:45px;
}

.stats-items{
    display:flex;
    align-items:center;
    gap:30px;
    flex-wrap:wrap;
}

.stat-item{
    display:flex;
    align-items:center;
    gap:18px;
    flex:1;
    min-width:170px;
}

.stat-icon{
    width:62px;
    height:62px;
    border-radius:18px;
    display:grid;
    place-items:center;
    background:rgba(255,130,0,.08);
    border:1px solid rgba(255,130,0,.25);
    color:var(--hoc-orange);
    font-size:24px;
}

.stat-item h3{
    margin:0;
    color:#fff;
    font-size:42px;
    font-family:"Barlow Condensed";
    line-height:1;
}

.stat-item span{
    color:#c2ccd5;
    font-size:15px;
}

.stat-divider{
    width:1px;
    align-self:stretch;
    background:linear-gradient(
        transparent,
        rgba(255,130,0,.45),
        transparent
    );
}

.stats-glow{
    position:absolute;
    left:-180px;
    top:50%;
    width:600px;
    height:600px;
    transform:translateY(-50%);
    background:radial-gradient(circle,
    rgba(255,130,0,.18),
    transparent 70%);
    filter:blur(80px);
}

.stats-lines{
    position:absolute;
    inset:0;
    opacity:.05;
    background-image:
    linear-gradient(rgba(255,130,0,.8) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,130,0,.8) 1px,transparent 1px);
    background-size:48px 48px;
    mask-image:radial-gradient(circle at left center,black 20%,transparent 75%);
}

@media (max-width:992px){

.stats-section{
    padding:90px 0;
}

.stats-grid{
    grid-template-columns:1fr;
    gap:70px;
}

.stats-image{
    order:-1;
}

.stats-content{
    max-width:100%;
    text-align:center;
}

.stats-content .section-tag{
    justify-content:center;
}

.stats-items{
    justify-content:center;
}

}

@media (max-width:640px){

.stats-content h2{
    font-size:38px;
}

.stats-items{
    flex-direction:column;
    gap:24px;
}

.stat-divider{
    width:100%;
    height:1px;
}

.stat-item{
    justify-content:center;
    text-align:left;
}

.stats-image img{
    max-width:360px;
}

}

/*======================================
CTA HOC
======================================*/

.cta-hoc-section{

    padding:130px 0;
    padding-top: 50px;
    background:linear-gradient(to bottom, #02080d, #05131d);

}

.cta-hoc-card{

    position:relative;

    height:520px;

    overflow:hidden;

    clip-path:polygon(
        28px 0,
        calc(100% - 28px) 0,
        100% 28px,
        100% calc(100% - 28px),
        calc(100% - 28px) 100%,
        28px 100%,
        0 calc(100% - 28px),
        0 28px
    );

    background:linear-gradient(
        135deg,
        #ff8d1a,
        #ff7800,
        #ff8d1a
    );

    padding:2px;

    box-shadow:
    0 35px 80px rgba(0,0,0,.35),
    0 0 55px rgba(255,120,0,.12);

}

.cta-hoc-card::before{

    content:"";

    position:absolute;

    inset:2px;

    background:#04111b;

    clip-path:inherit;

    z-index:1;

}

.cta-hoc-bg{

    position:absolute;

    inset:2px;

    width:calc(100% - 4px);

    height:calc(100% - 4px);

    object-fit:cover;
    object-position: 0% 100%;

    clip-path:inherit;

    filter:brightness(.72);

    z-index:2;

}

.cta-hoc-overlay{

    position:absolute;

    inset:2px;

    z-index:3;

    background:

    linear-gradient(
        90deg,
        rgb(2, 12, 19) 0%,
        rgba(4, 17, 27, 0.116) 38%,
        rgba(4, 17, 27, 0.116) 60%,
        rgba(4, 17, 27, 0) 100%
    );

}

.cta-hoc-content{

    position:relative;

    z-index:5;

    max-width:560px;

    padding:70px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    min-height:430px;

}

.cta-hoc-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:var(--hoc-orange);

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:2px;

    margin-bottom:2px;

}

.cta-hoc-badge i{

    font-size:14px;

}

.cta-hoc-content h2{

    font-size:48px;

    line-height:.95;

    color:#fff;

    font-family:"Barlow Condensed";

    text-transform:uppercase;

    margin-bottom:10px;

}

.cta-hoc-content h2 span{

    display:block;

    color:var(--hoc-orange);

}

.cta-hoc-content p{

    color:#c7d0d8;

    line-height:1.9;

    font-size:16px;

    margin-bottom:38px;

    max-width:480px;

}

.cta-hoc-button{

    width:max-content;

    height:64px;

    padding:0 34px;

    display:flex;

    align-items:center;

    gap:14px;

    text-decoration:none;

    color:#fff;

    font-weight:700;

    background:linear-gradient(
        180deg,
        #ff9325,
        #f97200
    );

    clip-path:polygon(
        12px 0,
        100% 0,
        100% calc(100% - 12px),
        calc(100% - 12px) 100%,
        0 100%,
        0 12px
    );

    transition:.35s;

}

.cta-hoc-button:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 45px rgba(255,120,0,.35);

}

.cta-hoc-button i{

    font-size:18px;

}

@media(max-width:992px){

    .cta-hoc-section{

        padding:90px 0;

    }

    .cta-hoc-content{

        padding:55px;

        max-width:100%;

    }

    .cta-hoc-content h2{

        font-size:50px;

    }

}

@media(max-width:768px){

    .cta-hoc-card{

        min-height:auto;

    }

    .cta-hoc-content{

        min-height:auto;

        padding:45px 30px;

    }

    .cta-hoc-overlay{

        background:
        linear-gradient(
            180deg,
            rgba(4,17,27,.90),
            rgba(4,17,27,.80)
        );

    }

    .cta-hoc-bg{
        object-position: 80% 100%;
    }
    .cta-hoc-content h2{

        font-size:40px;

    }

    .cta-hoc-button{

        width:100%;

        justify-content:center;

    }

}

/*==================================
COBERTURA HOC
==================================*/

.coverage-hoc-section{

    position:relative;

    padding:130px 0;

    background: linear-gradient(to bottom, #05131d 0%, #030d13 100%);

    overflow:hidden;

}

.coverage-hoc-heading{

    max-width:760px;

    margin:auto;

    text-align:center;

    margin-bottom:90px;

}

.coverage-hoc-heading h2{

    margin:26px 0;

    color:#fff;

    font-size:58px;

    font-family:"Barlow Condensed";

    line-height:.95;

    text-transform:uppercase;

}

.coverage-hoc-heading h2 span{

    display:block;

    color:var(--hoc-orange);

}

.coverage-hoc-heading p{

    color:#c5cfd7;

    line-height:1.9;

}

.coverage-hoc-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:90px;

}

.coverage-hoc-map{

    position:relative;

    display:flex;

    justify-content:center;

}

.coverage-hoc-map img{

    width:100%;

    max-width:580px;

    position:relative;

    z-index:2;

}

.coverage-hoc-map-glow{

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:

    radial-gradient(circle,

    rgba(255,130,0,.20),

    transparent 72%);

    filter:blur(70px);

}

.coverage-hoc-states{

    position:relative;

    display:flex;

    flex-wrap:wrap;

    gap:38px;

    align-content:flex-start;

}

.coverage-hoc-state{

    display:flex;

    align-items:center;

    gap:14px;

    padding:18px 24px;

    border:1px solid rgba(255,130,0,.22);

    background:rgba(255,255,255,.03);

    backdrop-filter:blur(12px);

    border-radius:60px;

    color:#fff;

    font-weight:600;

    transition:.35s;

}

.coverage-hoc-state span{

    width:12px;

    height:12px;

    border-radius:50%;

    background:var(--hoc-orange);

    box-shadow:0 0 18px rgba(255,130,0,.55);

}

.coverage-hoc-state:hover{

    transform:translateY(-4px);

    border-color:var(--hoc-orange);

    background:rgba(255,130,0,.08);

}

.coverage-hoc-glow{

    position:absolute;

    right:-220px;

    top:50%;

    width:650px;

    height:650px;

    border-radius:50%;

    background:

    radial-gradient(circle,

    rgba(255,130,0,.18),

    transparent 72%);

    filter:blur(80px);

}

.coverage-hoc-lines{

    position:absolute;

    right:0px;

    top:100px;

    width:620px;

    height:620px;

    opacity:.08;

    background-image:

    linear-gradient(#ff8200 1px,transparent 1px),

    linear-gradient(90deg,#ff8200 1px,transparent 1px);

    background-size:48px 48px;

    transform:rotate(18deg);

    mask-image:radial-gradient(circle,black 40%,transparent 85%);

}
@media(max-width:992px){

.coverage-hoc-section{

    padding:90px 0;

}

.coverage-hoc-grid{

    grid-template-columns:1fr;

    gap:70px;

}

.coverage-hoc-map{

    order:2;

}
.coverage-hoc-map-glow{
    height: 150px;
}

.coverage-hoc-states{

    justify-content:center;

}

}

@media(max-width:768px){

.coverage-hoc-heading h2{

    font-size:42px;

}

.coverage-hoc-state{

    width:100%;

    justify-content:flex-start;

}

.coverage-hoc-map img{

    max-width:320px;

}

}

/*=========================================================
CONTACTO
=========================================================*/

.hoc-contact-section{

    position:relative;

     background: linear-gradient(to top, #04111b 0%, #030d13 100%);

    padding:130px 0;
    padding-top: 0;

    overflow:hidden;

}

.hoc-contact-info,
.hoc-contact-form-card{

    min-width:0;

}

.hoc-contact-section::before{

    content:"";

    position:absolute;

    left:30%;

    top:0;

    width:700px;

    height:700px;

    opacity:.1;

    pointer-events:none;

    background-image:

        linear-gradient(rgba(255,130,0,.8) 1px,transparent 1px),

        linear-gradient(90deg,rgba(255,130,0,.8) 1px,transparent 1px);

    background-size:42px 42px;

    transform:
        translateX(-50%)
        rotate(25deg);

    mask-image:
        radial-gradient(circle,
        black 40%,
        transparent 90%);

}

.hoc-contact-section::after{

    content:"";

    position:absolute;

    left:26%;

    top:180px;

    width:520px;

    height:520px;

    background:

    radial-gradient(circle,
    rgba(255,130,0,.12),
    transparent 72%);

    filter:blur(70px);

    pointer-events:none;

}

.hoc-contact-heading{

    max-width:760px;


    text-align:left;

    margin-bottom:80px;

}

.hoc-contact-glow-2{

    position:absolute;

    right:-220px;

    top:-46%;

    width:650px;

    height:650px;

    border-radius:50%;

    background:

    radial-gradient(circle,

    rgba(255,130,0,.18),

    transparent 72%);

    filter:blur(80px);

}

.hoc-contact-heading h2{

    color:#fff;

    font-size:58px;

    line-height:.95;

    text-transform:uppercase;

    font-family:"Barlow Condensed";

    margin:24px 0;

}

.hoc-contact-heading h2 span{

    display:block;

    color:var(--hoc-orange);

}

.hoc-contact-heading p{

    color:#c3ccd5;

    line-height:1.9;

}

.hoc-contact-grid{

    display:grid;

    grid-template-columns:minmax(320px,430px) minmax(0,1fr);

    gap:70px;

    align-items:start;

}

.hoc-contact-phone-card{

    position:relative;

    overflow:hidden;

    padding:42px;

    background:

    linear-gradient(
    160deg,
    rgba(255,255,255,.03),
    rgba(2,8,14,.88));

    clip-path:polygon(

        0 0,

        calc(100% - 32px) 0,

        100% 32px,

        100% 100%,

        32px 100%,

        0 calc(100% - 32px)

    );

    margin-bottom:20px;

}

.hoc-contact-phone-card::after{

    content:"";

    position:absolute;

    top:22px;

    left:42px;

    width:90px;

    height:2px;

    background:var(--hoc-orange);

    box-shadow:0 0 18px var(--hoc-orange);

}
.hoc-contact-phone-card{

    background:

    linear-gradient(
        135deg,
        #ff7d00,
        #ffb64a,
        #ff7d00
    );

}

.hoc-contact-phone-card::before{

    content:"";

    position:absolute;

    inset:1px;

    clip-path:inherit;

    background:

    linear-gradient(
        160deg,
        rgb(4, 11, 19),
        rgba(2,8,14,.95)
    );

    z-index:0;

}

.hoc-contact-phone-card>*{

    position:relative;

    z-index:2;

}


.hoc-contact-phone-card>i{

    font-size:15px;
    margin-right: 0.5rem;

    color:var(--hoc-orange);

    margin-bottom:18px;

}

.hoc-contact-phone-card small{

    color:#ff9f3d;

    text-transform:uppercase;

    letter-spacing:2px;

}

.hoc-contact-phone-card h3{

    font-size:42px;

    color:#fff;

    margin:12px 0 18px;

}

.hoc-contact-phone-card p{

    color:#b9c5ce;

    line-height:1.8;

    margin-bottom:30px;

}

.hoc-contact-whatsapp{

    height:58px;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    text-decoration:none;

    font-weight:700;

    color:#fff;

    border-radius:12px;

    background:linear-gradient(250deg,#12e057,#08473d);

    transition:.3s;

}

.hoc-contact-whatsapp:hover{

    transform:translateY(-3px);

    box-shadow:0 18px 35px rgba(52,215,106,.28);

}

.hoc-contact-card{

    position:relative;

    overflow:hidden;

    display:flex;

    align-items:center;

    gap:18px;

    padding:24px 28px;

    margin-bottom:18px;

    background:

    linear-gradient(
        135deg,
        #ff7a00,
        #ffb54b,
        #ff7a00);

    clip-path:polygon(

        0 0,

        calc(100% - 20px) 0,

        100% 20px,

        100% 100%,

        20px 100%,

        0 calc(100% - 20px)

    );

}

.hoc-contact-card::before{

    content:"";

    position:absolute;

    inset:1px;

    background:

    linear-gradient(
        180deg,
        rgb(5, 18, 29),
        rgba(2,8,14,.95));

    clip-path:inherit;

}

.hoc-contact-card>*{

    position:relative;

    z-index:2;

}



.hoc-contact-card i{

    width:62px;

    height:62px;

    display:grid;

    place-items:center;

    font-size:22px;

    color:var(--hoc-orange);

    background:#ff820020;

    border:1px solid rgba(255,130,0,.45);

    clip-path:polygon(
        25% 6%,
        75% 6%,
        100% 50%,
        75% 94%,
        25% 94%,
        0 50%
    );

    transition: all 0.3s ease-in-out;
}

.hoc-contact-card:hover i{

    background:#ff8200;

    color:#04111b;

    box-shadow:0 0 25px rgba(255,130,0,.45);

}

.hoc-contact-card-content{

    min-width:0;
    flex:1;

}

.hoc-contact-card-content span{

    display:block;

    color:#bcc7cf;

    overflow-wrap:break-word;
    word-break:break-word;
    line-height:1.6;

}

.hoc-contact-card h4{

    color:#fff;

    margin: 0;
    margin-bottom:6px;

}

.hoc-contact-card span{

    color:#bcc7cf;

}

.hoc-contact-form-card{

    position:relative;

    overflow:hidden;

    padding:46px;

    isolation:isolate;

    background:linear-gradient(
        135deg,
        #ff7b00,
        #ffb548,
        #ff7b00
    );

    clip-path:polygon(
        0 0,
        calc(100% - 42px) 0,
        100% 42px,
        100% 100%,
        0 100%
    );

    box-shadow:
        0 30px 70px rgba(0,0,0,.45),
        0 0 45px rgba(255,130,0,.10);

}

.hoc-contact-form-card::before{

    content:"";

    position:absolute;

    inset:1px;

    z-index:-1;

    clip-path:inherit;

    background:

        linear-gradient(
            180deg,
            rgba(3, 12, 20, 0.767),
            rgba(2,10,18,.94)
        ),

        url(images/cta-bg.png);

    background-size:cover;

    background-position:center;

}

.hoc-contact-form-card::after{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    top:-140px;

    right:-120px;

    border-radius:50%;

    background:

    radial-gradient(
        circle,
        rgba(255,130,0,.18),
        transparent 70%
    );

    filter:blur(45px);

    z-index:-1;

}

.hoc-contact-form-card form{

    position:relative;

}

.hoc-contact-form-card form::before{

    content:"";

    position:absolute;

    top:-30px;

    right:-30px;

    width:260px;

    height:260px;

    opacity:.08;

    background-image:

        linear-gradient(
            rgba(255,130,0,.9) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,130,0,.9) 1px,
            transparent 1px
        );

    background-size:26px 26px;

    transform:rotate(18deg);

    pointer-events:none;

}

.hoc-contact-form-card form{

    position:relative;

    z-index:5;

}



.hoc-form-group{

    margin-bottom:22px;

}

.hoc-form-group label{

    display:block;

    margin-bottom:10px;

    color:#fff;

    font-weight:600;

}

.hoc-form-group input,

.hoc-form-group textarea{

    width:100%;

    box-sizing: border-box;
    padding:16px 18px;

    background:#081724;

    border:1px solid rgba(255, 132, 0, 0.301);

    color:#fff;

    transition:.3s;

}

.hoc-form-group input:focus,

.hoc-form-group textarea:focus{

    outline:none;

    border-color:var(--hoc-orange);

    box-shadow:0 0 25px rgba(255,130,0,.18);

}

.hoc-contact-submit{

    width:100%;

    height:62px;

    border:none;

    cursor:pointer;

    color:#fff;

    font-size:16px;

    font-weight:700;

    background:linear-gradient(180deg,#ff8d1c,#ff7200);

    transition:.3s;

}

.hoc-contact-submit:hover{

    transform:translateY(-3px);

    box-shadow:0 20px 35px rgba(255,120,0,.3);

}

@media(max-width:992px){

    .hoc-contact-section{

        padding:90px 0;

    }

    .hoc-contact-grid{

        grid-template-columns:1fr;

        gap:50px;

    }

    .hoc-contact-heading h2{

        font-size:44px;

    }

    .hoc-contact-form-card{

        padding:35px;

    }

}



@media(max-width:768px){

    

    .hoc-contact-phone-card{

        padding:28px;

    }

    .hoc-contact-phone-card h3{

        font-size:34px;

    }

    .hoc-contact-form-card{

        padding:28px;

    }

}

/*==================================================
FOOTER
==================================================*/

.hoc-footer{

    position:relative;

    overflow:hidden;

    background:#020a10;

    border-top:1px solid rgba(255,130,0,.20);

}

.hoc-footer::before{

    content:"";

    position:absolute;

    left:10%;

    right:10%;

    top:0;

    height:1px;

    background:linear-gradient(
        90deg,
        transparent,
        var(--hoc-orange),
        transparent
    );

    box-shadow:0 0 25px rgba(255,130,0,.45);

}

.hoc-footer-glow{

    position:absolute;

    right:-180px;

    top:-120px;

    width:520px;

    height:520px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(255,130,0,.14),
    transparent 70%);

    filter:blur(80px);

}

.hoc-footer::after{

    content:"";

    position:absolute;

    inset:0;

    opacity:.045;

    background-image:

    linear-gradient(rgba(255,130,0,.9) 1px,transparent 1px),

    linear-gradient(90deg,rgba(255,130,0,.9) 1px,transparent 1px);

    background-size:42px 42px;

    mask-image:radial-gradient(circle at center,
    black 30%,
    transparent 85%);

}

.hoc-footer-grid{

    position:relative;

    z-index:5;

    display:grid;

    grid-template-columns:1.3fr 1fr 1fr 1fr;

    gap:60px;

    padding:90px 0;

}

.hoc-footer-brand img{

    width:190px;

    margin-bottom:28px;

}

.hoc-footer-brand p{

    color:#b9c4cf;

    line-height:1.9;

    margin-bottom:30px;

}

.hoc-footer-whatsapp{

    display:inline-flex;

    align-items:center;

    gap:14px;

    padding:16px 26px;

    color:#fff;

    text-decoration:none;

    font-weight:700;

    background:linear-gradient(
    180deg,
    #14d861,
    #0b8b49);

    border-radius:10px;

    transition:.35s;

}

.hoc-footer-whatsapp:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 30px rgba(0,255,120,.28);

}

.hoc-footer-column h4{

    color:#fff;

    font-size:22px;

    margin-bottom:28px;

    font-family:"Barlow Condensed";

    text-transform:uppercase;

    position:relative;

}

.hoc-footer-column h4::after{

    content:"";

    width:55px;

    height:2px;

    margin-top:10px;

    display:block;

    background:var(--hoc-orange);

}

.hoc-footer-column ul{

    list-style:none;

    padding:0;

    margin:0;

}

.hoc-footer-column li{

    margin-bottom:16px;

}

.hoc-footer-column a{

    color:#bfc7cf;

    text-decoration:none;

    transition:.3s;

    display:flex;

    gap:10px;

    align-items:center;

}

.hoc-footer-column a span{

    color:var(--hoc-orange);

    font-weight:700;

    transition:.3s;

}

.hoc-footer-column a:hover{

    color:#fff;

    transform:translateX(8px);

}

.hoc-footer-column a:hover span{

    text-shadow:0 0 15px var(--hoc-orange);

}

.hoc-footer-contact li{

    display:flex;

    gap:16px;

    align-items:center;

    color:#bcc7cf;

}

.hoc-footer-contact i{

    width:20px;

    color:var(--hoc-orange);

}

.hoc-footer-bottom{

    border-top:1px solid rgba(255,255,255,.06);

    padding:24px 0;

}

.hoc-footer-bottom .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

}

.hoc-footer-bottom p{

    margin:0;

    color:#8d98a4;

}

.hoc-footer-bottom span{

    color:#ff8a18;

    font-weight:600;

}

@media(max-width:992px){

.hoc-footer-grid{

    grid-template-columns:1fr 1fr;

    gap:45px;

}

}

@media(max-width:768px){

.hoc-footer-grid{

    grid-template-columns:1fr;

    padding:70px 0;

}

.hoc-footer-brand{

    text-align:center;

}

.hoc-footer-whatsapp{

    justify-content:center;

}

.hoc-footer-bottom .container{

    flex-direction:column;

    text-align:center;

}

}

/*=========================================
ESTADÍSTICAS HOME
=========================================*/

.hoc-stats-section{

    position:relative;

    padding:350px 0;

    overflow:hidden;

    background:linear-gradient(
    180deg,
    #03101a,
    #02080d);

}

.hoc-stats-section::after{
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--hoc-orange),
    transparent
  );
  box-shadow: var(--hoc-glow) 0 0 28px;
}

/*--------------------*/
/* GRID */

.hoc-stats-grid{

    position:absolute;

    inset:0;

    opacity:.13;

    background-image:

    linear-gradient(rgba(255,125,0,.15) 1px,transparent 1px),

    linear-gradient(90deg,rgba(255,125,0,.15) 1px,transparent 1px);

    background-size:75px 75px;

    mask-image:radial-gradient(circle,
    rgba(0,0,0,1),
    rgba(0,0,0,.15),
    transparent 85%);

}

/*--------------------*/

.hoc-stats-glow{

    position:absolute;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    width:800px;

    height:800px;

    background:

    radial-gradient(circle,

    rgba(255,122,0,.16),

    transparent 70%);

    filter:blur(90px);

}

/*--------------------*/

.hoc-stats-wrapper{

    position:relative;

    display:grid;

    grid-template-columns:

    1fr auto
    1fr auto
    1fr;

    align-items:center;

}

/*--------------------*/

.hoc-divider{

    width:2px;

    height:170px;

    background:linear-gradient(

    transparent,

    var(--hoc-orange),

    transparent);

    box-shadow:

    0 0 20px rgba(255,120,0,.45);

}

/*--------------------*/

.hoc-stat{

    text-align:center;

    position:relative;

}

.hoc-stat span{

    font-family:"Barlow Condensed";

    font-size:92px;

    line-height:.9;

    color:#fff;

    font-weight:800;

}

.hoc-stat-main span{

    font-size:130px;

}

.hoc-stat small{

    font-size:60px;

    color:var(--hoc-orange);

    font-family:"Barlow Condensed";

    font-weight:700;

}

.hoc-stat h3{

    margin-top:18px;

    color:#c8d1da;

    font-size:20px;

    font-weight:500;

    letter-spacing:.5px;

}

/*=========================================
CHIPS
=========================================*/

.hoc-chip{

    position:absolute;

    padding:15px 20px;

    color:#fff;

    background:transparent;

    animation:hocFloat 5s ease-in-out infinite;

}

.hoc-chip::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        #ff7a00,
        #ffb347,
        #ff7a00
    );

    clip-path:polygon(
        18px 0,
        calc(100% - 18px) 0,
        100% 18px,
        100% calc(100% - 18px),
        calc(100% - 18px) 100%,
        18px 100%,
        0 calc(100% - 18px),
        0 18px
    );

}

.hoc-chip::after{

    content:"";

    position:absolute;

    inset:2px;

    background:rgba(4,17,27,.92);

    clip-path:polygon(
        18px 0,
        calc(100% - 18px) 0,
        100% 18px,
        100% calc(100% - 18px),
        calc(100% - 18px) 100%,
        18px 100%,
        0 calc(100% - 18px),
        0 18px
    );


}

.hoc-chip span,
.hoc-chip iconify-icon{

    position:relative;

    z-index:2;

}

.hoc-chip{

    filter:drop-shadow(0 0 12px rgba(255,120,0,.25));

    transition:.35s;

}

.hoc-chip:hover{

    filter:

        drop-shadow(0 0 25px rgba(255,140,0,.65));

    transform:translateY(-8px) scale(1.05);

}

/*.hoc-chip:nth-child(1){

    animation-delay:0s;

}

.hoc-chip:nth-child(2){

    animation-delay:1.7s;

}

.hoc-chip:nth-child(3){

    animation-delay:3.4s;

}*/

@keyframes hocFloat{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0px);

    }

}

.hoc-chip iconify-icon{

    color:var(--hoc-orange);

    font-size:22px;

}

.hoc-chip-1{

    left:36%;

    top:22%;

}

.hoc-chip-2{

    left:48%;

    top:22%;

}

.hoc-chip-3{

    left:59%;

    top:22%;

    transform:translateX(-50%);

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px){

    .hoc-stats-glow{

    width:500px;

    height:500px;

}

.hoc-stats-wrapper{

grid-template-columns:1fr;

gap:60px;

}

.hoc-divider{

display:none;

}

.hoc-stat-main span{

font-size:100px;

}

.hoc-stat span{

font-size:75px;

}

.hoc-chip{

display:none;

}

}

@media(max-width:640px){

.hoc-stats-section{

padding:90px 0;

}

.hoc-stat-main span{

font-size:78px;

}

.hoc-stat span{

font-size:62px;

}

.hoc-stat small{

font-size:38px;

}

.hoc-stat h3{

font-size:18px;

}

}

/*======================================================
ULTIMOS TRABAJOS
======================================================*/

.hoc-projects-section{

    position:relative;

    padding:170px 0;

    background:linear-gradient(
        180deg,
        #02080d 0%,
        #04111b 100%
    );

    overflow:hidden;

}

/*=======================================*/

.hoc-projects-grid{

    position:absolute;

    inset:0;

    opacity:.08;

    background-image:

    linear-gradient(rgba(255,130,0,.15) 1px,transparent 1px),

    linear-gradient(90deg,rgba(255,130,0,.15) 1px,transparent 1px);

    background-size:80px 80px;

    mask-image:
    radial-gradient(circle,
    rgba(0,0,0,1),
    transparent 85%);

}

/*=======================================*/

.hoc-projects-glow{

    position:absolute;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    width:900px;

    height:900px;

    background:

    radial-gradient(circle,

    rgba(255,122,0,.14),

    transparent 72%);

    filter:blur(80px);

}

/*=======================================*/

.hoc-projects-header{

    position:relative;

    max-width:760px;

    margin:auto;

    text-align:center;

    margin-bottom:90px;

}

.hoc-projects-header h2{

    margin:24px 0;

    color:#fff;

    font-size:64px;

    line-height:.95;

    font-family:"Barlow Condensed";

    text-transform:uppercase;

}

.hoc-projects-header h2 span{

    display:block;

    color:var(--hoc-orange);

}

.hoc-projects-header p{

    color:#c2ccd5;

    line-height:1.9;

}

/*=======================================*/

.hoc-projects-slider{

    position:relative;

    height:640px;

}

/*=======================================*/

.hoc-projects-track{

    position:relative;

    width:100%;

    height:100%;

}

/*=======================================*/

.hoc-project-slide{

    position:absolute;

    width:72%;

    height:100%;

    left:50%;

    top:0;

    transform:translateX(-50%);

    transition:.75s cubic-bezier(.2,.8,.2,1);

    overflow:hidden;

    border-radius:28px;

}

/*==============================*/

.hoc-project-slide::before{

    content:"";

    position:absolute;

    inset:0;

    padding:2px;

    

    clip-path:polygon(
        28px 0,
        calc(100% - 28px) 0,
        100% 28px,
        100% calc(100% - 28px),
        calc(100% - 28px) 100%,
        28px 100%,
        0 calc(100% - 28px),
        0 28px);

}

.hoc-project-slide img{

    position:absolute;

    inset:2px;

    width:calc(100% - 4px);

    height:calc(100% - 4px);

    object-fit:cover;

    clip-path:inherit;

}

/*=======================================*/

.hoc-project-overlay{

    position:absolute;

    left:0;

    right:0;

    bottom:0;

    padding:55px;

    background:

    linear-gradient(
        0deg,
        rgba(2,8,14,.98),
        rgba(2,8,14,.78),
        transparent
    );

}

/*======================================================
ESTADOS DEL CARRUSEL
======================================================*/

/* Slide activo */

.hoc-project-slide.active{

    z-index:30;

    transform:
    translateX(-50%)
    scale(1);

    opacity:1;

    filter:none;

    box-shadow:
    0 45px 90px rgba(0,0,0,.45),
    0 0 50px rgba(255,122,0,.12);

}

/*==========================*/

.hoc-project-slide.prev{

    z-index:15;

    transform:
    translateX(-105%)
    scale(.82);

    opacity:.45;

    filter:
    blur(1px)
    brightness(.65);

}

/*==========================*/

.hoc-project-slide.next{

    z-index:15;

    transform:
    translateX(5%)
    scale(.82);

    opacity:.45;

    filter:
    blur(1px)
    brightness(.65);

}

/*==========================*/

.hoc-project-slide.hidden{

    opacity:0;

    pointer-events:none;

    z-index:1;

}

/*======================================================
OVERLAY
======================================================*/

.hoc-project-category{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    border-radius:50px;

    border:1px solid rgba(255,130,0,.25);

    background:rgba(0,0,0,.35);

    backdrop-filter:blur(18px);

    color:var(--hoc-orange);

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:20px;

}

.hoc-project-category iconify-icon{

    font-size:20px;

}

/*==========================*/

.hoc-project-title{

    color:#fff;

    font-size:52px;

    font-family:"Barlow Condensed";

    text-transform:uppercase;

    margin-bottom:14px;

}

/*==========================*/

.hoc-project-description{

    max-width:650px;

    color:#d0d8df;

    font-size:17px;

    line-height:1.9;

}

/*======================================================
FLECHAS
======================================================*/

.hoc-project-arrow{

    position:absolute;

    top:50%;

    width:74px;

    height:74px;

    margin-top:-37px;

    border:none;

    cursor:pointer;

    z-index:60;

    background:none;

}

/*==========================*/

.hoc-project-arrow::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    linear-gradient(
        135deg,
        #ff7a00,
        #ffb347,
        #ff7a00);

    clip-path:polygon(

        25% 5%,

        75% 5%,

        100% 50%,

        75% 95%,

        25% 95%,

        0 50%

    );

}

/*==========================*/

.hoc-project-arrow::after{

    content:"";

    position:absolute;

    inset:2px;

    background:#04111b;

    clip-path:inherit;

}

/*==========================*/

.hoc-project-arrow i{

    position:relative;

    z-index:5;

    color:var(--hoc-orange);

    font-size:22px;

}

/*==========================*/

.hoc-project-prev{

    left:40px;

}

.hoc-project-next{

    right:40px;

}

/*==========================*/

.hoc-project-arrow:hover{

    transform:

    scale(1.08);

}

/*======================================================
CONTADOR
======================================================*/

.hoc-project-counter{

    position:absolute;

    left:50%;

    bottom:90px;

    transform:translateX(-50%);

    font-size:17px;

    color:#fff;

    letter-spacing:6px;

    z-index:50;

    font-weight:700;

}

/*======================================================
DOTS
======================================================*/

.hoc-project-dots{

    position:absolute;

    left:50%;

    bottom:40px;

    transform:translateX(-50%);

    display:flex;

    gap:16px;

    z-index:50;

}

/*==========================*/

.hoc-project-dot{

    width:13px;

    height:13px;

    border-radius:50%;

    background:rgba(255,255,255,.2);

    transition:.35s;

    cursor:pointer;

}

/*==========================*/

.hoc-project-dot.active{

    width:42px;

    border-radius:20px;

    background:var(--hoc-orange);

    box-shadow:

    0 0 18px rgba(255,122,0,.45);

}

/*======================================================
DECORACIÓN
======================================================*/

.hoc-projects-section::before{

    content:"";

    position:absolute;

    top:0;

    left:50%;

    transform:translateX(-50%);

    width:min(1300px,92%);

    height:2px;

    background:

    linear-gradient(

    90deg,

    transparent,

    rgba(255,130,0,.9),

    #ff8a00,

    rgba(255,130,0,.9),

    transparent);

    box-shadow:

    0 0 25px rgba(255,122,0,.35);

}

/*==========================*/

.hoc-projects-section::after{

    content:"";

    position:absolute;

    bottom:0;

    left:50%;

    transform:translateX(-50%);

    width:min(1300px,92%);

    height:2px;

    background:

    linear-gradient(

    90deg,

    transparent,

    rgba(255,130,0,.9),

    #ff8a00,

    rgba(255,130,0,.9),

    transparent);

}

/*======================================================
RESPONSIVE
======================================================*/

@media(max-width:1200px){

.hoc-project-slide{

width:80%;

}

}

@media(max-width:992px){

.hoc-projects-slider{

height:520px;

}

.hoc-project-slide{

width:88%;

}

.hoc-project-title{

font-size:42px;

}

.hoc-project-overlay{

padding:40px;

}

.hoc-project-prev{

left:15px;

}

.hoc-project-next{

right:15px;

}

}

@media(max-width:768px){

.hoc-projects-slider{

height:440px;

}

.hoc-project-slide{

width:100%;

}

.hoc-project-slide.prev,

.hoc-project-slide.next{

display:none;

}

.hoc-project-overlay{

padding:30px;

}

.hoc-project-title{

font-size:34px;

}

.hoc-project-description{

font-size:15px;

}

.hoc-project-arrow{

width:58px;

height:58px;

margin-top:-29px;

}

.hoc-project-counter{

bottom:72px;

}

}

@media(max-width:576px){

.hoc-projects-header h2{

font-size:46px;

}

.hoc-projects-slider{

height:390px;

}

.hoc-project-overlay{

padding:24px;

}

.hoc-project-title{

font-size:28px;

}

.hoc-project-category{

font-size:13px;

padding:8px 14px;

}

}

/* =========================================
   PROYECTOS 3D IST V2
========================================= */

.ist-projects-showcase {
  position: relative;
  overflow: hidden;
  padding: clamp(3.8rem, 6vw, 6rem) 1.5rem clamp(5rem, 8vw, 8rem);
  padding-top: 1rem;
   background:
    linear-gradient(180deg, #02080d 0%, #04111b 100%);
  color: #ffffff;
}


.ist-projects-bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 136, 0, 0.144) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 145, 0, 0.137) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 76%);
}

.ist-projects-bg-orb {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(90px);
  opacity: 0.46;
}

.ist-projects-bg-orb-left {
  width: 420px;
  height: 420px;
  left: -210px;
  top: 22%;
  background: rgba(255, 136, 0, 0.34);
}

.ist-projects-bg-orb-right {
  width: 430px;
  height: 430px;
  right: -220px;
  top: 30%;
  background: rgba(255, 136, 0, 0.24);
}





/* Container */

.ist-projects-container {
  position: relative;
  z-index: 2;
  max-width: 1220px;
  margin: 0 auto;
}

/* Header */

.ist-projects-header {
  max-width: 850px;
  margin: 0 auto clamp(3.5rem, 6vw, 5rem);
  text-align: center;
}




/* Stage */

.ist-projects-stage {
  position: relative;
  height: clamp(290px, 38vw, 440px);
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.ist-projects-gallery {
  position: relative;
  width: min(920px, 88vw);
  height: 100%;
  transform-style: preserve-3d;
}

/* Cards */

.ist-project-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(640px, 72vw);
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  background: rgba(0, 8, 18, 0.9);
  border: 1px solid rgba(255, 115, 0, 0.34);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.025) inset,
    0 24px 70px rgba(0, 0, 0, 0.56),
    0 0 42px rgba(255, 102, 0, 0.18);
  transform-style: preserve-3d;
  transition:
    transform 0.72s cubic-bezier(.2,.85,.18,1),
    opacity 0.52s ease,
    filter 0.52s ease,
    box-shadow 0.52s ease,
    border-color 0.52s ease;
}

.ist-project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.10), transparent 18%),
    radial-gradient(circle at 50% 0%, rgba(255, 115, 0, 0.18), transparent 42%),
    linear-gradient(90deg, rgba(0,0,0,0.22), transparent 24%, transparent 76%, rgba(0,0,0,0.25));
  opacity: 0.75;
}

.ist-project-card::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 0;
  height: 1px;
  z-index: 4;
  background: linear-gradient(90deg, transparent, rgba(255, 227, 190, 0.95), transparent);
  box-shadow: 0 0 16px rgba(255, 123, 0, 0.68);
  pointer-events: none;
}

.ist-project-card-link {
  display: block;
  width: 100%;
  height: 100%;
}

.ist-project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Posiciones 3D */

.ist-project-card.is-active {
  z-index: 5;
  opacity: 1;
  filter: brightness(1.04) saturate(1.08);
  transform:
    translate(-50%, -50%)
    translateZ(160px)
    rotateY(0deg)
    scale(1);
  border-color: rgba(255, 115, 0, 0.78);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.045) inset,
    0 30px 90px rgba(0, 0, 0, 0.66),
    0 0 36px rgba(255, 115, 0, 0.28),
    0 0 76px rgba(255, 115, 0, 0.18);
}

.ist-project-card.is-prev {
  z-index: 4;
  opacity: 0.76;
  filter: brightness(0.72) saturate(0.82);
  transform:
    translate(-92%, -50%)
    translateZ(-60px)
    rotateY(38deg)
    scale(0.78);
  cursor: pointer;
}

.ist-project-card.is-next {
  z-index: 4;
  opacity: 0.76;
  filter: brightness(0.72) saturate(0.82);
  transform:
    translate(-8%, -50%)
    translateZ(-60px)
    rotateY(-38deg)
    scale(0.78);
  cursor: pointer;
}

.ist-project-card.is-far-prev {
  z-index: 2;
  opacity: 0.26;
  filter: brightness(0.42) blur(1.2px);
  transform:
    translate(-118%, -50%)
    translateZ(-220px)
    rotateY(48deg)
    scale(0.58);
}

.ist-project-card.is-far-next {
  z-index: 2;
  opacity: 0.26;
  filter: brightness(0.42) blur(1.2px);
  transform:
    translate(18%, -50%)
    translateZ(-220px)
    rotateY(-48deg)
    scale(0.58);
}

/* Nav */

.ist-projects-nav {
  position: absolute;
  top: 50%;
  z-index: 8;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: #ffffff;
  border: 1px solid rgba(255, 115, 0, 0.72);
  background:
    radial-gradient(circle at center, rgba(0, 119, 255, 0.14), transparent 62%),
    rgba(0, 8, 18, 0.84);
  box-shadow:
    inset 0 0 14px rgba(0, 60, 255, 0.08),
    0 0 18px rgba(255, 136, 0, 0.22);
  transform: translateY(-50%);
  transition: 0.28s ease;
}

.ist-projects-nav:hover {
  border-color: rgb(255, 206, 150);
  box-shadow:
    inset 0 0 18px rgba(0, 60, 255, 0.14),
    0 0 26px rgba(255, 115, 0, 0.38);
}

.ist-projects-nav iconify-icon {
  font-size: 1.35rem;
}

.ist-projects-nav-prev {
  left: 0;
}

.ist-projects-nav-next {
  right: 0;
}

/* Info */

.ist-projects-info {
  max-width: 760px;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  text-align: center;
}

.ist-project-current-category {
  display: inline-block;
  color: #ff9900;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ist-project-current-title {
  margin: 0.65rem 0 0;
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
}

.ist-project-current-desc {
  max-width: 650px;
  margin: 1rem auto 0;
  color: rgba(255, 238, 222, 0.72);
  font-size: 1.04rem;
  line-height: 1.75;
}

.ist-projects-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.ist-project-btn {
  min-height: 48px;
  padding: 0 1.25rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  text-decoration: none !important;
  font-weight: 800;
  transition: 0.28s ease;
}


.ist-projects-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.45rem;
}

.ist-project-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: rgba(180, 230, 255, 0.25);
  transition: 0.25s ease;
}

.ist-project-dot.is-active {
  width: 28px;
  background: #ff8800;
  box-shadow: 0 0 14px rgba(255, 153, 0, 0.7);
}

/* Responsive */

@media (max-width: 900px) {
  .ist-projects-stage {
    height: 330px;
  }

  .ist-project-card {
    width: min(560px, 78vw);
  }

  .ist-project-card.is-prev {
    transform:
      translate(-88%, -50%)
      translateZ(-80px)
      rotateY(32deg)
      scale(0.72);
  }

  .ist-project-card.is-next {
    transform:
      translate(-12%, -50%)
      translateZ(-80px)
      rotateY(-32deg)
      scale(0.72);
  }

  .ist-projects-nav-prev {
    left: -0.4rem;
  }

  .ist-projects-nav-next {
    right: -0.4rem;
  }
}

@media (max-width: 640px) {
  .ist-projects-showcase {
    padding: 4.5rem 1rem;
  }

  .ist-projects-stage {
    height: 270px;
    margin-top: 0.5rem;
  }

  .ist-projects-gallery {
    width: 100%;
  }

  .ist-project-card {
    width: min(92vw, 420px);
    border-radius: 18px;
  }

  .ist-project-card.is-active {
    transform:
      translate(-50%, -50%)
      translateZ(80px)
      rotateY(0deg)
      scale(1);
  }

  .ist-project-card.is-prev,
  .ist-project-card.is-next,
  .ist-project-card.is-far-prev,
  .ist-project-card.is-far-next {
    opacity: 0;
    pointer-events: none;
    transform:
      translate(-50%, -50%)
      translateZ(-180px)
      scale(0.8);
  }

  .ist-projects-nav {
    width: 42px;
    height: 42px;
  }

  .ist-projects-nav-prev {
    left: 0.2rem;
  }

  .ist-projects-nav-next {
    right: 0.2rem;
  }

  .ist-project-current-desc {
    font-size: 0.98rem;
  }
}
.ist-projects-archive {
  margin-top: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
}

.ist-projects-archive-line {
  width: min(95px, 16vw);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 183, 255, 0.58),
    transparent
  );
  box-shadow:
    0 0 10px rgba(0, 183, 255, 0.28),
    0 0 22px rgba(0, 110, 255, 0.12);
}

.ist-projects-micro-link {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;

  min-height: 42px;
  padding: 0.68rem 1.18rem;
  border-radius: 999px;

  color: rgba(235, 249, 255, 0.92);
  font-size: 0.91rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none !important;

  background:
    radial-gradient(circle at center, rgba(0, 183, 255, 0.13), transparent 68%),
    rgba(0, 10, 24, 0.74);

  border: 1px solid rgba(0, 183, 255, 0.48);

  box-shadow:
    inset 0 0 14px rgba(0, 183, 255, 0.08),
    0 0 18px rgba(0, 183, 255, 0.16),
    0 0 38px rgba(0, 110, 255, 0.08);

  transition:
    transform 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.ist-projects-micro-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;

  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(0, 183, 255, 0.14) 42%,
    rgba(210, 248, 255, 0.16) 50%,
    rgba(0, 183, 255, 0.14) 58%,
    transparent 100%
  );

  transform: translateX(-130%);
  opacity: 0;
  transition: transform 0.7s ease, opacity 0.3s ease;
}

.ist-projects-micro-link:hover {
  transform: translateY(-2px);
  color: #ffffff;

  background:
    radial-gradient(circle at center, rgba(0, 183, 255, 0.22), transparent 70%),
    rgba(0, 14, 32, 0.88);

  border-color: rgba(105, 228, 255, 0.9);

  box-shadow:
    inset 0 0 18px rgba(0, 183, 255, 0.13),
    0 0 22px rgba(0, 183, 255, 0.28),
    0 0 48px rgba(0, 110, 255, 0.16);
}

.ist-projects-micro-link:hover::before {
  opacity: 1;
  transform: translateX(130%);
}

.ist-projects-micro-link iconify-icon {
  font-size: 1rem;
  color: #00b7ff;
  filter: drop-shadow(0 0 7px rgba(0, 183, 255, 0.65));
  transition: transform 0.25s ease, color 0.25s ease;
}

.ist-projects-micro-link:hover iconify-icon {
  color: #dff8ff;
}

.ist-projects-micro-link iconify-icon:last-child {
  transition: transform 0.25s ease;
}

.ist-projects-micro-link:hover iconify-icon:last-child {
  transform: translateX(3px);
}

@media (max-width: 640px) {
  .ist-projects-archive {
    margin-top: 1rem;
    gap: 0;
  }

  .ist-projects-archive-line {
    display: none;
  }

  .ist-projects-micro-link {
    width: 100%;
    max-width: 340px;
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 0.86rem;
  }
}

/*==================================================
PROCESO
==================================================*/

.hoc-process-section{

    position:relative;

    padding:130px 0;

    background:linear-gradient(180deg,#05131d,#02080d);

    padding-bottom:15rem;

    overflow:hidden;

}

.hoc-process-grid{

    position:absolute;

    inset:0;

    opacity:.045;

    background-image:
    linear-gradient(rgba(255,130,0,.18) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,130,0,.18) 1px,transparent 1px);

    background-size:90px 90px;

}

.hoc-process-glow{

    position:absolute;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    width:850px;

    height:850px;

    border-radius:50%;

    background:

    radial-gradient(circle,

    rgba(255,122,0,.10),

    transparent 70%);

    filter:blur(90px);

}

.hoc-process-header{

    position:relative;

    text-align:center;

    max-width:760px;

    margin:auto;

    margin-bottom:90px;

}

.hoc-process-header h2{

    color:#fff;

    font-size:62px;

    line-height:.95;

    text-transform:uppercase;

    font-family:"Barlow Condensed";

    margin:24px 0;

}

.hoc-process-header h2 span{

    display:block;

    color:var(--hoc-orange);

}

.hoc-process-header p{

    color:#bcc7cf;

    line-height:1.9;

}

.hoc-process-line{

    position:relative;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:40px;

}

.hoc-process-line::before{

    content:"";

    position:absolute;

    left:8%;

    right:8%;

    top:60px;

    height:2px;

    background:linear-gradient(90deg,

    transparent,

    var(--hoc-orange),

    #ffb347,

    var(--hoc-orange),

    transparent);

    box-shadow:0 0 18px rgba(255,122,0,.4);

}

.hoc-process-step{

    position:relative;

    text-align:center;

    z-index:2;

}

.hoc-process-icon{

    width:120px;

    height:132px;

    margin:auto;

    display:grid;

    place-items:center;

    position:relative;

    background:linear-gradient(135deg,#ff7a00,#ffb347,#ff7a00);

    clip-path:polygon(
        25% 5%,
        75% 5%,
        100% 50%,
        75% 95%,
        25% 95%,
        0 50%
    );

    transition:.35s ease-in-out;

}

.hoc-process-icon::before{

    content:"";

    position:absolute;

    inset:2px;

    background:rgba(5,18,28,.92);

    backdrop-filter:blur(18px);

    clip-path:inherit;

}

.hoc-process-icon i{

    position:relative;

    z-index:2;

    color:var(--hoc-orange);

    font-size:44px;

    transition:.35s ease-in-out;

}

.hoc-process-step span{

    display:block;

    margin-top:24px;

    color:var(--hoc-orange);

    font-weight:700;

    letter-spacing:3px;

}

.hoc-process-step h3{

    color:#fff;

    font-size:30px;

    margin:12px 0;

    font-family:"Barlow Condensed";

    text-transform:uppercase;

}

.hoc-process-step p{

    color:#bfc8d0;

    line-height:1.8;

    max-width:240px;

    margin:auto;

}

.hoc-process-step:hover .hoc-process-icon{

    transform:translateY(-10px);

    transition:.35s;

}

.hoc-process-step:hover i{

    transform:scale(1.15);

    transition:.35s;

}

@media(max-width:992px){

.hoc-process-line{

grid-template-columns:repeat(2,1fr);

row-gap:70px;

}

.hoc-process-line::before{

display:none;

}

}

@media(max-width:640px){

.hoc-process-header h2{

font-size:46px;

}

.hoc-process-line{

grid-template-columns:1fr;

gap:60px;

}

.hoc-process-icon{

width:105px;

height:118px;

}

.hoc-process-icon i{

font-size:38px;

}

}