.elementor-1240 .elementor-element.elementor-element-c65ef70{--display:flex;overflow:visible;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-1240 .elementor-element.elementor-element-c65ef70{--content-width:1226px;}}/* Start custom CSS for html, class: .elementor-element-73f40b1 *//* Contenedor Principal */
.donation-cards-container-wp {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 50px auto;
    max-width: 1200px;
    padding: 0 20px;
}

/* Tarjetas de Donación */
.donation-card-wp {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    padding: 40px 30px;
    width: 300px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Contenedor de íconos (NUEVO) */
.icon-circle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

/* Íconos SVG (SOLUCIÓN DEFINITIVA) */
.icon-circle img,
.icon-circle svg {
    width: 100px !important; /* Tamaño reducido 50% */
    height: 100px !important;
    max-width: 100%;
    object-fit: contain;
}

/* Texto */
.donation-card-wp h2 {
    color: #2c3e50;
    font-size: 22px;
    margin-bottom: 30px;
    font-weight: 700;
    flex-grow: 1;
}

/* Botón */
.donate-btn-wp {
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    max-width: 200px;
}

.donate-btn-wp:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

/* Colores de énfasis */
.credit-card-wp {
    border-top: 5px solid #1a1f71; /* Azul Visa */
}

.paypal-card-wp {
    border-top: 5px solid #003087; /* Azul PayPal */
}

.bank-transfer-wp {
    border-top: 5px solid #27ae60; /* Verde */
}

/* Responsive */
@media (max-width: 900px) {
    .donation-cards-container-wp {
        gap: 25px;
    }
    
    .donation-card-wp {
        width: 280px;
    }
}

@media (max-width: 600px) {
    .donation-cards-container-wp {
        flex-direction: column;
        align-items: center;
    }
    
    .donation-card-wp {
        width: 100%;
        max-width: 350px;
    }
}/* End custom CSS */