.scroll-container {
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scroll-container::-webkit-scrollbar {
    display: none;
}

.img-retrato {
    width: 250px;
    height: auto;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.scroll-controls {
    position: relative;
}

.scroll-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: rgba(33, 33, 33, 0.3);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 100%;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    color: white;
    font-size: 20px;
    font-weight: 700;
}

.scroll-button-left {
    left: 0.25rem;
}

.scroll-button-right {
    right: 0.25rem;
}

.image-wrapper {
    flex: 0 0 auto;
    text-align: center;
    margin-right: 1rem;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: inline-block;
    max-width: 250px;
}

.cadeado-icon {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 28px;
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    padding: 8px;
    pointer-events: none;
}

.image-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
  }

.image-wrapper > div {
    background-color:rgb(20, 20, 20);
    padding-top: 30px;
    padding-bottom: 30px;
    border-radius: 0 0 10px 10px;
}


/*===========================*/

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 500px) {
    .hero__content--custom {
        height: 200px !important;
    }
}

@media only screen and (min-width: 500px) {
    .hero__content--custom {
        height: 260px !important;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .hero__content--custom {
        height: 350px !important;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .hero__content--custom {
        height: 480px !important;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .hero__content--custom {
        height: 550px !important;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .hero__content--custom {
        height: 600px !important;
    }
}

/*============================*/

.header__nav {
    padding: 24px;
}
@media (min-width: 1400px) {
    .header__nav-item {
        margin-right: 24px;
    }
}

.auth-left-column {
    /* background-image: url('http://192.168.122.207/franquia-digital/uploads/_images/paginas_parcerias/imagem9.png'); Substitua pelo caminho da sua imagem */
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.auth-right-column {
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: rgba(255, 255, 255, 0.8); */
    height: 100vh;
}

.auth-form-container {
    width: 100%;
    max-width: 400px; /* Tamanho máximo do formulário */
    padding: 20px;
    border-radius: 10px;
    background-color: white;
}