/* Hero Section */
.hero-donaciones {
    height: 400px;
    background: linear-gradient(135deg, #C1272D 0%, #F26522 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    text-align: center;
    color: white;
    z-index: 2;
}

.hero-donaciones h1 {
    font-size: 52px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-donaciones p {
    font-size: 22px;
    opacity: 0.95;
}

/* Introducción */
.intro-donaciones {
    padding: 80px 0;
    background: white;
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #C1272D 0%, #F26522 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    margin: 0 auto 30px;
}

.intro-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.intro-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* Sección Uso de Donaciones */
.uso-donaciones-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.underline {
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    margin: 0 auto;
    border-radius: 2px;
}

.uso-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.uso-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.uso-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.uso-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1C3A4E 0%, #009E5E 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    margin: 0 auto 20px;
}

.uso-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.uso-porcentaje {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.uso-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

/* Métodos de Donación */
.metodos-donacion-section {
    padding: 80px 0;
    background: white;
}

.metodos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.metodo-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.metodo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.metodo-header {
    background: var(--bg-light);
    padding: 30px;
    text-align: center;
    border-bottom: 3px solid var(--accent-color);
}

.banco-logo, .paypal-logo {
    height: 50px;
    object-fit: contain;
    margin-bottom: 15px;
}

.qr-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.qr-logo {
    height: 45px;
    object-fit: contain;
}

.separador {
    font-size: 30px;
    color: var(--text-light);
}

.metodo-header h3 {
    font-size: 24px;
    color: var(--primary-color);
}

.metodo-body {
    padding: 30px;
}

.dato-bancario {
    margin-bottom: 20px;
}

.dato-bancario label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
}

.dato-bancario span {
    display: block;
    font-size: 16px;
    color: var(--text-dark);
}

.cuenta-copiar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-light);
    padding: 12px 15px;
    border-radius: 10px;
}

.cuenta-copiar span {
    flex: 1;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 16px;
}

.btn-copiar {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-copiar:hover {
    background: var(--orange-color);
}

.qr-body {
    text-align: center;
}

.qr-container {
    margin-bottom: 25px;
}

.qr-image {
    max-width: 280px;
    width: 100%;
    border: 3px solid var(--primary-color);
    border-radius: 15px;
    padding: 10px;
    background: white;
}

.qr-nombre-org {
    margin-top: 20px;
    padding: 15px 20px;
    background: var(--bg-light);
    border-radius: 10px;
}

.qr-nombre-org p:first-child {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.qr-nombre-org p:last-child {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.qr-numero {
    margin-top: 20px;
}

.qr-numero label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 10px;
}

.paypal-body {
    text-align: center;
}

.paypal-body p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.paypal-info {
    margin-bottom: 25px;
}

.btn-paypal {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0070BA;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-paypal:hover {
    background: #005a94;
    transform: scale(1.05);
}

.metodo-footer {
    background: var(--bg-light);
    padding: 15px 30px;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.metodo-footer p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.metodo-footer i {
    color: var(--accent-color);
    margin-right: 5px;
}

/* Donación Rápida */
.donacion-rapida-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1C3A4E 0%, #009E5E 100%);
}

.donacion-rapida-content {
    text-align: center;
    color: white;
}

.donacion-rapida-content h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.donacion-rapida-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.montos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.monto-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
    padding: 20px;
    border-radius: 15px;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.monto-btn:hover, .monto-btn.active {
    background: white;
    color: var(--primary-color);
    transform: scale(1.05);
}

.monto-custom input {
    width: 100%;
    padding: 20px;
    border: 2px solid white;
    border-radius: 15px;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    background: rgba(255,255,255,0.2);
    color: white;
}

.monto-custom input::placeholder {
    color: rgba(255,255,255,0.8);
}

.btn-donar-ahora {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-donar-ahora:hover {
    background: var(--orange-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Testimonios */
.testimonios-donantes-section {
    padding: 80px 0;
    background: white;
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonio-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.testimonio-comillas {
    font-size: 40px;
    color: var(--accent-color);
    opacity: 0.3;
    margin-bottom: 20px;
}

.testimonio-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 25px;
}

.testimonio-autor strong {
    display: block;
    color: var(--primary-color);
    font-size: 17px;
    margin-bottom: 5px;
}

.testimonio-autor span {
    font-size: 14px;
    color: var(--text-light);
}

/* CTA Final */
.cta-donacion-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto 50px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-dark);
    text-align: center;
}

.btn-cta-grande {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #C1272D 0%, #F26522 100%);
    color: white;
    padding: 22px 55px;
    border-radius: 50px;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(193, 39, 45, 0.3);
}

.btn-cta-grande:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(193, 39, 45, 0.4);
}

/* Contacto Donaciones */
.contacto-donaciones-section {
    padding: 60px 0;
    background: white;
    border-top: 1px solid var(--border-color);
}

.contacto-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contacto-content i {
    font-size: 60px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.contacto-content h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contacto-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.contacto-opciones {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-contacto {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-contacto.whatsapp {
    background: #25D366;
    color: white;
}

.btn-contacto.whatsapp:hover {
    background: #1da851;
    transform: translateY(-3px);
}

.btn-contacto.email {
    background: var(--primary-color);
    color: white;
}

.btn-contacto.email:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-donaciones h1 {
        font-size: 36px;
    }
    
    .metodos-grid {
        grid-template-columns: 1fr;
    }
    
    .montos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-stats {
        grid-template-columns: 1fr;
    }
    
    .contacto-opciones {
        flex-direction: column;
    }
    
    .btn-contacto {
        width: 100%;
        justify-content: center;
    }
}