/*
public\font\HelveticaNowDisplay-Bold.ttf
public\font\HelveticaNowDisplay-ExtraBold.ttf
url(../font/HelveticaNowDisplay-Medium.ttf)
public\font\TuskerGrotesk-3500Medium.ttf
public\font\TuskerGrotesk-4600Semibold.ttf
public\font\TuskerGrotesk-4700Bold.ttf
#171e26
*/

@font-face {
    font-family: 'HelveticaNowDisplay';
    src: url('../font/HelveticaNowDisplay-Medium.ttf') format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: 'HelveticaNowDisplay';
    src: url('../font/HelveticaNowDisplay-Light.ttf') format('truetype');
    font-weight: lighter;
}


@font-face {
    font-family: 'HelveticaNowDisplay';
    src: url('../font/HelveticaNowDisplay-Bold.ttf') format('truetype');
    font-weight: bold;
}

@font-face {
    font-family: 'HelveticaNowDisplay';
    src: url('../font/HelveticaNowDisplay-ExtraBold.ttf') format('truetype');
    font-weight: 800;
}

@font-face {
    font-family: 'TuskerGrotesk';
    src: url('../font/TuskerGrotesk-3500Medium.ttf') format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: 'TuskerGrotesk';
    src: url('../font/TuskerGrotesk-4600Semibold.ttf') format('truetype');
    font-weight: 600;
}

@font-face {
    font-family: 'TuskerGrotesk';
    src: url('../font/TuskerGrotesk-4700Bold.ttf') format('truetype');
    font-weight: bold;
}

.helvetica {
    font-family: 'HelveticaNowDisplay', sans-serif;
}

.helvetica-bold {
    font-family: 'HelveticaNowDisplay', sans-serif;
    font-weight: bold;
}

.helvetica-extrabold {
    font-family: 'HelveticaNowDisplay', sans-serif;
    font-weight: 800;
}

.helvetica-medium {
    font-family: 'HelveticaNowDisplay', sans-serif;
    font-weight: 500;
}

.helvetica-light {
    font-family: 'HelveticaNowDisplay', sans-serif;
    font-weight: lighter;
}

.tusker {
    font-family: 'TuskerGrotesk', sans-serif;
}

.tusker-bold {
    font-family: 'TuskerGrotesk', sans-serif;
    font-weight: bold;
}

.tusker-semibold {
    font-family: 'TuskerGrotesk', sans-serif;
    font-weight: 600;
}

.tusker-medium {
    font-family: 'TuskerGrotesk', sans-serif;
    font-weight: 500;
}

/* bg e text */

.text-azulzinho {
    color: #ebf4f3;
}

.bg-azulzinho {
    background-color: #ebf4f3;
}

.bg-x {
    background: url('../img/bg-x.jpg') no-repeat center center fixed;
    background-size: cover;
}

.bg-light-to-azul {
    background-color: #ebf4f3;
}

/* theme */

.img-1-zero {
    width: 350px;
    height: 350px;
    object-fit: cover;
    position: absolute;
    left: 20%;
    top: -120px;
    z-index: 2;
}

.img-2-casal {
    width: 450px;
    height: 350px;
    object-fit: cover;
    position: absolute;
    right: 20%;
    top: -220px;
    z-index: 2;
}

.navbar {
    height: 100px;
}

.vh-100-100 {
    height: calc(100vh - 100px);
}

.img-capa {
    background-image: url('../img/img-capa.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.overflow-hidden {
    overflow: hidden;
}

.display-0 {
    font-size: 8.5rem;
}

.text-azul-1 {
    color: #171e26;
}

.bg-azul-1 {
    background-color: #171e26;
}

.bg-azul-2 {
    background-color: #3e4c55;
}

.text-azul-2 {
    color: #3e4c55;
}

.flexa-slide {
    color: gray;
    transition: all 0.5s ease-in-out;
}

.flexa-slide:hover {
    color: #171e26;
    transform: scale(1.2);
}

.flexa-slide:active {
    transform: scale(1.2);
}

.divider {
    width: 200px;
    max-width: 100%;
    height: 2px;
    background-color: #171e26;
    margin: 0 auto;
}

@keyframes scale {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(3);
    }

    100% {
        transform: scale(1);
    }
}


