*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial;
    }
    
    body{
    background:#f4f4f4;
    }
    
    
    /* 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;
    }
    
    
    /* HERO */
    
    .hero{
    height:450px;
    background:url("Index1.png") center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
    }
    
    .hero h1{
    font-size:55px;
    font-weight:bold;
    }
    
    .hero p{
    margin:15px 0;
    font-size:18px;
    }
    
    .hero input{
    padding:12px 20px;
    width:350px;
    border-radius:25px;
    border:none;
    }
    
    
    /* SERVICIOS */
    
    .servicios{
    display:flex;
    gap:25px;
    justify-content:center;
    padding:40px;
    }
    
    .card{
    width:230px;
    border-radius:15px;
    overflow:hidden;
    background:white;
    box-shadow:0 4px 10px rgba(0,0,0,0.15);
    position:relative;
    }
    
    .card img{
    width:100%;
    height:160px;
    object-fit:cover;
    }
    
    .card span{
    position:absolute;
    bottom:10px;
    left:15px;
    color:rgb(254, 254, 254);
    font-weight:bold;
    font-size:16px;
    }
    
    
    /* ACERCA */
    
    .acerca{
    background:#b30000;
    color:white;
    display:flex;
    justify-content:center;
    gap:30px;
    padding:40px;
    }
    
    .texto{
    width:350px;
    }
    
    .texto h2{
    margin-bottom:15px;
    }
    
    .texto p{
    margin-bottom:15px;
    }
    
    .texto button{
    padding:10px 20px;
    border:none;
    background:white;
    color:#b30000;
    font-weight:bold;
    border-radius:6px;
    cursor:pointer;
    }
    
    .imagenes{
    display:flex;
    gap:20px;
    }
    
    .imagenes img{
    width:260px;
    border-radius:10px;
    }
    
    
    /* NOTICIAS */
    
    .noticias{
    padding:40px;
    }
    
    .noticias h2{
    margin-bottom:20px;
    font-size:30px;
    }
    
    .contenedor-noticias{
    display:flex;
    gap:25px;
    }
    
    .noticia{
    background:white;
    border-radius:10px;
    padding:15px;
    width:300px;
    box-shadow:0 3px 8px rgba(0,0,0,0.15);
    }
    
    .noticia img{
    width:100%;
    border-radius:8px;
    margin:10px 0;
    }
    
    .fecha{
    color:red;
    font-size:14px;
    }
    
    .noticia h4{
    margin-bottom:10px;
    }
    
        .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;
    }