:root {
  --dark-bg: #0a0a0a;
  --text-color: #ffffff;
  --highlight-color: #0592f0;
  --background-bg: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgb(0, 21, 36) 100%);
  --background-gradient: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 21, 36, 0.979) 100%);
  --text-color: #ffffff;
  --border-color: #1e3a5f;
  --post-background: rgba(4, 27, 58, 0.5);
  --search-text: #a0a0a0;
  --icon-color: #ffffff;
  --background: #000000;
  --foreground: #ffffff;
  --primary: #3b82f6;
  --primary-foreground: #ffffff;
  --muted: #6b7280;
  --muted-foreground: #9ca3af;
  --border: #1f2937;
  --color-dark: #021422;
  --color-light: #041b3a;
  --color-accent: #bbbdc2;
  --color-text: #545e69;
  --color-highlight: #7c8c8c;
  --background-color: #0a0118;
}

@font-face {
  font-family: 'Century Gothic';
  src: local('Century Gothic');
}

body,
html {
  font-family: 'Century Gothic', system-ui, sans-serif;
  margin: 0;
  padding: 0;
  overflow: hidden;
  /* Evita el scroll predeterminado */
}

.hero-portfolio {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  position: relative;
  opacity: 0;
  animation: fadeIn 2s 1s forwards;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content-portfolio {
  position: relative;
  width: 100%;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 0 2rem;
}

.hero-portfolio::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(2, 20, 34, 0.95) 70%, rgba(2, 20, 34, 1) 100%);
  z-index: 1;
}

/* Blueprint grid overlay */
.blueprint-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 2;
  pointer-events: none;
  opacity: 0.5;
}

/* Decorative elements */
.hero-decorative-line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform-origin: left;
  animation: expandLine 1.5s ease-out forwards;
}

.hero-side-text {
  position: absolute;
  left: -3rem;
  top: 50%;
  transform: rotate(-90deg) translateX(-50%);
  transform-origin: left;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}

/* Main content styles */
.hero-main-content {
  text-align: left;
  max-width: 800px;
}

.spaceport-portfolio {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.line-before,
.line-after {
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  flex: 1;
  transform: scaleX(0);
  animation: expandLine 1.5s ease-out forwards;
}

.main-title-portfolio {
  font-size: 4.5rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 3rem;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.title-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUpFade 0.8s ease-out forwards;
}

.title-line:nth-child(2) {
  animation-delay: 0.2s;
}

.title-line:nth-child(3) {
  animation-delay: 0.4s;
}

/* Stats section */
.hero-stats {
  opacity: 0;
  animation: fadeIn 1s ease-out 1.5s forwards;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 600;
  color: #fff;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
}

.stat-separator {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
}

/* Scroll container styles */
.scroll-container {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.mouse-icon {
  width: 25px;
  height: 42px;
  border: 2px solid white;
  border-radius: 20px;
  position: relative;
}

.mouse-wheel {
  width: 6px;
  height: 10px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel 1.5s infinite;
}

.arrow-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
  opacity: 0.7;
  animation: arrow-move 1.5s infinite;
}

/* Animations */
@keyframes expandLine {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scroll-wheel {
  0% {
    opacity: 1;
    transform: translate(-50%, 0);
  }

  50% {
    opacity: 0;
    transform: translate(-50%, 10px);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes arrow-move {
  0% {
    opacity: 0;
    transform: translateY(-5px) rotate(45deg);
  }

  50% {
    opacity: 1;
    transform: translateY(0) rotate(45deg);
  }

  100% {
    opacity: 0;
    transform: translateY(5px) rotate(45deg);
  }
}

@media (max-width: 480px) {
  .main-title-portfolio {
    font-size: 2rem;
  }
}

.fullscreen-container {
  position: relative;
  height: 100vh;
  overflow-y: scroll;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}

.fullscreen-section {
  height: 100vh;
  width: 100%;
  scroll-snap-align: start;
  position: relative;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-color);
  line-height: 1.6;
}

.background-gradients {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.gradient-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 21, 36, 0.84) 100%);
}

.gradient-2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(59, 131, 246, 0.18) 0%, rgba(59, 130, 246, 0) 70%);
}

