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

body{
background:#f5f5f5;
}

header{
position:fixed;
top:0;
left:0;
width:100%;
padding:18px 45px;
display:flex;
justify-content:space-between;
align-items:center;
background:linear-gradient(90deg,#001aff,#000099);
z-index:1000;
}

.logo{
width:90px;
height:90px;
object-fit:cover;
border-radius:50%;
}

nav{
display:flex;
gap:28px;
}

nav a{
color:white;
text-decoration:none;
font-size:22px;
font-weight:bold;
}

.hero{
min-height:100vh;
background:linear-gradient(135deg,#001aff,#000088);
display:flex;
justify-content:center;
align-items:center;
text-align:center;
padding:150px 20px 60px;
color:white;
position:relative;
overflow:hidden;
}

.hero::before{
content:"";
position:absolute;
width:520px;
height:520px;
background:url("../img/logo-arcel.png") center/contain no-repeat;
opacity:0.08;
top:50%;
left:50%;
transform:translate(-50%,-50%);
border-radius:50%;
z-index:0;
pointer-events:none;
}

.hero-content{
position:relative;
z-index:5;
}

.hero-content h1{
font-size:76px;
margin-bottom:25px;
}

.hero-content p{
font-size:28px;
max-width:900px;
line-height:1.4;
}

.btn{
display:inline-block;
margin-top:35px;
background:#ff004c;
color:white;
padding:18px 38px;
border-radius:14px;
text-decoration:none;
font-size:24px;
font-weight:bold;
position:relative;
z-index:10;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
padding:55px;
}

.card{
background:white;
padding:28px;
border-radius:18px;
box-shadow:0 5px 15px rgba(0,0,0,0.12);
}

.page-title{
padding:170px 20px 70px;
background:linear-gradient(135deg,#001aff,#000088);
color:white;
text-align:center;
}

.page-title h1{
font-size:68px;
margin-bottom:18px;
}

.page-title p{
font-size:27px;
max-width:900px;
margin:auto;
line-height:1.4;
}

.form-area{
max-width:900px;
margin:45px auto;
background:white;
padding:40px;
border-radius:20px;
box-shadow:0 5px 15px rgba(0,0,0,0.12);
}

form{
display:flex;
flex-direction:column;
gap:16px;
}

label{
font-weight:bold;
}

input,select,textarea{
width:100%;
padding:14px;
border:1px solid #ccc;
border-radius:10px;
font-size:17px;
}

textarea{
height:180px;
resize:none;
}



.anonimo{
display:flex;
align-items:center;
gap:10px;
}

.anonimo input{
width:auto;
}

.whatsapp{
position:fixed;
right:25px;
bottom:25px;
width:65px;
height:65px;
background:#25D366;
color:white;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:32px;
text-decoration:none;
box-shadow:0 8px 20px rgba(0,0,0,0.3);
z-index:9999;
}

.login-page{
min-height:100vh;
background:linear-gradient(135deg,#001aff,#000088);
display:flex;
justify-content:center;
align-items:center;
padding:20px;
}

.login-box{
background:white;
width:100%;
max-width:390px;
padding:35px;
border-radius:22px;
text-align:center;
box-shadow:0 15px 35px rgba(0,0,0,0.25);
}

.login-logo{
width:95px;
height:95px;
object-fit:cover;
border-radius:50%;
margin-bottom:18px;
}

.login-box h1{
color:#001aff;
font-size:28px;
margin-bottom:8px;
}

.login-box p{
font-size:15px;
color:#555;
margin-bottom:22px;
}

.login-box label{
display:block;
text-align:left;
margin:12px 0 6px;
}

.login-box input{
margin-bottom:10px;
}

#erroLogin{
display:block;
color:#ff004c;
margin-top:14px;
font-weight:bold;
}

.painel{
max-width:1200px;
margin:auto;
padding:35px;
}

.topo{
background:linear-gradient(90deg,#001aff,#000099);
color:white;
padding:28px;
border-radius:16px;
margin-bottom:35px;
}

.relatorios{
display:flex;
flex-wrap:wrap;
justify-content:center;
align-items:flex-start;
gap:30px;
margin-top:40px;
}

.relato{
    width:260px;
    min-height:220px;
    background:white;
    padding:25px;
    border-radius:18px;
    box-shadow:0 5px 15px rgba(0,0,0,0.12);

    display:flex;
    flex-direction:column;
    justify-content:space-between;
}
.relato h3{
color:#001aff;
font-size:28px;
margin-bottom:12px;
}

.status{
display:inline-block;
margin-top:15px;
padding:9px 16px;
border-radius:20px;
color:white;
font-weight:bold;
}

.pendente{
background:#f28c00;
}

.analise{
background:#0077ff;
}

.resolvido{
background:#2fad20;
}

@media(max-width:768px){
header{
position:absolute;
padding:15px;
flex-direction:column;
gap:15px;
}

.logo{
width:75px;
height:75px;
}

nav{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:12px;
}

nav a{
font-size:16px;
}

.hero{
padding:140px 18px 60px;
}

.hero::before{
width:360px;
height:360px;
opacity:0.06;
}

.hero-content h1{
font-size:42px;
line-height:1.1;
}

.hero-content p{
font-size:19px;
}

.btn{
font-size:18px;
padding:15px 24px;
}

.cards{
grid-template-columns:1fr;
padding:25px;
}

.page-title{
padding:150px 18px 55px;
}

.page-title h1{
font-size:42px;
}

.page-title p{
font-size:19px;
}

.form-area{
margin:25px 15px;
padding:25px;
}

.whatsapp{
width:58px;
height:58px;
font-size:28px;
}
}
.popup{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
justify-content:center;
align-items:center;
z-index:999;
}

.popup-box{
background:white;
padding:30px;
border-radius:20px;
width:350px;
text-align:center;
box-shadow:0 0 20px rgba(0,0,0,0.3);
}

.popup-box h2{
margin-bottom:15px;
color:#1e2fff;
}

.popup-box p{
margin-bottom:20px;
font-size:16px;
color:#333;
}
.acao-btn{
    width:90px;
    height:90px;
    background:#ff004c;
    color:white;
    border:none;
    border-radius:12px;
    font-size:14px;
    font-weight:bold;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:0.3s;

    margin-top:auto;
}

.acao-btn:hover{
transform:scale(1.05);
opacity:0.9;
}
.form-area button{
    width:100%;
    background:#ff004c;
    color:white;
    border:none;
    padding:16px;
    border-radius:12px;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    margin-top:15px;
}

.form-area button:hover{
    opacity:0.9;
    transform:scale(1.01);
}