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

body {
  font-family: 'Montserrat', sans-serif;
  background: #000 url('../img/Grupo-302@2x-2048x1156.jpg') no-repeat center center / cover;
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow-x: hidden;
}

.main-wrapper {
  display: flex;
  width: 100%;
  min-height: 100vh;
  max-width: 1520px;
  margin: 0 auto;
  position: relative;
}

.left-content {
  flex: 0.8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  z-index: 5;
  text-align: center;
  position: relative;
}

.logo-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  width: 100%;
  max-width: 550px;
}

.socials-bar {
  position: absolute;
  top: 40px;
  left: 40px;
  display: flex;
  gap: 12px;
  z-index: 10;
}

.social-icon {
  display: flex;
  transition: transform 0.2s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
  opacity: 0.85;
}

.social-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.logo-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.subtitle {
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
  text-transform: uppercase;
}

.buttons-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 500px;
}

.btn-option {
  background: rgba(25, 25, 25, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-option:hover {
  transform: translateY(-3px);
  background: rgba(35, 35, 35, 0.95);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.icon-box {
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.btn-option:hover .icon-box {
  transform: scale(1.08);
  background: rgba(255, 255, 255, 0.05);
}

.icon-box img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 2px;
}

.text-top {
  font-size: 11px;
  color: #b0b0b0;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.text-main {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.right-content {
  flex: 1.2;
  display: flex;
  justify-content: flex-start;
  margin-left: 40px;
  align-items: center;
  position: relative;
}

.products-img {
  max-height: 100vh;
  width: auto;
  max-width: 120%;
  object-fit: contain;
  transform: scale(1.1);
  transform-origin: center left;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

@media (max-width: 1024px) {
  .main-wrapper {
    flex-direction: column;
    padding-bottom: 40px;
  }

  body {
    overflow-y: auto;
  }

  .left-content {
    padding-top: 80px;
    padding-bottom: 30px;
  }

  .socials-bar {
    position: relative;
    top: 0;
    left: 0;
    justify-content: center;
    margin-bottom: 25px;
  }

  .right-content {
    justify-content: center;
    margin-top: 40px;
    margin-left: 0;
  }

  .products-img {
    max-height: 60vh;
    max-width: 100%;
    transform: scale(1);
    transform-origin: center center;
  }
}

@media (max-width: 480px) {
  .subtitle {
    font-size: 11px;
  }

  .btn-option {
    padding: 14px 16px;
    gap: 15px;
  }

  .icon-box {
    width: 46px;
    height: 46px;
  }

  .text-top {
    font-size: 10px;
  }

  .text-main {
    font-size: 12px;
  }
}
