
.navbar.fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030; /* Garante que o menu fique acima de outros elementos */
    background-color: rgba(255, 255, 255, 0.9); /* Fundo semi-transparente */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Sombra para destacar o menu */
}


.client-logo {
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: scale(1.1);
}

    .card {
        overflow: hidden;
        transition: transform 0.3s ease;
    }

    .card:hover {
        transform: translateY(-5px);
    }

    .card-img {
        transition: transform 0.3s ease;
    }

    .card-img-overlay {
    background: linear-gradient(0deg, rgba(0,176,143,0.9) 0%, rgba(0,176,143,0) 60%);
    opacity: 0.8; /* Visível, mas com um leve efeito de transparência */
    transition: all 0.3s ease;
}

.card:hover .card-img-overlay {
    opacity: 1; /* Totalmente visível no hover */
}

    .card:hover .card-img-overlay {
        opacity: 1;
    }

    @keyframes slideInLeft {
        from {
            transform: translateX(-100%);
            opacity: 0;
        }
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }

    @keyframes slideInRight {
        from {
            transform: translateX(100%);
            opacity: 0;
        }
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }

    .section-title {
        position: relative;
        display: inline-block;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 0;
        height: 3px;
        background: #00b08e;
        transition: width 0.5s ease;
    }

    .section-title:hover::after {
        width: 100%;
    }

    .nav-link-effect {
        position: relative;
        overflow: hidden;
    }

    .nav-link-effect::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: -100%;
        width: 100%;
        height: 2px;
        background: white;
        transition: left 0.3s ease;
    }

    .nav-link-effect:hover::after {
        left: 0;
    }

    .staggered-animation {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.5s ease forwards;
    }

    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }

    .pulse-hover:hover {
        animation: pulse 1s infinite;
    }


        body {
            font-family: 'TT Interphases Pro', sans-serif;
        }

        .fundo {
            background-image: url('img/9.jpg');
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            width: 100%;
            height: 800px;
        }

    
        .btn-top {
    color: white;
    background-color: #009087;
    padding: 0 15px;
    border: 0;
    padding-top: 5px;
    padding-bottom: 5px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.btn-top:hover {
    opacity: 1;
    background-color: #009087;
}

.btn-top2 {
    color: white;
    background-color: #01b08f;
    padding: 0 15px;
    border: 0;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.btn-top2:hover {
    opacity: 1;
    background-color: #01b08f;
}

        .fundo_lateral {
            background-color: #00b08e;
        }

        .cor_texto_verde_quemsomos {
            color: #00b08e;
        }

        .fundo_branco {
            background-color: white;
        }

        .animate-text {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 2s ease-out forwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @font-face {
            font-family: 'TT Interphases Pro';
            src: url('/font/tt_interphases_pro/TTInterphasesPro-MonoTrialRegular.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
        }

        @font-face {
            font-family: 'TT Interphases Pro';
            src: url('/font/tt_interphases_pro/TTInterphasesPro-MonoTrialBold.ttf') format('truetype');
            font-weight: bold;
            font-style: normal;
        }

        .floating-img {
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }

        .client-logo {
            max-width: 150px;
            margin: 10px;
        }

    

        .custom-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            background-color: #b2dfdb; /* Verde claro */
            color: #004d40; /* Verde escuro */
            padding: 10px 16px;
            border-radius: 15px;
            font-weight: bold;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
            border: none;
        }

        .custom-btn:hover {
            background-color: #80cbc4;
        }

        .icon-circle {
            background-color: #00796b;
            padding: 8px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }
        .floating-icon {
            position: fixed;
            top: 20px; /* Ajuste a distância do topo */
            right: 20px; /* Ajuste a distância da direita */
            z-index: 1050; /* Garante que fique acima de outros elementos */
            transition: all 0.3s ease; /* Adiciona transição suave */
        }

        .floating-icon:hover {
            transform: scale(1.1); /* Aumenta um pouco no hover */
        }

        .floating-icon img {
            width: 60px; /* Ajuste o tamanho do ícone */
            height: 60px;
        }

        /* Estilos para o ícone dentro do botão (opcional) */
        .floating-icon .icon-circle {
            background-color: #00796b; /* Verde mais escuro */
            padding: 10px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Sombra no ícone */
        }

        .floating-icon .icon-circle i {
            font-size: 24px; /* Ajuste o tamanho do ícone Font Awesome */
        }
        .whatsapp-icon {
  position: fixed;
  bottom: 20px; /* Ajuste a distância do rodapé */
  right: 20px; /* Ajuste a distância da direita */
  z-index: 1050; /* Garante que fique acima de outros elementos */
}

.whatsapp-icon img {
  width: 60px; /* Ajuste o tamanho do ícone */
  height: 60px;
}


/* Media Queries para dispositivos móveis */
@media (max-width: 768px) {

    .menu{
        display: none;
    }

    /* Ajustes para o header */
    .fundo {
        height: auto;
        padding-bottom: 50px;
    }

    .header-text {
        font-size: 50px !important; /* Reduz o tamanho da fonte no mobile */
    }

    .logo-header {
        width: 80% !important; /* Ajusta o tamanho da logo no mobile */
    }

    /* Ajustes para o menu de navegação */
    .navbar-nav {
        flex-direction: column;
        align-items: center;
    }

    .btn-top {
        margin: 5px 0; /* Espaçamento entre os botões no mobile */
    }

    /* Ajustes para a seção "Quem Somos" */
    .cor_texto_verde_quemsomos {
        font-size: 40px !important; /* Reduz o tamanho da fonte no mobile */
    }

    .client-logo {
        max-width: 100px; /* Reduz o tamanho das logos no mobile */
        margin: 5px;
    }

    /* Ajustes para a seção "O que fazemos" */
    .card {
        margin-bottom: 15px; /* Espaçamento entre os cards no mobile */
    }

    .card-img-overlay p {
        font-size: 14px; /* Reduz o tamanho da fonte nos cards no mobile */
    }

    .custom-btn {
        width: 100%; /* Botão ocupa toda a largura no mobile */
        justify-content: center;
    }

    /* Ajustes para o ícone flutuante */
    .floating-icon {
        top: 10px;
        right: 10px;
    }

    .floating-icon img {
        width: 40px;
        height: 40px;
    }

    /* Ajustes para o ícone do WhatsApp */
    .whatsapp-icon {
        bottom: 10px;
        right: 10px;
    }

    .whatsapp-icon img {
        width: 50px;
        height: 50px;
    }

    /* Ajustes gerais para textos e seções */
    .section-title {
        font-size: 40px !important; /* Reduz o tamanho da fonte no mobile */
    }

    .animate-text {
        font-size: 18px; /* Reduz o tamanho da fonte no mobile */
    }

    /* Ajustes para o layout das seções */
    .row {
        flex-direction: column;
    }

    .col-md-6 {
        width: 100%; /* Faz com que as colunas ocupem 100% da largura no mobile */
    }

    /* Ajustes para o fundo lateral */
    .fundo_lateral {
        padding: 20px; /* Reduz o padding no mobile */
    }

    /* Ajustes para o texto dentro das seções */
    .text-white, .cor_texto_verde_quemsomos {
        text-align: left; /* Centraliza o texto no mobile */
    }


}

/* Media Queries para dispositivos muito pequenos (ex: smartphones pequenos) */
@media (max-width: 480px) {
    .header-text {
        font-size: 40px !important; /* Reduz ainda mais o tamanho da fonte */
    }

    .cor_texto_verde_quemsomos {
        font-size: 30px !important;
    }

    .section-title {
        font-size: 30px !important;
    }

    .animate-text {
        font-size: 16px;
    }

    .client-logo {
        max-width: 80px; /* Reduz ainda mais o tamanho das logos */
    }

    .card-img-overlay p {
        font-size: 12px; /* Reduz ainda mais o tamanho da fonte nos cards */
    }

    body, html {
        margin: 0; /* Remove a margem do body e html */
        padding: 0; /* Remove o preenchimento do body e html */
    }
    
    .row.no-gutters {
        margin-right: 0; /* Remove a margem direita da linha */
        margin-left: 0; /* Remove a margem esquerda da linha */
    }
    
    .fundo_lateral {
        padding: 0; /* Remove o preenchimento das colunas */
    }
    
    .full-img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Faz a imagem cobrir toda a área da div */
    }
    
  
    

}
