/* =======================  BANNER INICIO  ======================= */

/* Contenedor principal */
.inicio-container {
    position: relative;
    width: 100vw;      /* Ancho completo de la ventana */
    height: 100vh;     /* 100 % de la altura visible */
    margin: 0;
    padding: 0;
    overflow: hidden;  /* Evita que los hijos se salgan */
}

/* Logo pequeño (esquina) */
.image-logo {
    opacity: 0;        /* si lo usarás, ajústalo a 1 */
    width: 60px;
    max-height: 60px;
    z-index: 3;
    position: absolute;
    cursor: pointer;
}

/* Imagen PNG transparente de fondo */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;  /* se cambia a 'cover' vía JS en móviles */
    z-index: 1;
}

/* Círculo interactivo */
.circle {
    position: absolute;
    width: 30vh;
    height: 30vh;
    background-color: rgb(255, 192, 0);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 0;
}

/* ===================  INFO-SECTION (texto)  =================== */
.info-section{
    position:absolute;
    bottom:10%;       /* ↙ se alinea abajo-izquierda */
    left:4%;
    transform:none;   /* ya no centramos */
    width:22%;        /* puedes afinar este ancho */
    max-width:450px;

    padding:40px;
    border-radius:20px;
    color:#fff;
    font-family:'Arial',sans-serif;
    font-size:15px;
    text-align:left;
    z-index:2;
    pointer-events:none;
}

/* Título principal */
.info-title {
    font-weight: bold;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff;
    border: 2px solid #fff;
    padding: 5px 5px;
    display: inline-block;
    border-radius: 20px;
    margin-bottom: 20px;
}

/* Subtítulo */
.info-subtitle {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
    display: inline;
    margin-right: 10px;
}

/* Descripción */
.info-description {
    color: #e0e0e0;
    margin-bottom: 15px;
    text-align: left;
}

/* Detalles */
.info-details h3 {
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 5px;
}

.info-details p {
    font-weight: normal;
    color: #ffffff;
    margin: 0 0 10px;
    text-align: left;
}

/* ===================  VISTA MÓVIL  (≤ 800 px)  =================== */
@media (max-width: 800px) {
    /* círculo y fuente se ajustan en JS, pero dejamos tamaños base */
    .circle {
        width: 10vh;
        height: 10vh;
    }

    .info-section{
        bottom:6%;
        left:5%;
        width:90%;
        padding:20px;
        font-size:12px;
    }

    .info-title   { font-size: 2rem; }
    .info-subtitle{ font-size: 1.2rem; }
}
