.cb-slideshow,
.cb-slideshow:after {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.cb-slideshow li {
    list-style: none;
}

.swing:hover {
    box-shadow:
        1px 1px #D9B22B,
        2px 2px #D9B22B,
        3px 3px #D9B22B;
    transform: translateX(-3px);
}

.cb-slideshow li span {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    color: transparent;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 0;
    backface-visibility: hidden;
    animation: imageAnimation 36s linear infinite;
}

.cb-slideshow li div {
    z-index: 2;
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    text-align: center;
    opacity: 0;
    color: #fff;
    animation: titleAnimation 36s linear infinite;
}

.cb-slideshow li div h3 {
    font-family: 'BebasNeueRegular', 'Arial Narrow', Arial, sans-serif;
    font-size: 240px;
    padding: 0;
    line-height: 200px;
    margin: 0;
}

/* Imagens */
.cb-slideshow li:nth-child(1) span {
    background-image: url("../images/coracao-1.jpg");
    animation-delay: 0s;
}

.cb-slideshow li:nth-child(2) span {
    background-image: url("../images/coracao-7.jpg");
    animation-delay: 6s;
}

.cb-slideshow li:nth-child(3) span {
    background-image: url("../images/coracao-5.jpg");
    animation-delay: 12s;
}

.cb-slideshow li:nth-child(4) span {
    background-image: url("https://tropadobalacobaco.com/images/retetei-1.jpg");
    animation-delay: 18s;
}

.cb-slideshow li:nth-child(5) span {
    background-image: url("https://tropadobalacobaco.com/images/retetei-2.jpg");
    animation-delay: 24s;
}

.cb-slideshow li:nth-child(6) span {
    background-image: url("https://tropadobalacobaco.com/images/retetei-3.jpg");
    animation-delay: 30s;
}

/* Se usar textos/títulos */
.cb-slideshow li:nth-child(1) div { animation-delay: 0s; }
.cb-slideshow li:nth-child(2) div { animation-delay: 6s; }
.cb-slideshow li:nth-child(3) div { animation-delay: 12s; }
.cb-slideshow li:nth-child(4) div { animation-delay: 18s; }
.cb-slideshow li:nth-child(5) div { animation-delay: 24s; }
.cb-slideshow li:nth-child(6) div { animation-delay: 30s; }

/* Animação das imagens */
@keyframes imageAnimation {
    0% {
        opacity: 0;
        transform: scale(1);
        animation-timing-function: ease-in;
    }
    8% {
        opacity: 1;
        transform: scale(1.03);
        animation-timing-function: ease-out;
    }
    17% {
        opacity: 1;
        transform: scale(1.05);
    }
    25% {
        opacity: 0;
        transform: scale(1.06);
    }
    100% {
        opacity: 0;
        transform: scale(1.06);
    }
}

/* Animação do texto */
@keyframes titleAnimation {
    0%   { opacity: 0; }
    8%   { opacity: 1; }
    17%  { opacity: 1; }
    25%  { opacity: 0; }
    100% { opacity: 0; }
}

/* Fallback */
.no-cssanimations .cb-slideshow li span {
    opacity: 1;
}

@media screen and (max-width: 1140px) {
    .cb-slideshow li div h3 {
        font-size: 140px;
    }
}

@media screen and (max-width: 600px) {
    .cb-slideshow li div h3 {
        font-size: 80px;
        line-height: 1.1;
    }
}

.barra_navegacao,
.navbar {
    background: rgba(255,255,255,0.75)!important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 100;
    color: #fff;
    max-width: 500px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: bold;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.hero-content .btn {
    background: #D9B22B;
    border: none;
    padding: 12px 24px;
    font-weight: bold;
}

.cb-slideshow:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.25),
        rgba(0,0,0,0.45)
    );
    z-index: 1;
}