/* public/css/landing.css */

:root {
    --ft-primary: #1e7e34;
    --ft-primary-dark: #155d25;
    --ft-secondary: #2c3e50;
    --ft-accent: #f1c40f;
    --ft-bg-light: #f8f9fa;
    --ft-text-dark: #2d3436;
}

.hero-section {
    position: relative;
    padding: 40px 0;
    overflow: hidden;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 126, 52, 0.9) 0%, rgba(44, 62, 80, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.pilar-card {
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.pilar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: var(--ft-bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--ft-primary);
    font-size: 2rem;
}

.section-title {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 40px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--ft-primary);
}

.tagline {
    color: var(--ft-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.9rem;
}

.feature-img {
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
}

.glass-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
}

.btn-ft {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-ft-primary {
    background: var(--ft-primary);
    color: white;
}

.btn-ft-primary:hover {
    background: var(--ft-primary-dark);
    color: white;
    transform: scale(1.05);
}
