
.apps-section {
background: #0f0f0;
margin-top: 50px;
color:#ffffff;
}

.tabs-container {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.custom-tabs {
  background-color: black;
  border-radius: 8px;
  padding: 4px;
  display: flex;
  align-items: center;
  gap: 0;

  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.tab-button {
  background: transparent;
  border: none;
  padding: 12px 24px;
  color: #ffffff;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tab-button.active {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.discount-badge {
  background: #fc5414;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
  margin-left: 8px;
}

.app-card {
  background:#000000;
  color: #ffffff;
  border-radius: 12px;
  padding: 10px;
  height: 100%;
  border: 1px solid #1e1e1e;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
 
}

.phone-image {
  width: 100%;
  max-width: 280px;
  height: auto;
  margin: 0 auto 30px;
  display: block;
}

.app-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.app-icon {
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.app-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.price-period {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 400;
}

.app-description {
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.6;
}

.learn-more-link {
  color: #fc5414;
  text-decoration: underline;
  font-weight: 500;
}

.learn-more-link:hover {
  color: #ffffff;
}

.action-buttons {
  margin-bottom: 30px;
}

.btn-start {
  background-color: #4f46e5;
  border-color: #4f46e5;
  color: white;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 8px;
  margin-right: 12px;
}

.btn-start:hover {
  background-color: #4338ca;
  border-color: #4338ca;
  color: white;
}

.btn-demo {
  background-color: transparent;
  border: 2px solid #e5e7eb;
  color: #ffffff;
  padding: 10px 28px;
  font-weight: 600;
  border-radius: 8px;
}

.btn-demo:hover {
  border-color: #ffffff;
  color: #ffffff;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  padding: 15px 0;
  color: #ffffff;
  border-bottom: 1px solid #1e1e1e;
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-check {
  color: #10b981;
  margin-right: 12px;
  margin-top: 2px;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.feature-text {
  font-weight: 500;
  line-height: 1.4;
}

.monthly-price { display: block; }
.yearly-price { display: none; }

.tab-yearly .monthly-price { display: none; }
.tab-yearly .yearly-price { display: block; }

/* Estilos personalizados para la sección de funciones */


/* Icono de funcionalidad */

.funciones-bg {
  background: #0f0f0f;
  margin-top: 60px;
}
.funciones-bg p {
  color: #ffffff;
}
.feature-icon {
  width: 48px;
  height: 48px;
  background-color: #f8f9fa;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e9ecef;
}

.feature-icon i {
  font-size: 24px;
  color: #ffffff;
}

/* Botón de toggle */
#toggleButton {
  background: rgba(255, 255, 255, 0.1);
  border-style: solid;
  border-color:  rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 20px;
  font-weight: 500;
  transition: all 0.2s ease;
}

#toggleButton:hover {
  background-color: #1a202c;
  transform: translateY(-1px);
  border-style: solid;
  border-color: rgb(252, 84, 20);
}

/* Lista de funciones */
.features-list {
  transition: all 0.3s ease;
}

.features-list.hidden {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  margin-top: 0 !important;
}

.feature-item {
  transition: background-color 0.2s ease;
}

.feature-item:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.feature-text {
  color: #ffffff;
  font-weight: 400;
}

.check-icon i {
  font-size: 20px;
}

/* Card personalizada */
.card {
  border-radius: 12px;
}



/* Responsive adjustments */
@media (max-width: 768px) {
  .d-flex.flex-wrap.gap-3 {
    flex-direction: column;
  }
  
  .d-flex.flex-wrap.gap-3 .btn {
    width: 100%;
    justify-content: center;
  }
  
  .feature-item {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 10px;
  }
  
  .check-icon {
    align-self: flex-end;
  }
}


