﻿* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    margin-top: 120px;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    /*background: url("/assets/images/bkgindex.jpg");
    background-size: cover;*/
}

.containerCash {
    position: relative;
    margin: 20px auto 40px;
    width: 90%;
    max-width: 700px;
    font-family: "Arial", sans-serif;
    background-color: #efd869;
    border: solid 1px;
    padding: 20px;
    border-radius: 10px;
    font-size: 12px;
}

    .containerCash a {
        position: relative;
        padding: 10px 30px;
        margin: 0 15px;
        color: #BA4A00;
        text-decoration: none;
        font-size: 20px;
        letter-spacing: 2px;
        overflow: hidden;
        transition: 0.5s;
    }
    .containerCash a:hover{
        background: #BA4A00;
        color: #111;
        box-shadow: 0 0 50px #BA4A00;
        transition-delay: 0.2s;
    }
    .containerCash a:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 10px;
        height: 10px;
        border-top: 2px solid #BA4A00;
        border-left: 2px solid #BA4A00;
        transition: 0.5s;
    }
    .containerCash a:hover:before {
        width: 100%;
        height: 100%;
    }
    .containerCash a:after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 10px;
        height: 10px;
        border-bottom: 2px solid #BA4A00;
        border-right: 2px solid #BA4A00;
        transition: 0.5s;
    }
    .containerCash a:hover::after {
        width: 100%;
        height: 100%;
    }

.containerCashLogin {
    position: relative;
    margin: 0 auto 60px;
    top: 10px;
    width: 90%;
    max-width: 700px;
    font-family: "Gayathri", sans-serif;
    background-color: #ccc;
    border: solid;
    padding: 20px;
    border-radius: 8px;
}

section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 100vh;
}

.TopContainer {
    padding-left: 30px;
    height: 85px;
    background: #3498DB;
    color: #efd869;
    justify-content: left;
    align-items: center;
}
.TopContainer li {
    font-size: 12px;
    color: #fff;
}

