/* CTA */

.cta-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background-color: var(--wine);
  color: var(--white);
}

.cta-section::before {
  position: absolute;
  top: -180px;
  right: 8%;
  width: 420px;
  height: 420px;
  border: 70px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  content: "";
}

.cta-section h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.cta-white {
  display: inline-flex;
  padding: 15px 25px;
  align-items: center;
  gap: 9px;
  border: 2px solid var(--white);
  border-radius: 5px;
  background-color: var(--white);
  color: var(--wine);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.cta-white:hover {
  background-color: transparent;
  color: var(--white);
}
