﻿body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: #F6FAFF;
    color: #333;
}

:root {
    --header-bg: linear-gradient(237deg, rgba(44, 94, 64, 1) 0%, rgba(35, 77, 85, 1) 50%, rgba(27, 57, 107, 1) 100%);
    --footer-bg: linear-gradient(237deg, rgba(44, 94, 64, 1) 0%, rgba(35, 77, 85, 1) 50%, rgba(27, 57, 107, 1) 100%);
    --text-color: #295846;
}

header.index--header {
    background: var(--header-bg) !important;
    transition: background 0.3s ease;
}

footer.Crear--footer {
    background: var(--footer-bg) !important;
    transition: background 0.3s ease;
}

.Informacion--Titulo {
    color: var(--text-color) !important;
    transition: color 0.3s ease;
}


.index--header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    color: white;
    background: var(--header-bg);
    transition: background 0.3s ease;
}

.Logos {
    display: flex;
    gap: 90px;
    align-items: center;
}

.Logos--Oficiales {
    height: 75px;
    object-fit: contain;
}

.Login--Menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.OpcionesAdi a, .Cuentas a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
    font-size: 18px;
    transition: color 0.3s ease;
}

    .OpcionesAdi a:hover, .Cuentas a:hover {
        color: #3B97DD;
    }

.Cuentas {
    display: flex;
    align-items: center;
    gap: 10px;
}

.Selection--Cuenta {
    background: #2C5E40;
    background: #2B5B44;
    color: white;
    padding: 10px 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    appearance: none;
    width: 240px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px;
}

select option {
    background-color: #234D55;
    color: white;
}

    select option :hover {
        background-color: #234D55;
        color: white;
    }


.Informacion--Titulo {
    font-size: 30px;
    font-weight: 700;
    color: #295846;
    margin-bottom: 30px;
}

.Informacion--Titulo2 {
    font-size: 30px;
    font-weight: 500;
    color: #295846;
    margin-bottom: 30px;
}

.index--Main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 40px 20px;
}

    .index--Main img {
        max-width: 300px;
        align-content: center;
        width: 100%;
        height: auto;
        opacity: 0.9;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

        .index--Main img:hover {
            transform: scale(1.05);
            opacity: 1;
        }

.Crear--footer {
    background: var(--footer-bg);
    padding: 20px;
    text-align: center;
    color: white;
    font-size: 14px;
    transition: background 0.3s ease;
}

.Option--Cuenta {
    align-items: center;
    text-align: center;
}
