﻿.trust-section {
    padding: 50px 0;
    background: #ffffff;
}

/* HEADER */
.trust-header h2 {
    font-size: clamp(2rem, 4vw, 2.4rem);
    font-weight: 800;
    color: #0f172a;
}

.trust-header p {
    margin-top: 12px;
    font-size: 1.05rem;
    color: #475569;
}

/* CARD */
.trust-card {
    height: 100%;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 40px 28px;
    text-align: center;
    transition: all 0.3s ease;
}

    /* ICONO */
    .trust-card i {
        font-size: 2.2rem;
        color: #2563eb;
        margin-bottom: 18px;
    }

    /* TITULO */
    .trust-card h4 {
        font-size: 1.1rem;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 10px;
    }

    /* TEXTO */
    .trust-card p {
        font-size: 0.95rem;
        color: #6b7280;
        line-height: 1.5;
    }

    /* HOVER */
    .trust-card:hover {
        background: #ffffff;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
        transform: translateY(-4px);
    }

/* RESPONSIVE */
@media (max-width: 991px) {
    .trust-header {
        text-align: center;
    }
}
