* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fix for circular elements to maintain perfect circles */
[class*="circle"], .remove-skill, .skill-tag .remove-skill {
  box-sizing: content-box !important;
  flex-shrink: 0;
}

:root {
  --primary-color: #000000;
  --secondary-color: #0a0a0a;
  --accent-color: #3b82f6;
  --text-color: #ffffff;
  --text-secondary: #cccccc;
  --border-color: #1a1a1a;
  --background-color: #000000;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--background-color) !important;
  color: var(--text-color);
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  transition: background-color 0.1s ease-out;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

a {
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-color);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.hero {
  padding: 0;
  position: relative;
  overflow: hidden;
  background-color: var(--primary-color);
}

.hero h1 {
  position: relative;
  top: 9vh;
  left: 78vh;
  padding-top: 0px;
  font-size: 5rem;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 3.5s ease-out forwards;
  color: white;
}

.hero h2 {
  position: relative;
  top: 15vh;
  left: 70vh;
  padding-top: 30px;
  font-size: 5rem;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 3.5s ease-out forwards;
  color: white;
}

.hero h3 {
  position: relative;
  top: 5.6vh;
  left: 88vh;
  padding-top: 20px;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 3.5s ease-out forwards;
}

.spline-container {
  position: relative;
  top: 40px;
  left: 0;
  width: 200vh;
  height: 100vh;
}

.spline-frame {
  width: 200vh;
  height: 200vh;
  border: none;
}

/* Estilos para el nuevo spline-viewer */
.spline-container spline-viewer {
  width: 200vh;
  height: 200vh;
  border: none;
  display: block;
}

.gradient-iframe {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 12vh;
  background: linear-gradient(to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.9) 40%,
    rgba(0, 0, 0, 1) 50%,
    rgb(0, 0, 0) 70%,
    rgb(0, 0, 0) 100%);
  pointer-events: none;
  z-index: 10;
}

.btns {
  display: flex;
  gap: .5rem;
  position: relative;
  left: 895px;
  top: 30px;
}

