/* SECCIÓN POR QUÉ ELEGIRNOS */
#closing-arguments {
    background-color: #f9f9f9;
    padding: 80px 20px;
}

.confidence-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.confidence-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.07);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.confidence-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.confidence-card .icon-container {
    height: 60px;
    width: 60px;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.confidence-card .icon-container img {
    height: 60px;
    width: 60px;
}

.confidence-card h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #333;
}

.confidence-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    max-width: 100%;
}

#closing-arguments .btn-outline-red {
    margin: 40px auto 0 auto;
}

@media (max-width: 992px) {
    .confidence-grid {
        grid-template-columns: 1fr;
    }
    .confidence-card h4 {
        font-size: 1.0rem;
    }
}