/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #121212;
    color: #E0E0E0;
}

/* Barra de navegación */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1F1B24;
    padding: 1rem 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav ul.left {
    margin-right: auto;
}

nav ul.right {
    margin-left: auto;
}

nav ul li a {
    color: #1E90FF;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    color: #03DAC6;
}

/* Contenedor del formulario de contacto */
.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 500px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: #1F1B24;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.contact-container h2 {
    font-size: 2rem;
    color: #1E90FF;
    margin-bottom: 0.5rem;
}

.contact-container p {
    font-size: 1rem;
    color: #A0A0A0;
    margin-bottom: 1.5rem;
}

/* Estilos del formulario */
.contact-form {
    width: 100%;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-size: 0.9rem;
    color: #A0A0A0;
    margin-bottom: 0.3rem;
}

.form-field input,
.form-field textarea {
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: #2B2B2B;
    color: #E0E0E0;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: #1E90FF;
    outline: none;
}

textarea {
    resize: none;
    height: 100px;
}

button {
    width: 100%;
    padding: 1rem;
    background-color: #1E90FF;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background-color: #03DAC6;
}

/* Estilos para la sección de equipo */
.team-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: #1F1B24;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.team-container h2 {
    font-size: 2.5rem;
    color: #1E90FF;
    margin-bottom: 1.5rem;
}

/* Cuadrícula de miembros del equipo */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%; /* Hace la imagen redonda */
    object-fit: cover; /* Asegura que la imagen ocupe todo el espacio sin deformarse */
    border: 2px solid #1E90FF; /* Borde azul */
}

.team-member p {
    margin-top: 0.5rem;
    font-size: 1rem;
    color: #E0E0E0;
    font-weight: bold;
}

/* Sección de beneficios */
.benefits-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: #1F1B24;
    border-radius: 8px;
    color: #E0E0E0;
}

.benefits-container h2 {
    font-size: 2.5rem;
    color: #1E90FF;
    margin-bottom: 0.5rem;
}

.benefits-container h3 {
    font-size: 1.5rem;
    color: #A0A0A0;
    margin-bottom: 1rem;
}

.benefits-container p {
    font-size: 1rem;
    color: #CCCCCC;
    margin-bottom: 2rem;
}

/* Cuadrícula de beneficios */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

.benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #2B2B2B;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit:hover {
    transform: translateY(-5px);
}

.benefit img {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.benefit h4 {
    font-size: 1.2rem;
    color: #1E90FF;
    margin-bottom: 0.5rem;
}

.benefit p {
    font-size: 0.9rem;
    color: #CCCCCC;
    text-align: center;
}

/* Estilos para la sección de preguntas frecuentes (FAQs) */
.faq-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: #1F1B24;
    border-radius: 8px;
    color: #E0E0E0;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.faq-container h2 {
    font-size: 2.5rem;
    color: #1E90FF;
    margin-bottom: 1rem;
    text-align: center;
}

.faq-container h3 {
    font-size: 1.5rem;
    color: #A0A0A0;
    margin-bottom: 2rem;
    text-align: center;
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-item h4 {
    font-size: 1.2rem;
    color: #1E90FF;
    margin-bottom: 0.5rem;
}

.faq-item p {
    font-size: 1rem;
    color: #CCCCCC;
    margin-left: 1rem;
    line-height: 1.5;
}

/* Contenedor de login centrado */
.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 400px;
    margin: 5rem auto;
    padding: 2rem;
    background-color: #1F1B24;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    color: #E0E0E0;
}

.login-container h2 {
    font-size: 2rem;
    color: #1E90FF;
    margin-bottom: 1rem;
}

.login-container form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.login-container label {
    font-size: 0.9rem;
    color: #A0A0A0;
    margin-top: 1rem;
    margin-bottom: 0.3rem;
}

.login-container input {
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: #2B2B2B;
    color: #E0E0E0;
}

.login-container input:focus {
    border-color: #1E90FF;
    outline: none;
}

button {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #1E90FF;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background-color: #03DAC6;
}

/* Enlace de registro */
.register-link {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #A0A0A0;
}

.register-link a {
    color: #1E90FF;
    text-decoration: none;
}

.register-link a:hover {
    text-decoration: underline;
}

/* Contenedor de registro centrado */
.register-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 400px;
    margin: 5rem auto;
    padding: 2rem;
    background-color: #1F1B24;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    color: #E0E0E0;
}

.register-container h2 {
    font-size: 2rem;
    color: #1E90FF;
    margin-bottom: 1rem;
}

.register-container form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.register-container input[type="text"],
.register-container input[type="email"],
.register-container input[type="password"] {
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: #2B2B2B;
    color: #E0E0E0;
    margin-top: 1rem;
}

