/* ===================================
   GENERAL
=================================== */



/* ===================================
   HERO
=================================== */

.agro-hero{
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to right,#F6F1E8,#ffffff);
}

.agro-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* ===================================
   TEXT
=================================== */

.agro-badge{
    display: inline-block;
    background: rgba(61,96,58,0.1);
    color: #3D603A;
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 25px;
}

.agro-title{
    font-size: 78px;
    line-height: 1;
    color: #7A1220;
    font-weight: 800;
    margin-bottom: 25px;
}

.agro-description{
    font-size: 18px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 40px;
    max-width: 620px;
}

/* ===================================
   BUTTONS
=================================== */

.agro-buttons{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-agro-primary{
    background: linear-gradient(to right,#7A1220,#A11327);
    color: white;
    padding: 16px 32px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.btn-agro-primary:hover{
    transform: translateY(-4px);
    color: white;
    text-decoration: none;
    box-shadow: 0 15px 30px rgba(122,18,32,0.25);
}

.btn-agro-secondary{
    border: 2px solid #3D603A;
    color: #3D603A;
    padding: 16px 32px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.btn-agro-secondary:hover{
    background: #3D603A;
    color: white;
    text-decoration: none;
}

/* ===================================
   STATS
=================================== */

.agro-stats{
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.agro-stat h3{
    font-size: 42px;
    color: #7A1220;
    margin-bottom: 8px;
    font-weight: 800;
}

.agro-stat p{
    color: #666;
    margin: 0;
}

/* ===================================
   PHONE
=================================== */

.agro-phone-section{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-wrapper{
    position: relative;
    z-index: 5;
}

.phone-image{
    width: 100%;
    max-width: 420px;
    animation: floatPhone 5s ease-in-out infinite;
    filter: drop-shadow(0 25px 45px rgba(0,0,0,0.25));
}

/* ===================================
   BLUR EFFECTS
=================================== */

.blur-circle{
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.blur-red{
    width: 250px;
    height: 250px;
    background: rgba(122,18,32,0.25);
    top: 10%;
    right: 10%;
}

.blur-green{
    width: 220px;
    height: 220px;
    background: rgba(61,96,58,0.25);
    bottom: 10%;
    left: 10%;
}

/* ===================================
   FLOAT
=================================== */

@keyframes floatPhone{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-14px);
    }

    100%{
        transform: translateY(0px);
    }

}

/* ===================================
   SECTION HEADER
=================================== */

.section-header{
    text-align: center;
    margin-bottom: 70px;
}

.section-header span{
    color: #3D603A;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2{
    font-size: 48px;
    color: #7A1220;
    margin-top: 14px;
    font-weight: 800;
}

.section-header.white span,
.section-header.white h2{
    color: white;
}

/* ===================================
   MODULES
=================================== */

.agro-modules{
    padding: 100px 0;
    background: white;
}

.modules-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 28px;
}

.module-card{
    background: #fff;
    border-radius: 28px;
    padding: 40px 30px;
    text-align: center;
    transition: .3s;
    border: 1px solid #eee;
}

.module-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.module-icon{
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 24px;
    background: rgba(61,96,58,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #3D603A;
    font-size: 34px;
    margin-bottom: 24px;
}

.module-card h4{
    font-size: 24px;
    color: #7A1220;
    margin-bottom: 12px;
    font-weight: 700;
}

.module-card p{
    color: #666;
    line-height: 1.8;
}

/* ===================================
   BENEFITS
=================================== */

.agro-benefits{
    padding: 100px 0;
    background: linear-gradient(to right,#7A1220,#3D603A);
}

.benefits-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 28px;
}

.benefit-card{
    background: rgba(255,255,255,0.08);
    border-radius: 28px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: .3s;
}

.benefit-card:hover{
    transform: translateY(-6px);
    background: rgba(255,255,255,0.12);
}

.benefit-card i{
    font-size: 42px;
    color: white;
    margin-bottom: 24px;
}

.benefit-card h4{
    color: white;
    margin-bottom: 14px;
    font-size: 24px;
}

.benefit-card p{
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:992px){

    .agro-grid{
        grid-template-columns: 1fr;
        text-align: center;
    }

    .agro-description{
        margin: auto auto 40px;
    }

    .agro-buttons,
    .agro-stats{
        justify-content: center;
    }

    .modules-grid{
        grid-template-columns: repeat(2,1fr);
    }

    .benefits-grid{
        grid-template-columns: 1fr;
    }

}

@media(max-width:768px){

    .agro-title{
        font-size: 48px;
    }

    .section-header h2{
        font-size: 34px;
    }

    .modules-grid{
        grid-template-columns: 1fr;
    }

    .phone-image{
        max-width: 300px;
    }

    .agro-hero,
    .agro-modules,
    .agro-benefits{
        padding: 70px 0;
    }

}