/* Estilos personalizados para ajustar ao layout */

/* Cores e backgrounds */
body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    background-color: #271C1D;
    padding: 10px 0;
}

/* Seção Hero */
.hero {
    background-color: #F1F1F1;
    padding: 20px 0 0;
    padding-bottom: 0 !important;
}

.hero-content {
    align-items: center;
    padding: 0 15px;
}

.hero-text h1 {
    font-size: 1.7rem;
    line-height: 1.2;
    color: #681739;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-text p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #333;
}

.hero-text .highlight {
    font-weight: 600;
    margin: 15px 0;
}

.cta-button {
    background-color: #A41623;
    color: white;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Seção Roleta */
.roleta-section {
    background-color: white;
    padding: 20px 0;
    text-align: center;
    min-height: 0;
    height: auto;
}

.roleta-section h2 {
    font-size: 1.7rem;
    color: #681739;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.sub-heading {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 25px;
}

.roleta-container {
    max-width: 320px;
    margin: 0 auto;
}

.roleta {
    position: relative;
    margin-bottom: 20px;
}

.roleta img {
    width: 100%;
    max-width: 320px;
    border-radius: 50%;
    box-shadow: none;
    border: 8px solid #FFE676;
}

/* Cores específicas para os setores da roleta */
.roleta-setor-roxo {
    fill: #4A0D67;
}

.roleta-setor-vermelho {
    fill: #A01937;
}

.roleta-setor-preto {
    fill: #271C1D;
}

.roleta-setor-dourado {
    fill: #FFE676;
}

.girar-button {
    background-color: #A41623;
    color: white;
    border-radius: 4px;
    padding: 10px 24px;
    font-size: 0.9rem;
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.disclaimer {
    font-size: 0.8rem;
    color: #777;
    max-width: 320px;
    margin: 15px auto 0;
}

/* Seção Possibilidades */
.possibilidades-section {
    background-color: #681739;
    color: white;
    padding: 40px 0 0;
    padding-bottom: 0 !important;
}

.possibilidades-section .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.possibilidades-left {
    flex: 1;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.possibilidades-right {
    flex: 1;
    max-width: 50%;
}

.possibilidades-section h2 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 10px;
    text-transform: uppercase;
    line-height: 1.2;
}

.possibilidades-section .sub-heading {
    color: #f0f0f0;
    font-size: 0.9rem;
    margin-bottom: 25px;
    line-height: 1.4;
}

.possibilidades-image {
    flex-grow: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 0 !important;
    text-align: center;
}

.possibilidades-image img {
    max-width: 90%;
    border-radius: 5px;
    max-height: 100%;
    object-fit: contain;
    object-position: bottom;
    margin-bottom: 0 !important;
}

.possibilidades-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card {
    background-color: transparent;
    padding: 10px 0 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.card h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #fff;
    font-weight: 600;
}

.card p {
    color: #f0f0f0;
    font-size: 0.85rem;
    line-height: 1.4;
}

.possibilidades-text {
    margin-bottom: 20px;
}

/* Planos */
.planos-section {
    background-color: #F1F1F1;
    padding: 40px 0 60px;
}

.planos-section h2 {
    font-size: 1.7rem;
    color: #271C1D;
    margin-bottom: 5px;
    text-transform: uppercase;
    text-align: center;
}

.planos-section .sub-heading {
    color: #555;
    font-size: 0.95rem;
    max-width: 800px;
    margin: 0 auto 35px;
    text-align: center;
}

.planos-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.plano-card {
    background-color: #F8C8DC;
    border-radius: 10px;
    padding: 20px;
    width: 220px;
    text-align: center;
    transition: transform 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.plano-card.destaque {
    background-color: #FFFBD5;
    border: none;
}

.plano-icon {
    margin-bottom: 15px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plano-icon img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 0;
}

.plano-preco {
    font-size: 1.6rem;
    font-weight: 700;
    color: #271C1D;
    margin: 15px 0 5px;
}

.plano-nome {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 20px;
    min-height: 40px;
}

.plano-button {
    display: inline-block;
    background-color: #A41623;
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: background-color 0.3s;
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.plano-card.destaque .plano-button {
    background-color: #F9BF1A;
    color: #271C1D;
}

/* Seção FAQ */
.faq-section {
    background-color: #F8C8DC;
    padding: 40px 0 60px;
}

.faq-section h2 {
    font-size: 1.7rem;
    color: #681739;
    margin-bottom: 5px;
    text-transform: uppercase;
    text-align: center;
}

.faq-section .sub-heading {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.accordion {
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

.accordion-item {
    background-color: white;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border: none;
}

.accordion-header {
    font-size: 0.95rem;
    padding: 15px 20px;
    cursor: pointer;
    position: relative;
    color: #681739;
    font-weight: 500;
    background-color: white;
    border: none;
    border-radius: 8px;
}

.accordion-header::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #A41623;
    transition: transform 0.3s;
}

.accordion-item.active .accordion-header::after {
    content: "-";
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: white;
    padding: 0 20px;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding-bottom: 15px;
}

.accordion-content p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
    padding-top: 5px;
}

/* Seção "Você sabia" */
.voce-sabia-section {
    background-color: #271C1D;
    color: white;
    padding: 30px 0;
}

/* Convite Final */
.convite-final {
    background-color: #F8C8DC;
    padding: 40px 0 0;
    color: #681739;
    padding-bottom: 0 !important;
}

.convite-final .container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.convite-content {
    flex: 1;
    padding-bottom: 40px;
}

.convite-image {
    flex: 1;
}

.convite-content h2 {
    font-size: 1.7rem;
    color: #681739;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.convite-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #681739;
}

.convite-image img {
    border-radius: 10px;
    max-width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: #271C1D;
    color: white;
    padding: 0px;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 15px;
}

.social-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons img {
    width: 20px;
    height: 20px;
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero, .roleta-section, .possibilidades-section, 
.planos-section, .faq-section, .convite-final {
    animation: fadeIn 0.8s ease-out;
}

/* Responsividade */
@media (max-width: 992px) {
    .hero-content, .convite-final .container {
        flex-direction: column;
    }
    
    .possibilidades-section .container {
        flex-direction: column;
    }
    
    .possibilidades-left, .possibilidades-right {
        padding: 0;
        max-width: 100%;
        width: 100%;
    }
    
    .possibilidades-right {
        margin-top: 30px;
    }
    
    .possibilidades-image {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .card {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .roleta-container {
        max-width: 280px;
    }
    
    .plano-card {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-text h1, .roleta-section h2, 
    .possibilidades-section h2, .planos-section h2,
    .faq-section h2, .convite-content h2 {
        font-size: 1.5rem;
    }
}

/* Cores da Roleta */
.roleta-item.roxo {
    background-color: #4A0D67;
}

.roleta-item.vermelho {
    background-color: #A01937;
}

.roleta-item.preto {
    background-color: #271C1D;
}

.roleta-item.dourado {
    background-color: #FFE676;
}

/* Ajustes de alinhamento para imagens */
.hero-image, .possibilidades-image, .convite-image {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 0 !important;
}

.hero-image img, .possibilidades-image img, .convite-image img, .roleta img {
    display: block;
    margin-bottom: 0 !important;
    vertical-align: bottom;
    height: auto;
}

/* Roleta design */
.roleta-wheel {
    position: relative;
    margin: 0 auto;
    max-width: 320px;
}

.roleta-item {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    transform-origin: 0 0;
}

.roleta-border {
    border: 8px solid #FFE676;
    border-radius: 50%;
    overflow: hidden;
}

/* Botão CTA na seção final */
.convite-content .cta-button {
    background-color: #A41623;
    color: white;
}

/* Correções de cores dos botões CTA */
.cta-button.amarelo {
    background-color: #F9BF1A;
    color: #271C1D;
}

.cta-button.vinho {
    background-color: #A41623;
    color: white;
}

/* Ajustes para as cores do background do footer */
footer {
    background-color: #271C1D;
    color: white;
    padding: 30px 0;
}

/* Ajustes específicos para containers */
.hero .container, 
.possibilidades-section .container,
.convite-final .container {
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Ajuste para o conteúdo textual */
.hero-text {
    padding-bottom: 40px;
}

.possibilidades-right {
    padding-bottom: 40px;
}

/* Correção para as imagens */
.hero-image img, 
.possibilidades-image img, 
.convite-image img {
    max-height: 100%;
    object-fit: contain;
    object-position: bottom;
    margin-bottom: 0 !important;
} 

/* Estilos para a personalização de opções */

.opcoes-personalizacao-container {
    margin-top: 20px;
    padding-right: 10px;
}

.categoria-personalizacao {
    margin-bottom: 20px;
    border-left: 4px solid;
    padding-left: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 0 8px 8px 0;
}

.categoria-header {
    margin-bottom: 10px;
    padding: 10px;
}

.categoria-header h4 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
}

.categoria-header p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.7;
}

.opcoes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.opcao-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    margin-bottom: 5px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    transition: all 0.2s ease;
}

.opcao-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.opcao-item.personalizada {
    background-color: rgba(255, 215, 0, 0.1);
    border-left: 3px solid gold;
}

.opcao-texto {
    flex: 1;
    padding-right: 10px;
    word-break: break-word;
}

.opcao-acoes {
    display: flex;
    gap: 5px;
}

.btn-personalizar, .btn-reset {
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.btn-personalizar {
    background-color: #4caf50;
    color: white;
}

.btn-personalizar:hover {
    background-color: #388e3c;
}

.btn-reset {
    background-color: #f44336;
    color: white;
}

.btn-reset:hover {
    background-color: #d32f2f;
}

/* Modal de personalização */
.personalizacao-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    overflow-y: auto;
    padding: 0;
}

.personalizacao-modal-content {
    background-color: #fff;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    color: #333;
    margin: 20px auto;
    position: relative;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    overflow-y: auto;
}

.personalizacao-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

.personalizacao-modal-header h4 {
    margin: 0;
    color: #333;
}

.fechar-modal-personalizacao {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #777;
}

.personalizacao-modal-body {
    padding: 10px 15px;
    overflow: visible;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.personalizacao-modal-footer {
    padding: 15px;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.btn-cancelar, .btn-salvar {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.btn-cancelar {
    background-color: #f5f5f5;
    color: #333;
}

.btn-salvar {
    background-color: #2196f3;
    color: white;
}

.btn-cancelar:hover {
    background-color: #e0e0e0;
}

.btn-salvar:hover {
    background-color: #0b7dda;
}

/* Barra de progresso para slots de personalização */
.slots-progress {
    margin: 20px 0;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.slots-progress-bar {
    height: 10px;
    background: linear-gradient(90deg, #4caf50, #8bc34a);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.slots-info {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .opcao-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .opcao-acoes {
        margin-top: 10px;
        width: 100%;
        justify-content: flex-end;
    }
    
    .personalizacao-modal-content {
        width: 95%;
    }
}

/* Adaptações para o painel de personalização personalização */
#painel-personalizacao {
    width: 100%;
    height: auto !important;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

#painel-personalizacao .personalizacao-container {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s, transform 0.3s;
    width: 100%;
    background-color: #fff;
    border-radius: 15px;
    padding: 20px;
    box-sizing: border-box;
    overflow: visible !important;
    max-height: none !important;
    height: auto !important;
    position: relative !important;
    display: block !important;
}

#painel-personalizacao.ativo .personalizacao-container {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Estilo de highlight para contador de caracteres */
.caracteres-restantes {
    font-size: 0.8rem;
    color: #888;
    text-align: right;
    margin-top: 5px;
}

/* Estilos para as abas de personalização */
.personalizacao-tabs {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}

.tab-button {
    padding: 10px 20px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.tab-button:hover {
    color: rgba(255, 255, 255, 0.8);
}

.tab-button.active {
    color: #fff;
    border-bottom-color: #2196f3;
    font-weight: bold;
}

.tab-content {
    margin-bottom: 20px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slots-info-section {
    margin-top: 10px !important;
    margin-bottom: 10px;
    padding: 15px;
}

.slots-info-section h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.loading-options {
    padding: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.loading-options p {
    margin: 0;
    font-style: italic;
}

/* Novos estilos para campos de personalização */
.opcoes-form {
    padding: 0;
    margin: 0;
    position: relative !important;
    display: block !important;
    overflow: visible !important;
}

.opcao-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.opcao-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.opcao-item.personalizada {
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.opcao-input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.opcao-input:focus {
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.3);
    outline: none;
}

.opcao-input::placeholder {
    color: #777;
    font-style: italic;
}

.input-dourado {
    background-color: rgba(255, 215, 0, 0.1);
    border-color: gold !important;
    border-width: 3px !important;
    color: #000;
    font-weight: bold;
}

.input-dourado::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.input-dourado:focus {
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.4);
}

.btn-salvar-rapido, .btn-reset {
    padding: 10px 15px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s ease;
}

.btn-salvar-rapido {
    background-color: #4caf50;
    color: white;
}

.btn-salvar-rapido:hover:not(:disabled) {
    background-color: #388e3c;
}

.btn-salvar-rapido:disabled {
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
}

.btn-reset {
    background-color: #f44336;
    color: white;
}

.btn-reset:hover {
    background-color: #d32f2f;
}

/* Destaque para categoria dourada */
.categoria-dourada {
    background-color: rgba(255, 215, 0, 0.05);
    border-left-width: 5px !important;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
    padding: 15px;
    margin-bottom: 30px;
}

.categoria-dourada .categoria-header {
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    margin-bottom: 20px;
}

.gold-slots-info {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gold-slots-counter {
    font-size: 1.1rem;
}

.gold-slots-counter .gold-count {
    font-weight: bold;
    color: gold;
    font-size: 1.3rem;
}

.gold-slots-badge {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gold-slots-badge .badge {
    background-color: gold;
    color: #000;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.8rem;
}

/* Estilos para visualização de slots usados */
.slots-usage-info {
    display: flex;
    margin-top: 15px;
    gap: 20px;
}

.slots-percentage {
    flex-shrink: 0;
}

.percentage-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: conic-gradient(
        #4caf50 0% var(--percentage),
        rgba(255, 255, 255, 0.1) var(--percentage) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.percentage-circle::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
}

.percentage-value {
    position: relative;
    z-index: 2;
    font-weight: bold;
    font-size: 1.2rem;
    color: white;
}

.slots-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.slots-description {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.slots-description p {
    margin: 5px 0;
    font-size: 0.9rem;
}

.slots-tip {
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem !important;
}

.slots-info-section {
    padding: 20px;
    border-radius: 12px;
    background-color: rgba(33, 150, 243, 0.1);
    margin-bottom: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.slots-info-section h4 {
    color: #2196f3;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.3rem;
    border-bottom: 1px solid rgba(33, 150, 243, 0.2);
    padding-bottom: 10px;
}

@media (max-width: 768px) {
    .slots-usage-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .slots-info {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
}

/* Estilos para o contador grande de slots disponíveis */
.slots-disponivel-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 0;
}

.slots-count-big {
    font-size: 40px;
    font-weight: 700;
    color: #F9BF1A;
    background: linear-gradient(135deg, #FFF3D6 0%, #FFE8A3 100%);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    box-shadow: 0 4px 15px rgba(249, 191, 26, 0.3);
}

.slots-label {
    flex: 1;
}

.slots-label p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
}

.slots-info-section {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 15px;
    margin-top: 10px !important;
    margin-bottom: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    position: relative !important;
    display: block !important;
    overflow: visible !important;
    clear: both !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Seção de informações personalizada */
.informacoes-personalizacao {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.informacoes-personalizacao p {
    margin: 0 0 5px 0;
}

.informacoes-personalizacao p:last-child {
    margin-bottom: 0;
}

/* Botão de comprar mais slots em destaque */
.comprar-slots-button {
    margin-top: 10px;
    padding: 10px 18px;
    font-size: 14px;
    background-color: #F9BF1A;
    color: #271C1D;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-block;
    text-align: center;
}

.comprar-slots-button:hover {
    background-color: #FFD54F;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(249, 191, 26, 0.2);
}

/* Ajustar o layout para evitar sobreposições */
body, html {
    height: auto !important;
    overflow-x: hidden !important;
}

.personalizacao-container {
    box-sizing: border-box;
    width: 100%;
    height: auto !important;
    flex: 1;
    margin: 0 !important;
    padding: 10px;
}

#painel-personalizacao.ativo .personalizacao-container {
    display: block !important;
    opacity: 1 !important;
    transform: none !important;
}

/* Ajusta a visualização do container para ocupar todo o espaço disponível */
.opcoes-personalizacao-container, .slots-info-section {
    margin-bottom: 15px;
    padding: 15px;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Força todos os containers a ficarem visíveis */
.opcoes-form {
    display: block !important;
    position: relative !important;
    width: 100% !important;
}

/* Garante espaçamento adequado entre seções */
.slots-info-section {
    margin-top: 10px !important;
}

/* Ajustes para o container de opções */
.opcoes-personalizacao-container {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
    position: relative !important;
    display: block !important;
    overflow: visible !important;
}

/* Garantir que cada elemento do formulário respeite o fluxo */
.opcao-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative !important;
}

.opcao-item:last-child {
    margin-bottom: 0;
}

.opcao-item:hover {
    background-color: rgba(255, 255, 255, 0.12);
}

.opcao-input {
    flex: 1;
    padding: 12px 15px;
    border: 3px solid;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-dourado {
    background-color: rgba(255, 215, 0, 0.15);
    border-color: gold !important;
    color: #111;
    font-weight: bold;
}

.opcoes-mensagem {
    margin: 15px 0 20px;
    padding: 0 5px;
}

.opcoes-mensagem p {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

.opcoes-mensagem strong {
    color: gold;
    font-weight: bold;
}

.no-options {
    text-align: center;
    padding: 30px 20px;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

/* Botão de voltar (substituindo o X de fechar) */
.voltar-personalizacao {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #FF4D8D;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    padding: 5px;
    transition: all 0.2s;
}

.voltar-personalizacao:hover {
    color: #E03A77;
    transform: translateY(-50%) scale(1.1);
}

/* Ajustes para o header com botão de voltar */
.personalizacao-header {
    padding: 8px 0;
    margin-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
    padding-left: 50px;
}

.personalizacao-header h3 {
    font-size: 16px;
}

/* Estilo para o botão de comprar mais slots */
.comprar-slots-button {
    margin-top: 15px;
    padding: 8px 15px;
    font-size: 14px;
    white-space: nowrap;
}

/* Força elementos a respeitar o fluxo do layout */
* {
    max-height: none;
}

/* Adaptações específicas para o CSS do personalizador */
.personalizacao-container {
    box-sizing: border-box;
    width: 100%;
    height: auto !important;
    flex: 1;
    margin: 0 !important;
    padding: 10px;
}

#painel-personalizacao {
    width: 100%;
    height: auto !important;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* Botão Personalizar Roleta */
.personalizar-roleta-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background-color: #F9BF1A;
    color: #271C1D;
    padding: 8px 16px;
    border-radius: 4px;
    margin-top: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.personalizar-roleta-btn:hover {
    background-color: #FFD54F;
    transform: translateY(-2px);
}

.personalizar-roleta-btn i {
    font-size: 1.1rem;
}

/* Estilos para o contador de slots disponíveis */
.slots-disponivel-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 0;
}

.slots-count-big {
    font-size: 40px;
    font-weight: 700;
    width: 80px;
    height: 80px;
    margin-bottom: 8px;
}

/* Espaçamento para elementos do formulário */
.opcao-item {
    margin-bottom: 8px;
    padding: 8px 10px;
}

/* Ajuste para header com botão de voltar */
.personalizacao-header {
    padding: 8px 0;
    margin-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
}

.personalizacao-header h3 {
    font-size: 16px;
}

.voltar-personalizacao {
    left: 10px;
    font-size: 20px;
}

/* Estilo para mensagens de erro de validação */
.text-error {
    color: #B00020;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

/* Estilo para página de perfil */
.profile-section {
    background-color: #F1F1F1;
    padding: 40px 0;
}

.profile-container {
    background-color: #FFFFFF;
    max-width: 700px;
    margin: 0 auto;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.profile-container h2 {
    font-size: 1.8rem;
    color: #681739;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.profile-container form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile-container .form-group label {
    font-weight: 500;
    margin-bottom: 6px;
}

.profile-container .cta-button {
    align-self: flex-start;
} 