.gradient-3 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(138, 92, 246, 0.12) 0%, rgba(139, 92, 246, 0) 70%);
}


/* Estilización del scrollbar */
::-webkit-scrollbar {
  width: 10px;
  /* Ancho del scrollbar */
}

::-webkit-scrollbar-track {
  background: transparent;
  /* Fondo del track */
  border-radius: 5px;
  /* Bordes redondeados */
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #6e57e0, #8f84ff);
  /* Color del thumb */
  border-radius: 5px;
  /* Bordes redondeados */
  border: 2px solid transparent;
  /* Borde del thumb */
  background-clip: content-box;
  /* Para que el borde no se superponga */
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, #5a44c9, #7b71ff);
  /* Color del thumb al pasar el mouse */
}

.background-gradients {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.gradient-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 21, 36, 0.84) 100%);
}

.gradient-2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(59, 131, 246, 0.18) 0%, rgba(59, 130, 246, 0) 70%);
}

.gradient-3 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(138, 92, 246, 0.12) 0%, rgba(139, 92, 246, 0) 70%);
}


/* Main Content */
.main-content {
  padding: 2rem 1.5rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-grid {
  display: grid;
  gap: 3rem;
  width: 100%;
}

.text-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.main-title {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.main-description {
  font-size: 1.25rem;
  color: #d1d5db;
}

.sub-description {
  color: #9ca3af;
}

/* Combined Section */
.combined-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 2rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.start-services {
  font-size: 30px;
  text-align: center;
  margin-bottom: 2rem;
}

.highlight {
  color: var(--highlight-color);
}

.container-section2 {
  width: 100%;
  padding: 2rem;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  width: 100%;
}

/* Left Column */
.left-column {
  padding-left: 2rem;
  padding-right: 0;
  overflow-y: scroll;
  height: 50vh;
  position: relative;
  max-height: 60vh;
}

.left-column::-webkit-scrollbar {
  width: 8px;
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
}

.left-column::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
  height: 20px;
}

.left-column::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  height: 20px;
  transition: background-color 0.3s ease;
}

.left-column::-webkit-scrollbar-thumb:hover {
  background-color: rgb(255, 255, 255);
  cursor: pointer;
}

.left-column::-webkit-scrollbar-thumb:active {
  background-color: rgba(255, 255, 255, 0.9);
}

/* Text Sections */
.text-section {
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0.3;
  transition: opacity 0.5s ease;
  padding: 3rem 0 0 5rem;
}

.text-section.active {
  opacity: 1;
}

.text-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.text-section p {
  font-size: 1.25rem;
  color: rgb(255, 255, 255);
  max-width: 600px;
}

/* Right Column */
.right-column {
  position: relative;
  height: 60vh;
}

.image-container {
  position: sticky;
  top: 0;
  right: 0;
  z-index: 10;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vh;
  width: auto;
}

.image-container img {
  position: absolute;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.image-container img.active {
  opacity: 1;
}

/* Media Queries */
@media (min-width: 768px) {
  .nav-text {
    display: block;
  }

  .main-title {
    font-size: 3.75rem;
  }

  .content-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .main-content {
    padding: 4rem 1.5rem;
  }
}

@media (max-width: 1024px) {
  .content-wrapper {
    grid-template-columns: 1fr;
  }

  .right-column {
    display: none;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .text-section h2 {
    font-size: 2rem;
  }

  .left-column {
    max-height: none;
    overflow-y: visible;
  }
}

.banner-final {
  min-height: 100vh;
  height: auto;
}

/* Media Queries */
@media (min-width: 768px) {
  .nav-text {
    display: block;
  }

  .main-title {
    font-size: 3.75rem;
  }

  .content-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .main-content {
    padding: 4rem 1.5rem;
  }
}

@media (max-width: 1024px) {
  .content-wrapper {
    grid-template-columns: 1fr;
  }

  .right-column {
    display: none;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .text-section h2 {
    font-size: 2rem;
  }

  .left-column {
    max-height: none;
    overflow-y: visible;
  }
}

.banner-final {
  min-height: 100vh;
  height: auto;
}

.contacts-banner-container {
  color: var(--text-color);
  padding: 4rem 2rem;
  border-radius: 1rem;
  text-align: center;
  /* Centrar el texto */
  position: relative;
  /* Para el efecto de fondo */
}

.contacts-banner-gradient-blob {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.5) 70%);
  z-index: 0;
  /* Colocar detrás del contenido */
  animation: blobAnimation 10s infinite alternate;
  /* Animación del blob */
}

@keyframes blobAnimation {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.05);
  }
}

