body {
  font-family: 'Poppins', sans-serif !important;
  font-size: 15px;
  background-color: #ffffff;
  color: #000000;
  margin: 0;
  padding: 0;
  padding-top: 60px;
}

/* Sección Promocional */
.promotional-section {
  padding: 30px 20px;
  margin-bottom: 10px;
  min-height: 0;
  display: flex;
  align-items: center;
}

.promotional-content,
.benefits-container {
  max-width: 95vw;
  margin-left: auto;
  margin-right: auto;
}

.main-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
  line-height: 1.2;
  text-align: center;
}
.cta-section{
  margin-top: -20px;
  text-align: center;
}
.subtitle {
  font-size: 0.75rem;
  color: #000000;
  margin-top: 0px;
  line-height: 1.5;
  text-align: center;
}

.cta-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 15px;
  line-height: 1.3;
  text-align: center;
}

.highlight {
  color: #6F9937;
  font-weight: 700;
}

.enlace-verde {
  color: #6F9937;         
  text-decoration: none; 
}

.cta-description {
  font-size: 0.95rem;
  color: #000000;
  line-height: 1.5;
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 5px;
  margin-top: -20px;
  text-align: center;
}

.benefits-section {
  margin-top: -10px;
}

.benefits-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #6F9937;
  margin-bottom: 20px;
  text-align: left;
}

.benefits-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3vw;
  max-width: 90vw;
  margin: 0 auto;
}

@media (min-width: 1400px) {
  .benefits-container {
    gap: 1vw;
  }
}

.benefits-list {
  flex: 1;
  text-align: left;
}

.benefits-list .benefit-item {
  display: list-item;
  align-items: flex-start;
  margin-bottom: 2px;
  padding: 2px 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 0.98rem;
  color: #222;
  text-align: left;
}

.benefits-list .benefit-item:last-child {
  border-bottom: none;
}

.benefit-text {
  font-size: 0.88rem;
  color: #000000;
  line-height: 1.4;
}

.cta-visual {
  flex: 0 0 300px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url('BotonGratis.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 300px;
  padding: 20px;
}

.free-trial-btn {
  background: #6F9937;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(111, 153, 55, 0.3);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  margin: 0;
}

.free-trial-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(111, 153, 55, 0.4);
}



/* Responsive Design */
@media (max-width: 768px) {
  .main-title {
    font-size: 2rem;
  }
  
  .cta-title {
    font-size: 1.5rem;
  }
  
  .benefits-container {
    flex-direction: column;
    gap: 20px;
    width: 80%;
  }
  
  .cta-visual {
    flex: none;
    width: 100%;
  }
}

.center-text {
  text-align: center;
  margin-top: 30px;
}

.center-text h3 {
  font-size: 24px;
  color: #333;
  font-weight: normal;
}

.switch-container {
  display: flex;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #6F9937;
  border-radius: 20px;
  width: 200px;
  margin: 0 auto;
  margin-top: 24px;
}

.switch-button {
  flex: 1;
  padding: 10px;
  border: 0;
  cursor: pointer;
  font-size: 10px;
  text-align: center;
  color: #ffffff;
  background-color: #6F9937;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.switch-button.active {
  background-color: white;
  font-size: 10px;
  color: #6F9937;
}

#annualSales {
  display: block;
}

.salesContainer {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 85%;
}

.sales-cards-container {
  display: flex;
  gap: 20px;
}

.sales-card {
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  border: 1px solid #ccc;
  padding: 5px;
  width: 250px;
  background-color: #f8f8f8;
}

.sales-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border-color: #6F9937;
}

.sales-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  display: inline-block;
  margin-top: 0;
  vertical-align: middle;
}

.card-icon-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
}

.card-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 7px;
}

.sales-details {
  font-size: 15px;
  margin-bottom: 15px;
}

.sales-pricing {
  font-size: 18px;
  margin-bottom: 10px;
}

.sales-pricing span {
  font-size: 14px;
  margin: 0;
}

.cta-box-button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px;
}

.cta-button {
  display: inline-block;
  padding: 8px 16px;
  font-size: 12px;
  color: #fff;
  background: #6F9937;
  border: 2px solid #6F9937;
  border-radius: 25px;
  text-decoration: none;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  font-weight: bold;
}

.cta-button:hover {
  background: #fff;
  color: #6F9937;
  transform: translateY(-2px);
}

.cta-button:active {
  background: #6F9937;
  color: #fff;
  transform: translateY(2px);
}

.buy-now-link {
  color: #6F9937;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
  transition: color 0.3s ease;
}

.buy-now-link:hover {
  color: #4A6F2F;
}

.benefits {
  margin-top: 20px;
}

.benefits h4 {
  font-size: 15px;
  margin-bottom: 10px;
}

.benefit-item {
  display: flex;
  align-items: center;
  margin-bottom: 0px;
  font-size: 13px;
}

.benefit-item img {
  width: 20px;
  margin-right: 2px;
}

.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}

.mensaje {
  background-color: rgba(111, 153, 55, 0.5);
  color: white;
  padding: 20px;
  text-align: center;
  max-width: 100%;
  position: relative;
  margin-top: 50px;
  margin-bottom: 50px;
}

.mensaje::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #6F9937;
  z-index: -1;
  filter: blur(3px);
}

.parte-superior, .parte-inferior {
  margin: 0;
  font-size: 20px;
}

.parte-inferior {
  margin-bottom: 20px;
}

/* Estilo para el contenedor de la celda con la clase "opciones" */
.opciones {
  position: relative; /* Necesario para posicionar el tooltip */
}

/* Estilo para el tooltip */
.tooltip {
  visibility: hidden; /* Ocultar el tooltip por defecto */
  width: 250px; /* Ajusta el ancho del tooltip */
  background-color: black; /* Color de fondo */
  color: #fff; /* Color del texto */
  text-align: center;
  border-radius: 5px; /* Bordes redondeados */
  padding: 5px;
  position: absolute; /* Posicionarlo de manera absoluta respecto al contenedor */
  z-index: 1;
  bottom: 100%; /* Coloca el tooltip arriba del elemento */
  left: 50%;
  margin-left: -125px; /* Centra el tooltip */
  opacity: 0; /* Hace que el tooltip sea invisible inicialmente */
  transition: opacity 0.3s; /* Transición suave */
}

/* Mostrar el tooltip cuando se pasa el mouse sobre el contenedor con clase "opciones" */
.opciones:hover .tooltip {
  visibility: visible;
  opacity: 1; /* Hace el tooltip visible */
}

@media (max-width: 768px) {
  body {
      font-size: 14px;
  }

  .slider {
      width: 40px;
      height: 20px;
  }

  .slider:before {
      width: 16px;
      height: 16px;
  }

  .sales-card {
      width: 100%;
      max-width: 100%;
      margin: 0 10px;
      padding: 10px;
  }

  .sales-cards-container {
      flex-direction: column;
      align-items: center;
  }

  .cta-box-button {
      margin: 10px;
  }

  .buttons {
      flex-direction: column;
  }

  .btn {
      width: 100%;
      margin-bottom: 10px;
  }

  .sales-card h3 {
      font-size: 20px;
  }

  .sales-details,
  .sales-pricing {
      font-size: 14px;
  }

  .switch-container {
      margin-top: 50px;
  }
}
