.bg-masculino {
    background: #2196f3;
}

.bg-feminino {
    background: #e8398d;
}

.mascote-box {
    position: relative;
    border: 2px solid #f4a300;
    border-radius: 16px;
    padding: 40px 20px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);

}


.mascote-img-box {
    position: relative;
    display: inline-block;
}

.mascote-shape {
    background: #f4a300;
    border-radius: 50%;
    padding: 12px;
    display: inline-block;
}

.mascote-shape img {
    border-radius: 50%;
    width: 100%;
    max-width: 268px;
    height: auto;
}

/* Agora o label fica sobre a foto */
.mascote-label {
    position: absolute;
    bottom: 10px;
    /* distancia da parte inferior */
    left: 50%;
    /* centralizar */
    transform: translateX(-50%) rotate(-3deg);

    color: #fff;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 2.5rem;
    white-space: nowrap;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

/* Botões */
.mascote-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #f4a300;
    color: #fff;
    font-size: 1.2rem;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.mascote-btn:hover {
    background: #d68a00;
    transform: translateY(-50%) scale(1.1);
}

.mascote-btn-left {
    left: 10px;

}

.mascote-btn-right {
    right: 10px;
}


/* Mobile */
@media (max-width: 768px) {
    .mascote-box {
        padding: 25px 15px;
    }

    .mascote-btn-left {
        left: 5px;
    }

    .mascote-btn-right {
        right: 5px;
    }

    .mascote-shape img {
        max-width: 200px;
    }

    .mascote-label {
        font-size: 1rem;
    }
}