﻿/* ==========================================================================
   1. CONFIGURAÇÕES GERAIS E VARIÁVEIS
   ========================================================================== */
:root {
    --win-blue: #007FFF;
    --text-main: #2c3e50;
    --jn-gold: #feb900;
}

/* ==========================================================================
   2. SECTION AGRO 
   ========================================================================== */
.agro-img-wrapper { position: relative; }

.agro-img-wrapper img {
    border-left: 8px solid var(--win-blue);
    transition: 0.5s ease-in-out;
}

.agro-img-wrapper:hover img { transform: scale(1.02); }

.stats-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--win-blue);
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,127,255,0.3);
}

.badge-title { font-size: 28px; font-weight: bold; display: block; line-height: 1; }
.badge-sub { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }

/* textos e titulos */
.text-accent { color: var(--win-blue); text-transform: uppercase; letter-spacing: 2px; font-weight: bold; margin-bottom: 15px; display: block; }
.section-title-agro { font-weight: bold; margin-bottom: 24px; color: var(--text-main); font-size: 2.5rem; line-height: 1.2; }
.text-blue { color: var(--win-blue); }
.section-description { font-size: 1.1rem; color: #6c757d; line-height: 1.6; margin-bottom: 30px; }

/* 2-1. COMPONENTES: BOTÃO 3D */
.btn-jn-3d {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 8px;
    position: relative;
    text-decoration: none;
    transition: all 0.1s ease;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    color: #ffffff !important;
    background: var(--win-blue);
    box-shadow: 0 6px 0 #0059b3, 0 8px 15px rgba(0,0,0,0.2);
    border-top: 1px solid rgba(255,255,255,0.3);
}

.btn-jn-3d i { font-size: 1.3rem; color: var(--jn-gold); }
.btn-jn-3d:hover { background: #0066cc; box-shadow: 0 6px 0 #004d99, 0 5px 10px rgba(0,0,0,0.15); transform: translateY(-1px); }
.btn-jn-3d:active { transform: translateY(4px); box-shadow: 0 2px 0 #004d99, 0 2px 5px rgba(0,0,0,0.2); background: #1a1a1a; border-top: none; }

/* 2-2. MOBILE E ANIMAÇÃO S1 */
@media (max-width: 991px) {
    .section-title-agro { font-size: 1.8rem; }
    .content-box { text-align: center; }
}

/* ==========================================================================
   3. SECTION AGRO-TECH (TECNOLOGIA RURAL)
   ========================================================================== */
.tech-card-jn {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #eee;
    height: 100%;
}

.tech-card-jn:hover {
    transform: translateY(-12px);
    border-color: var(--win-blue);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* 3-1. COMPONENTES: ÍCONES */
.icon-circle {
    width: 70px; height: 70px;
    background: #eef7ff;
    color: var(--win-blue);
    display: flex; align-items: center; justify-content: center;
    font-size: 30px; border-radius: 50%;
    margin: 0 auto 20px; transition: 0.3s;
}

.tech-card-jn:hover .icon-circle { background: var(--win-blue); color: #fff; transform: rotateY(360deg); }

/* 3-2. RESPONSIVIDADE S2 */
@media (max-width: 768px) {
    .tech-card-jn { padding: 25px 15px; margin-bottom: 10px; }
}