body {
    background: linear-gradient(120deg, #000428, #004e92);
    color: white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 23px;
    margin: 0;
    text-align: center;
}

p {
    font-size: 23px;
}
/* Contenedor principal */
.container {
    animation: fadeIn 1s ease-in-out;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    margin-top: 15px;
    margin: auto;
    max-width: 90%;
    padding: 35px;
    text-align: center;
}

/* Animación de aparición */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Título principal */
h2 {
    font-size: 2.5em;
    font-weight: bold;
    color: gold;
    text-shadow: 1px 1px 2px #000;
    margin-bottom: 15px;
}

/* Texto informativo */
.info, .cta {
    font-size: 18px;
    margin: 15px 0;
    line-height: 1.6;
}

/* Beneficios */
.benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin: 30px 0;
}

.benefit, section {
    flex: 1 1 calc(33% - 20px);
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.benefit h3 {
    color: #ffd700;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.benefit p {
    font-size: 20px;
    line-height: 1.4;
}

/* Formulario */
form {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

input[type="text"],
input[type="email"] {
    width: 90%;
    max-width: 400px;
    margin-bottom: 15px;
    padding: 15px;
    border: none;
    border-radius: 8px;
    background: #333;
    color: white;
    font-size: 1em;
    outline: none;
    box-shadow: inset 0 0 5px rgba(255,255,255,0.2);
}

button {
    background: linear-gradient(120deg, #001f3f, #0074D9);
    border: 2px solid #000c1a;
    border-radius: 10px;
    box-shadow: 0px 0px 55px yellow;
    color: white;
    font-size: 25px;
    font-weight: bold;
    padding: 15px 25px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    height: 120x;
    width: 95%;
}

button:hover {
    background: linear-gradient(120deg, #003366, #0056b3);
    box-shadow: 0px 0px 120px yellow;
    transform: scale(1.05);
}

button:active {
    background: linear-gradient(120deg, #002244, #003e70);
    transform: scale(0.98);
}

/* Footer */
.footer {

    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    color: white;
    padding: 15px;
    font-size: 16px;
    text-align: center;
    margin-top: 80px;
    z-index: 10;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}


/* Responsive */
@media (max-width: 768px) {
    .benefits {
        flex-direction: column;
    }

    .benefit {
        flex: 1 1 100%;
    }

    input[type="text"],
    input[type="email"] {
        width: 100%;
    }
}
