/* Efeito de Giro 3D Robusto */
.carteirinha-wrapper {
    background-color: transparent;
    width: 326px;
    height: 204px;
    perspective: 1000px;
    cursor: pointer;
    margin: 0 auto 20px;
}

.carteirinha-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.carteirinha-wrapper.flipped .carteirinha-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 326px !important;
    height: 204px !important;
    -webkit-backface-visibility: hidden !important;
    backface-visibility: hidden !important;
    margin: 0 !important;
}

.card-front {
    z-index: 2;
    transform: rotateY(0deg);
}

.card-back {
    z-index: 1;
    transform: rotateY(180deg);
}

/* Botão Premium Baixar PDF */
.araucoop-btn-premium {
    cursor: pointer;
    margin: 15px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
}

.araucoop-btn-premium:hover {
    transform: translateY(-2px);
}

.araucoop-btn-premium:active {
    transform: translateY(1px);
}

.araucoop-btn-premium svg {
    transition: transform 0.3s ease;
}

.araucoop-btn-premium:hover svg {
    transform: translateY(2px);
}
