#CompraBoletos {
    
  border: none; /* Elimina todos los bordes del input */
  padding: 8px; /* Agrega un poco de espacio interno para que el texto no se pegue */
  outline: none; /* Importante: esto quita el contorno azul/negro que aparece al hacer clic en el input */
  background-color: transparent;
}

/* Estilos generales */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f2f5;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

header {
    width: 100%;
    max-width: 1200px;
    background-color: #000;
    color: #fff;
    padding: 15px 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

header .logo a {
    color: #e50914; /* Rojo Blockbuster */
    font-size: 2em;
    font-weight: bold;
    text-decoration: none;
}

.plan-selection-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    max-width: 1200px;
    width: 100%;
}

h1 {
    color: #333;
    margin-bottom: 10px;
    font-size: 2.5em;
}

.subtitle {
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1em;
}

.plan-form {
    width: 100%;
}

.plan-options {
    display: flex;
    flex-wrap: wrap; /* Permite que las tarjetas se envuelvan en pantallas pequeñas */
    justify-content: center;
    gap: 30px; /* Espacio entre las tarjetas */
}

.plan-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 30px;
    width: 300px; /* Ancho fijo para cada tarjeta */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Empuja el botón hacia abajo */
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.plan-card h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #333;
}

.plan-card .price {
    font-size: 2.8em;
    font-weight: bold;
    color: #e50914; /* Rojo Blockbuster */
    margin-bottom: 20px;
}

.plan-card .price .period {
    font-size: 0.5em;
    font-weight: normal;
    color: #666;
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
    flex-grow: 1; /* Permite que la lista ocupe el espacio disponible */
}

.plan-card ul li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.5;
}

.plan-card ul li::before {
    content: '✔ '; /* Checkmark simple */
    color: #28a745; /* Color verde para el checkmark */
    font-weight: bold;
    margin-right: 8px;
}

.plan-card.free ul li::before {
    content: '• '; /* Punto para la cuenta gratis, si tiene limitaciones */
    color: #888;
}

/* Estilos de botones */
.btn-select {
    background-color: #e50914; /* Rojo Blockbuster */
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 6px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%; /* El botón ocupa todo el ancho de la tarjeta */
}

.btn-select:hover {
    background-color: #c00810;
}

.btn-select.premium {
    background-color: #007bff; /* Un azul más premium */
}
.btn-select.premium:hover {
    background-color: #0056b3;
}

.btn-select.free {
    background-color: #6c757d; /* Un gris para el plan gratis */
}
.btn-select.free:hover {
    background-color: #5a6268;
}


/* Pie de página */
footer {
    width: 100%;
    max-width: 1200px;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
    color: #777;
    font-size: 0.9em;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .plan-options {
        flex-direction: column;
        align-items: center;
    }
    .plan-card {
        width: 80%; /* Hacer las tarjetas más anchas en pantallas pequeñas */
        max-width: 400px;
    }
}