*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial;
    }
    
    body{
    background:#eeeeee;
    }
    
    
    /* 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;
        }
    
    
    /* BARRA ROJA */
    
    .barra{
    background:#b30000;
    color:white;
    padding:10px 60px;
    font-size:14px;
    }
    
    
    /* DESCRIPCION */
    
    .descripcion{
    background:black;
    color:white;
    padding:25px 60px;
    line-height:1.6;
    font-size:15px;
    }
    
    
    /* SECCIONES */
    
    .seccion{
    padding:40px 60px;
    }
    
    .seccion h2{
    text-align:center;
    margin-bottom:25px;
    }
    
    
    /* GRIDS */
    
    .grid-5{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
    }
    
    .grid-3{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:80px;
    margin-bottom:30px;
    }
    
    .grid-2{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    }
    
    
    /* TARJETAS */
    
    .card{
    background:rgb(221, 176, 176);
    box-shadow:0 8px 8px rgba(0,0,0,0.2);
    }
    
    .card img{
    width:100%;
    height:170px;
    object-fit:contain;
    }
    
    .card.grande img{
    height:220px;
    }
    
    .texto{
    background:#c40000;
    color:white;
    text-align:center;
    padding:10px;
    font-weight:bold;
    font-size:18px;
    }
    .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;
    }