/**
 * CRESA — pages/home.css
 * Solo estilos del bloque hero en inicio (.hero-section): buscador en viewport estrecho.
 * Tokens (--cre-*): components.css vía custom.css (cargada en layout después de esta hoja
 * define variables en :root; el orden final del documento las aplica correctamente).
 */

@media (max-width: 768px) {
    .hero-section .hero-search-form {
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
    }

    .hero-section .hero-search-container {
        width: 90%;
        margin: 0 auto 1.2rem;
        height: 44px;
        background: #fff;
        border-radius: var(--cre-radius-lg);
        display: flex;
        align-items: center;
        padding: 0 14px;
        box-shadow: var(--cre-shadow-search-bar);
    }

    .hero-section .hero-search-input {
        flex: 1;
        height: 100%;
        border: none;
        outline: none;
        font-size: 14px;
        background: transparent;
        padding-left: 8px;
    }

    .hero-section .hero-search-icon {
        width: 16px;
        height: 16px;
        opacity: 0.6;
    }
}
