*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

body{
background:#f5f5f5;
color:#333;
}

/* TOPO */
.topo{
background:linear-gradient(90deg,#cc0000,#990000);
color:#fff;
}

.topo-inner{
max-width:1100px;
margin:0 auto;
padding:18px 20px;
display:flex;
justify-content:space-between;
align-items:center;
gap:20px;
flex-wrap:wrap;
}

.logo{
font-size:28px;
font-weight:bold;
letter-spacing:.5px;
}

/* MENU */
.menu{
display:flex;
gap:10px;
flex-wrap:wrap;
}

.menu a{
color:#fff;
text-decoration:none;
padding:10px 14px;
border-radius:10px;
font-weight:bold;
}

.menu a:hover{
background:rgba(255,255,255,.14);
}

.menu-toggle{
display:none;
font-size:26px;
cursor:pointer;
color:white;
}

/* HOME */
.container{
max-width:900px;
margin:60px auto;
background:white;
padding:40px;
border-radius:16px;
box-shadow:0 10px 30px rgba(0,0,0,.05);
text-align:center;
}

.container h1{
margin-bottom:20px;
font-size:26px;
}

.container input{
width:100%;
padding:18px;
font-size:18px;
border-radius:12px;
border:1px solid #ddd;
}

.container button{
margin-top:20px;
padding:15px 30px;
background:#cc0000;
color:white;
border:none;
border-radius:10px;
font-size:16px;
cursor:pointer;
}

.container button:hover{
background:#990000;
}

.info{
margin-top:30px;
color:#666;
font-size:18px;
}

/* BUSCA */
.result-wrap{
max-width:1100px;
margin:40px auto;
padding:0 16px;
}

.result-box{
background:white;
padding:20px;
border-radius:16px;
margin-bottom:20px;
box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.result-form{
display:flex;
gap:12px;
flex-wrap:wrap;
}

.result-form input{
flex:1;
min-width:240px;
padding:14px;
border:1px solid #ddd;
border-radius:10px;
font-size:16px;
}

.result-form button{
padding:14px 20px;
background:#cc0000;
color:#fff;
border:none;
border-radius:10px;
cursor:pointer;
font-weight:bold;
}

.result-form button:hover{
background:#990000;
}

.result-info{
margin-top:15px;
color:#555;
font-size:15px;
}

.result-card{
background:white;
border-radius:16px;
padding:20px;
margin-bottom:16px;
box-shadow:0 5px 20px rgba(0,0,0,.05);
border:1px solid #eee;
}

.result-card.destaque{
border:2px solid #d4a017;
background:#fff8dc;
}

.badge{
background:#d4a017;
color:white;
display:inline-block;
padding:6px 10px;
border-radius:999px;
font-size:12px;
font-weight:bold;
margin-bottom:10px;
}

.result-top{
display:flex;
gap:14px;
align-items:flex-start;
flex-wrap:wrap;
}

.result-logo{
width:72px;
height:72px;
object-fit:cover;
border-radius:14px;
border:1px solid #ddd;
background:#fff;
}

.result-content{
flex:1;
min-width:220px;
}

.result-name{
font-size:22px;
font-weight:bold;
margin-bottom:8px;
}

.result-meta{
color:#555;
margin-bottom:10px;
line-height:1.7;
}

.result-desc{
margin-bottom:12px;
line-height:1.6;
}

.result-actions{
display:flex;
gap:10px;
flex-wrap:wrap;
}

.btn-whats{
background:#25d366;
color:white;
padding:10px 16px;
border-radius:10px;
text-decoration:none;
font-weight:bold;
}

.btn-link{
background:#cc0000;
color:white;
padding:10px 16px;
border-radius:10px;
text-decoration:none;
font-weight:bold;
}

.result-empty{
background:#fff;
padding:24px;
border-radius:18px;
color:#666;
box-shadow:0 10px 30px rgba(0,0,0,.05);
}

/* CADASTRO / PÁGINAS */
.form-wrap{
max-width:900px;
margin:40px auto;
padding:0 16px;
}

.form-box{
background:white;
padding:30px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.form-title{
font-size:30px;
font-weight:bold;
margin-bottom:5px;
}

.form-sub{
color:#666;
margin-bottom:25px;
}

.cadastro-form{
display:grid;
grid-template-columns:1fr 1fr;
gap:18px;
}

.form-group{
display:flex;
flex-direction:column;
}

.form-group-full{
grid-column:1 / -1;
}

.form-group label{
margin-bottom:5px;
font-weight:bold;
}

.form-group input,
.form-group textarea,
.form-group select{
padding:14px;
border-radius:10px;
border:1px solid #ddd;
font-size:15px;
}

.form-group textarea{
min-height:120px;
resize:vertical;
}

.btn-submit{
background:#cc0000;
color:white;
border:none;
padding:14px;
border-radius:10px;
font-size:16px;
cursor:pointer;
font-weight:bold;
}

.btn-submit:hover{
background:#990000;
}

.msg-ok{
background:#e8ffe8;
padding:12px;
border-radius:10px;
margin-bottom:15px;
color:#1f8f3a;
}

.msg-erro{
background:#ffe8e8;
padding:12px;
border-radius:10px;
margin-bottom:15px;
color:#b42318;
}

.texto-pagina{
line-height:1.8;
font-size:18px;
color:#444;
}

/* FOOTER */
.footer-netgeral{
background:#111;
color:#fff;
padding:25px 20px;
margin-top:40px;
font-size:13px;
}

.footer-container{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:10px;
}

.footer-left{
line-height:1.6;
}

.footer-center{
opacity:.8;
}

.footer-right a{
color:#ccc;
margin-left:15px;
text-decoration:none;
}

.footer-right a:hover{
color:#fff;
}

/* RESPONSIVO */
@media(max-width:768px){

.menu{
display:none;
flex-direction:column;
width:100%;
background:#cc0000;
padding:10px 0;
gap:0;
}

.menu a{
display:block;
width:100%;
padding:12px 20px;
border-bottom:1px solid rgba(255,255,255,.2);
border-radius:0;
}

.menu.active{
display:flex;
}

.menu-toggle{
display:block;
}

.container{
margin:30px 15px;
padding:25px;
}

.cadastro-form{
grid-template-columns:1fr;
}

.form-box{
padding:20px;
}

.result-card{
padding:16px;
}

.footer-container{
flex-direction:column;
text-align:center;
}

.footer-right a{
margin:0 5px;
}
}
