/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 28 2026 | 20:56:33 */
.botao-costura{
    position: relative;
    border-radius: 60px;
    transition: transform .25s ease;
}

.botao-costura:before{
    content:"";
    position:absolute;
    inset:6px;
    border:2px dashed #fff;
    border-radius:60px;
    pointer-events:none;
    transition: all .25s ease;
}

/* animação grow */
.botao-costura:hover{
    transform: scale(1.08);
	box-shadow: 0 12px 24px rgba(255, 111, 181, 0.30);
}

/* mantém o tracejado proporcional */
.botao-costura:hover:before{
    inset:6px;
}