.hero {
    background: url(/assets/photos/bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.hero  .container-hero {
    position: relative;
    width: 600px;
    padding: 30px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    color: var(--text-color);
    text-align: center;
}

.hero .container-hero h3 {
    position: relative;
    font-size: 34px;
    line-height: 30px;
    font-weight: 600;
    text-shadow: -1px -1px 1px rgba(255,255,255,.1), 1px 1px 1px rgba(0,0,0,.5);
}

.hero  .container-hero h3 .picapau {
    position: relative;
    font-size: 30px;
    line-height: 30px;
    color: var(--secund-color);
}

.hero  .container-hero h3 .ar {
    position: relative;
    font-size: 30px;
    line-height: 30px;
    color: var(--color-bluer-light);
}

.hero  .container-hero h3 .conserto {
    position: relative;
    font-size: 26px;
    line-height: 30px;
}

.hero  .container-hero p {
    position: relative;
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    text-shadow: -1px -1px 1px rgba(255,255,255,.1), 1px 1px 1px rgba(0,0,0,.5);
}

.atencao {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    color: var(--text-color);
    background: #22222281;
    flex-wrap: wrap;
    gap: 10px;
}

.atencao h3 {
    position: relative;
    font-size: 24px;
    color: var(--secund-color);
    
}

.atencao p {
    position: relative;
    font-size: 16px;
}

/* Para telas menores que 768px (dispositivos móveis) */
@media (max-width: 768px) {

    .hero {
        padding: 0 20px;
    }
    
    .hero  .container-hero {
        padding: 10px;
        margin-top: -100px;
        width: 100%;
    }
    
    .hero  .container-hero h3 {
        position: relative;
        font-size: 22px;
        line-height: 20px;
    }
    
    .hero  .container-hero h3 .picapau {
        position: relative;
        font-size: 20px;
    }
    
    .hero  .container-hero h3 .ar {
        position: relative;
        font-size: 20px;
    }
    
    .hero  .container-hero h3 .conserto {
        position: relative;
        font-size: 18px;
        line-height: 5px;
    }
    
    .hero  .container-hero p {
        font-size: 14px;
        line-height: 15px;
    }
    
    .atencao {
        padding: 20px;
        flex-direction: column;
    }
    
    .atencao h3 {
        position: relative;
        font-size: 20px;
        color: var(--secund-color);
    }
    
    .atencao p {
        position: relative;
        font-size: 14px;
        text-align: center;
    }
    
}
