   /* INSTITUCION*/



    

   *{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial;
    }
    
    body{
    background:#f5f5f5;
    }
    
    /* NAVBAR */
    
    .navbar{
        display:flex;
        justify-content:space-between;
        align-items:center;
        padding:15px 40px;
        background:#083a5b;
        color:white;
        }
        
        .logo{
        display:flex;
        align-items:center;
        gap:10px;
        }
        
        .logo img{
        width:45px;
        }
        
        nav a{
        color:white;
        text-decoration:none;
        margin:0 15px;
        font-size:15px;
        }
        
        nav a:hover{
        text-decoration:underline;
        }
    
    
        *{
            margin:0;
            padding:0;
            box-sizing:border-box;
            font-family:Arial;
            }
            
            body{
            background:#f0f0f0;
            }
            
            
            /* TITULO */
            
            .titulo{
            padding:20px 60px;
            }
            
            .titulo h1{
            color:#c40000;
            }
            
            
            /* BARRA ROJA */
            
            .barra{
            background:#b30000;
            color:white;
            padding:10px 60px;
            }
            
            
            /* DESCRIPCION */
            
            .descripcion{
            background:black;
            color:white;
            padding:35px 80px;
            line-height:1.7;
            }
            
            
            /* FILAS HORIZONTALES */
            
            .fila{
            display:flex;
            gap:30px;
            padding:35px 80px;
            border-bottom:1px solid #ccc;
            align-items:flex-start;
            }
            
            .logomv
            /* COLUMNAS */
            
            .columna{
            flex:1;
            }
            
            .columna img{
            width:75%;
            margin:10px 0;
            border-radius:5px;
            }
            
            
            /* TEXTO */
            
            .texto{
            width:350px;
            }
            
            .texto button{
            margin-top:10px;
            padding:8px 15px;
            border:none;
            background:#ddd;
            cursor:pointer;
            }
            
            
            /* IMAGENES */
            
            .imagen img{
            width:260px;
            border-radius:6px;
            }
            
            /* BLOQUE ANCHO */
            
            .bloque-ancho{
            width:100%;
            }
            
            .bloque-ancho ul{
            padding-left:20px;
            margin-top:10px;
            }
            
            
            /* ORGANIGRAMA */
            
            .organigrama{
            text-align:center;
            padding:40px;
            }
            
            .organigrama img{
            width:80%;
            margin-top:20px;
            }

    .franja-contactos {
        background-color: #c62828;
        color: white;
        padding: 60px 20px;
        text-align: center;
    }
    
    .franja-contactos h2 {
        margin-bottom: 40px;
        font-size: 28px;
        letter-spacing: 2px;
    }
    
    .contenedor-contactos {
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-wrap: wrap;
        gap: 40px;
    }
    
    /* Ítems */
    .contacto-item {
        display: flex;
        align-items: center;
        gap: 20px;
        text-align: left;
        max-width: 320px;
    }
    
    .icono-img {
        width: 60px;
        height: auto;
    }
    
    /* Emergencia */
    .emergencia {
        flex-direction: column;
        text-align: center;
    }
    
    .texto-emergencia {
        font-weight: bold;
        letter-spacing: 1px;
    }
    
    /* Efecto llamativo */
    .numero-911 img {
        width: 120px;
        margin-top: 15px;
        animation: pulso 1.5s infinite;
    }

/* Animación */
@keyframes pulso {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 0px rgba(255,255,255,0.5));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 20px rgba(255,255,255,0.9));
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0px rgba(255,255,255,0.5));
    }
}
/* FOOTER */
footer{
    background:#111;
    color:white;
    text-align:center;
    padding:25px;
    margin-top:40px;
    }