[data-bs-theme="dark"] .form-contato {
    background-color: #373d42 !important; /* Ou outro tom escuro desejado */
    color: #f0f0f0;
}

html,
body {
    overflow-x: hidden;
}


/* Cabecalho */
#header {
    z-index: 1050;
    transition: transform 0.3s ease, padding 0.3s ease;
}

.header-hidden {
    transform: translateY(-100%);
}

.header-small .navbar {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}

.header-small .logo-img {
    width: 3.5rem !important;
}

nav {
    transition: background-color 0.3s ease, opacity 0.3s ease;
}

.navbar-blur {
    background-color: rgba(255, 255, 255, 0.747);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    /* compatibilidade com Safari */
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.041);
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.redes-sociais {
    left: 75%;
    transform: translateY(-50%);
}

/* Fim Cabecalho */


/* Botão de voltar ao topo */
.custom-btn {
    background-color: #7BC251;
    transition: background-color 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.custom-btn:hover {
    background-color: #6ca540 !important;
}

.show-on-scroll {
    opacity: 1 !important;
    pointer-events: auto;
}

/* Botão de voltar ao topo */


/* Cor do texto */
.text-verde {
    color: #7BC251;
}

.text-hover-verde:hover {
    color: #7BC251 !important;
}

.text-cinza {
    color: #9e9e9e;
}

/* Fim Cor do texto */


/* Backgrounds */
.bg-cinza {
    background-color: #eeeeee;
}

.bg-verde {
    background-color: #7BC251;
}

/* Fim Backgrounds */


/* Botoes */
.btn-verde {
    background-color: #7BC251 !important;
    border-color: #7BC251 !important;
    color: white !important;
}

.btn-verde:hover {
    background-color: #6ca540 !important;
    border-color: #6ca540 !important;
}

.btn-outline-black {
    color: black;
    border: 1px solid black;
    background-color: transparent;
}

.btn-outline-black:hover {
    background-color: black;
    color: white;
}

.btn-outline-white {
    color: rgb(255, 255, 255);
    border: 1px solid rgb(255, 255, 255);
    background-color: transparent;
}

.btn-outline-white:hover {
    background-color: rgb(0, 0, 0);
    color: white;
    border: 1px solid rgb(139, 139, 139);
}

/* Fim Botoes */


/* Efeito cursor piscando */
@keyframes blink {

    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}

/* Wrapper necessário para posicionamento relativo */
.input-wrapper {
    position: relative;
}

.input-wrapper input {
    position: relative;
    z-index: 2;
    background: transparent;
}

.input-wrapper::before {
    content: '|';
    animation: blink 2s infinite;
    color: rgb(255, 255, 255);
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
}

/* Fim Efeito cursor piscando */


/* Elemento efeito carrocel */
.custom-spin {
    animation: spin_4991 4s infinite;
}

@keyframes spin_4991 {
    10% {
        -webkit-transform: translateY(-102%);
        transform: translateY(-102%);
    }

    25% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    35% {
        -webkit-transform: translateY(-202%);
        transform: translateY(-202%);
    }

    50% {
        -webkit-transform: translateY(-200%);
        transform: translateY(-200%);
    }

    60% {
        -webkit-transform: translateY(-302%);
        transform: translateY(-302%);
    }

    75% {
        -webkit-transform: translateY(-300%);
        transform: translateY(-300%);
    }

    85% {
        -webkit-transform: translateY(-402%);
        transform: translateY(-402%);
    }

    100% {
        -webkit-transform: translateY(-400%);
        transform: translateY(-400%);
    }
}

/* Fim - Elemento efeito carrocel */


/* Botao Saiba Mais */
.btn-saiba-mais {
    letter-spacing: 2px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease 0s;
    outline: none;
}

.btn-saiba-mais:hover {
    background-color: #7BC251 !important;
    box-shadow: 0px 15px 20px #6ca5406b;
    color: #fff !important;
    text-decoration: none;
    transform: translateY(-7px);
}

.btn-saiba-mais:active {
    transform: translateY(-1px);
}

/* Fim Botao Saiba Mais */


/* Cards (Produtos - index) */
.hover-scale {
    transition: transform 0.5s ease;
}

.hover-scale:hover {
    transform: scale(1.1);
}

/* Fim Cards */


/* Nossos Objetivos */
.translate-y-custom {
    transform: translateY(80px);
}

@keyframes flutua {

    0%,
    100% {
        transform: translateY(80px);
    }

    50% {
        transform: translateY(50px);
    }
}

.flutua-custom {
    animation: flutua 5s infinite;
    width: 650px;
    max-width: 100%;
}

/* Fim Nossos Objetivos */


/* Botão IAstra fixo com expansão lateral do texto */
.iastra-chat-button {
    position: relative;
}

.iastra-btn-wrapper {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
}

/* Avatar com batimento (heartbeat) */
.heartbeat {
    animation: heartbeat 2s infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.07);
    }
}

/* Avatar redondo fixo */
.iastra-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
    position: relative;
    transition: background-color 0.3s ease;
    background-color: #7BC251;
}

/* Caixa de texto com ícone */
.iastra-label-box {
    position: absolute;
    right: 100%;
    margin-right: 10px;
    padding: 0.75rem 1rem;
    border-radius: 2rem;
    background-color: #7BC251;
    color: white;
    opacity: 0;
    white-space: nowrap;
    max-width: 0;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
}

/* Mostra a caixa no hover */
.iastra-chat-button:hover .iastra-label-box {
    opacity: 1;
    max-width: 320px;
}