.contacts-banner-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffffffaf;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(185, 185, 185, 0.466);
}

.contacts-banner-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  /* Espaciado ajustado */
}

.contacts-banner-invite {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  /* Espaciado ajustado */
  font-style: italic;
  /* Estilo en cursiva para destacar */
}

.contacts-banner-cta-button {
  background-color: var(--highlight-color);
  color: white;
  border: none;
  border-radius: 9999px;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  /* Para el efecto de sombra */
}

.contacts-banner-cta-button:hover {
  background-color: #007bb5;
  transform: scale(1.05);
}

/* Responsive design */
@media (max-width: 768px) {
  .contacts-banner-promo-card {
    padding: 1.5rem;
  }

  .contacts-banner-title {
    font-size: 2rem;
  }

  .contacts-banner-description {
    font-size: 1.125rem;
  }
}

/* Añadimos animación al cargar la página */
@keyframes contacts-banner-fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contacts-banner-text-content {
  animation: contacts-banner-fadeIn 1s ease-out;
}

/* Efecto de brillo en el blob */
@keyframes contacts-banner-glowEffect {
  0% {
    filter: blur(50px) brightness(1);
  }

  50% {
    filter: blur(45px) brightness(1.2);
  }

  100% {
    filter: blur(50px) brightness(1);
  }
}

.fullscreen-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.fullscreen-container {
  width: 100%;
  overflow-x: hidden;
}

.banner-final {
  min-height: auto;
  height: auto;
}

.main-content,
.combined-section,
.contacts-banner-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.cloneable-ForAll {
  background: transparent !important;
}

.container-services-section {
  display: grid;
  height: 100vh;
}

.titulo-services-section.main {
  text-align: center;
}

.image-container img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-mask-image: radial-gradient(circle, rgb(13, 37, 46) 60%, rgba(12, 29, 66, 0.932) 100%);
  mask-image: radial-gradient(circle, rgb(13, 37, 46) 60%, rgba(12, 29, 66, 0) 100%);
}

.timeline {
  overflow-y: scroll;
  /* Mantiene la funcionalidad del scroll */
  padding: 2rem;
  position: relative;
  scrollbar-width: none;
  /* Oculta la barra de desplazamiento en Firefox */
  min-height: 100vh;
}

.timeline::-webkit-scrollbar {
  display: none;
  /* Oculta la barra de desplazamiento en Chrome, Edge y Safari */
}

.timeline-items {
  padding-left: 8rem;
}

.timeline-item {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  opacity: 0.4;
  transition: opacity 0.5s ease;
}

.timeline-item.active {
  opacity: 1;
}

.icon-circle {
  position: absolute;
  left: -5.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(0, 132, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  /* Se agranda */
  100% {
    transform: scale(1);
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    transform: scale(2.5);
    /* Expansión */
    opacity: 0;
    /* Desaparece */
  }
}

.timeline-item.active .icon-circle {
  background: linear-gradient(to right, #2bb3dc, #0a4958);
  transform: translateY(-50%) scale(1.2);
  animation: heartbeat 1.5s infinite ease-in-out;
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #a78bfa;
  transition: all 0.3s ease;
}

.timeline-item.active .icon {
  color: white;
}

.content-services-section {
  padding-left: 1rem;
}

.subtitle {
  font-size: 0.8rem;
  color: white;
  text-shadow: 2px 2px 2px rgba(0, 133, 255);
}

.titulo-services-section {
  font-size: 1.5rem;
  margin: 0.5rem 0;
}

.parrafo-services-section {
  color: #9ca3af;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  line-height: 1.3rem;
  transition: all 0.3s ease;
}

.parrafo-services-section:hover {
  color: var(--foreground);
  transform: translateX(5px);
}

.image-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100vh;
  overflow: hidden;
  opacity: 0.8;
}

#timeline-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.cta-button {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-accent);
  padding: 10px 28px;
  font-size: 10px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, #0a4e8f, transparent);
  transition: all 0.4s ease;
}

