:root {
    --cor-primaria: #0B3C5D;
    --cor-secundaria: #F29F05;
    --cor-bg-claro: #F5F7FA;
    --cor-texto: #1F2933;
    --cor-borda: #64748B;
    --cor-sucesso: #16A34A;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--cor-texto);
    background-color: #ffffff;
    padding-top: 72px; /* compensar header fixo no mobile */
}

.logo-gestord {
    height: 40px;
    width: auto;
}

/* LINKS NAV */
.navbar .nav-link {
    font-weight: 500;
    color: #4B5563;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: var(--cor-primaria);
}

/* BOTÕES */
.btn-primary {
    background-color: var(--cor-primaria);
    border-color: var(--cor-primaria);
}

.btn-primary:hover {
    background-color: #08273B;
    border-color: #08273B;
}

.btn-outline-secondary {
    border-color: var(--cor-borda);
    color: var(--cor-texto);
}

.btn-outline-secondary:hover {
    background-color: var(--cor-borda);
    color: #ffffff;
}

/* HERO */
.hero-section {
    min-height: 90vh;
    padding: 5rem 0 4rem;
    background: linear-gradient(135deg, #ffffff 0%, #E5EEF8 40%, #ffffff 100%);
}

.hero-title {
    font-size: clamp(2rem, 3.1vw, 3rem);
    font-weight: 700;
    color: var(--cor-primaria);
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1rem;
    margin-top: 1rem;
    color: #4B5563;
}

.hero-image-wrapper {
    text-align: center;
}

.hero-image {
    max-height: 420px;
    object-fit: cover;
}

/* SEÇÕES */
.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cor-primaria);
    margin-bottom: 0.75rem;
}

.section-text {
    font-size: 0.98rem;
    color: #4B5563;
}

.section-bg-light {
    background-color: var(--cor-bg-claro);
}

/* CARDS METODOLOGIA */
.g5g-card {
    background-color: #EEF2F7;
    border-radius: 18px;
    padding: 1.5rem;
    border: 1px solid #E5E7EB;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    height: 100%;
}

.g5g-card h3 {
    font-size: 1.1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: var(--cor-primaria);
}

.g5g-card p {
    font-size: 0.95rem;
    color: #4B5563;
}

.icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #F1F5F9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.icon-wrapper img {
    max-width: 42px;
    max-height: 42px;
}

/* CARDS SERVIÇOS */
.service-card {
    background-color: #ffffff;
    border-radius: 18px;
    padding: 1.5rem;
    border: 1px solid #E5E7EB;
    height: 100%;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.service-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: var(--cor-primaria);
}

.service-card p {
    font-size: 0.95rem;
    color: #4B5563;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

/* LARGURAS AUXILIARES */
.max-w-600 {
    max-width: 600px;
}

/* ANIMAÇÕES DE ENTRADA (JS) */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

.reveal[data-animate="fade-left"] {
    transform: translateX(24px);
}

.reveal[data-animate="fade-right"] {
    transform: translateX(-24px);
}

.reveal.reveal-active[data-animate="fade-left"],
.reveal.reveal-active[data-animate="fade-right"] {
    transform: translateX(0);
}

/* RESPONSIVIDADE */
@media (max-width: 767.98px) {
    body {
        padding-top: 64px;
    }
    .hero-section {
        padding-top: 4.5rem;
        padding-bottom: 3rem;
        text-align: left;
    }
    .hero-title {
        font-size: 1.8rem;
    }
}

/*CLIENTES*/

.clientes-logos-grid .cliente-logo {
    max-height: 60px;
    filter: grayscale(1);
    opacity: 0.7;
    transition: all 0.2s ease;
}

.clientes-logos-grid .cliente-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

.depo-card {
    background-color: #ffffff;
    border-radius: 18px;
    border: 1px solid #E5E7EB;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}
