/* ===========================
   RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial,Helvetica,sans-serif;
    background:#f5f7fb;
    color:#222;
    line-height:1.5;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

/* ===========================
   CONTAINER
=========================== */

.container{
    width:min(1180px,92%);
    margin:auto;
}

/* ===========================
   TOPO
=========================== */

.top,
.topo{
    background:#fff;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 6px 25px rgba(0,0,0,.08);
}

.nav{
    height:75px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:30px;
    font-weight:900;
    color:#111;
}

.logo span{
    background:#ff6b00;
    color:#fff;
    padding:8px 14px;
    border-radius:14px;
    margin-left:4px;
}

.menu{
    display:flex;
    gap:22px;
    align-items:center;
}

.menu a{
    color:#222;
    font-weight:700;
    transition:.2s;
}

.menu a:hover{
    color:#ff6b00;
}

.btn-menu{
    background:#ff6b00;
    color:#fff!important;
    padding:12px 18px;
    border-radius:40px;
}

/* ===========================
   HERO
=========================== */

.hero{
    background:linear-gradient(120deg,#ffb100,#ff6b00,#1f1109);
    color:#fff;
    padding:70px 0;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 450px;
    gap:45px;
    align-items:center;
}

.selo{
    display:inline-block;
    padding:10px 20px;
    background:#111;
    border-radius:40px;
    font-weight:bold;
    margin-bottom:25px;
}

.hero h1{
    font-size:60px;
    line-height:1.05;
    margin-bottom:20px;
}

.hero p{
    font-size:20px;
    color:#fff7ef;
}

.hero-botoes{
    margin-top:30px;
    display:flex;
    gap:15px;
}

/* ===========================
   BOTŐES
=========================== */

.btn,
.btn-principal,
.btn-main,
.btn-secundario,
.btn-buscar,
.btn-local,
.btn-card{

    border:none;
    cursor:pointer;
    border-radius:15px;
    font-weight:bold;
    transition:.2s;
}

.btn-main,
.btn-principal,
.btn-buscar,
.btn-card{

    background:#ff6b00;
    color:#fff;
}

.btn-main:hover,
.btn-principal:hover,
.btn-buscar:hover,
.btn-card:hover{

    background:#e65b00;
}

.btn-main{
    width:100%;
    padding:16px;
    font-size:18px;
}

.btn-local{

    background:#fff4eb;
    color:#ff6b00;
    border:1px solid #ffc79e;
    height:55px;
}

/* ===========================
   CARD BUSCA
=========================== */

.card-busca{

    background:#fff;
    border-radius:30px;
    padding:30px;
    box-shadow:0 20px 60px rgba(0,0,0,.15);
}

.card-busca h2{

    margin-bottom:20px;
}

.card-busca form{

    display:flex;
    flex-direction:column;
    gap:15px;
}

/* ===========================
   FORMULÁRIOS
=========================== */

.page{
    max-width:1100px;
    margin:40px auto;
    padding:0 20px;
}

.panel{
    background:#fff;
    border-radius:28px;
    padding:35px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.panel h1{

    font-size:38px;
    margin-bottom:10px;
}

.panel p{

    color:#666;
    margin-bottom:25px;
}

.form-row{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.full{

    grid-column:1/-1;
}

.input,
textarea,
select{

    width:100%;
    padding:15px;
    border:1px solid #ddd;
    border-radius:14px;
    font-size:16px;
    background:#fff;
}

textarea{

    resize:vertical;
}

label{

    font-weight:bold;
}

/* ===========================
   ALERTAS
=========================== */

.alert{

    padding:15px;
    border-radius:14px;
    margin-bottom:20px;
}

.ok{

    background:#d8ffe7;
    color:#117a3c;
}

.err{

    background:#ffe0e0;
    color:#a30000;
}

/* ===========================
   CATEGORIAS
=========================== */

.categorias-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(170px,1fr));
    gap:16px;
}

.categoria-card{

    background:#fff;
    padding:22px;
    border-radius:20px;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
    display:flex;
    gap:12px;
    align-items:center;
    transition:.2s;
}

.categoria-card:hover{

    transform:translateY(-5px);
}

/* ===========================
   PRESTADORES
=========================== */

.prestadores-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:22px;
}

.prestador-card{

    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.foto-wrap{

    height:220px;
}

.foto-wrap img{

    width:100%;
    height:100%;
    object-fit:cover;
}

.prestador-info{

    padding:20px;
}

.nota{

    color:#ff9900;
    font-weight:bold;
}

.btn-card{

    width:100%;
    height:50px;
    margin-top:15px;
}

/* ===========================
   COMO FUNCIONA
=========================== */

.como-funciona{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.passo{

    background:#111;
    color:#fff;
    border-radius:25px;
    padding:30px;
}

.passo b{

    width:45px;
    height:45px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:#ff6b00;
    margin-bottom:15px;
}

/* ===========================
   RODAPÉ
=========================== */

footer,
.rodape{

    background:#111;
    color:#fff;
    text-align:center;
    padding:30px;
    margin-top:50px;
}

/* ===========================
   RESPONSIVO
=========================== */

@media(max-width:900px){

.hero-grid{

grid-template-columns:1fr;

}

.hero h1{

font-size:42px;

}

.form-row{

grid-template-columns:1fr;

}

.menu{

overflow:auto;
gap:10px;

}

.menu a{

background:#f5f5f5;
padding:10px 15px;
border-radius:30px;
white-space:nowrap;

}

.categorias-grid{

grid-template-columns:repeat(2,1fr);

}

.prestadores-grid{

grid-template-columns:1fr;

}

.como-funciona{

grid-template-columns:1fr;

}

}