.cta-button:hover {
  color: white;
  border-color: white;
}

.cta-button:hover::before {
  left: 100%;
}

.timeline-item:not(.active) .cta-button {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.timeline-item.active .cta-button {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Estilos base para dispositivos móviles */
@media (max-width: 768px) {
  .container {
    grid-template-columns: 1fr;
  }

  .timeline {
    width: 100%;
    padding: 1rem;
  }

  .timeline-items {
    padding-left: 4rem;
  }

  .icon-circle {
    left: -3rem;
    width: 2rem;
    height: 2rem;
  }

  .progress-line {
    left: 3rem;
  }

  .titulo-services-section {
    font-size: 2rem;
  }

  .parrafo-services-section {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .image-container {
    display: none;
  }

  /* Nuevos estilos para el fondo de imagen en móviles */
  .timeline-item {
    position: relative;
    z-index: 1;
  }

  .timeline-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 580px;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: right bottom;
    /* Posiciona la imagen en la esquina inferior derecha */
    opacity: 0.15;
    z-index: -1;
    transition: opacity 0.5s ease;
    mask-image: radial-gradient(ellipse at bottom right, black 10%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at bottom right, black 10%, transparent 70%);
    border-bottom-right-radius: 100%;
  }

  .timeline-item.active::before {
    opacity: 1;
    /* Reduce la opacidad para hacer la imagen más sutil */
  }

  .content {
    background-color: rgba(10, 1, 24, 0.349);
    /* Aumenta la opacidad del fondo para mejorar la legibilidad */
    padding: 1rem;
    border-radius: 8px;
    position: relative;
    z-index: 2;
    /* Asegura que el contenido esté por encima de la imagen de fondo */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
}

/* Estilos para tablets */
@media (min-width: 769px) and (max-width: 1024px) {
  .container-services-section {
    grid-template-columns: 1fr 1fr;
  }

  .timeline {
    padding: 1.5rem;
  }

  .timeline-items {
    padding-left: 6rem;
  }

  .titulo-services-section {
    font-size: 2.5rem;
  }

  .parrafo-services-section {
    font-size: 1.25rem;
    line-height: 2rem;
  }

  .image-container {
    width: 50%;
  }
}

/* Ajustes para pantallas más grandes */
@media (min-width: 1025px) {
  .container-services-section {
    grid-template-columns: 1fr 1fr;
  }

  .timeline {
    padding: 2rem;
  }

  .timeline-items {
    padding-left: 8rem;
  }
}

/* Ajustes generales para mejorar la responsividad */
.timeline-item {
  min-height: auto;
  padding: 2rem 0;
}

#timeline-image {
  object-position: center;
}

/***********************/
/* Estilos contáctanos */
/***********************/

.contacts-banner-container {
  position: relative;
  /* Para posicionar el logo de fondo */
  border-radius: 1rem;
  /* Bordes redondeados */
  padding: 4rem 2rem;
  /* Espaciado interno */
  color: #ffffff;
  /* Color del texto */
  transition: all 0.4s ease;
}

.contacts-banner-container:hover {
  transform: translateY(-5px);
}

.background-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30%;
  /* Ajustado para un mejor encuadre */
  height: 30%;
  /* Ajustado para un mejor encuadre */
  background-image: url('View/img/Logo_Phone.png');
  /* Cambia la URL por la de tu logo */
  background-size: contain;
  /* Ajusta el tamaño del logo */
  background-repeat: no-repeat;
  /* Evita que el logo se repita */
  background-position: center;
  /* Centra el logo */
  opacity: 0.7;
  /* Mantiene la opacidad */
  transform: translate(-50%, -50%);
  /* Centra el logo */
  z-index: -1;
  /* Coloca el logo detrás del contenido */
  filter: drop-shadow(0 0 20px rgb(255, 255, 255));
  /* Efecto brilloso más notable */
}

.luxurious-button {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-accent);
  padding: 12px 30px;
  font-size: 15px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease;
  margin-top: 25px;
  position: relative;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.luxurious-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, z transparent,
      rgba(59, 130, 246, 0.1),
      transparent);
  transition: left 0.7s ease;
}

