*{
padding: o;
margin: 0;
}

:root {
    --bg-color: #000000;
    --card-bg: #FFFFFF;
    --text-dark: #333333;
    --accent-color: #000000;
}

body {
    background-color: var(--bg-color);
    color: rgb(150, 149, 149);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}
/* Estilos da Navbar */
.navbar {
    background-color: #ffffff;
    padding: 0px 5%;
    position: sticky; /* Faz a barra ficar fixa no topo ao rolar */
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 50px; /* Ajuste conforme a proporção do seu logo */
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-menu li a {
    text-decoration: none;
    color: #444;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #1a5fff;
}

/* Botão Contato na Nav */
.btn-contato-nav {
    background-color: #1a5fff; /* Azul idêntico ao formulário e print */
    color: white !important;
    padding: 10px 25px;
    border-radius: 12px; /* Arredondamento do print */
    font-weight: 600 !important;
    transition: background 0.3s ease !important;
}

.btn-contato-nav:hover {
    background-color: #144bd1;
}

/* Ajuste para Mobile */
@media (max-width: 768px) {
    .nav-menu {
        display: none; /* Em uma versão completa, aqui entraria o menu hambúrguer */
    }
}
/* Hero */
.hero {
    text-align: center;
    
}
.logo { font-size: 2.5rem; font-weight: bold; }
.logo span { color: #555; font-weight: normal; }
.hero h1 { font-size: 1.8rem; margin-top: 10px; color: #ccc; }
#inicio {
    scroll-margin-top: 100px; /* Ajuste este valor de acordo com a altura da sua Navbar */
    scroll-behavior: smooth; /* Faz a transição ser suave em vez de um "pulo" seco */
}
/* Container Principal do Topo */
.hero-container {
    background-color: var(--bg-color); /* Azul bem escuro/preto do print */
    padding: 60px 10% 80px 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    display: flex;
    width: 100%;
    max-width: 1200px;
    align-items: center;
    justify-content: space-between;
}

/* Lado do Texto */
.hero-text-side {
    flex: 1;
}

.main-logo {
    width: 600px; /* Ajuste conforme o tamanho original */
    margin-bottom: 30px;
}

.hero-title {
    color: #ffffff;
    margin-left: 280px;
    font-size: 2.8rem;
    line-height: 1.1;
    font-weight: 700;
    text-align: left;
}

/* Lado da Imagem */
.hero-image-side {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.globe-img {
    margin-right: 280px;
    max-width: 500px; /* Tamanho proporcional ao print */
    width: 100%;
    height: auto;
}

/* Seção Nossos Serviços (Fundo Preto Total) */   

/* Aplica o ajuste de rolagem para todas as seções com ID */
#servicos {
    scroll-margin-top: 100px; /* Ajuste este valor de acordo com a altura da sua Navbar */
    scroll-behavior: smooth; /* Faz a transição ser suave em vez de um "pulo" seco */
}

/* Garante que o scroll suave funcione em todo o site */
html {
    scroll-behavior: smooth;
}

.services-header {
    background-color: #8b3e3e;
    text-align: center;
    border-bottom: 10px solid #1a1a1a;
}

.services-header h2 {
    color: #ffffff;
    font-size: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/*.bg-h2 {
    background-color:gray;
    width: 100%;
}*/

/* Ajuste Responsivo para Celular */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-text-side, .hero-image-side {
        justify-content: center;
    }
    .hero-title {
        font-size: 2rem;
        text-align: center;
    }
    .main-logo {
        margin: 0 auto 30px auto;
    }
}
/* Grid de Serviços */
.services {
    max-width: 100%;
margin: 0 auto;
}

/* Efeito de hover para dar vida ao site */
.card:hover {
    transform: translateY(-10px);
}
.services h2 {
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.bg-h2 {
    background-color: #000000;
    max-width: 100%;
}

.services-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    gap: 25px;
}

#solucoes {
    scroll-margin-top: 100px; /* Ajuste este valor de acordo com a altura da sua Navbar */
    scroll-behavior: smooth; /* Faz a transição ser suave em vez de um "pulo" seco */
}

.featured-solutions {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.featured-solutions h2 {
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.featured-card {
    background: #FFFFFF;
    border-radius: 30px; /* Bordas bem arredondadas como no Canva */
    overflow: hidden; /* Garante que a imagem siga o arredondamento do card */
    color: #000;
    text-align: left;
    transition: transform 0.3s ease;
}

.featured-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    /* A imagem herda o arredondamento do topo devido ao overflow:hidden */
}

.featured-info {
    padding: 30px 25px;
}

.featured-info h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-align: center;
}

.featured-info p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
    text-align: center;
}

