/* ============================= */
/* REINICIO */
/* ============================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================= */
/* FONDO */
/* ============================= */
body {
    background-image: url(bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: Calibri, sans-serif;
}

/* ============================= */
/* TÍTULO */
/* ============================= */
.titulo {
    text-align: center;
}

h1 {
    color: #F5F6F7;
    font-size: 56px;
    margin-top: 20px;
    text-shadow: 0 0 8px rgba(0,0,0,0.6);
}

/* ============================= */
/* FORMULARIO */
/* ============================= */
.form-reportes {
    width: 420px;
    background-color: rgba(106, 120, 130, 0.45);
    padding: 28px;
    margin: 40px auto;
    border-radius: 35px;
    box-shadow: 8px 15px 37px rgba(0,0,0,0.5);
    color: #F5F6F7;
    backdrop-filter: blur(8px);
}

/* ============================= */
/* CONTROLES */
/* ============================= */
.controls {
    width: 100%;
    background-color: rgba(201, 206, 209, 0.75);
    padding: 11px;
    border-radius: 8px;
    margin-bottom: 16px;
    border: 1px solid #8FA3B1;
    font-size: 16px;
    color: #2E3235;
}

/* ============================= */
/* BOTÓN PRINCIPAL */
/* ============================= */
.form-button {
    width: 100%;
    background-color: #6E7378;
    color: white;
    padding: 14px;
    font-size: 20px;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.form-button:hover {
    background-color: #3A3F45;
}

/* ============================= */
/* BOTONES FLOTANTES */
/* ============================= */
.boton-flotante {
    position: fixed;
    bottom: 35px;
    z-index: 999;
}

.boton-flotante.izquierdo {
    left: 35px;
}


.boton-flotante.derecho {
    right: 35px;
}

.boton-flotante button {
    width: 260px;
    padding: 18px;
    background-color: rgba(106, 120, 130, 0.45);
    backdrop-filter: blur(8px);
    color: #F5F6F7;
    border: 1px solid rgba(143, 163, 177, 0.6);
    border-radius: 35px;
    font-size: 20px;
    font-family: Calibri, sans-serif;
    box-shadow: 8px 15px 37px rgba(0,0,0,0.5);
    cursor: pointer;
    transition: 0.3s;
}

.boton-flotante button:hover {
    background-color: rgba(58, 63, 69, 0.75);
    transform: scale(1.03);
}

/* ============================= */
/* ADAPTACION MOVIL */
/* ============================= */

@media (max-width: 768px){

h1{
font-size:32px;
}

.form-reportes{
width:90%;
margin:25px auto;
padding:20px;
}

.controls{
font-size:15px;
padding:10px;
}

.form-button{
font-size:18px;
padding:12px;
}

.boton-flotante{
position:static;
width:90%;
margin:10px auto;
text-align:center;
}

.boton-flotante button{
width:100%;
font-size:18px;
}

}

@media (max-width:480px){

h1{
font-size:26px;
}

.form-reportes{
width:95%;
}

}

.notificacion-box{
    width: 420px;
    margin: 30px auto;
    background: rgba(106,120,130,0.45);
    backdrop-filter: blur(8px);
    padding: 20px;
    border-radius: 20px;
    color: white;
}

.alerta-item{
    display:block;
    padding:12px;
    margin:10px 0;
    background: rgba(255,255,255,0.15);
    border-radius:12px;
    text-decoration:none;
    color:white;
    transition:0.3s;
}

.alerta-item:hover{
    background: rgba(255,255,255,0.25);
    transform: scale(1.02);
}

.alerta-fecha{
    font-size:12px;
    opacity:0.8;
}

.reporte-img{
cursor:pointer;
transition:transform .2s;
}

.reporte-img:hover{
transform:scale(1.08);
}

#modalImagen{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.85);
justify-content:center;
align-items:center;
z-index:9999;
}

#modalImagen img{
max-width:90%;
max-height:90%;
border-radius:12px;
box-shadow:0 0 25px rgba(255,255,255,.2);
}

#cerrarModal{
position:absolute;
top:20px;
right:40px;
font-size:55px;
color:white;
cursor:pointer;
user-select:none;
}