.luxurious-button:hover {
  background: rgba(59, 130, 246, 0.05);
  border-color: rgba(59, 130, 246, 0.3);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.1);
}

.luxurious-button:hover::before {
  left: 100%;
}

.luxurious-button:active {
  transform: translateY(0);
}

/* Gradient blob effect */
.contacts-banner-gradient-blob {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 100%;
  background: linear-gradient(135deg, rgba(192, 34, 255, 0.6), rgba(38, 124, 211, 0.6), transparent);
  /* Colores más vibrantes */
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
  animation: moveBlob 10s ease-in-out infinite;
}

@keyframes moveBlob {
  0% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(100px, 50px) scale(1.2, 0.8);
  }

  50% {
    transform: translate(0, 100px) scale(1.2, 0.8);
  }

  75% {
    transform: translate(-100px, 50px) scale(1.2, 0.8);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

/*baneer ------------------------------------------------------------------------------------------*/

/* Hero container */
.hero-banner-services {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 2s 1s forwards;
}

/* Video de fondo */
.background-video-banner-services {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: filter 0.5s ease;
}

.hero-banner-services:hover .background-video-banner-services {
  filter: brightness(1.2) contrast(1.1);
}

/* Overlay con gradiente elíptico */
.overlay-banner-services {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}

/* Contenido principal */
.content-banner-services {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
}

.content-wrapper-banner-services {
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  animation: fadeIn 1s ease-out;
}



/* Estilos del header */
.header-banner-services {
  margin-bottom: 2rem;
  margin-left: 65px;
}

.title-banner-services {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.title-banner-services:hover {
  transform: scale(1.02);
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.publisher-banner-services {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 1rem;
}

/* Badges de plataforma */
.platforms-banner-services {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.platform-badge-banner-services {
  padding: 0.25rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.platform-badge-banner-services:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.2);
}

/* Sección de compra */
.purchase-section-banner-services {
  max-width: 600px;
  margin-left: 65px;
}

.price-container-banner-services {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.price-banner-services {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.price-banner-services:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.2);
}

.original-price-banner-services {
  text-decoration: line-through;
  opacity: 0.5;
  margin-right: 0.5rem;
}

.subscription-note-banner-services {
  color: hsla(260, 11%, 85%, 1);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

/* Botones */
.buttons-banner-services {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* Responsive Design */

@media (max-width: 767px) {

  .header-banner-services,
  .purchase-section-banner-services {
    position: relative;
    top: -50px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  .content-wrapper-banner-services {
    padding: 1.5rem;
  }

  .price-container-banner-services {
    flex-direction: column;
    align-items: flex-start;
  }

  .buttons-banner-services {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .title-banner-services {
    font-size: 2rem;
  }

  .content-wrapper-banner-services {
    padding: 1rem;
  }

  .platform-badge-banner-services {
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
  }
}

/* Animaciones */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-wrapper-banner-services {
  animation: fadeIn 1s ease-out;
}

/*******************************/
/* Estilos sección 2 servicios */
/*******************************/

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Hero section */
.hero {
  position: relative;
  min-height: 600px;
  width: 100%;
}

.hero__background {
  position: absolute;
  inset: 0;
  background-color: var(--color-background);
}

.hero__content {
  position: relative;
  display: grid;
  gap: 3rem;
  padding: 4rem 0;
  z-index: 2;
}

/* Texto del hero */
.hero__text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
  transition: all 0.4s ease;
}

.hero__text:hover {
  transform: translateY(-5px);
}

.hero__text h1 {
  font-size: 2.8rem;
  font-weight: 650;
  line-height: 1.1;
}

.hero__text p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 36rem;
  align-self: center;
}

/* Botón */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-white);
  color: var(--color-background);
  font-weight: 600;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: opacity 0.2s;
  font-size: 1rem;
  width: fit-content;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

.button:hover {
  opacity: 0.9;
  background-color: var(--color-accent);
  color: var(--color-white);
}

/* Media del hero */
.hero__media {
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards 0.3s;
}

.hero__monitor {
  position: relative;
  aspect-ratio: 16/14;
  width: 100%;
  overflow: hidden;
}

.hero__game-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease;
}

.hero__game-image:hover {
  transform: scale(1.02);
  border-color: var(--primary);
}

.hero__controller {
  position: absolute;
  right: 28rem;
  bottom: -20px;
  width: 12rem;
  height: auto;
  border-radius: 0.5rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  object-fit: contain;
}

.hero__scanner {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 100%);
  animation: scan 3s infinite;
}

/* Media queries */
@media (min-width: 1024px) {
  .hero__content {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 3rem;
  }
}

@media (max-width: 1023px) {
  .hero__controller {
    right: -2rem;
    width: 8rem;
  }
}

@media (max-width: 950px) {
  .hero__controller {
    display: none;
  }

  .hero__game-image {
    width: 80%;
  }

  .hero__scanner {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero__content {
    padding: 2rem 0;
  }

  .header-banner-services,
  .purchase-section-banner-services {
    margin-left: 40px;
  }

  .hero__text {
    text-align: center;
    align-items: center;
  }

  .hero__controller {
    right: -1rem;
    width: 6rem;
  }

  .hero__scanner {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
  }

  .header-banner-services,
  .purchase-section-banner-services {
    margin: 0;
  }

  .hero__scanner {
    display: none;
  }

}

@media (max-width: 443px) {
  .hero {
    min-height: auto;
  }

  .header-banner-services,
  .purchase-section-banner-services {
    margin: 0;
  }

  .hero__scanner {
    display: none;
  }

  .hero__text h1 {
    font-size: 2rem;
  }

  .hero__text p {
    font-size: 0.8rem;
  }

  .hero__game-image {
    height: 70%;
  }

}

@keyframes scan {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
  }
}

/* Partículas */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/*******************************/
/* Estilos sección 2 servicios */
/*******************************/

/*******************************************************/
/* Estilos para el responsive del carrusel y sección 3 */
/*******************************************************/

.slider-container {
  width: 100%;
  max-width: 1200px;
  position: relative;
  touch-action: pan-y pinch-zoom;
}

.slider {
  display: flex;
  transition: transform 0.3s ease-out;
  cursor: grab;
}

.slider.dragging {
  transition: none;
  cursor: grabbing;
}

.slide {
  padding: 1rem;
  flex: 0 0 100%;
  transition: opacity 0.3s ease;
  -webkit-user-select: none;
  user-select: none;
}

.slide .cta-button {
  margin-top: 30px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive slide widths */
@media (min-width: 768px) {
  .slide {
    flex: 0 0 50%;
  }
}

@media (min-width: 1024px) {
  .slide {
    flex: 0 0 33.333%;
  }
}

@media (max-width: 767px) {
  .slider-container {
    max-width: clamp(300px, calc(28vw + 240px), 1200px);
  }
}

.slide-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 55px;
  margin-bottom: 5px;
  pointer-events: none;
  transition: all 0.4s ease;
}

.slide:hover .slide-image {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.slide-subtitle {
  font-size: 0.875rem;
  color: #9ca3af;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.slide-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  transition: all 0.3s ease;
}

.slide:hover .slide-title {
  color: var(--primary);
  transform: translateX(5px);
}

.slide-description {
  color: #9ca3af;
  font-size: 0.95rem;
  line-height: 1.5;
  max-height: 200px;
  /* Altura máxima para el scroll */
  overflow-y: auto;
  /* Habilitar scroll vertical */
}

.slide-description::-webkit-scrollbar-track {
  background-color: transparent;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #4b5563;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: rgb(255, 255, 255);
}

.dot:hover {
  transform: scale(1.2);
  background-color: var(--primary);
}

#slider-container {
  display: none;
  /* Ocultar el slider por defecto */
}

#timeline-container {
  display: block;
  /* Mostrar la línea de tiempo por defecto */
}

#image-container {
  display: block;
}

