/*
Cor 1 = #fbf3e5
Cor 2 = #0677bc
Cor 3 = #ea491d
*/

html {
    scroll-behavior: smooth;
}
body {
    background-color: #fbf3e5 !important;
    color: #ea491d !important;
    font-family: "Poppins", sans-serif !important;
}
h1, h2, h3{
    font-family: "Baloo 2", sans-serif;
}

section {
    padding: 80px 0;
    scroll-margin-top: 40px;
}
#valores{
    padding-bottom: 0px !important;
}

.highlight {
    color: #0677bc !important;
}

.navbar {
    background-color: transparent !important;
    transition: background-color 0.3s ease;
}
.navbar.scrolled {
    background-color: #fbf3e5 !important;
}
.nav-item a{
    color: #ea491d;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: large !important;
    transition: color 0.5s ease;
}
.nav-item a:hover{
    color: #0677bc !important;
    transition: color 0.5s ease;
}
.nav-link.active {
    color: #0677bc !important;
    transition: color 0.5s ease;
}

#home {
    background: url('../img/hero.png') no-repeat fixed center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
#home h1, #home h3{
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}
#home::after {
    content: '';
    position: absolute;
    top:0; left:0;
    width: 100%;
    height: 100%;
    background: rgba(251, 243, 229, 0.3);
    z-index: 1;
}
#home .container {
    position: relative;
    z-index: 2;
}

.bg-tur-dep {
    background: linear-gradient(#fbf3e552, #fbf3e552), 
        url('../img/hero.png') fixed center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}
.bg-tur-dep h2{
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}
@media (max-width: 767px) {
  .bg-tur-dep {
    background: linear-gradient(#fbf3e552, #fbf3e552), 
        url('../img/hero2.png') center/cover no-repeat;
  }
  #home {
    background: url('../img/hero2.png') no-repeat center/cover;
  }
}
/* Desativa o 'fixed' no Safari iOS */
@supports (-webkit-touch-callout: none) {
    .bg-tur-dep, #home{
        background-attachment: scroll !important;
    }
}

.card.card-style {
    max-width: 250px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border: none;
    border-radius: 15px;
    color: #ea491d;
    transition: transform 0.3s ease;
}
.card.card-style:hover {
    transform: scale(1.1);
}

#depoimentos .card{
    color: #ea491d !important;
}
#depoimentos .text-muted{
    color: #0677bc !important;
}
.swiper {
    padding-bottom: 40px;
}
.swiper-slide {
    display: flex;
    justify-content: center;
}
.swiper-button-next,
.swiper-button-prev {
    color: #555;
}
.swiper-pagination-bullet {
    background: #aaa;
    opacity: 1;
}
.swiper-pagination-bullet-active {
    background: #007bff;
}
.depoSwiper .swiper-slide {
    height: auto;
}
.depoSwiper {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

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

.footer {
    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-color: #fbf3e5;
    color: #ea491d;
    z-index: 1;
}
.footer .container {
    position: relative;
    z-index: 2;
}
.selo{
    color: #ea491d !important;
    font-size: x-small;
    transition: color 0.5s ease;
}
.selo a{
    color: #ea491d !important;
}
.selo a:hover{
    color: #e50914 !important;
    text-decoration: none !important;
    transition: color 0.5s ease;
}