/* Estilos para la página de donaciones */
.stats-section {
    background: linear-gradient(135deg, #dc3545 0%, #6f42c1 100%);
    padding: 60px 0;
    margin: 40px 0;
    border-radius: 15px;
    color: white;
}

.stats-section .stats-title {
    color: white;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    font-weight: bold;
}

.stats-section .stat-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-section .stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    display: block;
    margin-bottom: 10px;
}

.stats-section .stat-label {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
}

.how-works-section {
    padding: 60px 0;
    margin: 40px 0;
}

.how-works-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 50px;
    color: #333;
}

.step-item {
    text-align: center;
    padding: 30px 20px;
}

.step-icon-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%; /* Hace la imagen redonda */
    border: 3px solid #fff; /* Opcional: borde blanco para mejor contraste */
    box-shadow: 0 2px 8px rgba(0,0,0,0.08); /* Opcional: sombra suave */
}

.step-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.step-description {
    color: #666;
    line-height: 1.6;
}

.why-donate-section {
    padding: 60px 0;
    background: #f8f9fa;
    margin: 40px 0;
    border-radius: 15px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 50px;
    color: #333;
}

.commitment-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
}

.commitment-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.commitment-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dc3545 0%, #6f42c1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.commitment-content h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.commitment-content p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.donation-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
}

.donation-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 5px solid #dc3545;
}

.donation-amount {
    font-size: 2rem;
    font-weight: bold;
    color: #dc3545;
    margin-bottom: 10px;
}

.donation-item-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.donation-description {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.cta-section {
    background: linear-gradient(135deg, #dc3545 0%, #6f42c1 100%);
    padding: 60px 0;
    margin: 40px 0;
    border-radius: 15px;
    color: white;
    text-align: center;
}

.cta-section .cta-title {
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.cta-section .cta-subtitle {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-section .btn-donate {
    background: white;
    color: #dc3545;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.cta-section .btn-donate:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-section .cta-note {
    color: white;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .stats-section .stat-box {
        margin-bottom: 20px;
    }
    
    .commitment-item {
        flex-direction: column;
        text-align: center;
    }
    
    .commitment-icon {
        margin: 0 auto 15px;
    }
    
    .step-item {
        margin-bottom: 30px;
    }
}

/* ...existing code... */

/* Sección Header - AGREGAR ESTO */
.header-section {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin-bottom: 40px;
    border-radius: 15px;
}

.heart-icon {
    margin-bottom: 30px;
    font-size: 4rem;
    color: #dc3545;
}

.main-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.highlight-red {
    color: #dc3545;
}

.highlight-blue {
    color: #007bff;
}

.main-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Iconos para estadísticas - AGREGAR ESTO */
.stats-section .stat-icon {
    margin-bottom: 15px;
    font-size: 2rem;
    color: white;
}

/* Iconos para tarjetas de donación - AGREGAR ESTO */
.donation-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 5px solid #dc3545;
    position: relative; /* AGREGAR ESTO */
}

.donation-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #dc3545;
    font-size: 1.5rem;
}

/* Botón de donación mejorado - AGREGAR ESTO */
.cta-section .btn-donate {
    background: white;
    color: #dc3545;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    display: inline-flex; /* AGREGAR ESTO */
    align-items: center; /* AGREGAR ESTO */
    gap: 8px; /* AGREGAR ESTO */
}

/* Secciones originales del sistema - AGREGAR ESTO */
.texto-section {
    padding: 40px 0;
}

.imagen-section {
    padding: 40px 0;
    text-align: center;
}

.image-caption {
    margin-top: 15px;
    font-style: italic;
    color: #666;
}

.html-section {
    padding: 40px 0;
}

.embed-section {
    padding: 40px 0;
}

.youtube-section {
    padding: 40px 0;
}

.footer-spacer {
    height: 50px;
}

/* Responsive mejorado - AGREGAR ESTO */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .stats-section .stat-box {
        margin-bottom: 20px;
    }
    
    .commitment-item {
        flex-direction: column;
        text-align: center;
    }
    
    .commitment-icon {
        margin: 0 auto 15px;
    }
    
    .step-item {
        margin-bottom: 30px;
    }
    
    .donation-icon {
        position: static;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .heart-icon {
        font-size: 3rem;
    }
    
    .main-description {
        font-size: 1rem;
        padding: 0 20px;
    }
}