/* Reset y estilos básicos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #000428, #004e92); /* Gradiente azul oscuro a negro */
    color: #ffffff;
    overflow-x: hidden;
}

header {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url('party-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

nav {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7); /* más oscuro para tema nocturno */
}

.logo img {
    height: 50px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1rem;
    margin-bottom: 30px;
}

.cta-button {
    padding: 12px 24px;
    background-color: #002f4b; /* color más oscuro para el botón */
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #004e92; /* otro tono de azul oscuro */
}

.features {
    padding: 50px 20px;
    background-color: #1e1e1e; /* gris oscuro para contraste */
    text-align: center;
}

.features h2 {
    margin-bottom: 30px;
    font-size: 2rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    max-width: 300px;
    margin: 0 auto;
}

.feature-item h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: #4ecdc4; /* color aqua suave */
}

.download {
    padding: 40px 20px;
    text-align: center;
    background-color: #001f3f; /* azul oscuro */
    color: #ffffff;
}

.download h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.coming-soon {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #ffffff; /* Añadido para destacar el mensaje "Próximamente" */
}

.download p {
    font-size: 1rem;
    margin-bottom: 30px;
}

.download-buttons {
    display: flex;
    justify-content: center; /* Centra los botones de descarga */
    gap: 15px;
    flex-wrap: wrap;
}

.download-buttons a {
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 1rem;
    text-decoration: none;
    color: #ffffff;
    display: block;
}

.ios-button {
    background-color: #111111;
}

.android-button {
    background-color: #1e90ff; /* azul más brillante para resaltar */
}

.footer {
    padding: 20px;
    text-align: center;
    background-color: #121212; /* negro suave */
}

.footer h2 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: #4ecdc4;
}

.footer p {
    font-size: 1rem;
}

.footer a {
    color: #4ecdc4;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-links {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-links a {
    color: #4ecdc4;
    text-decoration: none;
    font-size: 0.9rem;
}

/* Media Queries para responsive design */
@media (min-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1.2rem;
    }

    .feature-list {
        flex-direction: row;
        justify-content: space-around;
    }

    .download-buttons {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    nav {
        padding: 20px 50px;
    }

    .logo img {
        height: 60px;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .hero p {
        font-size: 1.5rem;
    }

    .features h2 {
        font-size: 2.5rem;
    }

    .download h2 {
        font-size: 2.5rem;
    }

    .footer h2 {
        font-size: 1.8rem;
    }

    .footer p {
        font-size: 1.1rem;
    }

    .footer-links a {
        font-size: 1rem;
    }
}


/* Estilos para la página de eliminación de cuenta */
.container {
    max-width: 400px;
    margin: 100px auto;
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

h1 {
    color: #4ecdc4;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #ffffff;
}

input[type="text"], input[type="password"] {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    margin-bottom: 10px;
    background-color: #333333;
    color: #ffffff;
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background-color: #ff5f6d;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #e14a50;
}

/* Estilos para el modal de confirmación */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    max-width: 500px;
    margin: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: #ffffff;
    cursor: pointer;
}

.confirm-button {
    background-color: #ff5f6d;
    color: #ffffff;
    margin-right: 10px;
}

.cancel-button {
    background-color: #333333;
    color: #ffffff;
}

.confirm-button:hover, .cancel-button:hover {
    opacity: 0.8;
}
.container {
    max-width: 800px;
    margin: 50px auto;
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 8px;
    color: #ffffff;
}

h1 {
    color: #4ecdc4;
    text-align: center;
    margin-bottom: 20px;
}

.language-selector {
    text-align: center;
    margin-bottom: 20px;
}

.lang-btn {
    padding: 10px 20px;
    margin: 0 10px;
    border: none;
    border-radius: 4px;
    background-color: #004e92;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s;
}

.lang-btn.active, .lang-btn:hover {
    background-color: #002f4b;
}

.privacy-content {
    text-align: left;
}

.lang-content {
    display: none; /* Por defecto, ocultar todos los contenidos de idiomas */
}

.lang-content[data-lang="es"] {
    display: block; /* Mostrar el contenido en español por defecto */
}

a {
    color: #4ecdc4;
}

a:hover {
    color: #ffffff;
}

.footer {
    padding: 20px;
    text-align: center;
    background-color: #121212;
}
.logo img {
    filter: invert(100%);
}
br{
  margin:10px;
}
