/* =========================================
   HERO LUMINOSO (AGRARIO)
========================================= */
.agrario-hero-light {
    position: relative;
    width: 100%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 0.9) 45%, rgba(255, 255, 255, 0) 100%),
        url("img/headeragrario1.webp") center/cover no-repeat;
    border-bottom: 1px solid #e2e8f0;
}

.hero-container {
    max-width: 1250px;
    width: 100%;
    margin: 0 auto;
    padding: 0 5%;
}

.hero-content {
    max-width: 650px;
    padding: 4rem 0;
}

.hero-eyebrow {
    color: var(--accent-premium);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.agrario-hero-light h1 {
    font-family: var(--font-headers);
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.agrario-hero-light h1 span {
    color: var(--accent-premium);
}

.agrario-hero-light p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* =========================================
   SECCIÓN INFORMACIÓN (DISEÑO PREMIUM)
========================================= */
.agrario-info {
    padding: 7rem 5%;
    background: #f8fafc;
}

.agrario-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

.agrario-texto h2 {
    font-family: var(--font-headers);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    line-height: 1.2;
}

.agrario-texto p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.agrario-img img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    object-fit: cover;
}

/* =========================================
   PORTAFOLIO DE SERVICIOS (DISEÑO EDITORIAL)
========================================= */
.agrario-servicios {
    padding: 7rem 5%;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-family: var(--font-headers);
    font-size: 2.8rem;
    color: var(--text-main);
    margin-bottom: 10px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.servicio-showcase {
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.4s ease;
}

.servicio-showcase:hover {
    transform: translateY(-10px);
}

.showcase-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    height: 300px;
    z-index: 1;
}

.showcase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.servicio-showcase:hover .showcase-img img {
    transform: scale(1.05);
}

.showcase-panel {
    background: #ffffff;
    margin: -50px 20px 0 20px;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    position: relative;
    z-index: 2;
    border-top: 3px solid var(--accent-premium);
    flex-grow: 1;
}

.badge-agrario {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--accent-premium);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.showcase-panel h3 {
    color: var(--text-main);
    margin-bottom: 12px;
    font-size: 1.4rem;
    font-weight: 700;
}

.showcase-panel p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =========================================
   CONDICIONES FINANCIERAS (TARJETAS LIMPIAS)
========================================= */
.agrario-condiciones {
    padding: 6rem 5%;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.condiciones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.condicion-item {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border-top: 4px solid var(--accent-premium);
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
    text-align: center;
    transition: transform 0.3s ease;
}

.condicion-item:hover {
    transform: translateY(-5px);
}

.condicion-item i {
    font-size: 2.5rem;
    color: var(--accent-premium);
    margin-bottom: 1.5rem;
}

.condicion-item h4 {
    color: var(--text-main);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.condicion-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =========================================
   RESPONSIVIDAD
========================================= */
@media (max-width: 992px) {
    .agrario-hero-light {
        background:
            linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.95)),
            url("img/headeragrario1.webp") center/cover no-repeat;
        text-align: center;
    }
    .hero-content {
        margin: 0 auto;
    }
    .agrario-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .agrario-hero-light h1 {
        font-size: 2.6rem;
    }
    .servicios-grid {
        grid-template-columns: 1fr;
    }
    .condicion-item {
        padding: 2rem 1.5rem;
    }
}