.left-section {
  width: 34%;
  background: linear-gradient(90deg, #5c068c, #BB29BB);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0.1875rem 0 0.4375rem 0.1875rem rgba(0, 0, 0, 0.35);
}

.left-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../Images/Grescup Icono.png') no-repeat center center/contain;
  opacity: 0.08;
  z-index: 1;
}

.left-section > div {
  position: relative;
  z-index: 2;
}

.left-section img {
  width: 100%;
  max-width: 18.75rem;
  height: auto;
}

.left-section h1 {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
  font-weight: bold;
}

.left-section p {
  font-size: 1.4rem;
  line-height: 1.4;
  margin-bottom: 1.25rem;
}

.cta-button-leftsection {
  display: block;
  width: 90%;
  background: white;
  color: #EE2737;
  font-weight: bold;
  border: none;
  padding: 0.94rem 1.075rem;
  border-radius: 1.5625rem;
  font-size: 1.2rem;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  margin-top: 3.25rem;
  box-shadow: 0.1875rem 0.1875rem #f0ebf359;
  transition: transform 0.3s, background 0.3s;
}

.cta-button-leftsection:hover {
	background: linear-gradient(45deg, #fbfcd7, #ffffff, #fbfcd7, #ffffff);
	background-size: 300% 300%;
	animation:
		gradientSlide 3s ease infinite;
	color: #EAAA00;
  border: 1px solid #EAAA00;
  padding: 1rem 1.075rem;
}
.cta-button-leftsection:hover img {
  content: url('../Images/Star.png');
}

.cta-button-leftsection img {
  width: 1.25em;
  height: auto;
  margin-bottom: -0.3125em;
}

.cta-button-leftsection img:last-child {
  margin-left: 1.575em;
  margin-bottom: -0.375em;
}

.right-hottie-leftsection {
  margin-left: 1.575em;
  margin-bottom: -0.375em;
}

.left-hottie-leftsection {
  margin-right: 1.575em;
  margin-bottom: -0.375em;
}

.left-hottie-leftsection,
.right-hottie-leftsection {
  will-change: transform;
  animation: simplePulse 2s ease-in-out infinite;
}

@keyframes simplePulse {
  0%, 100% {
    transform: scale(1) rotate(0deg);
  }
  25% {
    transform: scale(1.10) rotate(-5deg);
  }
  50% {
    transform: scale(1) rotate(0deg);
  }
  75% {
    transform: scale(1.10) rotate(5deg);
  }
}

.social-media {
  display: flex;
  justify-content: center;
  gap: 0.625rem;
  position: relative;
  width: 100%;
  top: 5rem;
  z-index: 2;
}

.social-media a {
  color: white;
  font-size: 1.1em;
  padding: 0.3125rem;
  border-radius: 50%;
  border: 1px solid white;
  text-decoration: none;
  width: 1.875rem;
  height: 1.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s, background-color 0.3s;
  width:38px;
  height:38px;
}

.social-media a:hover {
  transform: scale(1.1);
  background-color: white;
  color: #5c068c;
  border: 1px solid #5c068c;
}

/* ------------------------------------------------------------- */
/* --------------------------- MEDIA --------------------------- */
/* ------------------------------------------------------------- */


@media (min-width: 1200px) and (max-width: 1400px) {
  .left-section {
    width: 33%;
    padding: 1.5rem;
  }

  .logo {
    margin-top: -8rem;
  }
  
  .left-section h1 {
    font-size: 1.5rem;
  }
  
  .left-section p {
    font-size: 1rem;
    line-height: 1;
  }

  .cta-button-leftsection {
    font-size: 1rem;
    padding: 0.75rem 1.25rem;
  }

  .social-media {
    margin-top: -3rem;
  }
}


/* Pantallas Extra Grandes (TVs, monitores muy amplios) */

@media (max-width: 1200px) {
  .left-section {
    width: 50%;
    padding: 1rem;
  }
  .cta-button-leftsection {
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
  }
  .left-section h1 {
    font-size: 1.8rem;
  }
  .left-section p {
    font-size: 1.2rem;
  }
}

@media (max-width: 992px) {
  .left-section {
    width: 60%;
  }
  .cta-button-leftsection {
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
  }
  .left-section h1 {
    font-size: 1.6rem;
  }
  .left-section p {
    font-size: 1.1rem;
  }
}

/* Teléfonos Móviles */


@media (max-width: 768px) {
  .left-section {
    width: 80%;
  }
  .cta-button-leftsection {
    font-size: 1rem;
    padding: 0.625rem 1.25rem;
  }
  .left-section h1 {
    font-size: 1.4rem;
  }
  .left-section p {
    font-size: 1rem;
  }
  .social-media { 
    position: relative; 
    top: auto; 
    margin-top: 20px; 
  }
  .left-section p {
    margin-bottom: 0;
  } 
  .cta-button-leftsection {
    margin-top: 1rem;
  }
  .left-hottie-leftsection, .right-hottie-leftsection {
    width: 0.2rem;
  }
  .right-hottie-leftsection, .left-hottie-leftsection {
    width:1em!important;
    height:auto;
  }
  
  .left-hottie-leftsection {
    margin-right: 1.575em;
    margin-bottom: -0.375em;
  }

}

@media (max-width: 480px) {
  .left-section {
    width: 100%;
  }
  .cta-button-leftsection {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }
  .left-section h1 {
    font-size: 1.2rem;
  }
  .left-section p {
    font-size: 0.9rem;
  }
  .social-media a { 
    width: 32px; 
    height: 32px; 
    font-size: 1em; 
  } 
}

@media (max-width: 320px) {
  .left-section {
    width: 100%;
  }
  .cta-button-leftsection {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }
  .left-section h1 {
    font-size: 1rem;
  }
  .left-section p {
    font-size: 0.85rem;
  }
}