@media (max-width: 1200px) {
  #slider-container {
    display: block;
    /* Mostrar el slider en pantallas pequeñas */
  }

  #timeline-container {
    display: none;
    /* Ocultar la línea de tiempo en pantallas pequeñas */
  }

  #image-container {
    display: none;
  }
}

@media (min-width: 1201px) {
  #slider-container {
    display: none;
    /* Asegurarse de que el slider esté oculto en pantallas grandes */
  }

  #timeline-container {
    display: block;
    /* Mostrar la línea de tiempo en pantallas grandes */
  }

  #image-container {
    display: block;
  }
}

/*******************************************************/
/* Estilos para el responsive del carrusel y sección 3 */
/*******************************************************/

/* Animaciones globales */
.hero-portfolio,
.hero-banner-services,
.combined-section,
.timeline-item,
.contacts-banner-container {
  opacity: 0;
  animation: fadeIn 2s 1s forwards;
}

/* Efectos para el video de fondo */
.background-video-banner-services {
  transition: filter 0.5s ease;
}

.hero-banner-services:hover .background-video-banner-services {
  filter: brightness(1.2) contrast(1.1);
}

/* Efectos para los títulos */
.title-banner-services {
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.title-banner-services:hover {
  transform: scale(1.02);
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

/* Efectos para los badges */
.platform-badge-banner-services {
  transition: all 0.3s ease;
}

.platform-badge-banner-services:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.2);
}

