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

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#F8F8F8;
}

/* Barra superior */

header{

    height:80px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 50px;

    background:white;

    box-shadow:0 2px 10px rgba(0,0,0,.08);

    position:fixed;

    width:100%;

    top:0;

    z-index:999;

}

.logo img{

    height:55px;

}

nav{

    display:flex;
    gap:35px;

}

nav a{

    text-decoration:none;

    color:#555;

    font-weight:600;

    transition:.3s;

}

nav a:hover{

    color:#F7941D;

}

.bienvenido{

    display:none;
    align-items:center;
    gap:8px;

    color:#F7941D;

    font-weight:600;
    font-size:14px;

    background:#FFF3E4;

    border:1px solid #FBD8A6;

    padding:8px 16px;

    border-radius:30px;

    margin-right:15px;

}

.bienvenido i{

    font-size:13px;

}

.acciones button{

    background:#F7941D;

    color:white;

    border:none;

    padding:12px 20px;

    border-radius:30px;

    cursor:pointer;

    font-size:15px;

}

.acciones button:hover{

    background:#db7f0f;

}

/* LOGIN */

body.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.login {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,.10);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    width: 320px;
}

.login img.logo {
    height: 60px;
}

.login h2 {
    color: #333;
    font-size: 17px;
    text-align: center;
}

.login input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
}

.login input:focus {
    border-color: #F7941D;
}

.login button {
    width: 100%;
    background: #F7941D;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
}

.login button:hover {
    background: #db7f0f;
}

#mensaje {
    color: #c0392b;
    font-size: 14px;
}

/* MAPA */

.mapa{

    margin-top:80px;

    height:calc(100vh - 80px);

}

#map{

    width:100%;
    height:100%;

}

/* Popup de propiedades */

.popup-propiedad{
    font-family: Arial, Helvetica, sans-serif;
    min-width: 220px;
}

.popup-imagen{
    margin: 0 0 8px 0;
}

.popup-imagen img{
    display: block;
    width: 100%;
    max-height: 140px;
    object-fit: cover;
    border-radius: 4px;
}

.popup-propiedad h3{
    margin-bottom: 8px;
    font-size: 15px;
    color: #333;
}

.popup-propiedad ul{
    list-style: none;
    margin: 0 0 10px 0;
    padding: 0;
}

.popup-propiedad li{
    font-size: 13px;
    color: #555;
    margin-bottom: 4px;
}

.popup-acciones{
    display: flex;
    gap: 8px;
}

.popup-btn{
    flex: 1;
    text-align: center;
    text-decoration: none;
    background: #F7941D;
    padding: 8px 10px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    transition: .3s;
}

.leaflet-popup-content .popup-btn{
    color: white;
}

.popup-btn:hover{
    background: #db7f0f;
}

.popup-acciones-video{
    margin-top: 10px;
}

.popup-btn-video{
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* Modal de video */

.video-modal{
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.video-modal.activo{
    display: flex;
}

.video-modal-contenido{
    position: relative;
    width: min(900px, 92vw);
}

.video-modal-cerrar{
    position: absolute;
    top: -36px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.video-modal-embed{
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
}

.video-modal-embed iframe{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ADMIN CÓDIGOS */

.admin-contenido{
    margin-top:80px;
    padding:40px 50px 60px;
}

.admin-titulo{
    margin-bottom:25px;
}

.admin-titulo h1{
    font-size:28px;
    color:#333;
    margin-bottom:6px;
}

.admin-titulo p{
    color:#666;
    font-size:15px;
}

.admin-toolbar{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
    flex-wrap:wrap;
}

.admin-mensaje{
    color:#F7941D;
    font-weight:600;
    font-size:14px;
}

.admin-buscar{
    padding:12px 16px;
    border:1px solid #ddd;
    border-radius:8px;
    font-family:inherit;
    font-size:14px;
    outline:none;
    min-width:240px;
}

.admin-buscar:focus{
    border-color:#F7941D;
}

.btn{
    display:inline-block;
    background:#F7941D;
    color:white;
    border:none;
    padding:12px 20px;
    border-radius:30px;
    cursor:pointer;
    font-family:inherit;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.btn:hover{
    background:#db7f0f;
}

.btn-secondary{
    background:#6c757d;
}

.btn-secondary:hover{
    background:#495057;
}

.btn-danger{
    background:#c0392b;
}

.btn-danger:hover{
    background:#a5301f;
}

.btn-small{
    padding:6px 14px;
    font-size:13px;
    border-radius:20px;
}

.tabla-codigos{
    width:100%;
    border-collapse:collapse;
    background:white;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 4px 20px rgba(0,0,0,.08);
}

.tabla-codigos th, .tabla-codigos td{
    padding:14px 18px;
    text-align:left;
    border-bottom:1px solid #eee;
}

.tabla-codigos th{
    background:#F7941D;
    color:white;
    font-weight:600;
}

.tabla-codigos tr:last-child td{
    border-bottom:none;
}

.tabla-codigos input, .tabla-codigos select{
    width:100%;
    padding:8px 10px;
    border:1px solid #ddd;
    border-radius:8px;
    font-family:inherit;
    font-size:14px;
    outline:none;
    background:white;
    color:inherit;
}

.tabla-codigos input:focus, .tabla-codigos select:focus{
    border-color:#F7941D;
}

.acciones-celda{
    display:flex;
    gap:8px;
}

/* ADMIN PROPIEDADES */

.form-propiedad-contenedor{
    background:white;
    border-radius:12px;
    box-shadow:0 4px 20px rgba(0,0,0,.08);
    padding:24px;
    margin-bottom:20px;
}

.form-propiedad{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
    gap:16px;
}

.form-propiedad-campo{
    display:flex;
    flex-direction:column;
    gap:6px;
}

.form-propiedad-campo label{
    font-size:13px;
    font-weight:600;
    color:#555;
}

.form-propiedad-campo input{
    padding:10px 12px;
    border:1px solid #ddd;
    border-radius:8px;
    font-family:inherit;
    font-size:14px;
    outline:none;
}

.form-propiedad-campo input:focus{
    border-color:#F7941D;
}

.form-propiedad-acciones{
    grid-column:1 / -1;
    display:flex;
    gap:10px;
}