/* Archivo CSS para index.html */

body {
    margin: 0;
    padding: 0;
    font-family: Georgia, 'Times New Roman', Times, serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #ffffff;
}

.container {
    width: 90%;
    max-width: 800px;
    text-align: center;
    background: #f9f9f9;
    padding: 40px 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo en el centro */
.logo {
    margin-bottom: 20px;
}

.logo img {
    width: 300px;
    height: auto;
}

/* Título principal */
h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #139b2d;
    margin-bottom: 20px;
}

/* Selector de idioma */
.language-select {
    padding: 8px 16px;
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-bottom: 30px;
}

/* Botones de acción */
.actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.button {
    padding: 12px 24px;
    background-color: #139b2d;
    color: #ffffff;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #117a24;
}

.button:active {
    background-color: #0e691e;
}

/* Íconos (no se usan aquí pero se mantienen por si hay futuros usos) */
.icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.icon img {
    width: 100%;
    height: 100%;
}

/* Navbar (no utilizada aquí pero mantenida si se reusa el estilo) */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #ffffff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.navbar a {
    color: #139b2d;
    text-decoration: none;
    font-size: 1rem;
    margin: 0 10px;
    transition: color 0.3s;
}

.navbar a:hover {
    color: #0e691e;
}

/* Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 30px 15px;
    }

    h1 {
        font-size: 2rem;
    }

    .button {
        font-size: 0.95rem;
        padding: 10px 20px;
    }

    .language-select {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.6rem;
    }

    .button {
        font-size: 0.85rem;
        padding: 8px 16px;
    }

    .logo img {
        width: 100px;
    }
}