.button {
  cursor: pointer;
  font-size: 1rem;
  border-radius: 10px;
  border: none;
  padding: 2px;
  background: radial-gradient(circle 80px at 80% -10%, #ffffff, #181b1b);
  position: relative;
  transition: background 0.3s, transform 0.3s;
}

.button:hover {
  transform: scale(0.98);
}

.button::after {
  content: "";
  position: absolute;
  width: 30%;
  height: 30%;
  border-radius: 60px;
  top: 0;
  right: 0;
  box-shadow: 0 0 10px #ffffff38;
  z-index: -1;
  transition: box-shadow 0.3s;
}

.button:hover::after {
  box-shadow: 0 0 10px #ffffff18;
}

.blob1 {
  position: absolute;
  width: 45px;
  height: 100%;
  border-radius: 8px;
  bottom: 0;
  left: 0;
  background: radial-gradient(circle 60px at 0% 100%, #b7d9ff, #235eff80, transparent);
  box-shadow: -5px 5px 15px #0051ff2d;
  transition: background 0.3s, box-shadow 0.3s;
}

.button:hover .blob1 {
  box-shadow: -5px 5px 20px #000;
}

.inner {
  padding: 7px 14px;
  border-radius: 7px;
  color: #fff;
  z-index: 3;
  position: relative;
  background: radial-gradient(circle 80px at 80% -50%, #777777, #0f1111);
  transition: background 0.3s;
}

.button:hover .inner {
  background: radial-gradient(circle 80px at 80% -50%, #333333, #0f0f0f);
}

.inner::before {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 14px;
  background: radial-gradient(circle 60px at 0% 100%, #00e1ff1a, #0000ff11, transparent);
  position: absolute;
  transition: opacity 0.3s;
}

.button:hover .inner::before {
  opacity: 0;
}



button:disabled {
  pointer-events: none;
}

button:hover {
  border: 0.1em solid #292929;
  color: #ffffff ; 
  background-color: #333333; 
  box-shadow: rgba(182, 182, 182, 0.25) 0 8px 15px;
  transform: translateY(-2px);
}

button:active {
  box-shadow: none;
  transform: translateY(0);
}

.btn-more {
  background-color: #e0e0e0;
  color: #000000 !important;
  padding: 10px 30px;
  border-radius: 30px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-more:hover {
  background-color: #1d1d1d;
  color: #a7a7a7 !important;
  transform: translateY(-8px);
}

.btn-empresas {
  background-color: #e0e0e0;
  color: #000000 !important;
  padding: 12px 35px;
  border-radius: 30px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(224, 224, 224, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-empresas::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s;
}

.btn-empresas:hover {
  background-color: #1d1d1d;
  color: #a7a7a7 !important;
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(29, 29, 29, 0.4);
}

.btn-empresas:hover::before {
  left: 100%;
}

.btn-footer {
  background-color: var(--text-color);
  color: var(--primary-color) !important;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  border: none;
}

.btn-footer:hover {
  background-color: #e0e0e0;
}

.btn-footer::after {
  content: "→";
  margin-left: 10px;
}

/* future */
.future {
  margin-bottom: 10px;
  position: relative;
  padding: 80px 0;
  background-color: transparent;
  height: auto;
  min-height: 70vh;
}

.future * {
  color: white;
}

.future h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 50px;
}

.future-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  height: auto;
  min-height: 60vh;
}

.future-steps {
  position: relative;
  top: 0;
  flex: 1;
}

.step {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.step:last-child {
  border-bottom: none;
}

.step h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.step h3 span {
  margin-right: 10px;
  font-weight: 700;
}

.step p {
  color: var(--text-secondary);
}

.titles-future {
  overflow: hidden;
  color: #ffffff;
}

.titles-future span {
  display: inline-block;
}

.future--conteiner-iframe {
  position: relative;
  top: 0;
  right: 0;
  height: 70vh;
  width: 70vh;
  overflow: visible;
  animation: float 6s ease-in-out infinite;
}

.future-iframe {
  position: relative;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.future-iframe iframe {
  width: 100%;
  height: 130%;
  transform: translateY(-10%);
  border: none;
  pointer-events: auto;
}

/* limitless */
.limitless {
  position: relative;
  overflow: hidden;
  background: transparent;
  min-height: 100vh;
  height: 100vh;
}

.limitless * {
  color: white;
}

.limitless-container {
  display: flex;
  width: 400vw;
  height: 100vh;
  will-change: transform;
  position: relative;
}

.limitless-panel {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  padding: 0 2rem;
}

.limitless-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.limitless-text h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 2rem;
  color: white;
  line-height: 1.2;
  font-style: italic;
}

.limitless-text p {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.floating-elements {
  position: relative;
  height: 400px;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  color: white;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.floating-card h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #60a5fa;
}

.floating-card.card-1 {
  top: 20px;
  left: 50px;
  transform: rotate(-5deg);
}

.floating-card.card-2 {
  top: 120px;
  right: 30px;
  transform: rotate(8deg);
}

.floating-card.card-3 {
  bottom: 50px;
  left: 20%;
  transform: rotate(-3deg);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(96, 165, 250, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(96, 165, 250, 0.3);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #60a5fa;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #cccccc;
  font-size: 0.9rem;
}

.opportunity-showcase {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.opportunity-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.opportunity-card:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.1);
}

.opportunity-icon {
  font-size: 2rem;
}

.opportunity-card h4 {
  color: white;
  margin: 0;
  font-size: 1.1rem;
}

.opportunity-card p {
  color: #cccccc;
  margin: 0;
  font-size: 0.9rem;
}

.inclusion-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  color: white;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.feature-icon {
  font-size: 1.5rem;
}

.inclusion-graphic {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto;
}

.diversity-circle {
  position: absolute;
  border-radius: 50%;
  border: 3px solid rgba(96, 165, 250, 0.6);
}

.circle-1 {
  width: 80px;
  height: 80px;
  top: 20px;
  left: 20px;
  background: rgba(255, 107, 107, 0.3);
}

.circle-2 {
  width: 60px;
  height: 60px;
  top: 50px;
  right: 30px;
  background: rgba(78, 205, 196, 0.3);
}

.circle-3 {
  width: 70px;
  height: 70px;
  bottom: 60px;
  left: 40px;
  background: rgba(255, 195, 113, 0.3);
}

.circle-4 {
  width: 90px;
  height: 90px;
  bottom: 20px;
  right: 20px;
  background: rgba(196, 113, 237, 0.3);
}

.center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  font-weight: 700;
  color: white;
  text-align: center;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-primary-large, .btn-secondary-large {
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  color: white !important;
}

.btn-primary-large {
  background: linear-gradient(45deg, #60a5fa, #3b82f6);
  color: white !important;
  border: none;
}

.btn-primary-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(96, 165, 250, 0.4);
}

.btn-secondary-large {
  background: transparent;
  color: white !important;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary-large:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.success-stories {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.story-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border-left: 4px solid #60a5fa;
  transition: all 0.3s ease;
}

.story-card:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.1);
}

.story-avatar {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.story-card p {
  color: white;
  font-style: italic;
  margin: 0.5rem 0;
}

.story-card span {
  color: #60a5fa;
  font-size: 0.9rem;
}

.scroll-progress {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}

.progress-bar {
  position: relative;
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, #60a5fa, #3b82f6);
  width: var(--progress, 25%);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.progress-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.dot.active {
  background: #60a5fa;
  transform: scale(1.2);
}

/* services */
.services {
  padding: 80px 0;
  background-color: #ffffff;
}

.services * {
  color: black;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}

.services-header h2 {
  font-size: 1.8rem;
  font-weight: 600;
  position: relative;
  color: #000000;
  margin: 0;
  padding-bottom: 10px;
}

.services-header h2::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 180px;
  height: 3px;
  background-color: #ffffff;
}

.services-link {
  display: flex;
  align-items: center;
  color: #000000;
  font-size: 0.9rem;
  text-decoration: none;
}

.services-link::after {
  content: "→";
  margin-left: 10px;
}

.services-slider-container {
  position: relative;
  width: 102%;
  overflow: hidden;
  margin-bottom: 30px;
}

.services-grid {
  position: relative;
  left: 1.5rem;
  display: flex;
  gap: 15px;
  width: max-content;
  padding-top: 3rem;
  padding-bottom: 3rem;
  transition: none;
}

.services-pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.services-pagination span {
  width: 12px;
  height: 12px;
  background-color: #ddd;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.services-pagination span.active {
  background-color: #000000;
  width: 28px;
  border-radius: 8px;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white !important;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
  z-index: 10;
  opacity: 0;
}

.services:hover .slider-nav {
  opacity: 1;
}

.slider-nav.prev { left: 20px; }
.slider-nav.next { right: 20px; }

.card {
  --card-bg: #ffffff;
  --card-accent: #000000;
  --card-text: #000000;
  --card-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.10);

  width: 380px;
  height: 320px;
  background: var(--card-bg);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  flex-shrink: 0;
}

.card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0) 40%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card__glow {
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle at 50% 0%, rgba(0, 0, 0, 0.010) 0%, rgba(124, 58, 237, 0) 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.card__content {
  padding: 1.25em;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75em;
  position: relative;
  z-index: 2;
}

.card__image {
  width: 100%;
  height: 100px;
  background-image: url(../img/artes.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 12px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
}

.card__text {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
}

.card__title {
  color: var(--card-text) !important;
  font-size: 1.1em;
  margin: 0;
  font-weight: 700;
  transition: all 0.3s ease;
}

.card__description {
  color: var(--card-text) !important;
  font-size: 0.75em;
  margin: 0;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.card__categorie {
  color: var(--card-text) !important;
  font-weight: 700;
  font-size: 1em;
  transition: all 0.3s ease;
}

.card button,
.card .card__button {
  background-color: #000000 !important;
  color: #ffffff !important;
  border: 1px solid #000000;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.card button:hover,
.card .card__button:hover {
  background-color: #333333 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.2);
}

.card:hover .card__shine {
  opacity: 1;
  animation: shine 3s infinite;
}

.card:hover .card__glow {
  opacity: 1;
}

.card:hover .card__image {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.card:hover .card__title {
  color: var(--card-accent) !important;
  transform: translateX(2px);
}

.card:hover .card__description {
  opacity: 1;
  transform: translateX(2px);
}

.card:hover .card__categorie {
  color: var(--card-accent) !important;
  transform: translateX(2px);
}

.card:active {
  transform: translateY(-5px) scale(0.98);
}

.card__company {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.company-logo {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.card__company span {
  font-size: 0.8em;
  color: var(--card-text);
  font-weight: 500;
  opacity: 0.8;
}

.service-card {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

.service-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 1;
}

.service-logo {
  position: relative;
  left: 280px;
  width: 60px;
  height: 60px;
  margin: 20px 0 0 20px;
  background-color: white;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.service-logo img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 15px 20px;
  line-height: 1.4;
  max-width: 60%;
}

.service-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 65%;
  height: 65%;
  z-index: 0;
  overflow: hidden;
}

.h3service {
  z-index: 1;
}

.service-image img {
  opacity: 40%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.companies {
  padding: 80px 0;
  background-color: #ffffff;
  color: #000000;
}

.companies-tabs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.tab {
  padding: 10px 20px;
  border: 1px solid #000;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 10px;
  color: #000000 !important;
}

.tab.active,
.tab:hover {
  background-color: #000;
  color: #fff !important;
}

.companies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.company-card {
  border: 1px solid #eee;
  padding: 20px;
}

.company-image {
  margin-bottom: 20px;
}

.company-image img {
  width: 100%;
  height: 150px;
  object-fit: contain;
}

.company-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.company-info h3 span {
  color: #666;
  margin-right: 10px;
  font-weight: 400;
}

.company-info p {
  color: #666;
  font-size: 0.9rem;
}

.companies-cta {
  text-align: center;
}

.partners {
  padding: 40px 0;
  background-color: #ffffff;
  color: #000000;
}

.partners-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  animation: scroll 30s linear infinite;
  width: max-content;
}

.partner {
  font-size: 2.5rem;
  font-weight: 300;
  color: #888;
  padding: 0 40px;
  white-space: nowrap;
}

.categories {
  padding: 80px 0;
  background-color: #ffffff;
  color: #000000;
}

.categories-content {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.categories-text {
  flex: 1;
}

.categories-text h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #000000;
  font-family: "Times New Roman", serif;
  letter-spacing: -1px;
}

.categories-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 40px;
  margin-bottom: 40px;
}

.category {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  color: #000000;
  text-transform: uppercase;
}

.category:hover {
  color: var(--accent-color);
  transform: translateY(-8px);
}

.categories-images {
  position: relative;
  top: 20px;
  flex: 1.5;
  display: flex;
  gap: 15px;
}

.category-image {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.category-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.image-caption {
  position: static;
  width: 100%;
  padding: 15px 0;
  text-align: center;
  color: black;
  background-color: transparent;
}

.image-caption h4 {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}

.image-caption p {
  font-size: 0.8rem;
  color: #333;
  font-style: italic;
  margin: 0;
}

footer {
  padding: 80px 0 30px;
  background-color: var(--primary-color);
  background-image: radial-gradient(circle at top center, rgba(41, 52, 92, 0.5), rgba(0, 0, 0, 1) 70%);
  color: var(--text-color);
  position: relative;
}

.footer-content {
  display: flex;
  flex-direction: column;
}

.italic {
  font-style: italic;
  font-weight: 300;
}

.footer-content h2 {
  font-size: 3.5rem;
  margin-bottom: 80px;
  text-align: center;
  line-height: 1.2;
  font-weight: 400;
}

.footer-content h2 span {
  font-weight: 700;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links a {
  color: var(--text-color);
  transition: all 0.3s ease;
  font-size: 1rem;
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-cta {
  position: relative;
  right: 475px;
  text-align: right;
}

.footer-cta p {
  margin-bottom: 15px;
  color: var(--text-color);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  color: var(--text-secondary);
  font-size: 0.8rem;
  margin-top: 50px;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(1deg);
  }
  50% {
    transform: translateY(-10px) rotate(0deg);
  }
  75% {
    transform: translateY(-20px) rotate(-1deg);
  }
}

@keyframes floatSubtle {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes shine {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.triunfaje {
  position: relative;
  right: 20px;
}

@media (max-width: 1024px) {
  .hero h1, .hero h2 {
    font-size: 4rem;
  }

  .companies-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Estilos para la imagen de móviles */
.mobile-hero-image {
  display: none;
}

/* Imagen para móviles en la sección future */
  .future-mobile-image {
    display: none;
  }

  /* TABLET RESPONSIVE */
@media (max-width: 1024px) and (min-width: 769px) {
  .services {
    padding: 80px 0;
  }

  .services-header h2 {
    font-size: 2rem;
  }

  .services-grid {
    gap: 20px;
    padding: 2rem 0;
  }

  .card {
    width: 320px;
    height: 380px;
    min-width: 320px;
  }

  .card__content {
    padding: 1.2em;
  }

  .card__image {
    height: 100px;
  }

  .card__title {
    font-size: 1.1em;
  }

  .card__description {
    font-size: 0.8em;
  }

  .card__company {
    gap: 8px;
  }

  .company-logo {
    width: 30px;
    height: 30px;
  }

  .slider-nav {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .companies-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .company-image {
    height: 150px;
  }
}

@media (max-width: 768px) {
    /* Contenedor general */
    .container {
      padding: 0 15px;
      max-width: 100%;
      overflow-x: hidden;
    }

    html, body {
      overflow-x: hidden;
      width: 100%;
    }

    .header-content {
      flex-direction: column;
    }

    .header-icons {
      position: static;
      transform: none;
      margin-top: 15px;
      justify-content: center;
    }

    nav ul {
      flex-direction: column;
      gap: 10px;
    }

    /* SECCIÓN HERO RESPONSIVE */
    .hero {
      padding: 80px 0 0 0;
      min-height: 100vh;
      height: 100vh;
      text-align: center;
      background-color: #000000;
      position: relative;
      overflow: hidden;
    }

    /* Ocultar modelo 3D en móviles */
    .spline-container {
      display: none !important;
    }

    .gradient-iframe {
      display: none !important;
    }

    .btns {
      display: none !important;
    }

    /* Mostrar imagen solo en móviles */
     .mobile-hero-image {
       display: block;
       position: absolute;
       top: 200px;
       left: 0;
       width: 100%;
       height: calc(100% - 200px);
       z-index: 1;
       opacity: 0;
       transform: scale(1.1);
       animation: mobileImageFadeIn 2s ease-out forwards;
     }

     .mobile-hero-image img {
       width: 95%;
       height: 80%;
       object-fit: cover;
       object-position: center;
       margin: 10% auto;
       display: block;
     }

     @keyframes mobileImageFadeIn {
       0% {
         opacity: 0;
         transform: scale(1.1);
       }
       100% {
         opacity: 1;
         transform: scale(1);
       }
     }

  /* Texto del hero responsive */
  .hero h1, .hero h2 {
    font-size: 2.2rem;
    position: relative;
    text-align: center;
    left: auto;
    top: 20px;
    padding: 10px 20px;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    color: white;
    text-shadow: none;
    line-height: 1.2;
    margin: 0.5rem 0;
    z-index: 2;
  }

  .hero h3 {
    font-size: 1.1rem;
    position: relative;
    text-align: center;
    left: auto;
    top: 20px;
    padding: 5px 20px;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    z-index: 2;
  }

  /* SECCIÓN FUTURE RESPONSIVE */
  .future {
    padding: 60px 0;
  }

  .future-content {
    flex-direction: column;
    gap: 3rem;
  }

  .future-steps {
    order: 2;
  }

  .step {
    margin-bottom: 2rem;
    text-align: center;
  }

  .step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .steps-p {
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0 10px;
  }

  .future--conteiner-iframe {
    display: none;
  }

  .future-iframe {
    display: none;
  }

  /* Imagen para reemplazar el modelo 3D en la sección future */
  .future-mobile-image {
    display: block;
    width: 100%;
    text-align: center;
    margin: 2rem 0;
    order: 1;
  }

  .future-mobile-image img {
    width: 90%;
    max-width: 350px;
    height: auto;
    border-radius: 15px;
  }

  /* NUEVA SECCIÓN INNOVADORA PARA MÓVILES */
  .limitless {
    display: none !important;
  }

  /* Mostrar innovation-hub solo en móviles */
  .innovation-hub {
    display: block !important;
  }

  /* Nueva sección: Innovation Hub */
  .innovation-hub {
    padding: 60px 0;
    background: #000000;
    position: relative;
    overflow: hidden;
  }

  .innovation-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
  }

  .innovation-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .innovation-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .innovation-header p {
    font-size: 1.1rem;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
  }

  /* Grid de características principales */
  .innovation-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .innovation-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }

  .innovation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
  }

  .innovation-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(96, 165, 250, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(96, 165, 250, 0.2);
  }

  .innovation-card:hover::before {
    left: 100%;
  }

  .innovation-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    position: relative;
    overflow: hidden;
  }

  .innovation-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
  }

  .innovation-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
  }

  .innovation-card p {
    font-size: 0.95rem;
    color: #ffffff;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .innovation-metric {
    display: inline-block;
    background: rgba(96, 165, 250, 0.2);
    color: #60a5fa;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(96, 165, 250, 0.3);
  }

  /* Sección de estadísticas rápidas */
  .quick-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 40px 0;
  }

  .stat-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
  }

  .stat-box:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
  }

  .stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
  }

  .stat-label {
    font-size: 0.85rem;
    color: #ffffff;
    font-weight: 500;
  }

  /* Botones de acción */
  .innovation-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
    align-items: center;
  }

  .action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 300px;
    font-size: 1rem;
  }

  .action-btn-primary {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    color: #ffffff !important;
    border: none;
    box-shadow: 0 10px 25px rgba(96, 165, 250, 0.3);
  }

  .action-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(96, 165, 250, 0.4);
  }

  .action-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.2);
  }

  .action-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(96, 165, 250, 0.5);
    transform: translateY(-3px);
  }

  /* Animaciones */
  @keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
  }

  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
  }

  .innovation-card:nth-child(1) { animation: float 6s ease-in-out infinite; }
  .innovation-card:nth-child(2) { animation: float 6s ease-in-out infinite 1s; }
  .innovation-card:nth-child(3) { animation: float 6s ease-in-out infinite 2s; }
  .innovation-card:nth-child(4) { animation: float 6s ease-in-out infinite 3s; }

  /* SERVICIOS RESPONSIVE MOBILE */
  .services {
    padding: 40px 0;
  }

  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 0 15px;
  }

  .services-header h2 {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .services-slider-container {
    width: 100%;
    padding: 0 5px;
    overflow: hidden;
  }

  .services-grid {
    left: 0;
    gap: 12px;
    padding: 1.5rem 0;
  }

  .card {
    width: 260px;
    height: 340px;
    min-width: 260px;
    margin: 0 6px;
  }

  .card__content {
    padding: 0.8em;
    gap: 0.4em;
  }

  .card__image {
    height: 70px;
    border-radius: 8px;
  }

  .card__title {
    font-size: 0.95em;
    line-height: 1.3;
    margin-bottom: 4px;
  }

  .card__description {
    font-size: 0.65em;
    line-height: 1.4;
    margin-bottom: 8px;
  }

  .card__categorie {
    font-size: 0.75em;
    padding: 4px 8px;
  }

  .card button {
    padding: 0.35rem 0.7rem;
    font-size: 0.75rem;
    border-radius: 6px;
  }

  .card__company {
    margin-top: 6px;
    padding-top: 6px;
    gap: 5px;
  }

  .company-logo {
    width: 22px;
    height: 22px;
    border-radius: 50%;
  }

  .card__company span {
    font-size: 0.65em;
    color: #a0a0a0;
  }

  .slider-nav {
    width: 35px;
    height: 35px;
    font-size: 14px;
    border-radius: 50%;
  }

  .slider-nav.prev { left: 2px; }
  .slider-nav.next { right: 2px; }

  .services-pagination {
    margin-top: 25px;
    padding: 0 15px;
  }

  .services-pagination span {
    width: 8px;
    height: 8px;
    margin: 0 3px;
  }

  .services-pagination span.active {
    width: 20px;
  }

  /* SECCIÓN COMPANIES RESPONSIVE */
  .companies {
    padding: 60px 0;
  }

  .companies-tabs {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
  }

  .tab {
    font-size: 0.8rem;
    padding: 8px 16px;
    text-align: center;
    width: 100%;
    max-width: 280px;
  }

  .companies-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .company-card {
    flex-direction: column;
    text-align: center;
  }

  .company-image {
    width: 100%;
    height: 120px;
    margin-bottom: 1rem;
  }

  .company-info h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .company-info p {
    font-size: 0.8rem;
    line-height: 1.6;
  }

  .companies-cta {
    text-align: center;
    margin-top: 2rem;
  }

  .btn-empresas {
    padding: 15px 30px;
    font-size: 1rem;
  }

  /* SECCIÓN PARTNERS RESPONSIVE */
  .partners {
    padding: 40px 0;
  }

  .partner {
    font-size: 1.5rem;
    padding: 0 20px;
  }

  /* FOOTER RESPONSIVE */
  .footer-columns {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-cta {
    text-align: center;
    right: auto;
    position: static;
  }

  .footer-content h2 {
    font-size: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  /* SCROLL PROGRESS RESPONSIVE */
  .scroll-progress {
    bottom: 20px;
    right: 20px;
  }

  .progress-dots {
    flex-direction: column;
    gap: 8px;
  }

  .dot {
    width: 8px;
    height: 8px;
  }

  /* UTILIDADES GENERALES */
  .titles-future {
    font-size: 1.8rem !important;
    text-align: center;
  }

  /* Ajustes de espaciado */
  section {
    padding: 50px 0;
  }

  h1, h2, h3 {
    text-align: center;
  }

  /* Botones responsive */
  button, .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    border-radius: 8px;
  }

  /* Imágenes responsive */
  img {
    max-width: 100%;
    height: auto;
  }
}

/* Desktop: Ocultar innovation-hub y mostrar limitless */
@media (min-width: 769px) {
  .innovation-hub {
    display: none !important;
  }
  
  .limitless {
    display: block !important;
  }
}

@media (max-width: 992px) {
  .categories-content {
    flex-direction: column;
    gap: 50px;
  }

  .categories-images {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .category-image {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 250px;
  }
}