/* =========================
   FUENTES
========================= */
@font-face {
  font-family: 'GT Walsheim';
  src: url('../fonts/gt-walsheim-regular.woff2') format('woff2'),
       url('../fonts/gt-walsheim-regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'GT Walsheim Bold';
  src: url('../fonts/gt-walsheim-bold.woff2') format('woff2'),
       url('../fonts/gt-walsheim-bold.woff') format('woff');
  font-weight: bold;
  font-style: bold;
}

@font-face {
  font-family: 'GT Walsheim Thin';
  src: url('../fonts/gt-walsheim-thin.woff2') format('woff2'),
       url('../fonts/gt-walsheim-thin.woff') format('woff');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'Maven Pro';
  src: url('../fonts/MavenPro-VariableFont_wght.woff2') format('woff2'),
       url('../fonts/MavenPro-VariableFont_wght.woff') format('woff');
  font-weight: 400 900;
  font-style: normal;
}

/* =========================
   RESET
========================= */
* { margin:0; padding:0; box-sizing:border-box; }
html { height:100%; }

body {
  min-height: 100vh;
  background:#0a0a0a;
  font-family:'GT Walsheim', sans-serif;
  color:#a3a3a3;
  display:flex;
  flex-direction:column;
  padding-top: 80px;
}

section {
  position: relative;
  z-index: 0;
}

/* =========================
   HEADER GENERAL
========================= */
.header {
  background:#ffffff;
  border-bottom:1px solid #e0e0e0;

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header-logo {
  max-height:55px;
  margin-left:10px;
}

.header, .header-container {
    height: auto;
    padding: 8px 0;
}

.hamburger {
  display:none;
  font-size:24px;
  color:#1C2249;
  cursor:pointer;
}

.header-nav .nav-menu {
  display:flex;
  gap:15px;
  list-style:none;
  padding:0;
  margin:0;
}


.nav-menu li .main-link {
  font-size:16px;
  color:#1C2249;
  text-decoration:none;
  padding:6px 12px;
  border-radius:4px;
  transition:none;
  margin-left:-5px;
}

.nav-menu li a:not(.main-link),
.nav-menu li .nav-link:not(.main-link) {
  font-size:14px;
  color:#1C2249;
  text-decoration:none;
  padding:8px 12px;
  border-radius:4px;
  transition:all 0.3s ease;
}
.nav-menu li a:not(.main-link):hover,
.nav-menu li .nav-link:not(.main-link):hover {
  color:#00D6FF;
  letter-spacing:0.04em;
  opacity:0.8;
}

/* =========================
   DROPDOWNS
========================= */
.nav-item { position:relative; }

.nav-item .dropdown-menu {
  background:#1C2249;
  border:none;
  border-radius:12px;
  box-shadow:0 8px 20px rgba(0,0,0,0.25);
  overflow:hidden;
  padding:10px 0;
  min-width:180px;
  z-index:1000;
  transition:transform 0.3s ease, opacity 0.3s ease;
  transform:translateY(-10px);
  opacity:0;
  position: absolute;
  top: 35px;
}

@media (min-width:993px) {
  .header {
    padding:8px 0;
    height:auto;
    overflow: visible;
    border-bottom: 2px solid #1C2249;
  }

  .header-container {
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:90%;
    max-width:1200px;
    margin:0 auto;
    height:auto;
    overflow: visible;
  }

  .nav-item {
    position: relative;
  }

   .nav-item.dropdown {
    position: relative;
    display: inline-block;
  }

    .nav-item.dropdown > .main-link {
    display: block;
    padding: 6px 20px;
  }

  .nav-item.dropdown > .dropdown-menu {
    position: absolute;
    top: 100%;
    min-width: 180px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }

  .nav-menu > li.dropdown:nth-child(1) > .dropdown-menu {
    left: -28px;
  }

  .nav-menu > li.dropdown:nth-child(2) > .dropdown-menu {
    left: -12px;
  }

  .nav-menu > li.dropdown:nth-child(3) > .dropdown-menu {
    left: -32px;
  }

.nav-menu > li.dropdown:nth-child(4) > .dropdown-menu {
  left: -20px;
}

  .nav-item .dropdown-menu {
    position:absolute;
    top: calc(100% + 12px); 
    left:50%;
    min-width:180px;
    z-index:1000;
    transform: translateX(-50%) translateY(-10px);
    opacity: 0;
    pointer-events: none;
    border: 2px solid transparent;   
    border-radius: 12px;            
    transition: 
      transform 0.3s ease,
      opacity 0.3s ease,
      border-color 0.3s ease;
  }

  .nav-item:hover .dropdown-menu {
    transform: translateX(-50%) translateY(0);
    opacity:1;
    border-color: #1F8AFF;
  }

   .nav-item.dropdown:hover > .dropdown-menu {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
    border-color: #1F8AFF;
  }

  .nav-item.dropdown > .main-link:hover {
    background-color: #1F8AFF;
    color: #ffffff;
    border-radius: 8px;
    transition: all 0.3s ease;
  }


.nav-institucional > a {
  cursor: default;
}

.nav-institucional > a:hover {
  color: inherit;
  background-color: #ffffff !important;
  color: #1C2249 !important;
}

  .nav-item:not(.dropdown) {
    display: inline-block;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 6px;
  }

  .nav-item:not(.dropdown) > .main-link {
    display: block;
    height: 100%;
    line-height: normal;
    padding: 6px 20px;
  }

   .nav-item:not(.dropdown) > .main-link:hover {
    background-color: #1F8AFF;
    color: #ffffff;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .nav-item.dropdown:hover > .dropdown-menu,
  .nav-item.dropdown > .dropdown-menu:hover {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    border-color: #1F8AFF;
  }

 .nav-item.dropdown > .dropdown-menu:hover {
    pointer-events: auto;
 }

 
 

}

.nav-item .dropdown-menu li a {
  color:#ffffff;
  padding:10px 20px;
  display:block;
  transition:color 0.3s ease, background 0.3s ease;
  border-radius:8px;
}
.nav-item .dropdown-menu li a:hover {
  color:#00D6FF;
  background:rgba(0,214,255,0.1);
}


@media (max-width:992px) {

  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .header-brand {
    flex: 1;
  }

  .hamburger {
    display: block;
    font-size: 24px;
    color: #1C2249;
    cursor: pointer;
    z-index: 1100;
    transition: color 0.3s ease, transform 0.3s ease;;
  }

  .hamburger.active {
    color: #ffffff;
  }

  /* =========================
     MENÚ LATERAL (SIDEBAR)
  ======================== */
  .header-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: #1C2249;
    flex-direction: column;
    padding: 60px 20px;
    transition: right 0.3s ease;
    z-index: 1050;
  }

  .header-nav .nav-menu {
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 40px;
}

  .header-nav.active {
    right: 0;
    border-left: 5px solid #1F8AFF;
  }

  .nav-menu {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  

  /* =========================
     DROPDOWNS DENTRO DEL SIDEBAR
  ======================== */
.dropdown-menu {
    background: #1C2249;
    border: 1px solid #ffffff;
    border-radius: 8px;
    margin: 5px 0;
    padding: 10px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: 
        max-height 0.5s ease, 
        opacity 0.5s ease, 
        transform 0.5s ease,
        border-color 0.3s ease;
  }

  .dropdown-menu li a {
    color: #ffffff;
    padding: 8px 15px;
    display: block;
  }

  .dropdown-menu.show {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    border: 1px solid #ffffff; 
  }

  .nav-menu li.dropdown > .dropdown-toggle {
  color: #ffffff;
  padding: 10px 0;
  display: block;
}

  /* =========================
     LINKS DEL SIDEBAR
  ======================== */
  .nav-menu li a,
  .nav-menu li .nav-link {
    color: #ffffff;
    font-size: 16px;
    padding-left: 0;   
    padding-right: 0;
    border-radius: 8px;
  }

  .nav-menu li.dropdown > .dropdown-toggle {
    padding-left: 0;  
    padding-right: 0;
  }

  .nav-menu li a:hover,
  .nav-menu li .nav-link:hover {
    color: #00D6FF;
    background: rgba(0, 214, 255, 0.1);
  }

  /* =========================
     ICONO DROPDOWN
  ======================== */
  .dropdown-toggle::after {
    content: '\f078';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    float: right;
    transition: transform 0.3s ease;
  }

  .dropdown-toggle.active::after {
    transform: rotate(180deg);
  }
}



/* =========================
   HERO VIDEO
========================= */

.hero-video {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  min-width: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.65)
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
  padding: 0 20px;
}

.hero-title {
  font-family: 'GT Walsheim Bold', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1.1;
  color: #ffffff;
  text-align: center;
}

.hero-subtitle {
  font-family: 'Maven Pro', sans-serif;
  font-size: clamp(20px, 3vw, 32px);
  line-height: 1.4;
  color: #ffffff;
  text-align: center;
  margin-top: 20px;
}

/* =========================
   HERO ANIMACIÓN 
========================= */

.hero-title,
.hero-subtitle {
  opacity: 0;
  transform: translateY(40px);
  animation: heroFadeUp 1s ease forwards;
}

.hero-title { animation-delay: 0.3s; }
.hero-subtitle { animation-delay: 0.6s; }

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 0 10px;
  }
  .hero-title { font-size: clamp(32px, 8vw, 60px); }
  .hero-subtitle { font-size: clamp(16px, 4vw, 24px); }
}



