﻿/* ===== BASE ===== */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #eef3f8, #d9e4f5);
}

/* ===== CONTENEDOR PRINCIPAL ===== */
.main-container {
    height: 78vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== CARD PRINCIPAL ===== */
.card-container {
    display: flex;
    gap: 100px;
    padding: 60px 90px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    align-items: center;
}

/* ===== OPCIONES ===== */
.option-card {
    width: 240px;
    padding: 30px 25px;
    border-radius: 18px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

    /* 🔥 HOVER */
    .option-card:hover {
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        background: white;
    }

/* ===== CONTENEDOR DE ICONO (CLAVE) ===== */
.icon-container {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== IMAGEN ===== */
.img-option {
    max-width: 180%;
    max-height: 180%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* HOVER ICON */
.option-card:hover .img-option {
    transform: scale(1.1);
}

/* ===== TITULO ===== */
.option-title {
    font-size: 19px;
    font-weight: 600;
    color: #1f3c88;
    margin-top: 15px;
    margin-bottom: 8px;
}

/* ===== SUBTITULO ===== */
.option-subtitle {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.4;
}

/* ===== BOTON LATERAL ===== */
.menuvertical {
    position: fixed;
    top: 40%;
    left: 0;
    background: linear-gradient(135deg, #1f3c88, #2c5cc5);
    border-radius: 0 15px 15px 0;
    padding: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: 0.3s;
}

    .menuvertical:hover {
        transform: translateX(5px);
    }

    .menuvertical img {
        width: 35px;
    }
