/*
 Theme Name: ListingHive Child
 Template: listinghive
 Description: Tema hijo de ListingHive con override para mostrar estadísticas OVETA junto a las estrellas.
 Version: 1.0
*/

/* ============================================
   ESTILOS PROPIOS DE OVETA (Optimizado)
   ============================================ */

/* --- Contenedor principal de bienvenida --- */
.oveta-bienvenida-container {
    text-align: center;
    padding: 10px 0 5px 0;
}

/* --- Logo con animación de entrada (zoom + fade-in) --- */
.oveta-logo-bienvenida {
    max-width: 100%;
    height: auto;
    width: 750px;
    display: block;
    margin: 15px auto 15px auto;
    
    animation: oveta-logo-entrada 1s ease-out forwards;
    opacity: 0;
    transform: scale(0.80);
}

@keyframes oveta-logo-entrada {
    0% {
        opacity: 0;
        transform: scale(0.80);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* --- Subtítulo (texto ético) --- */
.oveta-subtitulo-etica {
    font-size: 24px;
    color: #333;
    max-width: 750px;
    margin: 5px auto 0 auto;
    line-height: 1.5;
    font-weight: 400;
    font-family: sans-serif;
}

/* --- Estilos para el buscador maestro --- */
.oveta-buscador-maestro {
    max-width: 700px;
    margin: 20px auto;
    padding: 0 20px;
}

.oveta-buscador-maestro input[type="text"] {
    width: 100%;
    padding: 15px 20px;
    font-size: 18px;
    border: 2px solid #ddd;
    border-radius: 50px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.oveta-buscador-maestro input[type="text"]:focus {
    border-color: #007cba;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.2);
}

/* --- Versión móvil --- */
@media (max-width: 768px) {
    .oveta-logo-bienvenida {
        width: 320px;
    }
    .oveta-subtitulo-etica {
        font-size: 18px;
        padding: 0 15px;
        line-height: 1.4;
    }
    .oveta-buscador-maestro input[type="text"] {
        font-size: 16px;
        padding: 12px 16px;
    }
}

/* --- Ajustes para pantallas pequeñas (móviles muy pequeños) --- */
@media (max-width: 480px) {
    .oveta-logo-bienvenida {
        width: 250px;
    }
    .oveta-subtitulo-etica {
        font-size: 16px;
    }
}