/* ============================
   HERO SADISSA — Premium & Funcional
   ============================ */

.hero {
    padding: 110px 0;
    background: linear-gradient(135deg, #0B2A4A, #0d355f, #0f406f);
    color: var(--white);
    text-align: center;
    animation: fadeIn 0.8s ease forwards;
}

.hero-content {
    max-width: 800px;
    margin: auto;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 18px;
}

.hero p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
}

/* ============================
   BARRA DE PESQUISA
   ============================ */

.hero-search {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.search-box {
    background: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 14px;
    width: 420px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: 0.3s ease;
}

.search-box:focus-within {
    box-shadow: 0 0 0 3px rgba(242,140,40,0.4);
    transform: scale(1.02);
}

.search-box i {
    font-size: 22px;
    color: var(--sadissa-blue);
    transition: 0.3s ease;
}

.search-box i.spin {
    transform: rotate(360deg);
}

.search-box input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 16px;
}

/* ============================
   BOTÃO DE BUSCA
   ============================ */

.hero-btn {
    background: var(--sadissa-orange);
    color: var(--white);
    border: none;
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.hero-btn:hover {
    background: #d97a20;
    transform: translateY(-3px);
}

/* ============================
   AUTOCOMPLETE
   ============================ */

.search-suggestions {
    margin-top: 10px;
    background: #fff;
    width: 420px;
    margin-left: auto;
    margin-right: auto;
    list-style: none;
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    display: none;
}

.search-suggestions li {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    transition: 0.2s ease;
}

.search-suggestions li:hover {
    background: #f5f5f5;
}

/* ============================
   RESPONSIVO
   ============================ */

@media (max-width: 600px) {
    .hero {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .search-box,
    .search-suggestions {
        width: 100%;
    }

    .hero-btn {
        width: 100%;
    }
}

/* ============================
   ANIMAÇÃO
   ============================ */

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
