
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        }

        body {
            background-color: #000;
        }

        .card {
            max-width: 400px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .header {
    height: 200px;
    background: #1a1a1a;
    background-image: url(../img/banner.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    border-radius: 0px 0px 50% 50%;
    z-index: 1; /* Asegura que tenga menor prioridad */
}

.profile {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid white;
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3; /* Asegura que el círculo esté al frente */
    background: #fff;
    overflow: hidden;
}


        .profile img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 4;
        }

        .content {
            padding: 80px 20px 30px;
            text-align: center;
        }

        h1 {
            font-size: 24px;
            margin-bottom: 8px;
            color: #1a1a1a;
        }

        .title {
            font-size: 16px;
            color: #666;
            margin-bottom: 8px;
        }

        .subtitle {
            font-size: 14px;
            color: #8c8c8c;
            margin-bottom: 24px;
        }

        .button {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: #1a1a1a;
            color: white;
            padding: 12px 20px;
            border-radius: 50px;
            text-decoration: none;
            margin: 12px auto;
            width: 85%;
            font-size: 14px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .button:hover {
            background: #333;
            box-shadow: 0 0 0 3px #77cfe5;
            
        }

        .bank-info {
            margin-top: 30px;
            padding: 0 20px;
        }

        .bank-field {
            margin-bottom: 20px;
        }

        .bank-label {
            font-size: 12px;
            color: #666;
            text-align: left;
            display: block;
            margin-bottom: 8px;
        }

        .copy-container {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .bank-value {
            background: #f5f5f5;
            padding: 12px;
            border-radius: 8px;
            font-size: 14px;
            flex-grow: 1;
            border: 1px solid #ddd;
        }

        .copy-button {
            background: none;
            border: none;
            padding: 8px;
            cursor: pointer;
        }

        .copy-button img {
            width: 20px;
            height: 20px;
        }

        @media (max-width: 480px) {
            .card {
                margin: 0;
                border-radius: 0;
                min-height: 100vh;
            }
        }
  