/* Efeito de hover para dar vida ao site */
.featured-card:hover {
    transform: translateY(-10px);
}

.card {
    background: var(--card-bg);
    color: var(--text-dark);
    padding: 30px;
    border-radius: 20px; /* Bordas arredondadas idênticas ao Canva */
    transition: transform 0.3s ease;
}

.card h3 { font-size: 1.2rem; margin: 15px 0 10px; font-weight: 700; }
.card p { font-size: 0.9rem; color: #666; }
.card .icon { font-size: 24px; }

/* Sobre e Números */
.about-section {
    background-color: #000000;
    padding: 100px 5%;
    color: #ffffff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

#sobre {
    scroll-margin-top: 100px; /* Ajuste este valor de acordo com a altura da sua Navbar */
    scroll-behavior: smooth; /* Faz a transição ser suave em vez de um "pulo" seco */
}
/* Texto à Esquerda */
.about-text {
    flex: 1.2;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #f0f0f0;
}

/* Grid de Cards à Direita */
.about-stats {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
/* Efeito de hover para dar vida ao site */
.stat-card:hover {
    transform: translateY(-10px);
}
.stat-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 35px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #000000;
}

.stat-icon {
    width: 45px;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    display: block;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 5px;
}
.title-h2 {
text-align: center;
}

#contato {
    scroll-margin-top: 100px; /* Ajuste este valor de acordo com a altura da sua Navbar */
    scroll-behavior: smooth; /* Faz a transição ser suave em vez de um "pulo" seco */
}

.contact-section {
    background-color: #000000; /* Fundo levemente cinza para destacar o formulário branco */
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

.contact-container {
    background-color: #ffffff;
    width: 100%;
    max-width: 600px;
    padding: 40px;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 25px;
    padding-right: 35px;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e4e8;
    border-radius: 12px; /* Bordas arredondadas do print */
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

/* Efeito de campo selecionado igual ao seu print */
.form-group input:focus, 
.form-group textarea:focus {
    border-color: #1a5fff; 
}

/* Estilo do Botão */
.submit-btn {
    width: 100%;
    background-color: #1a5fff; /* Azul vibrante do print */
    color: white;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background-color: #144bd1;
}

.submit-btn svg {
    margin-left: 5px;
}

/* Estilo do Ícone Hambúrguer */
.mobile-menu-icon {
    display: none; /* Escondido no desktop */
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #1a5fff; /* Azul padrão do seu projeto */
    transition: 0.3s;
}
.main-footer {
    background-color: #ffffff;
    color: #000000;
    padding: 60px 5% 20px;
    border-top: 1px solid #1a1a1a;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    align-items: center;
    text-align: center;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    height: 80px;
    margin-bottom: 0px;
}

.footer-brand {
width: 300px
}
.footer-brand-2 {
    align-items: center;
    text-align: right;
    width: 300px
}
.footer-brand p {
    color: #000000;
    font-size: 0.9rem;
    font-width: bold;
    max-width: 300px;
}
.footer-links {
text-align: center;
}
.footer-links h4, .footer-social h4 {
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-align: center;
    color: #000000;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #1a5fff;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #888;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #1a5fff;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #1a1a1a;
    color: #555;
    font-size: 0.8rem;
}

/* Responsividade para o Footer */
@media (max-width: 768px) {
    .footer-container {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }
    .footer-brand-2 {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

/* Responsividade */
/* MEDIA QUERIES PARA CELULAR */
/* MEDIA QUERIES PARA CELULAR */
@media (max-width: 768px) {
.nav-menu { display: none; } /* Esconde o menu no celular para não bugar o topo */
.hero-container { display: flex;flex-direction: column-reverse;align-items: center;gap: 10px;}
.hero-image-side{display: flex;align-items: center;}
.hero-title { font-size: 2rem; margin-left: 0; } /* Remove as margens de 280px */
.globe-img { margin-right: 0; }
.about-stats { grid-template-columns: 1fr; } /* Métricas viram uma lista única */
.mobile-menu-icon {display: flex; /* Aparece no celular */}
.nav-menu {display: none; /* Esconde a lista padrão */
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        text-align: center;
        z-index: 999;
    }

    /* Quando o menu está ativo, ele exibe a listagem */
    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .btn-contato-nav {
        display: inline-block;
        width: 80%; /* Botão maior no celular para facilitar o clique */
    }
}
@media (min-width:769px) and (max-width:1800px){
.hero-container {display: flex;justify-content: space-between; }
.hero-title { font-size: 2rem; margin-left: 0; } /* Remove as margens de 280px */
.globe-img { margin-right: 0px; }
}