/* Link de e-mail personalizado na seção de contato */
.email-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: bold;
}
.email-link:hover {
    text-decoration: underline;
}
/* Links personalizados para marcas na hero */
.link-inmeo {
    color: #4ade80; /* verde claro */
    text-decoration: none;
    font-weight: bold;
}
.link-inmeo:hover {
    color: #059669;
}
.link-falasegura {
    color: #60a5fa; /* azul claro */
    text-decoration: none;
    font-weight: bold;
}
.link-falasegura:hover {
    color: #2563eb;
}
 :root {
            --primary-blue: #2563eb;
            --secondary-blue: #1e40af;
            --primary-green: #059669;
            --secondary-green: #047857;
            --light-gray: #f8fafc;
            --medium-gray: #64748b;
            --dark-gray: #334155;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--dark-gray);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }

        .navbar {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }

        .navbar-brand {
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            font-size: 1.2rem;
            color: var(--primary-blue) !important;
        }

        .navbar-nav .nav-link {
            font-weight: 500;
            color: var(--dark-gray) !important;
            margin: 0 0.5rem;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-blue) !important;
        }

        .hero-section {
                padding-top: 70px;
                position: relative;
                background: url('../img/bannervisaodigital.png') center center/cover no-repeat;
                min-height: 650px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

    .hero-section::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.5); /* overlay escuro */
                z-index: 1;
            }

    .hero-section .container {
                position: relative;
                z-index: 2;
            }

    .hero-section h1, .hero-section p, .hero-section .btn {
                color: #fff;
}

        .hero-section h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .hero-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .btn-primary-custom {
            background: var(--primary-green);
            border: none;
            padding: 1rem 2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .btn-primary-custom:hover {
            background: var(--secondary-green);
            transform: translateY(-2px);
        }

        .services-grid {
            padding: 4rem 0;
            background: var(--light-gray);
        }

        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-5px);
        }

        .service-icon {
            font-size: 3rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .section-padding {
            padding: 4rem 0;
        }

        .about-section {
            background: white;
        }

        .solutions-section {
            background: var(--light-gray);
        }

        .solution-item {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            margin-bottom: 1rem;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }

        .brands-section {
            background: white;
        }

        .brand-card {
            background: var(--light-gray);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            margin-bottom: 1rem;
        }

        .denounce-section {
            background: #60a5fa;
            color: white;
        }

        .form-control {
            border-radius: 8px;
            border: 1px solid #e2e8f0;
            padding: 0.75rem;
        }

        .blog-section {
            background: var(--light-gray);
        }

        .blog-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }

        .contact-section {
            background: white;
        }

        .footer {
            background: var(--dark-gray);
            color: white;
            padding: 3rem 0 1rem;
        }

        .footer h5 {
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .footer a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer a:hover {
            color: white;
        }

        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2rem;
            }
            
            .service-card {
                margin-bottom: 2rem;
            }
        }

        .hero-section {
    padding-top: 100px; /* ajuste conforme a altura da navbar */
    }   