.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;
}

.cta-button-music-leftsection {
  display: block;
  width: 90%;
  background: linear-gradient(270deg, #5c068c, #BB29BB);;
  color: white;
  font-weight: bold;
  padding: 0.94rem 1.075rem;
  border-radius: 1.5625rem;
  font-size: 1.2rem;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  margin-top: 1.5rem;
  border: 3px solid rgb(255, 255, 255);
  box-shadow: 0 0 5px 3px rgba(255, 255, 255, 0.8);
  transition: transform 0.3s, background 0.3s;
}

.cta-button-music-leftsection:hover {
	background-size: 300% 300%;
	animation:
		gradientSlide 3s ease infinite;
	color: white;
  padding: 1rem 1.075rem;
  box-shadow: 
    0 0 10px 1px rgba(231, 199, 110, 0.8),
    0 0 15px 3px rgba(192, 132, 252, 0.6);
  animation: electricityPulse 0.4s infinite linear;
}

@keyframes electricityPulse {
  0% {
    transform: scale(1) translateY(-2px);
    box-shadow: 0 0 10px 1px rgba(231, 199, 110, 0.8), 0 0 15px 3px rgba(192, 132, 252, 0.6);
  }
  25% {
    transform: scale(1.01) translateY(-1px);
    box-shadow: 0 0 12px 2px rgba(231, 199, 110, 0.9), 0 0 18px 4px rgba(192, 132, 252, 0.7);
  }
  50% {
    transform: scale(1.02) translateY(-2.5px);
    box-shadow: 0 0 9px 1.5px rgba(231, 199, 110, 0.75), 0 0 14px 2.5px rgba(192, 132, 252, 0.55);
  }
  75% {
    transform: scale(1) translateY(-1.5px);
    box-shadow: 0 0 11px 2.5px rgba(231, 199, 110, 0.85), 0 0 17px 3.5px rgba(192, 132, 252, 0.65);
  }
  100% {
    transform: scale(1.01) translateY(-2px);
    box-shadow: 0 0 10px 1px rgba(231, 199, 110, 0.8), 0 0 15px 3px rgba(192, 132, 252, 0.6);
  } 
}

.cta-button-music-leftsection img {
  width: 1.25em;
  height: auto;
  margin-bottom: -0.3125em;
}

.cta-button-music-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;
}

.left-music-leftsection {
  margin-right: 1.575em;
  margin-bottom: -0.375em;
}

.left-music-leftsection,
.right-music-leftsection {
  will-change: transform;
  animation: musicBeat 1.8s infinite cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

@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);
  }
}

@keyframes musicBeat {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0px rgba(255, 255, 255, 0));
    opacity: 0.8;
  }
  20% {
    transform: scale(1.15);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
    opacity: 1;
  }
  40% {
    transform: scale(1.1);
  }
  60% {
    transform: scale(1.2);
  }
}

.cup {
    color: #eaaa00;
}

.social-media {
  display: flex;
  justify-content: center;
  gap: 0.625rem;
  position: relative;
  width: 100%;
  top: 3rem;
  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;
  }
}
