/* Estilos para página de donaciones */
.donate-hero {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 4rem;
}

.donate-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.donate-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.donate-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #e0e0e0;
    font-weight: 300;
}

.wallets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    justify-content: center;
}

.wallet-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(100, 181, 246, 0.2);
    transition: all 0.3s ease;
    text-align: left;
}

.wallet-card:hover {
    transform: translateY(-5px);
    border-color: rgba(100, 181, 246, 0.5);
    box-shadow: 0 10px 30px rgba(100, 181, 246, 0.2);
}

.wallet-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(100, 181, 246, 0.2);
}

.wallet-header i {
    font-size: 2rem;
    color: #64b5f6;
}

.crypto-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.wallet-header h3 {
    color: #64b5f6;
    margin: 0;
    font-size: 1.3rem;
}

.address-label {
    color: #e0e0e0;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.address-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(100, 181, 246, 0.2);
    margin-bottom: 1rem;
}

.wallet-code {
    flex: 1;
    color: #ffffff;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    word-break: break-all;
    background: none;
    border: none;
    padding: 0;
}

.copy-btn {
    background: rgba(100, 181, 246, 0.2);
    border: 1px solid rgba(100, 181, 246, 0.3);
    color: #64b5f6;
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.copy-btn:hover {
    background: rgba(100, 181, 246, 0.3);
    transform: scale(1.05);
}

.minimum-amount {
    color: #ffa726;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

.thank-you-section {
    margin-bottom: 3rem;
}

.thank-you-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #64b5f6;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.reason-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(100, 181, 246, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-3px);
    border-color: rgba(100, 181, 246, 0.4);
}

.reason-item i {
    font-size: 2.5rem;
    color: #64b5f6;
    margin-bottom: 1rem;
}

.reason-item h4 {
    color: #64b5f6;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.reason-item p {
    color: #e0e0e0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.back-link {
    margin-top: 3rem;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(100, 181, 246, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(100, 181, 246, 0.2);
}

/* Responsive para página de donaciones */
@media (max-width: 768px) {
    .donate-content h1 {
        font-size: 2.2rem;
    }
    
    .donate-subtitle {
        font-size: 1.1rem;
    }
    
    .wallets-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .wallet-card {
        padding: 1.5rem;
    }
    
    .address-container {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .copy-btn {
        align-self: center;
        width: fit-content;
    }
}

@media (max-width: 480px) {
    .donate-hero {
        padding-top: 100px;
    }
    
    .donate-content h1 {
        font-size: 1.8rem;
    }
    
    .wallet-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }
    
    .wallet-header h3 {
        font-size: 1.1rem;
    }
}