/* =========================
   MAIN SECTION
========================= */

.main-section {
  width: 100%;
  padding: 100px 0;
  background: #1C2249;
}

.main-section-part-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.main-image {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.main-image:hover {
  transform: scale(1.04);
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

.main-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: none;
}

.main-info h2 {
  font-family: 'GT Walsheim Bold', sans-serif;
  font-size: clamp(36px, 4vw, 48px);
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1.2;
  text-transform: uppercase;
}

.main-info h2 .highlight {
  color: #00D6FF;
}

.main-info p {
  font-family: 'Maven Pro', sans-serif;
  font-size: 16px;
  color: #d4d4d4;
  line-height: 1.8;
  margin-bottom: 30px;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-list li {
  font-family: 'Maven Pro', sans-serif;
  font-size: 15px;
  color: #a3a3a3;
  padding-left: 28px;
  position: relative;
  line-height: 1.6;
}

.info-list li strong {
  color: #ffffff;
}

.info-list li:before {
  content: '▪';
  position: absolute;
  left: 0;
  color: #00D6FF;
  font-size: 16px;
}

.main-section-part-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.main-card {
  text-align: left;
  text-decoration: none;
  display: block;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.main-card:hover .card-image {
  transform: scale(1.04);
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

.main-card-featured {
  max-width: 700px;
  margin: 0 auto;
}

.main-card-featured .card-image {
  height: 400px;
}

.main-card-featured .card-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.main-card-featured .card-info {
  text-align: center;
}

.main-card-featured .card-info h3 {
  font-size: 32px;
  text-transform: uppercase;
}

.card-image {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 25px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.card-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.card-info h3 {
  font-family: 'GT Walsheim Bold', sans-serif;
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.card-info p {
  font-family: 'Maven Pro', sans-serif;
  font-size: 15px;
  color: #a3a3a3;
  line-height: 1.7;
  margin: 0;
}

.main-info-link {
  display: inline-block;
  margin-top: 30px;
  font-family: 'GT Walsheim Bold', sans-serif;
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
  padding: 14px 32px;
  border: 2px solid #ffffff;
  border-radius: 6px;
  background: transparent;
  transition: all 0.3s ease;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-info-link:hover {
  background: #ffffff;
  color: #1C2249;
  transform: translateX(5px);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {

  .main-section {
    width: 100%;
    padding: 60px 15px;
    box-sizing: border-box;
  }

  /* =========================
     PARTE 1
  ========================= */
  .main-section-part-1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
    width: 100%;
    max-width: 100%;
  }

  .main-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  }

  .main-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }

  .main-info {
    width: 100%;
    max-width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  .main-info h2 {
    font-size: clamp(28px, 5vw, 36px);
    margin-bottom: 20px;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .main-info p {
    font-size: 15px;
    margin-bottom: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 100%;
  }

  .info-list li {
    font-size: 14px;
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* =========================
     PARTE 2
  ========================= */
  .main-section-part-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
  }

  .main-card,
  .main-card-featured {
    width: 100%;
    max-width: 95%;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .main-card-featured .card-image,
  .card-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  }

  .main-card-featured .card-image img,
  .card-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }

  .card-info {
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .card-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .card-info p {
    font-size: 14px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .main-info-link {
    padding: 12px 28px;
    font-size: 13px;
    margin-top: 20px;
    display: inline-block;
  }
}

@media (max-width: 375px) {

  .main-section-part-2 .card-info h3 {
    font-size: clamp(16px, 4vw, 18px);
    line-height: 1.2;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    text-align: center;
    word-break: break-word;
  }

  .main-section-part-2 {
    padding: 0 10px;
  }

  .main-card-featured,
  .main-card {
    max-width: 100%;
    margin: 0 auto;
  }
}

/* =========================
   SECCIÓN ESTADO COMPAÑIA
========================= */

.company-status {
  position: relative;
  width: 100%;
  min-height: 450px;
  background: url('../assets/images/hit_video.jpg') bottom left / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.company-status-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.75)
  );
  z-index: 1;
}

.company-status-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  padding: 80px 20px; 
}

.company-status-title {
  position: absolute;
  top: 0;
  left: 20px;
  z-index: 2;

  font-family: 'GT Walsheim Bold', sans-serif;
  font-size: clamp(42px, 5vw, 72px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff !important;

  margin: 0;
  padding: 20px;
  text-align: left;

  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.company-status-grid {
  position: absolute;
  bottom: 20px;
  right: 40px;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: 2px;
}

.company-status-grid > .status-item:nth-child(3) .status-number,
.company-status-grid > .status-item:nth-child(4) .status-number {
  min-width: 4ch;
}

.company-status-grid > .status-item:first-child {
  margin-right: 20px;
}

.company-status-grid > .status-item:nth-child(3) {
  margin-right: -20px;
}

.company-status-grid > .status-item:nth-child(4) {
  transform: translateX(-20px);
}

.status-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.status-number {
  font-family: 'GT Walsheim Bold', sans-serif;
  font-size: clamp(48px, 5vw, 72px);
  color: #00D6FF;
  margin-bottom: 10px;
  display: inline-block;
  min-width: 6ch;
  text-align: center;
}

.status-label {
  font-family: 'Maven Pro', sans-serif;
  font-size: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
}

@media (max-width: 1023px) {

  .company-status {
    min-height: auto;
    padding: 120px 20px 60px;
  }

  .company-status-title {
    position: relative;
    top: auto;
    left: auto;
    padding: 0;
    margin-bottom: 60px;
  }

  .company-status-grid {
    position: relative;
    bottom: auto;
    right: auto;

    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    justify-items: center;
  }

  .company-status-grid > .status-item:first-child,
  .company-status-grid > .status-item:nth-child(3) {
    margin-right: 0;
  }

  .company-status-grid > .status-item:nth-child(4) {
    transform: none;
  }

}

@media (min-width: 320px) and (max-width: 768px) {

  .company-status {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url('../assets/images/hit_video.jpg') bottom right / cover no-repeat;
    background-size: 235%;
    padding: 50px 20px;
  }

  .company-status-title {
    position: relative;
    top: auto;
    left: auto;
    text-align: center;
    margin-bottom: 0;
  }

  .company-status-content {
    padding: 20px 0;
  }

  .company-status-grid {
    position: relative;
    bottom: auto;
    right: auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
  }

  .status-number {
    font-size: 2.4rem;
  }

  .status-label {
    font-size: 0.8rem;
  }

}


/* =========================
   ESTADO COMPAÑIA ANIMACIONES
========================= */

.company-status {
  opacity: 1;
  transform: none;
  transition: none;
}

.status-item {
  opacity: 1;
  transform: none;
  transition: none;
}

.status-label {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.company-status.visible .status-label {
  opacity: 1;
  transform: translateY(0);
}

.company-status.visible .status-item:nth-child(1) .status-label { transition-delay: 0.2s; }
.company-status.visible .status-item:nth-child(2) .status-label { transition-delay: 0.4s; }
.company-status.visible .status-item:nth-child(3) .status-label { transition-delay: 0.6s; }
.company-status.visible .status-item:nth-child(4) .status-label { transition-delay: 0.8s; }

.company-status.visible .company-status-title {
  opacity: 1;
  transform: translateY(0);
}



/* =========================
   SECCIÓN COMPAÑIAS
========================= */

.trusted-section {
  position: relative;
  width: 100%;
  padding: 140px 0;
  background: #ffffff;
  overflow: hidden;
}

.trusted-container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.trusted-title {
  font-family: 'GT Walsheim Bold', sans-serif;
  font-size: clamp(36px, 4vw, 32px);
  color: #0a0a0a;
  margin-bottom: 80px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.trusted-title span {
  color: #00D6FF;
}

/* =========================
   SECCIÓN CARRUSEL
========================= */

.trusted-carousel {
  position: relative;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  cursor: pointer;

  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
}

.trusted-track {
  display: flex;
  width: max-content;
  animation: trusted-scroll 45s linear infinite;
}

.trusted-item {
  flex: 0 0 auto;
  width: 220px;
  height: 110px;
  margin: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trusted-item img {
  max-width: 100%;
  max-height: 90px;
  object-fit: contain;
  opacity: 0.85;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.trusted-item img:hover {
  opacity: 1;
  transform: scale(1.08);
}

.trusted-carousel.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

@keyframes trusted-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {

  .trusted-section {
    padding: 90px 0;
  }

  .trusted-title {
    font-size: 28px;
    margin-bottom: 45px;
  }

  .trusted-carousel {
    width: 92%;
  }

  .trusted-item {
    width: 160px;
    height: 90px;
    margin: 0 12px;
  }

  .trusted-item img {
    max-height: 55px;
  }

}

@media (max-width: 480px) {

  .trusted-section {
    padding: 5% 0;
  }

  .trusted-item {
    width: 130px;
    height: 80px;
    margin: 0 10px;
  }

  .trusted-title {
    padding-bottom: 8%;
    margin-bottom: 0;
  }

  .trusted-item img {
    max-height: 45px;
  }

}



/* =========================
   FOOTER
========================= */
.footer { 
  background:#1C2249; 
  border-top:1px solid #262626; 
  padding:70px 0 30px; 
}

main { 
  flex:1; 
}

.container { 
  width:90%; 
  max-width:1200px; 
  margin:0 auto; 
}

.footer-grid { 
  display:grid; 
  gap:6px; 
}

@media (min-width:768px) {
  .footer-grid { 
    grid-template-columns:repeat(6,1fr); 
    gap:20px; 
  }

  .brand { 
    grid-column: span 2; 
  }
}

.brand h2 { 
  color:#ffffff; 
  font-weight:500; 
  font-size:22px; 
  margin-bottom:16px; 
  letter-spacing:-0.01em; 
}

.brand p { 
  font-size:14px; 
  line-height:1.6; 
  max-width:320px; 
}

.footer .column h4 { 
  font-family:'GT Walsheim Bold'; 
  font-size:13px; 
  text-transform:uppercase; 
  letter-spacing:0.12em; 
  color:#00D6FF; 
  margin-bottom:14px; 
}

.footer .column ul { 
  list-style:none; 
}

.footer .column ul li, .footer .column ul li a { 
  color:#ffffff; 
  font-family:'GT Walsheim'; 
  font-size:14px; 
  margin-bottom:8px; 
}

.brand a:hover { 
  opacity:1 !important; 
}

.footer a { 
  text-decoration:none; 
  color:#ffffff; 
  transition:all 0.3s ease; 
  font-family:'GT Walsheim'; 
  font-size:16px; 
  margin-bottom:14px; 
}

.footer a:hover, .footer .column ul li a:hover { 
  color:#00D6FF; 
  letter-spacing:0.04em; 
  opacity:0.8; 
}

.icono { 
  display:flex; 
  align-items:center; 
  justify-content:center; 
}

.icono i { 
  color:#00D6FF; 
  font-size:14px; 
}

.contact li { 
  font-size:14px; 
  line-height:1.6; }

.social { 
  margin-top:40px; 
}

.social h4 { 
  margin-bottom:16px; 
}

.social ul { 
  display:flex; 
  gap:20px; 
  list-style:none; 
  padding:0; 
  margin:0; 
}

.social ul li { 
  margin-bottom:0; 
}

.contact li, .social ul li { 
  display:flex; 
  align-items:center; 
  gap:10px; 
}

.contact li { 
  align-items:flex-start; 
}

.contact li i { 
  margin-top:4px; 
}

.social-icons { 
  display:flex; 
  gap:20px; 
  list-style:none; 
  padding:0; 
  margin:0; 
}

.social-icons li a i { 
  font-size:20px; 
  color:#ffffff; 
  transition:0.3s; 
}

.social-icons li a:hover i { 
  color:#00D6FF; 
  transition:color 0.3s ease; 
}

.footer-bottom { 
  border-top:1px solid #1C2249; 
  margin-top:80px; 
  padding-top:30px; 
  font-size:12px; 
  display:flex; 
  flex-direction:column; 
  gap:10px; 
}

.footer-bottom p {
  color: #ffffff;
  font-family: 'GT Walsheim';
  font-size: 14px;
}

.footer .column h4 a {
  color: #00D6FF;
  font-family: 'GT Walsheim Bold';
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.footer .column h4 a:hover {
  color: #00D6FF;
  opacity: 0.8;
}

.footer-fundacion {
  margin-top: 20px;
}

@media (min-width: 768px) {
  .footer-fundacion {
    margin-top: 50px;
  }
}

@media (min-width:768px) { 
  .footer-bottom { 
    flex-direction: row; 
    justify-content: space-between; 
  } 
}

@media (max-width: 768px) {
  .footer_logo{
    max-width: 160px;
    height: auto;
  }
.footer-fundacion {
    margin-top: 30px;
    margin-bottom: 0 !important;
  }
}

@media (max-width: 767px) {
  .footer {
    padding-top:35px;
  }
}

/* =========================
   ANIMACIONES
========================= */
@keyframes fadeUp { 
  from { 
    opacity:0; 
    transform:translateY(15px); 
  } to { 
    opacity:1; 
    transform:translateY(0); 
  } 
}

.fade-up { 
  opacity:0; 
  transform:translateY(15px); 
}

.footer.visible .fade-up { 
  animation:fadeUp 0.8s ease forwards; 
}

.delay-1 { 
  animation-delay:0.1s; 
}

.delay-2 { 
  animation-delay:0.2s; 
}

.delay-2-1 {
  animation-delay: 0.25s;
}

.delay-3 { 
  animation-delay:0.3s; 
}

.delay-4 { 
  animation-delay:0.4s; 
}

.delay-5 { 
  animation-delay:0.6s; 
}


.company-status,
.footer {
  position: relative;
  z-index: auto;
}