* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #1d1d1d;
  color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.container {
  text-align: center;
  max-width: 800px;
}

h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  text-align: left;
  padding-left: 30px;
}

.highlight {
  color: #ffffff;
}

.subtitle {
  color: #aaa;
  margin-bottom: 2rem;
}

.pricing-table {
  display: grid;
  gap: 10px;
}

.row {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  background: #1d1d1d;
  padding: 12px 16px;
  border-radius: 10px;
  align-items: center;
  transition: all 0.3s ease;
}

.row:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
}

.row.header {
  background: #1d1d1d;
  font-weight: 600;
}

.row.prices {
  background: #1d1d1d;
  font-weight: 500;
}

.btn {
  margin-top: 2rem;
  padding: 12px 162px;
  border: none;
  background: #fff;
  color: #000000;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #a7a7a7;
}

.renewal-note {
  font-size: 0.9rem;
  color: #ffffff;
  margin-top: 1rem;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  /*backdrop-filter: blur(5px);*/
}

.modal.show {
  display: flex;
  transform: translateY(-2px);
}

.modal-content {
  background: #111;
  padding: 150px;
  border-radius: 50px;
  text-align: center;
  width: 100%;
}

.modal-content h2 {
  color: #ffffff;
  margin-bottom: 20px;
}

.plans {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.plan-option {
  background: #222;
  color: #fff;
  border: 2px solid #444;
  border-radius: 10px;
  padding: 50px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}

.plan-option:hover {
  border-color: #b48eff;
  background: #1b1b1b;
}

.close-modal {
  background: none;
  color: #aaa;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.close-modal:hover {
  color: #fff;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.row span:first-child {
  text-align: left;
  padding-left: 10px;
}

.row span:not(:first-child) {
  text-align: center;
}

.tick {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}

/* ============================
   MODAL TIPO "BOTTOM SHEET"
============================ */
.bottom-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: -100%;
  background: #000;
  border-radius: 20px 20px 0 0;
  transition: bottom 0.4s ease;
  padding: 25px 20px 35px;
  z-index: 1000;
  height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.bottom-sheet.show {
  bottom: 0;
}

.sheet-header {
  width: 50px;
  height: 4px;
  background: #444;
  border-radius: 4px;
  margin: 0 auto 20px;
}

.plans {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.plan-card {
  background: #111;
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #222;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.plan-card:hover {
  transform: translateY(-2px);
}

.plan-info h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #ffffff;
  text-align: left;
}

.plan-info p {
  margin-top: 4px;
  font-size: 0.9rem;
  color: #aaa;
  max-width: 80%;
  text-align: left;
}

.acquire-btn {
  background: #ffffff;
  color: rgb(0, 0, 0);
  border: none;
  border-radius: 9990px;
  padding: 10px 32px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.acquire-btn:hover {
  transform: scale(1.05);
}

/* Fondo oscuro */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0);
  backdrop-filter: blur(0px);
  transition: background 300ms ease, backdrop-filter 300ms ease, opacity 300ms ease;
  opacity: 0;
  pointer-events: none;
  z-index: 999;
}

.overlay.show {
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(0px);
  opacity: 1;
  pointer-events: auto;
}

/* Animación del modal */
.bottom-sheet {
  transform: translateY(100%);
  transition: transform 350ms cubic-bezier(.22,.9,.32,1);
}

.bottom-sheet.show {
  transform: translateY(0);
}

.bottom-sheet.closing {
  transform: translateY(100%);
  transition: transform 300ms cubic-bezier(.4,0,.66,1);
}

.container {
  text-align: center;
  max-width: 800px;
  padding: 20px 10px; /* antes era mucho mayor */
}

h1 {
  font-size: 2.4rem;
  margin-bottom: 0.3rem;
  padding-left: 20px;
}

.subtitle {
  margin-bottom: 1.2rem;
}

.row {
  padding: 8px 12px; /* menos alto por fila */
}

.pricing-table {
  gap: 6px; /* antes 10px */
  font-size: 0.95rem;
}

.row.prices span:not(:first-child) {
  font-size: 1.2rem; /* antes 1.4rem */
}

.discount-banner {
  font-size: 1.1rem;
  padding: 12px 10px;
  margin: 15px auto 20px;
  width: 85%;
  border-radius: 10px;
  animation: gradientShift 3s ease infinite, bounceIn 0.9s ease;
}




