body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top, #7a1a72 0%, #3a0c42 40%, #0b0314 100%);
  color: #fdf2ff;
  min-height: 100vh;
}

.hero {
  min-height: 100vh;
}

.card {
  border: none;
  border-radius: 1rem;
}

.card .bi {
  flex-shrink: 0;
}

footer small {
  letter-spacing: 0.05em;
}

.gradient-section {
  background: linear-gradient(145deg, rgba(122, 26, 136, 0.9), rgba(48, 6, 62, 0.95));
  box-shadow: 0 35px 60px rgba(0, 0, 0, 0.35);
  padding: 0 1.5rem;
}

.navbar {
  padding-top: 1.25rem;   /* adjust to taste */
  padding-bottom: 1.25rem;
}

.navbar-nav .nav-link {
  font-size: 1.25rem;      /* links del menú más pequeños */
}

.navbar-brand {
  font-size: 2rem;        /* bump this if you want larger text */
  height; 50px;
  padding: 0;
  display; flex;
  align-items; center;
}

.brand-logo {
  width: auto;            /* pick the size you want */
  height: 80px;
  transform; scale(1.25); /* adjust logo size */
  transform-origin: left center;

}

.text-lilac {
  color: #c084fc;   /* el tono lila que prefieras */
}

.store-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.store-link .bi {
  font-size: 1.25rem;
  color:#6610f2
}

.text-purple {
  color: #6610f2;   /* un tono púrpura más oscuro */
}

.btn-download {
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  color: #fff;
  border: none;
  padding: 0.85rem 2.5rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 25px rgba(124, 58, 237, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-download:hover,
.btn-download:focus {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 30px rgba(124, 58, 237, 0.45);
  color: #fff;
}

.btn-download:active {
  transform: translateY(0);
  box-shadow: 0 8px 16px rgba(124, 58, 237, 0.35);
}

.btn-download-outline {
  background: transparent;
  color: #fdf2ff;
  border: 2px solid rgba(255, 255, 255, 0.6);
  padding: 0.85rem 2.3rem;
  border-radius: 999px;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-download-outline:hover,
.btn-download-outline:focus {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transform: translateY(-2px);
}

.btn-download-outline:active {
  transform: translateY(0);
}

.glass-nav {
  position: relative;
  z-index: 10;
  background: linear-gradient(120deg, rgba(19, 8, 32, 0.78), rgba(122, 26, 88, 0.72));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 24px rgba(13, 7, 23, 0.45);
}

.glass-nav .navbar-brand,
.glass-nav .nav-link {
  color: #fdf2ff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.glass-nav .navbar-brand {
  font-weight: 700;
}

.glass-nav .nav-link {
  font-weight: 500;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.glass-nav .nav-link:hover,
.glass-nav .nav-link:focus {
  background-color: rgba(255, 255, 255, 0.12);
  color: #ffe9ff;
}

.glass-nav .dropdown-menu {
  background: rgba(23, 9, 36, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  box-shadow: 0 18px 30px rgba(8, 3, 15, 0.6);
  padding: 0.5rem;
}

.glass-nav .dropdown-item {
  color: #fdf2ff;
  border-radius: 0.75rem;
}

.glass-nav .dropdown-item:hover,
.glass-nav .dropdown-item:focus {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.hero-block {
  position: relative;
  isolation: isolate;
  background-image: url("background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fef7ff;
  padding: 7rem 0 5rem;
}

.hero-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 0, 15, 0.65), rgba(18, 4, 28, 0.95));
  z-index: -1;
}

.hero-content h1,
.hero-content p {
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.hero-features {
  margin-top: 4rem;
}

.feature-card {
  background: rgba(6, 0, 18, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.5rem;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 1.75rem;
}

.feature-card .card-title {
  color: #fff;
}

.feature-card .card-text {
  color: rgba(255, 255, 255, 0.85);
}

.section-panel {
  background: rgba(8, 2, 20, 0.8);
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.safety-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-left: 1.5rem;
}

.safety-timeline::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.6), rgba(255,255,255,0.05));
}

.timeline-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-left: 0.5rem;
}

.timeline-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  color: #fdf2ff;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.timeline-icon i {
  font-size: 1rem;
}

.timeline-content {
  flex: 1;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.6;
  padding: 1rem 1.25rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.timeline-item:hover .timeline-icon,
.timeline-item:focus-within .timeline-icon {
  background: linear-gradient(135deg, #ff9de4, #ad62ff);
  color: #250038;
  transform: scale(1.05);
}

.timeline-item:hover .timeline-content,
.timeline-item:focus-within .timeline-content {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.timeline-content.has-media {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.timeline-text {
  flex: 1;
}

.timeline-media {
  width: 156px;
  height: 156px;
  object-fit: cover;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.35);
}

@media (max-width: 576px) {
  .safety-timeline {
    padding-left: 0.5rem;
  }

  .safety-timeline::before {
    left: 0.8rem;
  }
  .timeline-content.has-media {
    flex-direction: column;
    align-items: flex-start;
  }
  .timeline-media {
    width: 100%;
    height: 192px;
  }
}

.difference-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.difference-item {
  width: 100%;
}

.difference-card {
  background: rgba(255,255,255,0.1);
  border-radius: 1.5rem;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  padding: 1.5rem;
  gap: 2rem;
  backdrop-filter: blur(12px);
}

.difference-text {
  flex: 1;
  font-size: 1.125rem;
  color: #fef7ff;
  text-align: left;
}

.difference-img {
  width: 180px;
  height: 180px;
  border-radius: 1.25rem;
  object-fit: cover;
}

.difference-item:nth-child(even) .difference-card {
  flex-direction: row-reverse;
}

.difference-item:nth-child(even) {
  padding-left: 3rem;
}

.difference-item:nth-child(even) .difference-text {
  text-align: right;
}

.difference-item:nth-child(odd) {
  padding-right: 3rem;
}

.footer-panel {
  background: rgba(4, 0, 10, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
  .difference-card,
  .difference-item:nth-child(even) .difference-card {
    flex-direction: column;
    text-align: left;
  }
  .difference-item {
    padding: 0;
  }
}
