@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes breathe {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes rotate-in {
  from {
    transform: rotateY(90deg);
  }
  to {
    transform: rotateY(0deg);
  }
}

.main-container {
    overflow-x: hidden;
    width: 100vw; /* Asegura que el ancho mínimo sea siempre el 100% del viewport width */
}

.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  margin: 0;
  padding: 0;
  justify-content: space-between;
  color: var(--p3);
  background-color: var(--p1);
}

.hero-txt-container {
  width: 50vw;
  padding-left: 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  z-index: 10;
}

.hero-txt-container h1, .hero-txt-container p, .hero-txt-container button {
  text-align: left;
  max-width: 90%;
}

.hero-txt-container h1 {
  font-size: clamp(28px, 2vw + 2rem, 85px);
  line-height: .85;
}

.hero-txt-container p {
  font-size: clamp(14px, .75vw + 1rem, 32px);
  line-height: 1;
}

.cta-btn-01,
.cta-btn-02,
.cta-btn-03,
.cta-btn-04 {
  color: var(--p3);
  background-color: var(--p2);
  font-size: clamp(14px, .75vw + 1rem, 20px);
  font-weight: 200;
  padding: 15px 25px;
  border-radius: 15px;
  margin-top: 5vh;
  border: none;
  transition: background-color 0.3;
  cursor: pointer;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -webkit-box-shadow: 0px 0px 0px 8px rgba(51, 51, 51, 0.7);
  box-shadow: 0px 0px 0px 8px rgba(51, 51, 51, 0.7);
  box-shadow: rgba(51, 51, 51) 0px 20px 30px -10px;
}

.cta-btn-01 {
  color: var(--p3);
  background-color: var(--p2);
}

.cta-btn-01:hover,
.cta-btn-01:active {
  background-color: transparent;
  border: solid 2px var(--p3);
  color: var(--p3);
  font-weight: 400; 
} 

.cta-btn-02 {
  color: var(--p3);
  background-color: var(--p1);
}

.cta-btn-02:hover,
.cta-btn-02:active {
  background-color: var(--c2);
  border: solid 2px var(--p3);
  color: var(--p3);
  font-weight: 400; 
}

.cta-btn-03 {
  color: var(--p3);
  background-color: var(--c2);
}

.cta-btn-03:hover,
.cta-btn-03:active {
  background-color: transparent;
  border: solid 2px var(--p3);
  color: var(--p3);
  font-weight: 400; 
}


.hero-composition-container {
  width: 50vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-composition {
  position: absolute;
  display: none;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: self-end;
  opacity: 0;
}

.hero-composition.active {
  display: flex;
  opacity: 1;
}

.hero-composition picture {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: fadeIn 1s forwards;
}

#heroCompo01 picture:nth-child(1) {
  z-index: 4;
  animation-delay: 0s;
}

#heroCompo01 picture:nth-child(2) {
  z-index: 3;
  animation-delay: .5s;
}

#heroCompo01 picture:nth-child(3) {
  z-index: 2;
  animation-delay: 1s;
}

#heroCompo01 picture:nth-child(4) {
  z-index: 5;
  animation-delay: 1.5s;
}

#heroCompo02 picture:nth-child(1) {
  z-index: 4;
  animation-delay: 0s;
}

#heroCompo02 picture:nth-child(2) {
  z-index: 5;
  animation-delay: .5s;
}

#heroCompo02 picture:nth-child(3) {
  z-index: 2;
  animation-delay: 1s;
}

#heroCompo02 picture:nth-child(4) {
  z-index: 5;
  animation-delay: 1.5s;
}

#heroCompo03 picture:nth-child(1) {
  z-index: 4;
  animation-delay: 0s;
}

#heroCompo03 picture:nth-child(2) {
  z-index: 2;
  animation-delay: .5s;
}

#heroCompo03 picture:nth-child(3) {
  z-index: 5;
  animation-delay: 1s;
}