.register-container input:focus {
    border-color: #1E90FF;
    outline: none;
}

/* Botón principal para registrarse */
button {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #1E90FF;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background-color: #03DAC6;
}

/* Enlace de inicio de sesión */
.login-link {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #A0A0A0;
}

.login-link a {
    color: #1E90FF;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}

/* Estilo para el contenedor de la contraseña */
.password-container {
    position: relative;
    display: flex;
    align-items: center;
}

.password-container input {
    width: 100%;
}

.toggle-password {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #1E90FF;
}

.toggle-password:hover {
    color: #03DAC6;
}

/* Estilo para el contenedor de la contraseña */
.password-container {
    position: relative;
    display: flex;
    align-items: center;
}

.password-container input {
    width: 100%;
    padding-right: 2.5rem; /* Espacio para el botón de ver/ocultar */
}

/* Botón de ver/ocultar contraseña */
.toggle-password {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    color: #1E90FF;
    padding: 0;
    display: flex;
    align-items: center;
}

.toggle-password:hover {
    color: #03DAC6;
}

/* Contenedor de login centrado */
.login-container, .register-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 400px;
    margin: 5rem auto;
    padding: 2rem;
    background-color: #1F1B24;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    color: #E0E0E0;
}

.login-container h2, .register-container h2 {
    font-size: 2rem;
    color: #1E90FF;
    margin-bottom: 1rem;
}

.login-container form, .register-container form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.login-container input, .register-container input {
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: #2B2B2B;
    color: #E0E0E0;
    margin-top: 1rem;
}

.login-container input:focus, .register-container input:focus {
    border-color: #1E90FF;
    outline: none;
}

button.btn-primary {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #1E90FF;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: bold;
}

button.btn-primary:hover {
    background-color: #03DAC6;
}

.register-link, .login-link {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #A0A0A0;
}

.register-link a, .login-link a {
    color: #1E90FF;
    text-decoration: none;
}

.register-link a:hover, .login-link a:hover {
    text-decoration: underline;
}

/* Estilo para el contenedor de la contraseña */
.password-container {
    position: relative;
    display: flex;
    align-items: center;
}

.password-container input {
    width: 100%;
    padding-right: 2.5rem; /* Espacio para el botón de ver/ocultar */
}

/* Botón de ver/ocultar contraseña */
.toggle-password {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    color: #1E90FF;
    padding: 0;
    display: flex;
    align-items: center;
}

.toggle-password:hover {
    color: #03DAC6;
}

/* Estilos para la Sección Hero */
#hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 2rem;
    background-color: #f0f2f5;
    color: #1a1a1a;
    text-align: left;
}

.hero-content {
    max-width: 600px;
}

#hero h1 {
    font-size: 3rem;
    color: #1e90ff;
    margin-bottom: 1rem;
}

#hero p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 1.5rem;
}

.hero-content .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    background-color: #1e90ff;
    color: #ffffff;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.hero-content .btn:hover {
    background-color: #70a1ff;
}

.hero-image img {
    max-width: 400px;
    height: auto;
    border-radius: 10px;
}


/* Contenedor del perfil */
.profile-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    background-color: #121212;
    color: #E0E0E0;
}

.profile-card {
    background-color: #1F1B24;
    border-radius: 12px;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

.profile-card h2 {
    font-size: 2.2rem;
    color: #1E90FF;
    margin-bottom: 1rem;
}

.profile-info {
    margin-bottom: 2rem;
}

.profile-info p {
    font-size: 1.1rem;
    margin: 0.8rem 0;
    color: #A0A0A0;
}

.profile-info strong {
    color: #ffffff;
}

.logout-btn {
    padding: 0.8rem 1.5rem;
    background-color: #1E90FF;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.logout-btn:hover {
    background-color: #70a1ff;
}

/* General container */
body {
    font-family: Arial, sans-serif;
    color: #e0e0e0;
    background-color: #1e1e2f;
    margin: 0;
    padding: 0;
}

/* Navbar styling */
#navbar-container {
    background-color: #151522;
    padding: 1rem;
}

/* FAQ container */
.faq-container {
    max-width: 800px;
    margin: auto;
    padding: 2rem 1rem;
    text-align: center;
}

.faq-container h2 {
    color: #4ecdc4;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.faq-container h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* FAQ item styling */
.faq-item {
    background-color: #2b2b3c;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.faq-item h4 {
    color: #4e67cd;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: #cfcfcf;
    line-height: 1.6;
}

/* Responsive styling */
@media (max-width: 600px) {
    .faq-container h2 {
        font-size: 2rem;
    }
    .faq-container h3 {
        font-size: 1.2rem;
    }
    .faq-item {
        padding: 1rem;
    }
    .faq-item h4 {
        font-size: 1rem;
    }
}