/* Efectos para los precios */
.price-banner-services {
  transition: all 0.3s ease;
}

.price-banner-services:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.2);
}

/* Efectos para la línea de tiempo */
.timeline-item {
  transition: all 0.5s ease;
}

.timeline-item:hover {
  transform: translateX(10px);
}

.icon-circle {
  transition: all 0.4s ease;
}

.timeline-item:hover .icon-circle {
  transform: scale(1.2);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

/* Efectos para las imágenes del slider */
.slide-image {
  transition: all 0.4s ease;
}

.slide:hover .slide-image {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Efectos para los textos del slider */
.slide-title {
  transition: all 0.3s ease;
}

.slide:hover .slide-title {
  color: var(--primary);
  transform: translateX(5px);
}

/* Efectos para el hero content */
.hero__text {
  transition: all 0.4s ease;
}

.hero__text:hover {
  transform: translateY(-5px);
}

/* Efectos para las imágenes del hero */
.hero__game-image {
  transition: all 0.5s ease;
}

.hero__game-image:hover {
  transform: scale(1.02);
  border-color: var(--primary);
}

/* Efectos para los botones */
.contact-banner-services {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-banner-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.contact-banner-services:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(12, 167, 234, 0.4);
}

.contact-banner-services:hover::before {
  left: 100%;
}

/* Efectos para el contenedor de contacto */
.contacts-banner-container {
  transition: all 0.4s ease;
}

.contacts-banner-container:hover {
  transform: translateY(-5px);
}

/* Efectos para los dots del slider */
.dot {
  transition: all 0.3s ease;
}

.dot:hover {
  transform: scale(1.2);
  background-color: var(--primary);
}

/* Animación para el scanner */
.hero__scanner {
  animation: scan 3s infinite;
}

@keyframes scan {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

/* Efecto para el scroll del timeline */
.timeline::-webkit-scrollbar-thumb {
  transition: background-color 0.3s ease;
}

.timeline::-webkit-scrollbar-thumb:hover {
  background-color: var(--primary);
}

/* Efecto para los párrafos */
.parrafo-services-section {
  transition: all 0.3s ease;
}

.parrafo-services-section:hover {
  color: var(--foreground);
  transform: translateX(5px);
}

/* Efecto para el blob del banner */
.contacts-banner-gradient-blob {
  animation: moveBlob 10s ease-in-out infinite;
}

@keyframes moveBlob {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(50px, 20px) scale(1.1);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

/* Efectos para texto y elementos restantes */

/* Efectos para el publisher */
.publisher-banner-services {
  transition: all 0.3s ease;
}

.publisher-banner-services:hover {
  color: var(--primary);
  letter-spacing: 1px;
}

/* Efectos para la nota de suscripción */
.subscription-note-banner-services {
  transition: all 0.3s ease;
}


/* Efectos para el precio original */
.original-price-banner-services {
  transition: all 0.3s ease;
}

.original-price-banner-services:hover {
  opacity: 0.8;
  text-decoration-color: var(--primary);
}

/* Efectos para el hero controller */
.hero__controller {
  transition: all 0.4s ease;
}

.hero__controller:hover {
  transform: translateY(-5px) rotate(-5deg);
  border-color: var(--primary);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Efectos para el overlay */
.overlay-banner-services {
  transition: all 0.5s ease;
}

.hero-banner-services:hover .overlay-banner-services {
  background: radial-gradient(ellipse at center,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.6) 50%,
      rgba(0, 0, 0, 0.9) 100%);
}

/* Efectos para la descripción del slide */
.slide-description {
  transition: all 0.3s ease;
}

.slide:hover .slide-description {
  color: #b8b8b8;
  padding-left: 5px;
  border-left: 2px solid var(--primary);
}

/* Efectos para el subtítulo del slide */
.slide-subtitle {
  transition: all 0.3s ease;
}

.slide:hover .slide-subtitle {
  color: var(--primary);
  letter-spacing: 1.5px;
}

/* Efectos para el background logo */
.background-logo {
  transition: all 0.5s ease;
}

.contacts-banner-container:hover .background-logo {
  transform: translate(-50%, -50%) scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.8));
}

/* Efectos para los separadores */
.stat-separator {
  transition: all 0.3s ease;
}

.stat-separator:hover {
  height: 60px;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0.2),
      var(--primary),
      rgba(255, 255, 255, 0.2));
}

