/* ===============================
   Sección: Planes y Características
   =============================== */

#planes {
  padding: 60px 20px;
  background: #ffffff;
}

#planes h2 {
  font-size: 2rem;
  //color: #FF385C;
  margin-bottom: 18px;
}

#planes p {
  color: #484848;
}

#planes table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

#planes table caption {
  text-align: left;
  padding-bottom: 12px;
  font-weight: 600;
  color: #484848;
}

#planes thead th {
  text-align: left;
  padding: 14px;
  background: #FFF5F7;
  color: #FF385C;
  font-weight: 700;
}

#planes td {
  padding: 14px;
  border-top: 1px solid #EBEBEB;
  color: #484848;
}

#planes td:nth-child(2),
#planes td:nth-child(3) {
  text-align: center;
}

/* Contenedor de la tabla */
#planes .table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
}

/* Tarjetas de precios */
#planes .price-card {
  flex: 1 1 240px;
  min-width: 220px;
  border: 1px solid #EBEBEB;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03); 
margin-bottom: 18px;

}

#planes .price-card h3 {
  margin: 0 0 8px 0;
  color: #FF385C;
}

#planes .cta-btn {
  display: inline-block;
  background: #FF385C;
  color: #fff;
  padding: 12px 20px;
  border-radius: 28px;
  text-decoration: none;
  font-weight: 700;
}

/* ===============================
   Responsive
   =============================== */

@media (max-width: 900px) {
  #planes table {
    min-width: 640px;
  }
}

@media (max-width: 720px) {
  #planes table {
    min-width: 520px;
  }
}

@media (max-width: 520px) {
  #planes table {
    min-width: 320px;
    font-size: 0.95rem;
  }

  #planes .price-container {
    flex-direction: column;
  }
}

/* ===============================
   FAQ - Acordeón
   =============================== */

#faq .faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #EBEBEB;
  padding: 14px 0;
}

.faq-item input {
  display: none;
}

.faq-question {
  display: block;
  font-weight: 600;
  color: #FF385C;
  cursor: pointer;
  position: relative;
  padding-right: 24px;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.4rem;
  color: #FF385C;
  transition: transform 0.2s;
}

.faq-item input:checked + .faq-question::after {
  content: "-";
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease-out;
}

.faq-item input:checked ~ .faq-answer {
  max-height: 200px;
  margin-top: 8px;
}

.faq-answer p {
  margin: 0;
  color: #484848;
  line-height: 1.5;
}

/* Estilo Airbnb para botones */
  .switch-btn {
    background-color: #FF385C;
    color: white;
    border: none;
    padding: 14px 24px;
    font-size: 1.8rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    max-width: 280px;
    margin: 6px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: background-color 0.25s, transform 0.1s;
  }

  .switch-btn:hover {
    background-color: #E61E4D;
    transform: scale(1.02);
  }

.nav-link
{
  color:#FF385C;
}