/* Nuevo: Espaciado profesional para la cara animada */
.cara-espaciada {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px; /* Espacio grande debajo de la cara */
    margin-top: 20px;
}

/* Opcional: reducir el tamaño de la cara si es muy grande */
.contenedor-cara {
    max-width: 250px;
    width: 100%;
    margin: 0 auto;
    /* Mantiene el centrado y tamaño adecuado */
}

/* Cambia .contenedor-ojos a posición relativa para que no se salga del flujo */
.contenedor-ojos {
    display: flex;
    gap: 50px;
    justify-content: center;
    position: relative; /* Cambiado de absolute a relative */
    top: 0;             /* Quitado el desplazamiento */
    left: 0;
    transform: none;
    z-index: 1;
}

.ojo {
    width: 150px;
    height: 75px;
    background: #fff;
    border-radius: 50% / 25%;
    position: relative;
    border: 5px solid #000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.iris {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(0,255,0,1) 0%, rgba(0,76,255,1) 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.pupila {
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, #000, #f00, #0f0, #00f);
    border: 5px solid #fff;
    border-radius: 50%;
    position: absolute;
    transition: all 0.1s;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.pestañas {
    position: absolute;
    width: 100%;
    height: 20px;
    top: -10px;
    display: flex;
    justify-content: space-between;
    transform: rotate(-10deg);
}

.pestaña {
    width: 4px;
    height: 20px;
    background: #000;
    border-radius: 2px;
}

.pestaña:nth-child(1) {
    transform: rotate(-20deg);
}

.pestaña:nth-child(2) {
    transform: rotate(-10deg);
}

.pestaña:nth-child(3) {
    transform: rotate(0deg);
}

.pestaña:nth-child(4) {
    transform: rotate(10deg);
}

.pestaña:nth-child(5) {
    transform: rotate(20deg);
}

@keyframes parpadeo {
    0%, 97%, 100% {
        height: 75px;
    }
    98% {
        height: 0;
    }
}

.ojo.parpadeo {
    animation: parpadeo 8s infinite;
}

.nariz {
    position: relative; /* Cambiado de absolute a relative */
    top: 0;
    left: 0;
    margin: 20px auto 0 auto;
    width: 50px;
    height: 80px;
    background: #000;
    border-radius: 50% / 75%;
    transform: none;
}

.boca {
    position: relative; /* Cambiado de absolute a relative */
    top: 0;
    left: 0;
    margin: 20px auto 0 auto;
    width: 200px;
    height: 100px;
    background: #000;
    border-radius: 0 0 100px 100px / 0 0 50px 50px;
    transform: none;
    overflow: hidden;
}

.boca-abierta {
    animation: abrirCerrarBoca 10s infinite;
}

@keyframes abrirCerrarBoca {
    0%, 80%, 100% {
        height: 100px;
    }
    85%, 95% {
        height: 0;
    }
}

.dientes {
    display: flex;
    justify-content: space-around;
    position: absolute;
    top: 10px;
    width: 100%;
    z-index: 1;
}

.diente {
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 0 0 10px 10px;
}

.dientes-inferiores {
    display: flex;
    justify-content: space-around;
    position: absolute;
    bottom: 10px;
    width: 100%;
    z-index: 1;
}

.diente-inferior {
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 10px 10px 0 0;
}

.lengua {
    width: 100px;
    height: 50px;
    background: #e74c3c;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50px / 25px;
    z-index: 0;
}