/* =========================================
   VARIÁVEIS WIDE (Cores Exatas da Logo)
========================================= */
:root {
    --wide-dark-blue: #1D2E55;   /* Azul escuro (texto WIDE da logo) */
    --wide-light-blue: #2275B9;  /* Azul vibrante (onda da logo) */
    --wide-green: #7EBE44;       /* Verde (onda) - O tom que você gostou! */
    --wide-border: #83C4EB;      /* Azul claro (borda da logo) */
    
    --bg-light: #f4f8fb;         /* Fundo levemente azulado para seções */
    --text-dark: #2d3748;
    --text-light: #4a5568;
    --white: #ffffff;
    --transition: all 0.3s ease-in-out;
}

/* =========================================
   RESET E BASE
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   BOTÕES (Estilo Pílula)
========================================= */
.btn-primary {
    background-color: var(--wide-light-blue); /* Agora usa o azul vibrante puro */
    color: var(--white);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    border: none;
    box-shadow: 0 4px 15px rgba(34, 117, 185, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background-color: #1c64a0; /* Um tom levemente mais escuro no hover */
    box-shadow: 0 6px 20px rgba(34, 117, 185, 0.6);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--wide-green);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    border: none;
    box-shadow: 0 4px 15px rgba(126, 190, 68, 0.4);
}

.btn-secondary:hover {
    background-color: #6da639;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(126, 190, 68, 0.6);
}

.btn-primary-inverse {
    background-color: var(--white);
    color: var(--wide-dark-blue);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 800;
    display: inline-block;
    transition: var(--transition);
    border: 2px solid var(--white);
}

.btn-primary-inverse:hover {
    background-color: transparent;
    color: var(--white);
}

/* =========================================
   NAVBAR E LOGO
========================================= */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(131, 196, 235, 0.3); /* Sombra no azul claro */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 110px; /* Aumentado de 90px para 110px para dar mais respiro à logo */
}

.logo-img {
    height: 85px; /* Aumentado consideravelmente (era 65px) */
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    font-weight: 600;
    color: var(--wide-dark-blue);
}

.nav-links a:not(.btn-primary):hover {
    color: var(--wide-light-blue);
}

/* =========================================
   HERO SECTION
========================================= */
.hero {
    margin-top: 110px; /* Acompanha o novo tamanho da navbar */
    /* Gradiente mais limpo usando o azul escuro oficial */
    background: linear-gradient(145deg, var(--wide-dark-blue) 0%, #101a30 100%);
    color: var(--white);
    padding: 130px 0;
    text-align: center;
    position: relative;
    border-bottom: 8px solid var(--wide-green);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #e2e8f0; /* Um tom quase branco para leitura clara, tira aquele tom opaco */
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* =========================================
   SEÇÕES GERAIS
========================================= */
.section-padding {
    padding: 90px 0;
}

.section-bg-light {
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.4rem;
    color: var(--wide-dark-blue);
    margin-bottom: 15px;
    font-weight: 800;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto;
}

/* =========================================
   CARDS DE SERVIÇOS (RECURSOS)
========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
    border: 2px solid transparent;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--wide-border); 
    box-shadow: 0 15px 30px rgba(34, 117, 185, 0.12);
}

.icon-box {
    width: 65px;
    height: 65px;
    background: var(--wide-green); /* Verde oficial */
    color: var(--white);
    border-radius: 50%; 
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(126, 190, 68, 0.4);
}

/* Alternar cores nos ícones para dinamismo */
.service-card:nth-child(even) .icon-box {
    background: var(--wide-light-blue); /* Azul vibrante */
    box-shadow: 0 5px 15px rgba(34, 117, 185, 0.4);
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--wide-dark-blue);
    font-weight: 800;
}

.service-card p {
    color: var(--text-light);
    font-size: 1rem;
}

/* =========================================
   CLIENTES / HOMOLOGAÇÃO
========================================= */
.clients-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

.client-box img {
    max-width: 160px;
    height: auto;
    filter: grayscale(100%) opacity(0.6);
    transition: var(--transition);
}

.client-box img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

/* =========================================
   SPLIT LAYOUT (A Solução)
========================================= */
.split-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 2.4rem;
    color: var(--wide-dark-blue);
    margin-bottom: 25px;
    font-weight: 800;
}

.text-block p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1.15rem;
}

.text-block strong {
    color: var(--wide-light-blue);
}

.image-block {
    flex: 1;
}

.image-block img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(29, 46, 85, 0.15);
    border: 5px solid var(--white);
}

/* =========================================
   FOOTER CONTACT E FOOTER FINAL
========================================= */
.footer-contact {
    background: linear-gradient(145deg, var(--wide-light-blue) 0%, var(--wide-dark-blue) 100%);
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.footer-contact h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.footer-contact p {
    font-size: 1.3rem;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 40px;
}

footer {
    background-color: #101a30;
    color: rgba(255,255,255,0.6);
    text-align: center;
    padding: 25px 0;
    font-size: 0.95rem;
}

/* =========================================
   RESPONSIVO
========================================= */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-container {
        height: 90px;
    }
    
    .logo-img {
        height: 65px;
    }
    
    .hero { margin-top: 90px; }
    
    .hero h1 { font-size: 2.2rem; }
    .hero-buttons { flex-direction: column; }
    
    .split-layout {
        flex-direction: column;
    }
    
    .footer-contact h2 {
        font-size: 2rem;
    }
}