body {
  background: #050505;
  color: #ffffff;
  font-family: "Inter", sans-serif;
}

/* Navbar */

.navbar {
  background: rgba(20, 20, 20, 0.75) !important;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.navbar-brand {
  color: white !important;
  font-weight: 700;
}

.nav-link {
  color: #bdbdbd !important;
  transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: white !important;
}

/* Buttons */

.btn {
  border-radius: 12px;
  transition: 0.3s;
}

.btn-primary {
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.4);
}

.btn-outline-primary {
  border-color: #6366f1;
  color: #fff;
}

/* Title */

#title {
  text-align: center;
  margin: 80px auto 50px;
  max-width: 850px;
}

#title h1 {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(90deg, #fff, #8b5cf6, #38bdf8);
  -webkit-background-clip: text;
  color: transparent;
}

#title h2 {
  margin-top: 20px;
  color: #cfcfcf;
  font-size: 1.3rem;
  font-weight: 400;
}

#title p {
  color: #8f8f8f;
}

/* Pricing Cards */

.card-group {
  gap: 25px;
}

.card {
  background: rgba(20, 20, 20, 0.75);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 25px !important;
  overflow: hidden;
  color: white;
  transition: 0.35s;
}

.card:hover {
  transform: translateY(-10px);
  border-color: #6366f1;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.card-img-top {
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 30px;
}

.card-title {
  font-size: 1.8rem;
  font-weight: 700;
}

.card h6 {
  color: #aaa;
}

.card h6 span {
  font-size: 2.5rem;
  color: white;
  font-weight: 800;
}

/* Lists */

.features,
.features_1,
.features_2 {
  list-style: none;
  padding: 0;
}

.features li,
.features_1 li,
.features_2 li {
  padding: 10px 0;
  color: #cfcfcf;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.features li::before,
.features_1 li::before,
.features_2 li::before {
  content: "✓ ";
  color: #8b5cf6;
  font-weight: bold;
}

/* Feature Section */

.feature-card {
  margin-top: 100px;
  padding: 40px;

  display: flex;
  align-items: center;
  gap: 50px;

  background: rgba(20, 20, 20, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 30px;
}

.feature-image img {
  width: 180px;
}

.feature-content h2 {
  font-size: 2rem;
  font-weight: 700;
}

.feature-content li {
  margin: 15px 0;
  color: #bbb;
}

.feature-content a {
  color: #8b5cf6;
  text-decoration: none;
}

/* FAQ */

.faq_text {
  text-align: center;
  margin: 90px 0 40px;
  font-size: 3rem;
}

.accordion-item {
  background: #111;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.accordion-button {
  background: #151515;
  color: white;
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #111, #222);

  color: white;
}

.accordion-body {
  background: #101010;
  color: #bbb;
}

/*Footer*/

.footer {
  margin-top: 100px;
  background: linear-gradient(180deg, #080808, #020202);

  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
  max-width: 1200px;
  margin: auto;

  padding: 60px 30px;

  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer h2 {
  font-size: 2rem;
  font-weight: 800;
}

.footer h4 {
  color: white;
  margin-bottom: 20px;
}

.footer a {
  display: block;
  color: #aaa;
  text-decoration: none;
  margin: 10px 0;

  transition: 0.3s;
}

.footer a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding: 20px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  color: #777;
}

/* Mobile */

@media (max-width: 768px) {
  .card-group {
    display: block;
  }

  .card {
    margin-bottom: 25px;
  }

  .feature-card {
    flex-direction: column;
    text-align: center;
  }

  .footer-container {
    flex-direction: column;
  }

  #title h1 {
    font-size: 2rem;
  }
}

/*Css hecho con ayuda de la Ia */
