
/* CTA Button styles */
.button {
  display: inline-block;
  padding: 1rem 2rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1.125rem;
  line-height: 1.5;
}

.cta {
  background: linear-gradient(135deg, #623DFE 0%, #8B5CF6 100%);
  border-radius:0.75rem; /* rounded-xl */
  color: white;
  box-shadow: 0 10px 25px rgba(98, 61, 254, 0.3);
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(98, 61, 254, 0.4);
}

.cta:active {
  transform: translateY(0);
}

/* IP26 CTA Button */
.cta-ip26 {
  background: #E54D6D;
  border-radius: 0.75rem;
  color: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-ip26:hover {
  background: #C93D5A;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.cta-ip26:active {
  transform: translateY(0);
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 1rem;
}

.modal-content {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 28rem;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

/* Timeline vertical line - usando pseudo-elemento para garantir altura correta */
.timeline-container {
  position: relative;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 1rem; /* left-4 = 16px = 1rem */
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #D1D5DB; /* gray-300 */
}

@media (min-width: 768px) {
  .timeline-container::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Country Selector Dropdown */
.country-dropdown {
  position: absolute;
  z-index: 10;
  margin-top: 0.25rem;
  width: 14rem;
  background-color: white;
  border-radius: 0.375rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  max-height: 15rem;
  overflow-y: auto;
}

.country-item {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: #374151;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.country-item:hover {
  background-color: #F3F4F6;
}

/* Video Modal */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 1rem;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 80rem;
  aspect-ratio: 16/9;
  border-radius: 0.5rem;
  overflow: hidden;
}

/* Thumbnail play button */
.video-thumb-container {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.play-button-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.play-button {
  background: white;
  border-radius: 9999px;
  padding: 1.25rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
