/* Stylesheet for Software Éxito Ganadero - DronAgro */
.soft-section {
    padding: 20px 24px 80px 24px;
    background-color: #ffffff;
}

.soft-container {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    align-items: center;
}

.soft-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.soft-back-link {
    text-decoration: none;
    color: #dc2626;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    transition: color 0.2s ease;
}

.soft-back-link:hover {
    color: #b91c1c;
}

.soft-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #15803d; /* Verde Agro Profundo */
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.soft-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 20px 0;
    line-height: 1.25;
}

.soft-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.65;
    margin: 0 0 28px 0;
}

.soft-subtitle-features {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.soft-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.soft-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #374151;
    font-weight: 500;
}

.soft-check-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: #dcfce7;
    color: #15803d;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.soft-check-icon svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.soft-media {
    width: 100%;
    display: flex;
    justify-content: center;
}

.soft-card {
    background-color: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    padding: 12px;
    max-width: 380px;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.soft-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.soft-img-portrait {
    width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: contain;
    display: block;
    border-radius: 16px;
}

/* Gallery Grid */
.soft-gallery-wrapper {
    margin-top: 60px;
}

.soft-gallery-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 28px;
    text-align: center;
}

.soft-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.soft-gallery-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.soft-gallery-card:hover {
    transform: scale(1.02);
}

.soft-gallery-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

@media (max-width: 992px) {
    .soft-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .soft-section {
        padding: 60px 20px;
    }
    .soft-title {
        font-size: 1.8rem;
    }
}
