@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500&family=Open+Sans&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');




body {
    font-family: 'Montserrat', sans-serif;
    /*font-family: 'Merriweather', serif;*/
    background: #f5f5f5;
    margin: 0;
    padding: 0;
    color: #222;
  }
  
  .pricing-section {
    /*border: 2px solid green;*/
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
    text-align: center;
  }
  
  .pricing-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2c3e50;
  }
  
  .plans-container {
    display: flex;
    justify-content: space-around;
    gap: 10px;
    flex-wrap: wrap;
    
  }
  
  .plan-card {
    /*border:2px solid red;*/
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    /*padding: 25px 20px;*/
    width: 100%;
    max-width: 350px;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    cursor: pointer;
  }
  
  
  .plan-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
  }
  .plan-card:hover .plan-title {
    color: #212d3a;
    /*color: #0d47a1;*/
  }
  
  .plan-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #212d3a;
  }
  .plan-card:hover .plan-button {
    background: #212d3a;
    
  }
  
  .plan-price {
    font-size: 1.8rem;
    color: #212d3a;
    margin-bottom: 10px;
  }
  
  .plan-features {
    text-align: left;
    margin-bottom: 20px;
    padding: 0;
  }
  
  .plan-features li {
    margin: 1px 0;
    list-style: none;
    padding-left: 1.2em;
    position: relative;
  }
  
  .plan-features li::before {
    content: "✔";
    color: #13bece;
    position: absolute;
    left: 0;
  }
  
  .plan-button {
    background: #13bece;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.3s;
  }
  
  
  
  
  .plan-button:hover {
    background: #212d3a;
  }
  
  .featured {
    border: 2px solid #13bece;
  }
  
  .plan-footnote {
    font-size: 0.8rem;
    color: #888;
    margin-top: 25px;
  }
  .stv{
    /*border: 2px solid aqua;*/
    margin-top: -40px;
  }
  
  /* Animaciones de entrada */
  .fade-in {
    animation: fadeInUp 0.8s forwards;
  }
  
  .delay-1 {
    animation-delay: 0.3s;
  }
  
  .delay-2 {
    animation-delay: 0.6s;
  }

/*gggggggggggggggggggggggggggggg*/

.extra-features {
  margin-top: 15px;
  text-align: center;
}

.toggle-features,
.hide-features {
  background: none;
  border: none;
  color: #212d3a;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
  transition: color 0.3s;
  font-size: 14px;
}

.toggle-features:hover,
.hide-features:hover {
  color: #1565c0;
}

.features-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  opacity: 0;
  pointer-events: none;
}

.features-wrapper.active {
  max-height: 500px; /* ajusta si hay más contenido */
  opacity: 1;
  pointer-events: auto;
}

.features-list {
  list-style: none;
  padding-left: 20px;
  margin: 10px 0;
  font-size: 14px;
  color: #333;
  text-align: left;
}



/*GGGGGGGGGGGGGGGGGGGGGGGGGGGGGG*/


.plan-features li {
  position: relative;
  margin-bottom: 10px;
  padding: 1px 20px;
  cursor: default;
  font-size: 15px;
  color: #333;
}

/* Tooltip personalizado */
.plan-features li::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 5%;
  top: 300%;
  transform: translateY(-50%);
  background-color: #8ee3eb;
  color: #222;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  white-space: normal;
  width: 240px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  font-size: 13px;
  font-style: italic;
  line-height: 1.4;
}

/* Mostrar tooltip al hacer hover */
.plan-features li:hover::after {
  opacity: 1;
  transform: translateY(-30%) translateX(20px);
}



/*kkkkkkk*/  
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive */
  /* Responsive: apilar en móviles */
  @media (max-width: 768px) {
    .plans-container {
      flex-direction: column;
      align-items: center;
    }
  
    .plan-card {
      max-width: 90%;
    }
  }
  