/* === SECCIÓN DE SERVICIOS TECNOLÓGICOS Y CATÁLOGO DE PRODUCTOS === */
.tech-services {
    background: #ffffff;
    position: relative;
    padding: 80px 0;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tech-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 35px 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #2BAE66; /* var(--primary) */
    transform: scaleY(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: bottom;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    background: #ffffff;
    border-color: rgba(43, 174, 102, 0.15);
}

.tech-card:hover::before {
    transform: scaleY(1);
}

.tech-icon {
    font-size: 2.2rem;
    color: #2BAE66;
    margin-bottom: 20px;
}

.tech-card h3 {
    font-size: 1.3rem;
    color: #1A1A1A;
    margin-bottom: 12px;
    font-weight: 700;
}

.tech-card p {
    color: #555555;
    font-size: 0.98rem;
    line-height: 1.6;
}

/* --- Catálogo de Productos --- */
.product-catalog {
    background: #f8fafc;
    padding: 80px 0;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: rgba(43, 174, 102, 0.2);
}

.product-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 85%; /* Proporción imagen */
    background: #f8fafc;
    border-bottom: 1px solid #f1f5f9;
}

.product-img-wrapper img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrapper img {
    transform: translate(-50%, -50%) scale(1.08);
}

.product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-brand {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2BAE66;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-title {
    font-size: 1.1rem;
    color: #1A1A1A;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 48px;
}

.product-desc {
    font-size: 0.9rem;
    color: #555555;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.product-btn-quote {
    background: #2BAE66;
    color: white !important;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    width: 100%;
    justify-content: center;
}

.product-btn-quote:hover {
    background: #1E7E4A;
    transform: translateY(-1px);
}