.containerMain {
    position: relative;
    margin: 10px auto;
    width: 900px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(205px, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
    gap: 5px;
}

    .containerMain .content p {
        margin-top: 10px;
        text-align: center;
    }

    .containerMain .cardItem {
        position: relative;
        width: 200px;
        height: 300px;
        margin: 0 auto;
        background: #fff;
        -webkit-transition: 0.5s;
        transition: 0.5s;
    }

        .containerMain .cardItem .face {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
        }

            .containerMain .cardItem .face.face1 {
                -webkit-box-sizing: border-box;
                box-sizing: border-box;
                padding: 10px;
                text-align: center;
                background: #fff;
                color: #013d4a;
            }

                .containerMain .cardItem .face.face1 h2 {
                    margin-top: 65px;
                    font-size: 20px;
                }

                .containerMain .cardItem .face.face1 a {
                    display: inline-block;
                    padding: 5px 10px;
                    margin-top: 15px;
                    text-decoration: none;
                    border: 2px solid #013d4a;
                    color: #013d4a;
                }

                    .containerMain .cardItem .face.face1 a:hover {
                        color: #fff;
                        background: #013d4a;
                    }

            .containerMain .cardItem .face.face2 {
                background: url("../img/RoseCash.jpg");
                -webkit-transition: 0.5s;
                transition: 0.5s;
            }

                .containerMain .cardItem .face.face2 h2 {
                    margin: 0;
                    padding: 0;
                    font-size: 2em;
                    color: #000;
                    -webkit-transition: 0.5s;
                    transition: 0.5s;
                }

        .containerMain .cardItem:hover {
            -webkit-box-shadow: 0 30rgb 100, 100, 100 0px rgba(0, 0, 0, 0.2);
            box-shadow: 0 30rgb 100, 100, 100 0px rgba(0, 0, 0, 0.2);
        }

            .containerMain .cardItem:hover .face.face2 {
                height: 80px;
                width: 80px;
                border-radius: 50%;
                top: 10px;
                left: 50%;
                -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
                background: url("../img/RoseCash_sm.jpg");
                background-size: cover;
                border: 2px solid #013d4a;
            }

                .containerMain .cardItem:hover .face.face2 h2 {
                    color: #013d4a;
                    font-size: 0.9em;
                }







    .containerMain .cardVip {
        position: relative;
        width: 200px;
        height: 300px;
        margin: 0 auto;
        background: #fff;
        -webkit-transition: 0.5s;
        transition: 0.5s;
    }

        .containerMain .cardVip .faceVip {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
        }
        .containerMain .cardVip .faceVip.face3 {
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            padding: 10px;
            text-align: center;
            background: #fff;
            color: #013d4a;
        }

            .containerMain .cardVip .faceVip.face3 h2 {
                margin-top: 65px;
                font-size: 20px;
            }

            .containerMain .cardVip .faceVip.face3 a {
                display: inline-block;
                padding: 5px 10px;
                margin-top: 15px;
                text-decoration: none;
                border: 2px solid #013d4a;
                color: #013d4a;
            }

                .containerMain .cardVip .faceVip.face3 a:hover {
                    color: #fff;
                    background: #013d4a;
                }

            .containerMain .cardVip .faceVip.face4 {
                background: url("../img/RoseVIP.jpg");
                -webkit-transition: 0.5s;
                transition: 0.5s;
            }

                .containerMain .cardVip .faceVip.face4 h2 {
                    margin: 0;
                    padding: 0;
                    font-size: 2em;
                    color: #000;
                    -webkit-transition: 0.5s;
                    transition: 0.5s;
                }

        .containerMain .cardVip:hover {
            -webkit-box-shadow: 0 30rgb 100, 100, 100 0px rgba(0, 0, 0, 0.2);
            box-shadow: 0 30rgb 100, 100, 100 0px rgba(0, 0, 0, 0.2);
        }

            .containerMain .cardVip:hover .faceVip.face4 {
                height: 80px;
                width: 80px;
                border-radius: 50%;
                top: 10px;
                left: 50%;
                -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
                background: url("../img/RoseVIP.png");
                background-size: cover;
                border: 2px solid #013d4a;
            }

                .containerMain .cardVip:hover .faceVip.face4 h2 {
                    color: #013d4a;
                    font-size: 0.9em;
                }




/* Donation Index */

.donation-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px;
    max-width: 800px;
    width: 100%;
    margin-bottom: 80px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cabeçalho */
.donation-header {
    text-align: center;
    margin-bottom: 30px;
}

    .donation-header h1 {
        font-size: 2rem;
        font-weight: 600;
        margin-bottom: 10px;
        color: #fff;
    }

    .donation-header p.subtitle {
        color: rgba(255, 255, 255, 0.8);
        font-size: 1.1rem;
    }

/* Conteúdo */
.donation-content p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

/* Botão Donation */
.donate-btn-container {
    text-align: center;
    margin-top: 30px;
}

.donate-btn {
    display: inline-block;
    background: #fff59d;
    color: black;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

    .donate-btn:hover {
        transform: translateY(-2px);
    }

/* Botão VIP*/
.btnVip {
    position: relative;
    padding: 10px 30px;
    margin: 0 15px;
    color: #BA4A00;
    text-decoration: none;
    font-size: 20px;
    letter-spacing: 2px;
    overflow: hidden;
    transition: 0.5s;
}

    .btnVip:hover {
        background: #BA4A00;
        color: #efd869;
        box-shadow: 0 0 50px #BA4A00;
        transition-delay: 0.2s;
    }

    .btnVip:before {
        color: #efd869;
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 10px;
        height: 10px;
        border-top: 2px solid #BA4A00;
        border-left: 2px solid #BA4A00;
        transition: 0.5s;
    }

    .btnVip:hover:before {
        width: 100%;
        height: 100%;
    }

    .btnVip:after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 10px;
        height: 10px;
        border-bottom: 2px solid #BA4A00;
        border-right: 2px solid #BA4A00;
        transition: 0.5s;
    }

    .btnVip:hover::after {
        width: 100%;
        height: 100%;
    }

/* Responsivo */
@media (max-width: 768px) {
    .donation-card {
        padding: 30px 20px;
    }

    .donation-header h1 {
        font-size: 1.8rem;
    }
}