#heroCompo03 picture:nth-child(4) {
  z-index: 5;
  animation-delay: 1.5s;
}

.hero-composition picture img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  object-position: bottom left;
}

.future-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: space-between;
    background-color: var(--p3);
    color: var(--c2);
}

.future-content, .future-composition-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50vw;
    height: 100vh;
}

.future-composition-container {
  width: 50vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.future-composition {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  opacity: 0;
}

.future-composition.active {
  display: flex;
  opacity: 1;
}

.future-composition h2 {
  display: block;
  position: relative;
  margin-top: 3vh;
  width: 80%;
  color: var(--p1);
  font-size: clamp(18px, 3vw + 1.5rem, 88px);
  line-height: 1;
  text-align: right;
  z-index: 6;
}

.future-composition picture {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 1;
  animation: fadeIn 1s forwards;
}

.future-composition picture img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  object-position: bottom center;
}

.future-content {
    text-align: center;
}

.future-txt {
    width: 500px;
    max-width: 80%;
}

.future-txt h3 {
    color: var(--p2);
    font-size: clamp(20px, 2vw + 1.5rem, 52px);
    line-height: .85;
}

.future-txt p {
  font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 2vh;
}

.versability-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: space-between;
    background-color: var(--c2);
    color: var(--p3);
}

.versability-content {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.versability-txt {
  text-align: center;
}

.versability-composition-container {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.versability-composition {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vrb-cards-container {
  width: 90%;
  height: 90%;
  position: relative;
}

.vrb-card {
  position: absolute;
}

.versability-txt {
    width: 500px;
    max-width: 80%;
}

.versability-txt h3 {
    color: var(--p2);
    font-size: clamp(20px, 2vw + 1.5rem, 52px);
    line-height: 0.85;
}

.vrb-cards-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vrb-card {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vrb-animation-1 {
  width: 50%;
  height: 50%;
  top: 0;
  left: 0;
}

.brand-icon {
    width: 75%;
    height: 75%;
    background-color: transparent;
    position: absolute; /* Posición absoluta dentro de .vrb-card */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(360deg);
    transition: opacity 1s ease, transform 1s ease; /* Transición suave de la opacidad y transformación */
    display: flex; /* Cambiamos a flex para centrar el contenido */
    justify-content: center; /* Centrar contenido horizontalmente */
    align-items: center; /* Centrar contenido verticalmente */
    opacity: 0; /* Ocultar por defecto */
    pointer-events: none; /* Evita interacciones con iconos ocultos */
}

.brand-icon img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
    object-position: center;
}

.brand-icon.active {
    opacity: 1; /* Muestra el .brand-icon activo */
    pointer-events: auto; /* Permite interacciones con el icono activo */
}

.vrb-animation-2 {
  width: 50%;
  height: 100%;
  top: 0;
  right: 0;
}

.profile-container {
  width: 380px;
  max-width: 80%;
  height: auto;
  max-height: 80%;
  margin: 0 auto;
}

.profile-container img{
  object-fit: scale-down;
  object-position: center;
}

.profile {
  position: relative;
  width: 100%;
  height: 100%;
}

.profile-menu {
  width: 30px;
  height: 30px;
  position: absolute;
  z-index: 10;
  top: 2rem;
  right: 1rem;
}

.profile-menu img {
  object-fit: scale-down;
  object-position: center;
}

#profile01,
#profile02,
#profile03 {
  background-color: var(--c4); 
  border-radius: 30px;
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top: 0;
  right: 0;  
}

.bg-p-02 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--c6);
  z-index: 3;
  border-radius: 30px;
}

.profile-elements {
  position: absolute;
  top: 3%;
  left: 3%;
  width: 90%;
  height: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 4;
}

.user-pic {
  width: 130px;
  height: 130px;
  max-width: 45%;
  max-height: 45%;
  margin: 3% auto;
}

.user-pic img {
  object-fit: scale-down;
  object-position: center;
  border-radius: 50%;
}