.card-container {
    perspective: 1000px;
    width: 100%;
    height: 400px;
}

.card-flip {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s ease-in-out;
    cursor: pointer;
}

.card-container:hover .card-flip {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 1rem;
    /* para manter o arredondamento nos dois lados */
    overflow: hidden;
    /* evita artefatos ao flipar */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    top: 0;
    left: 0;
}

.card-front {
    z-index: 2;
    background-color: #f0f0f0;
}

.card-back {
    transform: rotateY(180deg);
    z-index: 1;
}

.bg-card {
    background-image: url('../img/bgcard.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.canto-cortado {
    clip-path: polygon(95% 0, 100% 18%, 100% 100%, 0 100%, 0 0);
    display: inline-block;
    padding: 5px 10px;
}

.canto-cortado-2 {
    clip-path: polygon(97% 0, 100% 5%, 100% 100%, 0 100%, 0 0);
    display: inline-block;
    padding: 5px 10px;
}

.transition {
    transition: background-color 1s ease, color 0.5s ease;
}

/* bootstrap overrides */

.nav-link {
    margin: 0 10px;
}

/* splide overrides */

.splide__pagination__page {
    width: 24px;
    /* largura do retângulo */
    height: 4px;
    /* altura */
    border-radius: 20px;
    /* deixa com cantos bem arredondados */
    background: gray;
    /* cor dos dots inativos */
    margin: 0 6px;
    transition: background 0.3s ease;
    opacity: 1;
    /* garante que não fique com opacidade menor */
    border: none;
}

.splide__pagination__page.is-active {
    background: #d6d6d6;
    /* cor do dot ativo */
}

.card-partner {
    border: 1px solid transparent;
    transition: all 0.3s ease-in-out;
    margin-bottom: 50px;
    overflow: hidden;
    position: relative;
}

.card-partner:hover {
    border: 1px solid #fff;
    transform: translateY(-10px);
}

.img-wrapper {
    position: relative;
    height: 400px;
    width: 100%;
}

.img-partner-top,
.img-partner-bottom {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.img-partner-bottom {
    transform: translateY(100%);
    z-index: 2;
}

.card-partner:hover .img-partner-bottom {
    transform: translateY(0%);
}

.form-control-custom {
    background-color: transparent;
    color: #fff;
    border: none;
    border-bottom: 2px solid #fff;
    border-radius: 0;
    box-shadow: none;
    transition: border-color 0.3s ease;
    width: 100%;
    padding: 10px 10px;
}

textarea.form-control-custom {
    border: 2px solid #fff;
    border-radius: 10px;
    padding: 10px 10px;
}

.form-control-custom:focus {
    border-color: #fff;
    box-shadow: none;
    border: none;
    border-bottom: 2px solid #fff;
    outline: none;
}

textarea.form-control-custom:focus {
    border: 2px solid #fff;
    box-shadow: none;
    border-radius: 10px;
    outline: none;
}

.form-control-custom::placeholder {
    color: #fff;
    opacity: 0.7;
}

/* quando aceitar solicitação não mudar o background */
.form-control-custom:valid {
    background-color: transparent;
    color: #fff;
    border: none;
    border-bottom: 2px solid #fff;
    border-radius: 0;
    box-shadow: none;
    transition: border-color 0.3s ease;
}


/* LETREIRO ==================================== */
.letreiro-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
}

.letreiro-track {
    display: flex;
    width: max-content;
    animation: letreiro-scroll 10s ease infinite;
}

.letreiro-item {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 0 2rem;
}

.letreiro-b-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
}

