:root {
    --primary: #f97316;
    --primary-dark: #ea580c;

    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-500: #6b7280;
    --gray-300: #d1d5db;
    --gray-100: #f3f4f6;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-ksagro{
    background-color: #2aa53a;
    color: #fff;
    border: 1px solid #2aa54f;
}

.btn-ksagro:hover {
    background-color: #1a7535;
    border-color: #1a7535;
}

.btn-kssilo{
    background-color: #2a5ba5;
    color: #fff;
    border: 1px solid #2a5ba5;
}

.btn-kssilo:hover {
    background-color: #204680;
    border-color: #204680;
}

.hero-enterprise {
    color: #ffffff;
}

.hero-enterprise .hero-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #d1d5db;
}

.hero-enterprise h1 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-enterprise p {
    max-width: 520px;
    font-size: 18px;
    line-height: 1.6;
    color: #e5e7eb;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.institutional {
    padding: 96px 0;
}

.institutional-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
    align-items: center;
}

.institutional h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

.institutional p {
    font-size: 18px;
    line-height: 1.7;
    color: #4b5563;
}

.institutional-highlight {
    background: #ffffff;
    padding: 32px 0;
    border-radius: 16px;
}

.institutional-highlight ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.institutional-highlight li {
    font-size: 16px;
    margin-bottom: 16px;
    color: #374151;
}

.solucoes-enterprise {
    background: #ffffff;
    padding: 96px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 34px;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: #6b7280;
    max-width: 640px;
    margin: 0 auto;
}

.solucoes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.solution-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform .3s ease, box-shadow .3s ease;
}

.solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.solution-card img {
    max-width: 180px;
    height: auto;
}

.solution-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
}

.solution-card .btn {
    margin-top: auto;
}

.value-block {
    background: var(--gray-800);
    color: #ffffff;
    padding: 96px 0;
}

.value-block h2 {
    font-size: 36px;
    text-align: center;
    color: #fff;
    margin-bottom: 56px;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.value-grid h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.value-grid p {
    color: #d1d5db;
    line-height: 1.6;
}

.value-card{
    padding: 32px 32px 32px 48px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    transition: transform .3s ease, border-color .3s ease;
}

.value-card::before{
    content: "";
    position: absolute;
    left: 0;
    top: 24px;
    width: 4px;
    height: 40px;
    background: #f97316; 
    border-radius: 2px;
}

.value-card:hover {
    transform: translateY(-4px);
    border-color: rgba(249, 115, 22, 0.4);
}

/* textos */
.value-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #d1d5db;
}

.cta-enterprise {
    background: var(--gray-900);
    color: #ffffff;
    padding: 96px 0;
    text-align: center;
}

.cta-enterprise h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.cta-enterprise p {
    font-size: 18px;
    max-width: 640px;
    margin: 0 auto 40px;
    color: #f3f4f6;
}

@media (max-width: 1024px) {
    .solucoes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .institutional-grid {
        grid-template-columns: 1fr;
    }

    .value-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 640px) {
    section.solucoes-enterprise .solucoes-grid {
        grid-template-columns: 1fr !important;
    }
}


[data-fade] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-fade].ativo {
    opacity: 1;
    transform: translateY(0);
}