.user-name, .user-description {
  margin: 3% auto;
}

.profile .profile-elements .user-name {
  font-weight: 600;
  font-size: 2rem; /* Corregido a font-size */
  opacity: 0; /* Inicialmente invisible para la animación */
  transition: opacity 0.5s; /* Transición suave para la opacidad */
}

.user-description {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
  max-width: 90%;
}

.user-sm-icon {
  height: 20px;
  max-height: 10vh;
  width: auto;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 5% auto;
}

.user-iframe {
  width: 100%;
  height: auto;
  margin: 5% auto;
}

.user-iframe img {
  width: 100%;
  height: auto;
  padding: 10px;
  object-fit: scale-down;
  object-position: center;
}

.user-button-container {
  width: 100%;
  height: auto;
  margin: 5% auto;
  margin-left: 2%;
  justify-content: center;
  align-items: center;
}

.profile-action-button {
  border: solid 2px var(--p3);
  border-radius: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 3% auto;
}

.profile-action-button img {
  width: 15px;
  max-width: 5vw;
  max-height: 5vw;
  height: 15px;
  display: flex;
  justify-content: center;
  padding: 10px;
}

.profile-action-button img:first-child {
  margin-left: 5%;
}

.profile-action-button img:last-child {
  margin-right: 5%;
}

.vrb-animation-3 {
  width: 50%;
  height: 50%;
  bottom: 0;
  left: 0;
}

.vrb-anm-hdl {
  z-index: 1;
  font-size: clamp(28px, 2vw + 2rem, 85px);
  line-height: 0.75;
  justify-content: center; /* Centrar contenido horizontalmente */
  align-items: center; /* Centrar contenido verticalmente */
}

.vrb-anm-hdl span {
  font-size: clamp(56px, 6vw + 6rem, 112px);
  font-weight: 800;
  color: var(--p2);
}

.nfc-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: space-between;
    background-color: var(--p3);
    color: var(--c2);
}

.nfc-content, .nfc-video-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50vw;
    height: 100vh;
}

.nfc-content {
    text-align: center;
}

.nfc-txt {
    width: 500px;
    max-width: 80%;
}

.nfc-txt h3 {
    color: var(--p2);
    font-size: clamp(20px, 2vw + 1.5rem, 52px);
    line-height: .85;
}

.nfc-txt p {
    color: var(--c2);
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 2vh;
}

.nfc-video-container video {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
}

.analytics-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: space-between;
    background-color: var(--c4);
}

.analytics-composition img {
    object-fit: scale-down;
    object-position: bottom right;
    z-index: 1;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.analytics-composition-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 50vh;
  position: relative;
}

.analytics-composition img {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
  object-position: center;
}

.analytics-cards-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 40%; 
  margin-left: 5vw;
  position: relative;
  z-index: 2;
  align-self: flex-start; /* Alinea al inicio del contenedor padre (arriba) */
}

.analytics-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
  display: none;
}

.analytics-card.active {
  display: flex; /* Mostrar cuando está activo */
}

.analytics-card.rotate {
  animation: rotate-in 0.5s forwards;
}

.analytics-card:nth-child(3),
.analytics-card:nth-child(6) {
  grid-column: 1 / span 2; /* Ocupa dos columnas para llenar el espacio abajo */
}

.analytics-card .content {
  display: flex;
  align-items: center;
}

.card-3 .analytics-icon {
  width: 50%;
  margin-right: 1rem; /* Espacio entre la imagen y la lista */
}

.analytics-card img.analytics-icon {
  margin-bottom: 10px;
  object-fit: scale-down;
  object-position: center;
  max-width: 60px;
  height: auto;
}

.analytics-card h4,
.analytics-card h5 {
  font-size: clamp(14px, .75vw + 1rem, 32px);
  line-height: 1;
  margin: 3vh 0;
}

.analytics-card p {
  margin: 0;
}