.letreiro-b-item {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 0 2rem;
}

.letreiro-track {
    display: flex;
    width: auto;
    animation: letreiro-scroll 20s linear infinite;
}

.letreiro-track:after {
    content: "";
    flex-grow: 999999;
}

.letreiro-track:before {
    content: "";
    flex-grow: 999999;
}

.letreiro-b-track {
    display: flex;
    width: auto;
    animation: letreiro-scroll-right 10s linear infinite;
}

.letreiro-b-track:after {
    content: "";
    flex-grow: 999999;
}

.letreiro-b-track:before {
    content: "";
    flex-grow: 999999;
}

/* Animação do letreiro */
@keyframes letreiro-scroll {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-100%);
    }
}


@keyframes letreiro-scroll-right {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0%);
    }
}

.img-x {
    height: 35px;
    width: 35px;
    object-fit: cover;
    margin: 0 25px;
    transform: translateY(15px);
}

.bg-zeroacucar {
    background-image: url('../img/zeroacucar.jpg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 100vh;
    width: 100%;
}

.navbar-toggler.collapsed {
    transform: rotate(0deg);
    transition: transform 0.3s ease-in-out;
}

.navbar-toggler:not(.collapsed) {
    transform: rotate(90deg);
    transition: transform 0.3s ease-in-out;
}

.navbar-toggler {
    border: none;
    outline: none;
    box-shadow: none;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler:active {
    outline: none;
    box-shadow: none;
}

.custom-form {
    background: transparent;
    border: 1px solid #fff;
    border-radius: 5px;
    padding: 10px;
    color: #fff;
    transition: all 0.3s ease;
    width: 100%;
}

.custom-form:focus {
    background: transparent;
    border: 1px solid #fff;
    border-radius: 5px;
    padding: 20px;
    color: #fff;
    transition: all 0.3s ease;
}

.custom-form::placeholder {
    color: #fff;
    opacity: 0.7;
}

.custom-select {
    background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23ffffff'%3E%3Cpath fill-rule='evenodd' d='M10 15l-7-7h14l-7 7z' clip-rule='evenodd'/%3E%3C/svg%3E") no-repeat right 10px center;
    border: 1px solid #fff;
    border-radius: 5px;
    padding: 10px;
    color: #fff;
    transition: all 0.3s ease;
    width: 100%;
    appearance: none;
    /* Remove a seta padrão */
    -webkit-appearance: none;
    /* Compatibilidade com Webkit */
    -moz-appearance: none;
    /* Compatibilidade com Firefox */
    background-size: 15px;
    padding-right: 40px;
    /* Espaço para a seta */
}

.custom-select:focus {
    background-color: transparent;
    border: 1px solid #fff;
    padding: 20px;
    color: #fff;
    outline: none;
    transition: all 0.3s ease;
    background-position: right 15px center;
}

.custom-select option {
    color: #000;
    /* Cor do texto das opções */
    background-color: #fff;
    /* Fundo das opções */
}


.custom-select::placeholder {
    color: #fff;
    opacity: 0.7;
}



@media (max-width: 992px) {
    .navbar {
        height: auto;
        min-height: 100px;
    }

    .img-1-zero {
        width: 45%;
        height: auto;
        object-fit: cover;
        position: absolute;
        left: 10px;
        top: -60px;
        z-index: 2;
    }

    .img-2-casal {
        width: 48%;
        height: 200px;
        object-fit: cover;
        position: absolute;
        right: 10px;
        top: -120px;
        z-index: 2;
    }

    .display-0 {
        font-size: 5rem;
    }

    .card-container {
        height: 300px;
    }

    .img-x {
        height: 22px;
        width: 22px;
        object-fit: cover;
        margin: 0 25px;
        transform: translateY(5px);
    }

    .letreiro-track {
        display: flex;
        width: auto;
        animation: letreiro-scroll 10s linear infinite;
    }
}