* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
}

    .section {
        padding: 60px 24px;
    }
        .hero {
            background-image: url('../img/EnviarDinero.png');
            background-size: cover;
            background-position: center;
            /* background-attachment: fixed; */
            /* min-height: 100vh; */
            position: relative;
            height: 100%;
            position: relative;
            align-items: center;
        }


            .logo {
                margin-top: 2rem;
                margin-left: 2rem;
            }
            
                .logo a {
                    display: inline-block;
                }
                
                    .logo img {
                        height: 50px;
                    }

            .cards {
                display: flex;
                flex-grow: 1;
                padding: 20px 50px;
                align-items: center;
                justify-content: center;
                gap: 80px;
                z-index: 2;
                position: relative;
                height: 100%;
                margin-bottom: 5%;
            }

                .left-section {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    gap: 2.5rem;
                    background: rgba(193, 193, 193, 0.42);
                    border-radius: 50px;
                    max-width: 30%;
                }

                    .balance-circle {
                        width: 280px;
                        height: 280px;
                        border-radius: 50%;
                        background: rgba(255, 255, 255, 0.1);
                        backdrop-filter: blur(10px);
                        border: 3px solid rgba(255, 255, 255, 0.2);
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        flex-direction: column;
                        position: relative;
                    }

                    .balance-circle::after {
                        content: '';
                        position: absolute;
                        width: 100%;
                        height: 100%;
                        border-radius: 50%;
                        border: 8px solid transparent;
                        border-top: 8px solid #ffffff1a;
                        border-right: 8px solid #ff8c42;
                        border-left: 8px solid #ffffff;
                        border-bottom: 8px solid #ff8c42;
                        transform: rotate(-45deg);
                        top: -8px;
                        left: -8px;
                    }

                        .balance-amount {
                            font-size: 48px;
                            font-weight: bold;
                            color: white;
                            margin-bottom: 5px;
                            z-index: 1;
                        }

                        .balance-label {
                            font-size: 18px;
                            color: rgba(255, 255, 255, 0.8);
                            z-index: 1;
                        }

                    .payment-card {
                        background: rgba(255, 255, 255, 0.95);
                        backdrop-filter: blur(10px);
                        border-radius: 50px;
                        padding: 30px;
                        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
                    }

                        .card-title {
                            font-size: 25px;
                            color: #666;
                            margin-bottom: 25px;
                            text-align: left;
                            font-family: 'Roboto', sans-serif;
                        }

                        .payment-item {
                            display: flex;
                            justify-content: space-between;
                            align-items: center;
                            margin-bottom: 20px;
                            padding: 5px 0;
                        }

                        .payment-item::before {
                            content: '•';
                            color: #ff8c42;
                            font-size: 20px;
                            margin-right: 15px;
                        }

                            .payment-label {
                                color: #666;
                                font-size: 16px;
                                flex: 1;
                            }

                            .payment-amount {
                                color: #666;
                                font-size: 16px;
                            }

                        .divider {
                            width: 100%;
                            height: 2px;
                            background: #ddd;
                            margin: 20px 0;
                        }

                        .total-row {
                            display: flex;
                            border: none;
                            color: #333;
                            justify-content: space-between;
                        }

                        .total-row::before {
                            content: '$';
                            font-size: 20px;
                            margin-right: 15px;
                        }

                            .total-row .payment-label {
                                color: #333;
                            }


                            .total-row .payment-amount {
                                color: #333;
                            }

                            
                .content-section {
                    color: white;
                    max-width: 100%;
                    display: flex;
                    flex-direction: column;
                    align-items: flex-start;
                }

                    .cta-button {
                        display: inline-block;
                        text-decoration: none;
                        background-color: #FFB164;
                        color: white;
                        padding: 15px 30px;
                        border: none;
                        border-radius: 15px;
                        font-weight: 600;
                        cursor: pointer;
                        margin-bottom: 120px;
                        margin-top: 160px;
                        transition: all 0.3s ease;
                        align-self: flex-start;
                    }

                    .cta-button:hover {
                        background-color: #ff8c42;
                        transform: translateY(-2px);
                        box-shadow: 0 5px 15px rgba(255, 140, 66, 0.3);
                    }

                    .main-title {
                        margin-bottom: 30px;
                        line-height: 1.2;
                        font-family: 'Gotham', sans-serif;
                        font-size: xx-large;
                    }

                    .description {
                        line-height: 1.6;
                        opacity: 0.9;
                        color: white;
                    }


    @media screen and (max-width: 1100px) {
        .logo img {
            height: 40px;
            margin-left: -16px;
            margin-top: -16px;
        }
        .left-section {
            gap: 2rem;
        }

            .balance-circle {
                width: 220px;
                height: 220px;
            }

                .balance-amount {
                    font-size: 36px;
                }
        
                .balance-label {
                    font-size: 14px;
                }

            .payment-card {
                padding: 1.5rem;
            }


    }


    @media screen and (max-width: 1050px) {
        .cards {
            flex-direction: column;
            align-items: center;
            gap: 3rem;
            padding: 2rem;
        }

            .left-section,
            .content-section {
                width: 100%;
                max-width: 500px;
            }

            .left-section {
                align-items: center;
            }

            .content-section {
                align-items: center;
            }

                .main-title {
                    font-size: 2rem;
                }

                .cta-button {
                    align-self: center;
                    margin: 2rem 0;
                }
    }

    @media (max-width: 768px) {
        .cards {
            flex-direction: column;
            gap: 40px;
            padding: 20px;
        }

            .left-section,
            .content-section {
                width: 100%;
            }

            .left-section {
                    max-width: 350px;
                }

            .content-section {
                text-align: center;
                align-items: center;
                margin-bottom: 60px;
            }

                .cta-button {
                    margin-bottom: 60px;
                    margin-top: 20px;
                    align-self: center;
                }
    }

    @media screen and (max-width: 480px) {
        .balance-circle {
            width: 200px;
            height: 200px;
        }

            .balance-amount {
                font-size: 32px;
            }

            .balance-label {
                font-size: 14px;
            }

        .card-title {
            font-size: 18px;
        }

        .payment-label,
        .payment-amount {
            font-size: 14px;
        }

        .main-title {
            font-size: 1.5rem;
        }

        .cta-button {
            font-size: 0.9rem;
        }
    }