/* hero.css */

.hero {
    background-image: url('banner-vigilancia.jpg');
    background-size: cover;
    background-position: center;
    color: #8d0404;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 3em;
    margin-bottom: 20px;
    text-align: right;
    color: #ffffff;

}

.hero p {
    font-size: 1.5em;
    margin-bottom: 30px;
}

.cta {
    background-color: #8d0404;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta:hover {
    background-color: #8d0404;
}
