 body {
        scroll-behavior: smooth;
    }
.navbar {
        background-color: #009688ff;
    }
.navbar-brand, .nav-link {
        color: #fff !important;
        font-weight: 500;
    }
header {
        background: linear-gradient(to right, #009688, #00695c);
        color: #fff;
        padding: 100px 0;
        text-align: center;
    }
section {
        padding: 60px 0;
    }
footer {
        background-color: #004d40;
        color: #fff;
        padding: 30px 0;
        text-align: center;
    }
.icon-box {
        text-align: center;
        padding: 20px;
    }
.icon-box i {
        font-size: 3rem;
        color: #009688;
    }
.btn-primary {
        background-color: #009688;
        border: none;
    }
.btn-primary:hover {
        background-color: #00796b;
    }

.social-icon {
    margin-right: 10px;
    font-size: 1.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
    }

.social-icon:hover {
        transform: scale(1.2);
        color: #ffffffaa;
    }

nav {
        background-color: white;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        position: relative; /* Adicionado */
    }

nav a.nav-link {
        font-size: 1.1rem;
        font-weight: 600;
        margin-right: 10px;
        transition: color 0.3s ease, transform 0.2s ease;
    }


/* Nossas Soluções */
.solucoes {
        padding: 60px 0;
    }
.solucoes h2 {
        font-weight: bold;
        text-align: center;
        margin-bottom: 10px;
    }
.solucoes p.subtitulo {
        text-align: center;
        color: #555;
        margin-bottom: 40px;
    }
.card-solucao {
        border: 1px solid #eee;
        border-radius: 12px;
        padding: 20px;
        text-align: left;
        transition: all 0.3s ease;
        height: 100%;
    }
.card-solucao:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    }
.card-solucao img {
        max-height: 50px;
        margin-bottom: 15px;
    }
.card-solucao h5 {
        font-weight: bold;
        margin-bottom: 10px;
    }
.card-solucao p {
        color: #555;
        font-size: 0.95rem;
        min-height: 60px;
    }

nav a.nav-link:hover {
        color: rgb(255, 255, 255) !important;
        transform: translateY(-2px);
    }

    @media (max-width: 991px) {
    nav {
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    .navbar-nav .nav-item {
        border-bottom: 1px solid #eaeaea;
    }
    .btn-contact {
        width: 100%;
        margin-top: 10px;
    }
    .btn-contact:hover {
        background-color: white;
        color: #009688ff !important;
        border: 1px solid #009688ff;
    }
}

.card-solucao {
        background: #fff;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

.saiba-mais {
        font-weight: bold;
        transition: 0.3s;
    }

.saiba-mais:hover {
        color: #00796b;
        text-decoration: underline;
    }

.modal-img {
        height: 300px; /* tamanho fixo */
        object-fit: contain; /* mantém proporção sem cortar */
        background-color: #f8f9fa; /* fundo neutro se sobrar espaço */
    }

.carousel-img {
    height: 300px; /* Altura fixa */
    object-fit: cover; /* Corta proporcionalmente */
}