html {
    scroll-behavior: smooth;
}

body {
    background-color: #121212;
    color: #ffffff;
}

::selection {
  background-color: #e50914;
  color: #000; 
}

.btn-danger {
    background-color: #e50914 !important;
    border: none;
}
.btn-danger:hover {
    background-color: #911111 !important; 
}

.highlight {
    color: #e50914;
}

section {
    padding: 70px 0px !important;
}
#servicos, #depoimentos{
    padding-top: 0px !important;
}

.form-control:focus, .form-select:focus{
    border-color: #dc3545 !important;
     box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.navbar {
    background-color: transparent !important;
    transition: background-color 0.3s ease;
}
@media (max-width: 650px) {
    .navbar{
        background-color: rgba(0, 0, 0, 1) !important;    
    }
}
.navbar.scrolled {
    background-color: rgba(0, 0, 0, 1) !important;
}
.nav-item a:hover{
    color: #e50914 !important;
}
.nav-link.active {
    color: #e50914 !important;
}

#home {
    background: url('../img/hero2.webp') no-repeat fixed center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
#home::after {
    content: '';
    position: absolute;
    top:0; left:0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1;
}
#home .container {
    position: relative;
    z-index: 2;
}

/* Depoimentos */
.depoimentos {
    text-align: center;
}

.bg-img{
    background: linear-gradient(#000000ab, #000000ab), 
        url('../img/hero2.webp') fixed center/cover no-repeat;
    padding: 0px !important;
}
/* Desativa o 'fixed' no Safari iOS */
@supports (-webkit-touch-callout: none) {
    #home{
        background: url('../img/hero2_Mobile.webp') no-repeat scroll center/cover;
    }
    .bg-img{
        background: linear-gradient(#00000080, #00000080), 
            url('../img/hero2_Mobile2.webp') scroll right/cover no-repeat;
        background-size: 100;
    }
}

.depoimento {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    padding: 40px 30px;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.depoimento p {
    font-style: italic;
    margin-bottom: 10px;
}

.depoimento h4 {
    color: #111;
    font-weight: 600;
}

.swiper-pagination-bullet {
  background: #e50914 !important;
  opacity: 0.3 !important;
}

.swiper-pagination-bullet-active {
  background: #e50914 !important;
  opacity: 1 !important;
}

.btn-google {
    display: inline-block;
    margin-top: 40px;
    padding: 12px 30px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 30px;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-google:hover {
    background: #e50914;
}

.footer {
    background: url('../img/hero2.webp') no-repeat center bottom/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
.footer::after {
    content: '';
    position: absolute;
    top:0; left:0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1;
}
.footer .container {
    position: relative;
    z-index: 2;
}
.footer i:hover, .footer a:hover{
    color: #e50914 !important;
}
.footer a{
    text-decoration: none;
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    z-index: 999;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: top;
    transition: object-position 8s ease;
}

.card:hover .card-img {
    object-position: bottom;
}

.selo{
    color: white;
    font-size: x-small;
}

.selo a:hover{
    color: #e50914 !important;
}