.card-1 {
  background-color: var(--p1);
  color: var(--p3);
  border-radius: 25px;
}

.card-2 {
  background-color: var(--c1);
  color: var(--c4);
  border-radius: 25px;
}

.card-3 {
  background-color: var(--c6);
  color: var(--p3);
  border-radius: 25px;
}

.card-3 ul {
  width: 50%;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: right;
}

.card-3 li {
  display: flex;
  flex-direction: column;
  list-style: disc inside;
  padding-left: 0;
  align-items: flex-start;
}

.card-4 {
  background-color: var(--c6);
  color: var(--c4);
  border-radius: 25px;
}

.card-5 {
  background-color: var(--p2);
  color: var(--p3);
  border-radius: 25px;
}

.card-6 {
  background-color: var(--p1);
  color: var(--p3);
  border-radius: 25px;
}

.analytics-card.active img.analytics-icon {
  animation: bounce 1s infinite;
}

.analytics-content, .analytics-composition-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50vw;
    height: 100vh;
}

.analytics-content {
    text-align: center;
}

.analytics-txt {
    width: 500px;
    max-width: 80%;
}

.analytics-txt h3 {
    color: var(--p2);
    font-size: clamp(20px, 2vw + 1.5rem, 52px);
    line-height: .85;
}

.analytics-txt p {
    color: var(--p3);
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 2vh;
}

.everyone-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: space-between;
    background-color: var(--p3);
}

.everyone-content, .everyone-composition-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50vw;
    height: 100vh;
}

.everyone-content {
    text-align: center;
}

.everyone-txt {
    width: 500px;
    max-width: 80%;
}

.everyone-txt h3 {
    color: var(--c2);
    font-size: clamp(20px, 2vw + 1.5rem, 52px);
    line-height: .85;
}

.everyone-txt p {
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 2vh;
}

.everyone-composition-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    width: 50vw;
    height: 100vh;
}

.puzzle-container {
    display: contents;
}

.everyone-puzzle-card {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--p3);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transform: rotateY(180deg);
    transition: transform 0.6s;
}

.everyone-puzzle-card.active {
    transform: rotateY(0);
}

.puzzle-min {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: none;
}

.everyone-puzzle-card.active .puzzle-min {
    display: block;
}

.limits-section {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-color: var(--p2);
}

