.elementor-kit-9{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-639383eb:#4054B2;--e-global-color-6d50e2a9:#23A455;--e-global-color-197991b5:#000;--e-global-color-4edae7a8:#FFF;--e-global-color-83cd980:#FFC100;--e-global-color-afb05b8:#131313;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-9 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Estilos da roleta */
.roleta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

.roleta-wrapper {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 30px;
}

.roleta {
    width: 100%;
    height: auto;
    transition: transform 4s cubic-bezier(0.32, 0.94, 0.60, 1);
    transform-origin: center;
}

.ponteiro-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 15%;
}

.ponteiro {
    width: 100%;
    height: auto;
}

/* Botão de girar */
.girar-btn {
    background: linear-gradient(to bottom, #4ade80 0%, #22c55e 100%);
    color: #000;
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    font-size: 24px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-top: 20px;
    letter-spacing: 1px;
    width: 100%;
    max-width: 360px;
}

.girar-btn:hover {
    background: linear-gradient(to bottom, #4ade80 0%, #16a34a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.girar-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Estilos do modal */
.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: auto;
    animation: fadeIn 0.5s;
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    animation: slideIn 0.5s;
}

.fechar-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.fechar-modal:hover {
    color: #333;
}

.modal-content h2 {
    color: #e53e3e;
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 1.3;
}

.modal-content p {
    color: #333;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.5;
}

.finalizar-btn {
    background-color: #04b531;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.finalizar-btn:hover {
    background-color: #01c935;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Container para confetes */
#confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 90;
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Responsividade */
@media (max-width: 768px) {
    .roleta-wrapper {
        max-width: 350px;
    }
    
    .modal-content {
        margin: 15% auto;
        padding: 20px;
    }
    
    .modal-content h2 {
        font-size: 20px;
    }
    
    .girar-btn, .finalizar-btn {
        padding: 12px 24px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .roleta-wrapper {
        max-width: 280px;
    }
    
    .modal-content {
        margin: 20% auto;
        padding: 15px;
    }
    
    .modal-content h2 {
        font-size: 18px;
    }
    
    .modal-content p {
        font-size: 14px;
    }
    
    .girar-btn, .finalizar-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}/* End custom CSS */