﻿/* Título principal */
.titulo-yoaprendo {
    font-size: 1.2rem;
    font-weight: bold;
    color: #00587a;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* estilo común de botones deshabilitados */
.boton-con-play button.is-disabled,
.boton-con-play button[disabled] {
    background-color: #dddddd !important; /* un gris más oscuro */
    color: #555555 !important; /* texto también más oscuro */
    border: 2px solid #888888 !important; /* borde visible en gris */
    border-radius: 6px; /* conserva la forma */
    cursor: not-allowed;
    box-shadow: 0 3px #777777 !important; /* sombra tenue */
}

    /* opcional: elimina cualquier efecto hover */
    .boton-con-play button.is-disabled:hover,
    .boton-con-play button[disabled]:hover {
        transform: none;
        background-color: #dddddd !important;
    }

.pronoun-button-principal {
    background-color: #007B9E;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    text-align: center;
    padding: 15px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 6px #00587a;
    transition: background-color 0.3s ease, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: normal;
    word-wrap: break-word;
    /* 🎯 Fijar ancho uniforme */
    width: 210px; /* Todos del mismo ancho exacto */
    height: 40px; /* Misma altura también si querés */
    max-width: 280px;
    min-width: 280px;
}


    .pronoun-button-principal:hover {
        background-color: #00587a;
        transform: translateY(-3px);
    }

/* Botón Play */
/* Botón Play (fondo limpio sin amarillo) */

.boton-con-play {
    display: flex;
    align-items: stretch; /* Estira los elementos para que midan lo mismo */
    justify-content: flex-start;
    width: 100%;
    /* encapsulamos el padding dentro del ancho total */
    box-sizing: border-box;
    /* 0 arriba/abajo y 0.5cm a izquierda/derecha */
    padding: 0 0.5cm;
    gap: 10px;
    margin-bottom: 15px;
}

.play-button {
    width: 40px;
    min-width: 40px;
    height: 40px;
    background-color: transparent; /* sin color de fondo */
    border: 0px solid #00587a; /* borde azul */
    border-radius: 50%;
    font-size: 1.6rem;
    color: #00587a; /* ícono en azul */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background-color 0.3s, color 0.3s;
    box-shadow: none;
}

    .play-button:hover {
        background-color: #e6f4fa; /* azul muy claro al pasar el mouse */
        transform: scale(1.1);
    }

.scrollable-button-container {
    max-height: 230px; /* 5 botones de 60px + espacio */
    overflow-y: auto;
    padding-right: 10px;
    margin-top: 15px;
}

    /* Agrega un estilo sutil para la scrollbar (opcional para mejorar UX) */
    .scrollable-button-container::-webkit-scrollbar {
        width: 8px;
    }

    .scrollable-button-container::-webkit-scrollbar-thumb {
        background-color: #ccc;
        border-radius: 4px;
    }

    .scrollable-button-container::-webkit-scrollbar-track {
        background-color: transparent;
    }
.video-avatar {
    width: 210px;
    height: 280px;
    border: none;
    border-radius: 20% 20% 15% 15% / 25% 25% 15% 15%;
    background-color: transparent;
    object-fit: cover;
    overflow: hidden;
    transition: transform 0.3s ease;
    /* 🌌 Halo degradado de azul a gris */
    box-shadow: 0 0 15px rgba(0, 173, 239, 0.5), /* azul celeste suave */
    0 0 30px rgba(120, 150, 170, 0.3), /* azul grisáceo */
    0 0 60px rgba(180, 180, 180, 0.2), /* gris claro */
    inset 0 0 10px rgba(255, 255, 255, 0.05); /* luz interior tenue */
}
    .video-avatar:hover {
        transform: scale(1.02);
    }
@keyframes breathing {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.01);
    }
}

.video-avatar {
    animation: breathing 3s ease-in-out infinite;
}
.btn-flotante-ver {
    display: none;
}
@media (max-width: 768px) {
    .col-derecha {
        display: none;
    }
    .btn-flotante-ver {
        display: block;
        position: fixed;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
        background-color: #00587a; /* Azul oscuro (más sobrio) */
        color: #fff;
        border: none;
        padding: 8px 16px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        z-index: 9999;
        transition: transform 0.2s, background-color 0.3s;
    }

        .btn-flotante-ver:hover {
            background-color: #007b9e; /* Un azul más claro al pasar el mouse */
            transform: translateY(-50%) scale(1.05);
        }
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(252, 163, 17, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(252, 163, 17, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(252, 163, 17, 0);
    }
}
.modal-lista {
    display: none; /* Se activa con JS */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* fondo oscuro */
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.modal-contenido {
    background-color: #fff;
    border-radius: 12px;
    padding: 20px 30px;
    max-width: 90%;
    max-height: 80%;
    overflow-y: auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    position: relative;
    text-align: center;
    animation: fadeIn 0.4s ease-out;
}

    .modal-contenido h4 {
        color: #00587a;
        margin-bottom: 15px;
    }

    .modal-contenido ul {
        list-style: none;
        padding: 0;
        font-size: 1.1rem;
        color: #333;
        text-align: left;
    }

    .modal-contenido li {
        margin-bottom: 8px;
        padding-left: 10px;
        border-left: 4px solid #fca311;
    }

.cerrar-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

    .cerrar-modal:hover {
        color: #000;
    }
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}
/* 🎯 Lista moderna con estilo similar al modal */
.lista-palabras {
    list-style: none;
    padding-left: 0;
    max-height: 300px;
    overflow-y: auto;
    padding-right: 5px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-size: 1.05rem;
    color: #333;
    text-align: left;
}

    .lista-palabras li {
        margin-bottom: 15px;
        padding-left: 12px;
        padding-right: 10px;
        border-left: 4px solid #fca311; /* Viñeta naranja */
        font-weight: 500;
        color: #00587a;
        transition: background-color 0.2s;
    }

        .lista-palabras li:hover {
            background-color: #f0f8ff;
            cursor: pointer;
        }

        .lista-palabras li:last-child {
            border-bottom: none;
        }