.limits-section-container {
    width: 1200px;
    max-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.limits-section-container img {
    object-fit: scale-down;
    object-position: bottom right;
    z-index: 1;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: auto;
    max-height: 100%;
    filter: drop-shadow(3vh 10vh 3vh rgb(0, 0, 0, .75));
}

.limits-section-txt {
    margin-left: 0;
    text-align: left;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    width: 560px;
    max-width: 90%;
    color: var(--c2); /* Ajusta según el color del texto que desees */
}

.limits-section-txt h4 {
  font-size: clamp(28px, 2vw + 2rem, 85px);
  line-height: .85;
  color: var(--p3);
  width: 500px;
  max-width: 90%;
}

.limits-section-txt p {
  width: 400px;
  max-width: 60%;
  font-size: 2rem;
  line-height: 1;
  color: var(--p3);
  text-shadow: 
    -2px -2px 0 var(--c2),  
     2px -2px 0 var(--c2),
    -2px  2px 0 var(--c2),
     2px  2px 0 var(--c2);
}

@media (max-width: 1023px) {

.hero,
.future-section,
.nfc-section,
.versability-section,
.analytics-section,
.everyone-section,
.limits-section {
  padding-top: 10vh;
  padding-bottom: 10vh;
}

.hero-txt-container p,
.future-txt p,
.nfc-txt p,
.versability-txt p,
.analytics-txt p,
.everyone-txt p {
  line-height: 1.3;
}


.future-txt p,
.nfc-txt p,
.versability-txt p,
.analytics-txt p,
.everyone-txt p {
  font-size: 1rem;
  line-height: 1.3;
}
  .hero-txt-container, .hero-composition-container {
    width: 100vw;
  }

  .hero {
    flex-direction: column;
  }

  .hero-txt-container {
    order: 2;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
  }

  .hero-txt-container h1 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .hero-txt-container p {
    margin-top: 3vh;
  }

  .hero-composition-container {
    order: 1;
    height: 50vh;
    padding: 0;
    margin: 0;
  }

.hero-composition {
  align-items: center;
}

.hero-composition picture img {
  width: 90%;
  height: 90%;
  object-fit: scale-down;
  object-position: center top;
}

  .hero-btn {
  font-size: 2vh;
}

.future-section {
    flex-direction: column;
}

.future-content, .future-composition-container {
    width: 100vw;
    height: 50vh;
}

.future-composition picture img {
  width: 90%;
  height: 90%;
  object-fit: scale-down;
  object-position: center top;
}

.future-content {
    order: 2;
    text-align: left;
    padding: 0;
    z-index: 10;
}

.future-composition-container {
    order: 1;
}

.future-composition h2 {
  margin-top: 0vh;
}

.versability-section {
    flex-direction: column;
}

.versability-content, .versability-composition-container {
    width: 100vw;
    height: 50vh;
}

.versability-composition img {
    width: 100%;
    height: 100%;
}

.versability-content {
    order: 2;
    text-align: left;
    padding: 0;
    z-index: 10;
}

.versability-composition-container {
    order: 1;
}

.nfc-section {
    flex-direction: column;
}

.nfc-content, .nfc-video-container {
    width: 100vw;
    height: 50vh;
}

.nfc-content {
    order: 2;
    text-align: left;
    padding: 0;
    z-index: 10;
}

.nfc-video-container {
    order: 1;
}

.nfc-video-container video {
    object-position: bottom;
    object-fit: scale-down;
}

.analytics-section {
    flex-direction: column;
}

.analytics-content, .analytics-composition-container {
    width: 100vw;
    height: 50vh;
}

.analytics-composition img {
    object-position: top right;
}

.analytics-content {
    order: 2;
    text-align: left;
    padding: 0;
    z-index: 10;
}

.analytics-composition-container {
    order: 1;
}

.everyone-section {
    flex-direction: column;
}

.everyone-content, .everyone-composition-container {
    width: 100vw;
    height: 50vh;
}

.everyone-content {
    order: 2;
    text-align: left;
    padding: 0;
    z-index: 10;
}

.everyone-composition-container {
    order: 1;
}

.puzzle-min {
    width: 66%;
    height: 66%;
    object-position: top
    ;
}
}

@media (max-width: 560px) {
.future-section,
.nfc-section,
.analytics-section,
.everyone-section {
  padding-top: 15vh;
  padding-bottom: 15vh;
}

.versability-section {
    flex-direction: column;
}

.versability-section {
    height: 200vh;
    padding-top: 0;
    padding-bottom: 15vh;
}

.versability-content {
    width: 100vw;
    height: 50vh;
}

.versability-composition-container {
    height: 150vh;
}

.versability-composition img {
    width: 100%;
    height: 100%;
}

.versability-content {
    order: 2;
    text-align: left;
    padding: 0;
    z-index: 10;
}

.versability-composition-container {
    order: 1;
}

.vrb-animation-1 {
  height:30%;
  top: 0;
  right: 0;
  left: auto;
}

.vrb-animation-2 {
  top: 40vh;
  left: 0;
  width: 100%;
  height: 70%;
}

.vrb-animation-3 {
  height:30%;
  top: 0;
  left: 0;
  bottom: auto;
}

.analytics-composition img {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
  object-position: top left;
  top: -10vh;
}

.analytics-cards-container {
  margin-top: -14vh;
}

.analytics-card img.analytics-icon {
  max-width: 45px;
}

.analytics-card h4,
.analytics-card h5 {
  margin: 1.5vh 0;
}

.analytics-card p,
.analytics-card li {
  font-size: .85rem;
}
}