/* Efectos para el stat label */
.stat-label {
  transition: all 0.3s ease;
}

.stat-label:hover {
  color: var(--primary);
  letter-spacing: 1.5px;
}

/* Efectos para el blueprint grid */
.blueprint-grid {
  transition: opacity 0.3s ease;
}

.hero-portfolio:hover .blueprint-grid {
  opacity: 0.7;
}

/* Efectos para el scroll container */
.scroll-container {
  transition: all 0.3s ease;
}

.scroll-container:hover {
  transform: translateY(-5px) translateX(-50%);
}

/* Efectos para el mouse wheel */
.mouse-wheel {
  transition: all 0.3s ease;
}

.mouse-icon:hover .mouse-wheel {
  background-color: var(--primary);
  height: 15px;
}

/* Efectos para las flechas */
.arrow {
  transition: all 0.3s ease;
}

.arrow-container:hover .arrow {
  border-color: var(--primary);
  transform: rotate(45deg) scale(1.2);
}

/* Efectos para el contenedor de gradientes */
.background-gradients {
  transition: all 0.5s ease;
}

.background-gradients:hover .gradient-2,
.background-gradients:hover .gradient-3 {
  filter: brightness(1.2);
  transform: scale(1.1);
}

/* Efectos para textos informativos */
.subtitle,
.publisher-banner-services,
.contacts-banner-description,
.contacts-banner-invite {
  transition: all 0.3s ease;
}

.subtitle:hover,
.publisher-banner-services:hover,
.contacts-banner-description:hover,
.contacts-banner-invite:hover {
  transform: translateX(5px);
  color: var(--primary-foreground);
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

/* Estilos para animaciones de aparición */
.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Añade delays para elementos secuenciales */
.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}

.delay-3 {
  transition-delay: 0.6s;
}