@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Asap+Condensed:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


.sistema__header{
    position: fixed;
    display: flex;
    left: 50%;
    width: 86%;
    margin-left: -43%;
    top: 0;
    z-index: 90;
    
}
@media(min-width:1000px){
    .sistema__header {
        position: fixed;
        display: flex;
        left: 50%;
        width: 480px;
        margin-left: -240px;
        top: 0;
        z-index: 90;
        background: #181a20;
    }
}
.sistema--home {
    position: relative;
    padding-top: 68px;
}
.sistema--home__content{
    margin-top: 32px;
}

img{
  pointer-events: none !important;
  user-select: none !important;
}

.novo-login{
	text-align: center;
}

.novo-login footer{
	text-align: center;
	padding-top: 30px;
}

.novo-login footer button{
	text-align: center;
	display: block;
}

.sistema__header h1 img{
	width: 21px;
    display: inline-block;
    vertical-align: bottom;
}

#backdrop{
	background-color: rgba(000,000,000,0.70);
	backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
	--tw-backdrop-blur: blur(8px);
	-webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
	-webkit-transition: 300ms ease;
	transition: 300ms ease;
  }
  
  #areaMenuDrawer{
	background-color: #fff;
	right: -835px;
  }
  
  .aberto #areaMenuDrawer{
	/*right: 0;*/
	-webkit-transition: 1.2s ease;
	transition: 1.2s ease;
  }
  

  .aberto #backdrop{
	background: rgba(000, 000, 000, 0.60);
	-webkit-transition: 300ms ease;
	transition: 300ms ease;
  }

  .aberto button svg{
	filter: invert(1) !important;
  }

  .aberto #scOne,
  .aberto #scTwo{
	display: block !important;
	-webkit-transition: 300ms ease;
	transition: 300ms ease;
	background: rgba(000, 000, 000, 0.60);
  }
  
  .aberto #scTwo{
	background: #212121;
  }

  #areaMenuDrawer button{
	background: none;
	border: none;
	outline: none;
	box-shadow: none;
	margin-right: 10px;
  }
  
  #areaMenuDrawer a,
  #areaMenuDrawer a:hover{
	color: #000;
	  text-decoration: none !important;
	  font-weight: 600;
	  font-size: 17px;
  }
  
  #areaMenuDrawer a svg{
	color: #000;
	opacity: 0.7;
  }
  
  
  #menuFixoMobile{
	background: #fff;
	padding-top: 22px !important;
	-webkit-transition: 300ms ease;
	transition: 300ms ease;
	bottom: -300px;
	z-index: 99999;
  }
  
  @media(max-width:540px){
	#menuFixoMobile{
	  width: 100% !important;
	  bottom: 0 !important;
	}
	header.principal .menus-targets nav ul li.normal{
	  display: none;
	}
	#areaMenuDrawer button{
	  margin-right: 0;
	}
	header.principal .menus-targets {
	 padding-top: 2px;
	}
  }
  
  #menuFixoMobile a,
  #menuFixoMobile a:hover{
	text-decoration: none;
  }
  
  #menuFixoMobile button{
	background: none !important;
	border: none !important;
	outline: none !important;
  }
  

  #areaMenuDrawer a, 
  #areaMenuDrawer a:hover,
  #areaMenuDrawer a div,
  #areaMenuDrawer a:hover div{
	color: #f2f2f2;
  }

  @media(min-width:1000px){
	.jconfirm-box{
		max-width: 400px;
	}
  }


  


 /* Estilos para a nova interface de upload */
    .upload-container {
        width: 100%;
        margin-bottom: 20px;
        border: none;
        padding: 0;
    }
    
    .upload-area {
        position: relative;
        width: 100%;
        min-height: 150px;
        border: 2px dashed #3a3f50;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        background-color: rgba(58, 63, 80, 0.05);
    }
    
    .upload-area:hover {
        background-color: rgba(58, 63, 80, 0.1);
    }
    
    .upload-area.drag-over {
        background-color: rgba(58, 63, 80, 0.15);
        border-color: #5d63ff;
    }
    
    .file-input {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        opacity: 0;
        cursor: pointer;
        z-index: 2;
    }
    
    .upload-placeholder {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px;
        color: #3a3f50;
        z-index: 1;
    }
    
    .upload-placeholder svg {
        margin-bottom: 12px;
        color: #3a3f50;
    }
    
    .upload-placeholder p {
        font-size: 16px;
        font-weight: 500;
        margin: 0 0 4px 0;
    }
    
    .upload-placeholder span {
        font-size: 12px;
        opacity: 0.7;
    }
    
    /* Área de preview de imagens */
    .images-preview {
        margin-top: 20px;
        border-radius: 8px;
        background-color: #1e2030;
        padding: 15px;
    }
    
    .images-preview-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
    }
    
    .images-preview-header h4 {
        margin: 0;
        font-size: 16px;
        font-weight: 500;
        color: #ffffff;
    }
    
    .add-more-button {
        display: flex;
        align-items: center;
        gap: 6px;
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 4px;
        padding: 6px 10px;
        font-size: 12px;
        color: #ffffff;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    
    .add-more-button:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .images-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 12px;
    }
    
    .image-item {
        position: relative;
        border-radius: 6px;
        overflow: hidden;
        background-color: #2a2c42;
        aspect-ratio: 1/1;
    }
    
    .image-preview {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    
    .image-preview img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    
    .image-info {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 6px 8px;
        background-color: rgba(0, 0, 0, 0.6);
        color: white;
        font-size: 11px;
    }
    
    .image-label {
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .remove-image {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background-color: rgba(255, 59, 59, 0.7);
        color: white;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        line-height: 1;
        cursor: pointer;
        transition: background-color 0.2s ease;
    }
    
    .remove-image:hover {
        background-color: rgba(255, 59, 59, 1);
    }
    
    /* Imagem de capa - opcional caso queira destacá-la */
    .image-item[data-is-cover="true"] {
        position: relative;
    }
    
    .image-item[data-is-cover="true"] .image-label {
        color: #ffdd59;
    }
    
    /* Responsividade para telas menores */
    @media (max-width: 768px) {
        .images-grid {
            grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
            gap: 8px;
        }
    }



/* Adicionar ao CSS existente */
.upload-container-video {
    margin-top: 20px;
}

.upload-area-video {
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    background: #fafafa;
}

.upload-area:hover,
.upload-area-video:hover {
    border-color: #007cba;
}

.file-input-video {
    display: none;
}

.upload-placeholder-video svg {
    color: #666;
    margin-bottom: 10px;
}

.videos-preview {
    margin-top: 20px;
}

.videos-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

/*

.add-more-button-video {
    background: #007cba;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}
*/
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.video-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.video-preview video {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.video-info {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9f9f9;
}

.video-label {
    font-size: 12px;
    font-weight: bold;
    color: #666;
}

.remove-video {
    background: #dc3545;
    color: white;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
}


.upload-area-video {
    position: relative;
    width: 100%;
    min-height: 150px;
    border: 2px dashed #3a3f50;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: rgba(58, 63, 80, 0.05);
}

.upload-placeholder-video p {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 4px 0;
}


.add-more-button-video{
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 6px 10px;
    font-size: 12px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sistema--home__content__container__itens ul li footer aside button{
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 1000px;
    width: 40px;
    height: 40px;
    background: #3a3f50;
	margin-left: 10px;
	margin-right: -8px;
}

.diogenes-minha-conta-2-profile-avatar {
    width: 100px;
    height: 100px;
    background-color: #8d44ff;
    border-radius: 50%;
    display: block;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
}

.diogenes-minha-conta-2-profile-avatar img {
    width: 100%;
    border-radius: 100%;
}



.diogenes-minha-conta-2-profile-avatar span {
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    opacity: 0;
    color: #fff;
    background: rgba(000, 000, 000, 0.60);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    font-size: 13px;
    width: 100%;
    height: 100%;
    text-align: center;
    padding-bottom: 4px;
    padding-top: 37px;
    border-radius: 100%;
    -webkit-transition: 300ms ease;
    transition: 300ms ease;
}
.diogenes-minha-conta-2-profile-avatar:hover span{
  opacity: 1;	
	-webkit-transition: 300ms ease;
    transition: 300ms ease;
}


.diogenes-minha-conta-2-profile-avatar span a, .diogenes-minha-conta-2-profile-avatar span a:hover {
    color: #fff;
    text-decoration: none !important;
    font-size: 12px;
}



        .cadastro__perfil-cadastro{

        }

        .cadastro__perfil-cadastro label{
            text-align: center;
            position: relative;
            display: block;
            background: #f2f2f2;
            border: 2px dotted #ccc;
            border-radius: 3px;
            font-size: 14px;
            padding-top: 24px;
            padding-bottom: 42px;
            margin-bottom: 20px;
            cursor: pointer;
            margin-top:20px;
        }

        .cadastro__perfil-cadastro label input{
            display: none;
        }

        .cadastro__perfil-cadastro label img{
            position: relative;
            display: block;
            margin-left: auto;
            margin-right: auto;
            width: 32px;
            height: auto;
            opacity: 0.25;
            margin-bottom: 11px;
        }

        .cadastro__perfil-cadastro label div img{
            display: none;
            opacity: 1;
            width: 128px;
            height: auto;
            margin-top: 20px;
            border-radius: 5px;
        }



		.cadastro__footer-form__principal{
			background: #f2f2f2;
			position: relative;
			display: block;
			width: 100%;
			padding: 12px;
			border-radius: 8px;
			font-weight: bold;
		}





.listagem-minhas-vendas-container {
    
    color: #ffffff;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
}

.listagem-minhas-vendas-titulo {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
    color: #ffffff;
}

.listagem-minhas-vendas-lista {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.listagem-minhas-vendas-item {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
}

.listagem-minhas-vendas-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff4757, #ff6b7a);
}

.listagem-minhas-vendas-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 8px;
}

.listagem-minhas-vendas-numero {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.listagem-minhas-vendas-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.listagem-minhas-vendas-status.processing,
.listagem-minhas-vendas-status.on-hold,
.listagem-minhas-vendas-status.pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid #ffc107;
}

.listagem-minhas-vendas-status.completed {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid #28a745;
}

.listagem-minhas-vendas-status.cancelled,
.listagem-minhas-vendas-status.refunded,
.listagem-minhas-vendas-status.failed {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border: 1px solid #dc3545;
}

.listagem-minhas-vendas-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.listagem-minhas-vendas-info-item {
    display: flex;
    flex-direction: column;
}

.listagem-minhas-vendas-info-label {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    font-weight: 500;
}

.listagem-minhas-vendas-info-valor {
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
}

.listagem-minhas-vendas-valor-destaque {
    font-size: 20px;
    font-weight: 700;
    color: #8BC34A;
}

.listagem-minhas-vendas-comprador {
    background: #333;
    border-radius: 8px;
    padding: 16px;
    margin-top: 16px;
}

.listagem-minhas-vendas-comprador-titulo {
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    font-weight: 500;
}

.listagem-minhas-vendas-comprador-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.listagem-minhas-vendas-comprador-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.listagem-minhas-vendas-comprador-icone {
    width: 16px;
    height: 16px;
    background: #555;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #fff;
    flex-shrink: 0;
}

.listagem-minhas-vendas-comprador-texto {
    font-size: 14px;
    color: #ffffff;
    word-break: break-word;
}

.listagem-minhas-vendas-vazio {
    text-align: center;
    padding: 60px 20px;
    color: #888;
}

.listagem-minhas-vendas-vazio-icone {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.listagem-minhas-vendas-vazio-texto {
    font-size: 18px;
    margin-bottom: 8px;
}

.listagem-minhas-vendas-vazio-subtexto {
    font-size: 14px;
    opacity: 0.7;
}

.listagem-minhas-vendas-carregando {
    text-align: center;
    padding: 40px 20px;
    color: #888;
}

.listagem-minhas-vendas-spinner {
    border: 3px solid #333;
    border-top: 3px solid #ff4757;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: listagem-minhas-vendas-spin 1s linear infinite;
    margin: 0 auto 16px;
}

@keyframes listagem-minhas-vendas-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsividade para telas muito pequenas */
@media (max-width: 360px) {
    .listagem-minhas-vendas-container {
        padding: 16px;
    }
    
    .listagem-minhas-vendas-info {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .listagem-minhas-vendas-header {
        flex-direction: column;
        align-items: flex-start;
    }
}



.listagem-minhas-vendas-resumo {
    margin-bottom: 30px;
}

.listagem-minhas-vendas-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.listagem-minhas-vendas-card {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    gap: 16px;
}


/*
.listagem-minhas-vendas-card.pendentes {
    border-left: 1px solid #ffc107;
}

.listagem-minhas-vendas-card.confirmados {
    border-left: 1px solid #28a745;
}
*/ 

.listagem-minhas-vendas-card-icone {
    font-size: 24px;
    opacity: 0.8;
}

.listagem-minhas-vendas-card-info {
    flex: 1;
}

.listagem-minhas-vendas-card-titulo {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    font-weight: 500;
}

.listagem-minhas-vendas-card-valor {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.listagem-minhas-vendas-card-count {
    font-size: 12px;
    color: #888;
}

@media (max-width: 360px) {
    .listagem-minhas-vendas-cards {
        grid-template-columns: 1fr;
    }
}


  .cards-stats-container {
            max-width: 600px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .cards-stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 16px;
            margin: 20px 0;
        }

        .cards-stats-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .cards-stats-card:hover {
            transform: translateY(-2px);
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .cards-stats-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #4f9cf9, #7c3aed);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .cards-stats-card:hover::before {
            opacity: 1;
        }

        .cards-stats-icon {
            width: 40px;
            height: 40px;
            margin: 0 auto 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(79, 156, 249, 0.2);
            border-radius: 10px;
            font-size: 20px;
        }

        .cards-stats-card:nth-child(1) .cards-stats-icon {
            background: rgba(79, 156, 249, 0.2);
            color: #4f9cf9;
        }

        .cards-stats-card:nth-child(2) .cards-stats-icon {
            background: rgba(124, 58, 237, 0.2);
            color: #7c3aed;
        }

        .cards-stats-card:nth-child(3) .cards-stats-icon {
            background: rgba(34, 197, 94, 0.2);
            color: #22c55e;
        }

        .cards-stats-card:nth-child(4) .cards-stats-icon {
            background: rgba(239, 68, 68, 0.2);
            color: #ef4444;
        }

        .cards-stats-card:nth-child(5) .cards-stats-icon {
            background: rgba(245, 158, 11, 0.2);
            color: #f59e0b;
        }

        .cards-stats-number {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 4px;
            color: white;
            line-height: 1;
        }

        .cards-stats-label {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            line-height: 1.3;
        }

        .cards-stats-trend {
            margin-top: 8px;
            font-size: 11px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
        }

        .cards-stats-trend.positive {
            color: #22c55e;
        }

        .cards-stats-trend.negative {
            color: #ef4444;
        }

        .cards-stats-trend.neutral {
            color: rgba(255, 255, 255, 0.5);
        }

        /* Responsivo */
        @media (max-width: 480px) {
            .cards-stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            
            .cards-stats-card {
                padding: 16px;
            }
            
            .cards-stats-number {
                font-size: 20px;
            }
            
            .cards-stats-label {
                font-size: 11px;
            }
        }

        /* Contexto da página (apenas para demonstração) */
        .demo-context {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
            text-align: center;
        }

        .demo-avatar {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin: 0 auto 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }















        .wizards-modelos-painel-container {
            max-width: 600px;
            width: 100%;
            margin: 0 auto;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: transparent; /* Um pouco mais claro que o fundo da imagem */
            color: #e0e0e0;
            border-radius: 12px;
            overflow: hidden;
            border: 0px solid #333;
        }

        .wizards-modelos-painel-header {
            padding: 15px 20px;
            background: #1e1e1e;
            border-bottom: 1px solid #333;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .wizards-modelos-painel-back-btn {
            background: transparent;
            border: none;
            color: #fff;
            cursor: pointer;
            font-size: 24px;
        }

        .wizards-modelos-painel-title {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
        }

        .wizards-modelos-painel-content {
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 40px;
            margin-top: 0;
        }

        /* --- Estilos para os campos do topo --- */
        .wizards-modelos-painel-form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .wizards-modelos-painel-form-group label {
            font-size: 12px;
            color: #aaa;
            text-transform: uppercase;
            font-weight: 500;
            display: flex;
            justify-content: space-between;
        }
        
        .wizards-modelos-painel-form-group label span:last-child {
            color: #777;
        }

        .wizards-modelos-painel-input,
        .wizards-modelos-painel-textarea-top,
        .wizards-modelos-painel-select {
            width: 100%;
            padding: 12px;
            border: 1px solid #444;
            border-radius: 8px;
            background: #2a2a2a;
            color: #fff;
            font-size: 14px;
            box-sizing: border-box;
            transition: border-color 0.2s;
        }

        .wizards-modelos-painel-textarea-top {
            min-height: 80px;
            resize: vertical;
        }

        .wizards-modelos-painel-input:focus,
        .wizards-modelos-painel-textarea-top:focus,
        .wizards-modelos-painel-select:focus {
            outline: none;
            border-color: #006DD9;
        }
        
        .wizards-modelos-painel-select {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23aaa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 12px center;
            background-size: 1em;
        }

        /* --- Estilos dos Collapses (já fornecidos e ajustados) --- */
        .wizards-modelos-painel-collapse {
            border: 1px solid #333;
            border-radius: 8px;
            overflow: hidden;
        }

        .wizards-modelos-painel-collapse-header {
            padding: 15px 20px;
            background: #2a2a2a;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.2s;
        }

        .wizards-modelos-painel-collapse-header:hover {
            background: #333;
        }

        .wizards-modelos-painel-collapse-title {
            font-weight: 600;
            font-size: 16px;
        }

        .wizards-modelos-painel-collapse-icon {
            transition: transform 0.3s ease;
        }

        .wizards-modelos-painel-collapse.active .wizards-modelos-painel-collapse-icon {
            transform: rotate(180deg);
        }

        .wizards-modelos-painel-collapse-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out, padding 0.4s ease-out;
            background: #1e1e1e;
        }

        .wizards-modelos-painel-collapse.active .wizards-modelos-painel-collapse-content {
            max-height: 2000px; /* Valor alto para acomodar o conteúdo */
        }
        
        .wizards-modelos-painel-collapse-body {
            padding: 20px;
        }

        /* --- Radio & Checkbox (já fornecidos) --- */
        .wizards-modelos-painel-radio-group,
        .wizards-modelos-painel-checkbox-group {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .wizards-modelos-painel-radio-item,
        .wizards-modelos-painel-checkbox-item {
            display: flex;
            align-items: center;
            padding: 12px 15px;
            border: 2px solid #333;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s;
            position: relative;
        }

        .wizards-modelos-painel-radio-item:hover,
        .wizards-modelos-painel-checkbox-item:hover {
            border-color: #006DD9;
        }

        .wizards-modelos-painel-radio-item.active,
        .wizards-modelos-painel-checkbox-item.active {
            border-color: #006DD9;
            background: rgba(0, 109, 217, 0.1);
        }

        .wizards-modelos-painel-radio-item input,
        .wizards-modelos-painel-checkbox-item input {
            position: absolute;
            opacity: 0;
            width: 0;
            height: 0;
        }

        .wizards-modelos-painel-radio-indicator,
        .wizards-modelos-painel-checkbox-indicator {
            width: 20px;
            height: 20px;
            border: 2px solid #666;
            margin-right: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
            flex-shrink: 0;
        }

        .wizards-modelos-painel-radio-indicator { border-radius: 50%; }
        .wizards-modelos-painel-checkbox-indicator { border-radius: 4px; }
        
        .wizards-modelos-painel-radio-item.active .wizards-modelos-painel-radio-indicator {
            border-color: #006DD9;
        }
        .wizards-modelos-painel-radio-item.active .wizards-modelos-painel-radio-indicator::after {
            content: '';
            width: 10px;
            height: 10px;
            background: #006DD9;
            border-radius: 50%;
        }

        .wizards-modelos-painel-checkbox-item.active .wizards-modelos-painel-checkbox-indicator {
            border-color: #006DD9;
            background: #006DD9;
        }
        .wizards-modelos-painel-checkbox-item.active .wizards-modelos-painel-checkbox-indicator::after {
            content: '✓';
            color: white;
            font-size: 14px;
            font-weight: bold;
        }

        /* --- Pricing (já fornecido) --- */
        .wizards-modelos-painel-pricing-item {
            margin-bottom: 20px;
        }
        .wizards-modelos-painel-pricing-item:last-child {
            margin-bottom: 0;
        }
        .wizards-modelos-painel-pricing-label {
            font-weight: 600;
            margin-bottom: 10px;
            display: block;
        }
        .wizards-modelos-painel-pricing-options {
            display: flex;
            gap: 10px;
            margin-bottom: 10px;
            flex-wrap: wrap;
        }
        .wizards-modelos-painel-pricing-option {
            padding: 8px 15px;
            border: 1px solid #666;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.2s;
            font-size: 14px;
        }
        .wizards-modelos-painel-pricing-option:hover {
            border-color: #006DD9;
            color: #006DD9;
        }
        .wizards-modelos-painel-pricing-option.active {
            background: #006DD9;
            border-color: #006DD9;
            color: #fff;
        }
        .wizards-modelos-painel-price-input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #666;
            border-radius: 8px;
            background: #2a2a2a;
            color: #fff;
            margin-top: 10px;
            display: none; /* Alterado para none por padrão */
            box-sizing: border-box;
        }
        .wizards-modelos-painel-price-input.show {
            display: block;
        }

        /* --- Sub-Collapse (já fornecido) --- */
        .wizards-modelos-painel-sub-collapse {
            margin-bottom: 10px;
            border: 1px solid #444;
            border-radius: 6px;
            overflow: hidden;
        }
        .wizards-modelos-painel-sub-collapse:last-child {
            margin-bottom: 0;
        }
        .wizards-modelos-painel-sub-collapse-header {
            padding: 12px 15px;
            background: #333;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.2s;
        }
        .wizards-modelos-painel-sub-collapse-header:hover {
            background: #444;
        }
        .wizards-modelos-painel-sub-collapse-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: #353535;
        }
        .wizards-modelos-painel-sub-collapse.active .wizards-modelos-painel-sub-collapse-content {
            max-height: 200px;
        }
        .wizards-modelos-painel-textarea {
            width: 100%;
            min-height: 80px;
            padding: 15px;
            border: none;
            background: #2a2a2a;
            color: #fff;
            resize: vertical;
            font-family: inherit;
            box-sizing: border-box;
        }
        .wizards-modelos-painel-textarea:focus {
            outline: none;
        }







        
.validacao-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    color: #ffffff;
}

.validacao-header {
    background-color: #1c1c1e;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top:-32px;
}

.validacao-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 8px;
}

.validacao-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.validacao-accordion {
    margin-bottom: 24px;
}

.validacao-accordion-item {
    background-color: #1c1c1e;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.validacao-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    cursor: pointer;
    transition: background-color 0.2s;
    position: relative;
    background-color: #2c2c2e;
}

.validacao-accordion-header:hover {
    background-color: #2c2c2e;
}

.validacao-accordion-header.active {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.validacao-accordion-title {
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.validacao-accordion-icon {
    font-size: 16px;
    transform: rotate(0deg);
    transition: transform 0.3s;
}

.validacao-accordion-header.active .validacao-accordion-icon {
    transform: rotate(180deg);
}

.validacao-accordion-status {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.validacao-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
}

.validacao-status-badge.pending {
    background-color: rgba(255, 149, 0, 0.2);
    color: #ff9500;
}

.validacao-status-badge.completed {
    background-color: rgba(52, 199, 89, 0.2);
    color: #34c759;
}

.validacao-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    max-height: fit-content !important;
}

.validacao-accordion-content {
    padding: 24px;
}

.validacao-instructions {
    margin-bottom: 16px;
    font-size: 11px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}
.validacao-instructions p{
    font-size: 11px !important;
    line-height: 1.5 !important;
}
.validacao-upload-container {
    position: relative;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    transition: border-color 0.2s;
    cursor: pointer;
    overflow: hidden;
}

.validacao-upload-container:hover {
    border-color: #2a8de7;
}

.validacao-upload-icon {
    font-size: 36px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.5);
}

.validacao-upload-text {
    font-size: 16px;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.8);
}

.validacao-upload-subtext {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.validacao-upload-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.validacao-preview-container {
    margin-top: 16px;
    display: none;
    text-align: center;
}

.validacao-preview-image {
    max-width: 100%;
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.validacao-btn-container {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.validacao-btn {
    background-color: #2a8de7;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.validacao-btn:hover {
    background-color: #2a8de7;
}

.validacao-btn:disabled {
    background-color: #3c3c3e;
    cursor: not-allowed;
}

/* Modal */
.validacao-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.validacao-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.validacao-modal {
    background-color: #1c1c1e;
    border-radius: 12px;
    width: 90%;
    max-width: 450px;
    padding: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform 0.3s;
    position: relative;
}

.validacao-modal-overlay.active .validacao-modal {
    transform: translateY(0);
}

.validacao-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
}

.validacao-modal-title {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
}

.validacao-modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.validacao-modal-content {
    margin-bottom: 24px;
    color: #ffffff;
    text-align: center;
}

.validacao-modal-icon {
    font-size: 48px;
    margin-bottom: 16px;
    color: #34c759;
}

.validacao-modal-message {
    font-size: 16px;
    margin-bottom: 8px;
}

.validacao-modal-footer {
    display: flex;
    justify-content: center;
}

.validacao-modal-btn {
    background-color: #a9c421;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.validacao-modal-btn:hover {
    background-color: #b4006f;
}

/* Loading Modal */
.validacao-loading-progress {
    width: 100%;
    height: 10px;
    background-color: #2c2c2e;
    border-radius: 5px;
    margin: 20px 0;
    overflow: hidden;
}

.validacao-loading-bar {
    height: 100%;
    width: 0%;
    background-color: #2a8de7;
    border-radius: 5px;
    transition: width 0.3s ease-in-out;
}

.validacao-loading-percentage {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

@media (max-width: 640px) {
    .validacao-container {
        padding: 16px;
    }
    
    .validacao-header,
    .validacao-accordion-content {
        padding: 16px;
    }
    
    .validacao-accordion-header {
        padding: 12px 16px;
    }
    
    .validacao-btn {
        width: 100%;
    }
}






/* Container principal */
        .perfil-modelos-imagens-container {
            max-width: 600px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Título principal */
        .perfil-modelos-imagens-title {
            font-size: 22px;
            font-weight: 600;
            text-align: center;
            margin-bottom: 30px;
            color: #ffffff;
        }

        /* Subtítulo */
        .perfil-modelos-imagens-subtitle {
            font-size: 16px;
            font-weight: 400;
            text-align: center;
            margin-bottom: 30px;
            color: #aaa;
        }

        /* Seção de upload */
        .perfil-modelos-imagens-upload-section {
            margin-bottom: 30px;
        }

        /* Card de upload */
        .perfil-modelos-imagens-card {
            background-color: #1a1a1f;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 15px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .perfil-modelos-imagens-card:hover {
            border-color: rgba(255, 255, 255, 0.2);
        }

        /* Cabeçalho do card */
        .perfil-modelos-imagens-card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 15px;
        }

        .perfil-modelos-imagens-card-title {
            font-size: 16px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .perfil-modelos-imagens-card-title-icon {
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Status do upload */
        .perfil-modelos-imagens-status {
            font-size: 12px;
            font-weight: 600;
            padding: 5px 10px;
            border-radius: 50px;
            background-color: #F59E0B;
            color: #000;
        }

        .perfil-modelos-imagens-status.success {
            background-color: #10B981;
        }

        /* Área de arraste/upload */
        .perfil-modelos-imagens-dropzone {
            border: 2px dashed rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            padding: 30px 20px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 180px;
        }

        .perfil-modelos-imagens-dropzone:hover {
            border-color: rgba(255, 255, 255, 0.4);
            background-color: rgba(255, 255, 255, 0.03);
        }

        .perfil-modelos-imagens-dropzone.dragover {
            border-color: #3B82F6;
            background-color: rgba(59, 130, 246, 0.05);
        }

        .perfil-modelos-imagens-dropzone-icon {
            font-size: 40px;
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.6);
            display: none;
        }

        .perfil-modelos-imagens-dropzone-text {
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 8px;
            color: #ffffff;
        }

        .perfil-modelos-imagens-dropzone-hint {
            font-size: 14px;
            color: #aaa;
            margin-bottom: 15px;
        }

        .perfil-modelos-imagens-dropzone-formats {
            font-size: 12px;
            color: #777;
        }

        /* Visualização da imagem */
        .perfil-modelos-imagens-preview {
            display: none;
            margin-top: 20px;
            border-radius: 8px;
            overflow: hidden;
            background-color: #0c0c0f;
            position: relative;
        }

        .perfil-modelos-imagens-preview.active {
            display: block;
        }

        .perfil-modelos-imagens-preview-image {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Preview da imagem de perfil (circular) */
        .perfil-modelos-imagens-profile-preview {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto;
            border: 3px solid #3B82F6;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        /* Preview da imagem de capa (retangular) */
        .perfil-modelos-imagens-cover-preview {
            width: 100%;
            height: 120px;
            object-fit: cover;
            border-radius: 8px;
            border: 2px solid #3B82F6;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        /* Preview das imagens de destaque (quadradas) */
        .perfil-modelos-imagens-highlight-preview {
            width: 120px;
            height: 120px;
            object-fit: cover;
            border-radius: 8px;
            border: 2px solid #3B82F6;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        /* Contêiner de previews */
        .perfil-modelos-imagens-preview-container {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 20px;
            justify-content: center;
        }

        /* Botão de enviar */
        .perfil-modelos-imagens-submit-btn {
            display: block;
            width: 100%;
            padding: 15px;
            background-color: #3B82F6;
            color: #ffffff;
            font-size: 16px;
            font-weight: 600;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 30px;
        }

        .perfil-modelos-imagens-submit-btn:hover {
            background-color: #2563EB;
        }

        .perfil-modelos-imagens-submit-btn:disabled {
            background-color: #6B7280;
            cursor: not-allowed;
            opacity: 0.7;
        }

        /* Modal de crop */
        .perfil-modelos-imagens-crop-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .perfil-modelos-imagens-crop-modal.active {
            display: flex;
        }

        .perfil-modelos-imagens-crop-container {
            max-width: 90%;
            max-height: 70vh;
            margin-bottom: 20px;
            overflow: hidden;
        }

        .perfil-modelos-imagens-crop-image {
            max-width: 100%;
            display: block;
        }

        .perfil-modelos-imagens-crop-actions {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .perfil-modelos-imagens-crop-btn {
            padding: 10px 20px;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .perfil-modelos-imagens-crop-confirm {
            background-color: #10B981;
            color: white;
        }

        .perfil-modelos-imagens-crop-confirm:hover {
            background-color: #059669;
        }

        .perfil-modelos-imagens-crop-cancel {
            background-color: #6B7280;
            color: white;
        }

        .perfil-modelos-imagens-crop-cancel:hover {
            background-color: #4B5563;
        }

        /* Modal de progresso */
        .perfil-modelos-imagens-progress-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 1000;
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .perfil-modelos-imagens-progress-modal.active {
            display: flex;
        }

        .perfil-modelos-imagens-progress-container {
            background-color: #1a1a1f;
            border-radius: 12px;
            padding: 30px;
            width: 90%;
            max-width: 400px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            text-align: center;
        }

        .perfil-modelos-imagens-progress-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            color: white;
        }

        .perfil-modelos-imagens-progress-bar-container {
            width: 100%;
            height: 10px;
            background-color: #2D3748;
            border-radius: 5px;
            margin-bottom: 20px;
            overflow: hidden;
        }

        .perfil-modelos-imagens-progress-bar {
            height: 100%;
            width: 0%;
            background-color: #3B82F6;
            border-radius: 5px;
            transition: width 0.3s ease;
        }

        .perfil-modelos-imagens-progress-status {
            font-size: 14px;
            color: #A0AEC0;
            margin-bottom: 20px;
        }

        .perfil-modelos-imagens-progress-icon {
            font-size: 50px;
            margin-bottom: 20px;
            color: #10B981;
            display: none;
        }

        .perfil-modelos-imagens-progress-icon.active {
            display: block;
        }

        .perfil-modelos-imagens-progress-message {
            font-size: 16px;
            font-weight: 500;
            color: white;
            margin-bottom: 25px;
        }

        .perfil-modelos-imagens-progress-close {
            padding: 10px 25px;
            background-color: #3B82F6;
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: none;
        }

        .perfil-modelos-imagens-progress-close.active {
            display: inline-block;
        }

        .perfil-modelos-imagens-progress-close:hover {
            background-color: #2563EB;
        }

        /* Input de arquivo escondido */
        .perfil-modelos-imagens-file-input {
            display: none;
        }

        /* Responsividade */
        @media (max-width: 576px) {
            .perfil-modelos-imagens-container {
                padding: 10px;
            }
            
            .perfil-modelos-imagens-card {
                padding: 15px;
            }
            
            .perfil-modelos-imagens-dropzone {
                padding: 20px 15px;
            }

            .perfil-modelos-imagens-crop-container {
                max-height: 50vh;
            }
        }




        












                /* Modal Overlay */
        .nova-tabela-de-precos-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
            overflow-y: auto;
            padding: 20px;
        }

        .nova-tabela-de-precos-modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: transparent;
            color: white;
            border: none;
            font-size: 24px;
            cursor: pointer;
            z-index: 10000;
        }

        /* Tabela de Preços */
        .nova-tabela-de-precos-container {
            max-width: 1100px;
            margin: 30px auto;
            padding: 20px;
            background-color: #1a1a1a;
            border-radius: 16px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
            position: relative;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .nova-tabela-de-precos-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .nova-tabela-de-precos-title {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 10px;
            color: white;
        }

        .nova-tabela-de-precos-subtitle {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            color: #e0e0e0;
            font-size: 16px;
        }

        .nova-tabela-de-precos-subtitle-icon {
            color: #4caf50;
            font-size: 20px;
        }

        .nova-tabela-de-precos-main {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .nova-tabela-de-precos-left {
            flex: 1;
            min-width: 250px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .nova-tabela-de-precos-exclusive {
            font-size: 24px;
            margin-bottom: 5px;
            color: white;
        }

        .nova-tabela-de-precos-exclusive span {
            color: #006dd9;
            font-weight: bold;
        }

        .nova-tabela-de-precos-today {
            font-size: 24px;
            font-weight: bold;
            color: white;
        }

        .nova-tabela-de-precos-right {
            flex: 2;
            min-width: 300px;
        }

        .nova-tabela-de-precos-plans {
            display: grid;
            grid-template-columns: 1fr 1fr; /* Cria 2 colunas de tamanho igual */
            gap: 15px;
        }

        .nova-tabela-de-precos-banner {
            background-color: #7D3801;
            color: #FFB74D;
            padding: 12px;
            border-radius: 10px;
            text-align: center;
            font-weight: bold;
            margin-bottom: 5px;
        }

        .nova-tabela-de-precos-banner-icon {
            margin-right: 8px;
        }

        .nova-tabela-de-precos-plan {
            padding: 12px;
            border-radius: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            border: 2px solid transparent;
            transition: border-color 0.3s ease;
            background-color: #2D1A3D;
        }

        .nova-tabela-de-precos-plan.active {
            border: 2px solid #8b44fd;
        }

        .nova-tabela-de-precos-plan-1 {
            background-color: #2D1A3D;
        }

        .nova-tabela-de-precos-plan-2 {
            background-color: #2D1A3D;
        }

        .nova-tabela-de-precos-plan-3 {
            background-color: #2D1A3D;
        }

        .nova-tabela-de-precos-plan-info {
            display: flex;
            flex-direction: column;
        }

        .nova-tabela-de-precos-plan-duration {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 5px;
            color: white;
        }

        .nova-tabela-de-precos-discount {
            background: linear-gradient(135deg, #ff4081, #006dd9);
            color: white;
            font-weight: bold;
            padding: 4px 8px;
            border-radius: 5px;
            font-size: 14px;
            display: inline-block;
            margin-bottom: 5px;
            display: none;
        }

        .nova-tabela-de-precos-price-old {
            color: #999;
            text-decoration: line-through;
            font-size: 14px;
            margin-right: 8px;
        }

        .nova-tabela-de-precos-price-new {
            color: #e0e0e0;
            font-size: 14px;
            font-weight: bold;
            display: block;
        }

        .nova-tabela-de-precos-plan-price {
            text-align: right;
        }

        .nova-tabela-de-precos-daily-price {
            font-size: 24px;
            font-weight: bold;
            color: white;
        }

        .nova-tabela-de-precos-price-label {
            color: #e0e0e0;
            font-size: 14px;
            text-align: right;
        }

        .nova-tabela-de-precos-popular {
            background-color: #006dd9;
            color: white;
            text-align: center;
            padding: 8px;
            border-radius: 5px;
            font-weight: bold;
            margin-top: 10px;
            margin-bottom: 10px;
        }

        .nova-tabela-de-precos-benefits {
            margin-top: 20px;
            flex: 1;
            min-width: 250px;
        }

        .nova-tabela-de-precos-benefits-title {
            font-size: 24px;
            line-height: 30px;
            color: #006dd9;
            margin-bottom: 15px;
        }

        .nova-tabela-de-precos-benefit {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            gap: 10px;
        }

        .nova-tabela-de-precos-benefit-icon {
            color: #006dd9;
            font-size: 20px;
        }

        .nova-tabela-de-precos-benefit-text {
            font-size: 16px;
            color: white;
        }

        .nova-tabela-de-precos-benefit-text strong{
            color:#fff !important;
        }

        .nova-tabela-de-precos-footer {
            margin-top: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }

        .nova-tabela-de-precos-guarantees {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .nova-tabela-de-precos-guarantee {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #e0e0e0;
            font-size: 14px;
        }

        .nova-tabela-de-precos-guarantee span{
            color: #e0e0e0;
        }

        .nova-tabela-de-precos-guarantee-icon {
            font-size: 18px;
        }

        .nova-tabela-de-precos-guarantee-icon.green {
            color: #4caf50;
        }

        .nova-tabela-de-precos-guarantee-icon.orange {
            color: #ff9800;
        }

        .nova-tabela-de-precos-continue-button {
            background: #006dd9;
            color: white;
            border: none;
            border-radius: 10px;
            padding: 15px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            width: 100%;
            max-width: 500px;
            text-align: center;
            transition: background-color 0.3s ease;
        }

      

        .nova-tabela-de-precos-disclaimer {
            font-size: 12px;
            color: #999;
            text-align: center;
            max-width: 600px;
            line-height: 1.4;
        }

        @media (max-width: 768px) {
            .nova-tabela-de-precos-main {
                flex-direction: column;
            }

            .nova-tabela-de-precos-left {
                text-align: center;
                margin-bottom: 20px;
            }

            .nova-tabela-de-precos-benefits {
                margin-top: 30px;
            }

            .nova-tabela-de-precos-modal-overlay{
                background-color: rgba(0, 0, 0, 0.8);
            }

            .nova-tabela-de-precos-container {
                max-width: 100%;
                height: 400px;
                display: block;
                margin-top: -130px;
            }
            .nova-tabela-de-precos-header {
                text-align: center;
                margin-bottom: -12px;
            }
            .nova-tabela-de-precos-title {
                font-size: 20px;
            }
            .nova-tabela-de-precos-today {
                font-size: 16px;
                font-weight: bold;
                color: white;
                display: block;
                text-align: center;
            }

            .nova-tabela-de-precos-plans {
                grid-template-columns: 1fr;
            }
            
        }

        .nova-tabela-de-precos-today span{
                color: #8b44fd;
            }

        


        /* 1. O Overlay (Fundo escuro que cobre a tela toda) */
    .payment-toast {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8); /* Fundo preto transparente */
        z-index: 99999;
        
        /* Centraliza o conteúdo (o modal) na tela */
        display: flex;
        align-items: center;
        justify-content: center;

        /* Estado inicial: Invisível */
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
        backdrop-filter: blur(5px); /* Opcional: desfoca o fundo do site */
    }

    /* Estado Visível (ativado pelo JS) */
    .payment-toast.visible {
        opacity: 1;
        visibility: visible;
    }

    /* 2. O Modal em si (A "caixa" estilo Toast) */
    .payment-toast-content {
        background-color: #212121; /* Fundo cinza escuro solicitado */
        color: #f2f2f2; /* Texto claro solicitado */
        padding: 30px;
        border-radius: 16px; /* Bordas bem arredondadas */
        box-shadow: 0 20px 60px rgba(0,0,0,0.5); /* Sombra suave e profunda */
        
        width: 90%;
        max-width: 400px; /* Largura máxima confortável */
        text-align: center;
        position: relative;

        /* Animação de entrada (Pop-up suave) */
        transform: scale(0.95) translateY(10px);
        transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    /* Quando visível, o modal cresce para o tamanho normal */
    .payment-toast.visible .payment-toast-content {
        transform: scale(1) translateY(0);
    }

    /* Títulos */
    .payment-toast h4 {
        margin: 0 0 20px 0;
        font-size: 18px;
        font-weight: 600;
        color: #f2f2f2;
    }

    /* 3. Botões de Ação */
    .payment-buttons {
        display: flex;
        flex-direction: column; /* Um em cima do outro fica mais elegante em modais */
        gap: 12px;
        margin-bottom: 20px;
    }

    .btn-pay {
        background-color: #006dd9; /* Azul solicitado */
        color: #fff;
        border: none;
        padding: 14px 20px; /* Botões mais altos */
        border-radius: 8px;
        cursor: pointer;
        font-weight: 600;
        font-size: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: all 0.2s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .btn-pay:hover {
        background-color: #0056b3;
        transform: translateY(-2px); /* Leve subida no hover */
        box-shadow: 0 4px 12px rgba(0, 109, 217, 0.3);
    }

    .btn-pay .icon {
        font-size: 18px;
    }

    /* 4. Botão Cancelar (Link discreto) */
    .btn-close-toast {
        background: transparent;
        border: none;
        color: #888;
        padding: 5px;
        cursor: pointer;
        font-size: 13px;
        text-decoration: underline;
        transition: color 0.2s;
    }

    .btn-close-toast:hover {
        color: #f2f2f2;
    }

    /* 5. Spinner e Processamento */
    .spinner {
        width: 40px;
        height: 40px;
        border: 4px solid #333;
        border-top: 4px solid #006dd9; /* Azul */
        border-radius: 50%;
        margin: 0 auto 15px auto;
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    /* Grupo do Input + Botão Copiar */
    .pix-input-group {
        display: flex;
        gap: 0;
        margin-bottom: 10px;
    }

    .pix-input-group input {
        width: 100%;
        padding: 10px;
        border: 1px solid #444;
        background: #333;
        color: #fff;
        border-radius: 6px 0 0 6px; /* Arredonda só a esquerda */
        outline: none;
        font-size: 12px;
    }

    .pix-input-group button {
        background-color: #006dd9;
        color: white;
        border: none;
        padding: 0 15px;
        border-radius: 0 6px 6px 0; /* Arredonda só a direita */
        cursor: pointer;
        font-weight: bold;
        font-size: 12px;
        transition: background 0.3s;
    }

    .pix-input-group button:hover {
        background-color: #0056b3;
    }

    #pix-valor-total{
        color: #f2f2f2;
    }





























        .perfil-modelos-imagens-gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.perfil-modelos-imagens-gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.perfil-modelos-imagens-gallery-preview {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.perfil-modelos-imagens-gallery-actions {
    position: absolute;
    top: 5px;
    right: 5px;
    display: flex;
    gap: 5px;
}

.perfil-modelos-imagens-gallery-edit,
.perfil-modelos-imagens-gallery-remove {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,0.7);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.perfil-modelos-imagens-gallery-edit:hover {
    background: rgba(0,100,200,0.8);
}

.perfil-modelos-imagens-gallery-remove:hover {
    background: rgba(200,0,0,0.8);
}

.perfil-modelos-imagens-crop-rotate {
    background: #007cba;
    color: white;
}

.perfil-modelos-imagens-crop-rotate:hover {
    background: #005a87;
}


.perfil-modelos-imagens-videos-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.perfil-modelos-imagens-video-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
    padding: 10px;
}

.perfil-modelos-imagens-video-preview {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    background: #000;
}

.perfil-modelos-imagens-video-info {
    margin-top: 8px;
    font-size: 12px;
    color: #666;
    word-break: break-word;
}

.perfil-modelos-imagens-video-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 5px;
}

.perfil-modelos-imagens-video-remove {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,0.7);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.perfil-modelos-imagens-video-remove:hover {
    background: rgba(200,0,0,0.8);
}

/* Estilo para o dropzone de vídeos */
#videos-dropzone.dragover {
    border-color: #007cba;
    background-color: rgba(0, 124, 186, 0.1);
}


.sugestoes-nome-perfil-container {
    margin-top: 15px;
    transition: all 0.3s ease;
}

.sugestoes-nome-perfil-slug {
    background: #333;
    border-radius: 6px;
    padding: 10px 15px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #ccc;
    border-left: 4px solid #007cba;
}

.sugestoes-nome-perfil-slug::before {
    content: "Slug: ";
    color: #999;
    font-weight: 500;
}

.sugestoes-nome-perfil-status {
    padding: 12px 15px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.sugestoes-nome-perfil-disponivel {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.sugestoes-nome-perfil-indisponivel {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.sugestoes-nome-perfil-verificando {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.sugestoes-nome-perfil-hidden {
    opacity: 0;
    transform: translateY(-10px);
    max-height: 0;
    overflow: hidden;
}

.sugestoes-nome-perfil-visible {
    opacity: 1;
    transform: translateY(0);
    max-height: 200px;
}

.sugestoes-nome-perfil-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-top: 2px solid #ffc107;
    border-radius: 50%;
    animation: sugestoes-nome-perfil-spin 0.8s linear infinite;
    margin-right: 8px;
}

@keyframes sugestoes-nome-perfil-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* Estilos para as sugestões de localidade */
.sugestoes-localidade-container {
    position: relative;
    width: 100%;
}

.sugestoes-localidade-dropdown {
    position: absolute;
    top: 43px;
    left: 0;
    right: 0;
    background: #333;
    border: 1px solid #444;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.2s ease;
    pointer-events: none;
}

.sugestoes-localidade-dropdown.sugestoes-localidade-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.sugestoes-localidade-item {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #444;
    transition: background-color 0.2s ease;
    font-size: 14px;
}

.sugestoes-localidade-item:hover,
.sugestoes-localidade-item.sugestoes-localidade-ativo {
    background: #007cba;
}

.sugestoes-localidade-item:last-child {
    border-bottom: none;
}

.sugestoes-localidade-cidade {
    color: #fff;
    font-weight: 500;
}

.sugestoes-localidade-uf {
    color: #ccc;
    font-weight: normal;
}

.sugestoes-localidade-loading {
    padding: 15px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

.sugestoes-localidade-nenhuma {
    padding: 15px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

.sugestoes-localidade-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: sugestoes-localidade-spin 0.8s linear infinite;
    margin-right: 8px;
}

@keyframes sugestoes-localidade-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Customização da scrollbar */
.sugestoes-localidade-dropdown::-webkit-scrollbar {
    width: 6px;
}

.sugestoes-localidade-dropdown::-webkit-scrollbar-track {
    background: #2a2a2a;
}

.sugestoes-localidade-dropdown::-webkit-scrollbar-thumb {
    background: #666;
    border-radius: 3px;
}

.sugestoes-localidade-dropdown::-webkit-scrollbar-thumb:hover {
    background: #888;
}



.normalizacao-container {
    position: fixed;
    top: 10%;
    right: 60px;
    width: 26%;
    height: 500px;
    background: #fff;
    border-left: 2px solid #ddd;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.normalizacao-header {
    background: #d7d7d7;
    color: white;
    padding: 15px 20px;
    border-bottom: 1px solid #34495e;
}

.normalizacao-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.normalizacao-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.normalizacao-item {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.normalizacao-label {
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 14px;
}

.normalizacao-value {
    color: #666;
    font-size: 13px;
    line-height: 1.4;
    word-break: break-all;
    background: #f8f9fa;
    padding: 8px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.normalizacao-btn-phone {
    background: #007cba;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.normalizacao-btn-phone:hover {
    background: #005a85;
}

.normalizacao-btn-phone:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.normalizacao-form-usuario {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #ddd;
}

.normalizacao-form-usuario h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 16px;
}

.normalizacao-field {
    margin-bottom: 15px;
}

.normalizacao-field label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #2c3e50;
    font-size: 13px;
}

.normalizacao-field input,
.normalizacao-field select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
}

.normalizacao-field input:focus,
.normalizacao-field select:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.2);
}

.normalizacao-campos-usuario {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    margin-top: 10px;
}

.normalizacao-btn-salvar {
    background: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.2s;
}

.normalizacao-btn-salvar:hover {
    background: #218838;
}

.normalizacao-btn-salvar:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsividade para telas menores */
@media (max-width: 1200px) {
    .normalizacao-container {
        width: 40%;
    }
}

@media (max-width: 768px) {
    .normalizacao-container {
        width: 50%;
    }
}


.barra-aviso-login{
    position: fixed;
    display: block;
    width: 100%;
    height: 44px;
    background: #ff0000;
    text-align: center;
    color: #fff;
    z-index: 9999;
    padding-top: 9px;
    font-size: 14px;
}

.barra-aviso-login strong{
font-weight: bold !important;
    color: #fff;
}


/* CSS para ordenação de mídias */
.midias-ordenacao-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 3fr));
    gap: 15px;
    margin: 20px 0;
    min-height: 100px;
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 15px;
}

.midia-ordenacao-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: grab;
    background: #f8f9fa;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.midia-ordenacao-item:hover {
    border-color: #007cba;
    transform: scale(1.02);
}

.midia-ordenacao-item.dragging {
    opacity: 0.5;
    transform: rotate(5deg);
    cursor: grabbing;
}

.midia-ordenacao-item img,
.midia-ordenacao-item video {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

.midia-ordenacao-tipo {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 25px;
    font-weight: bold;
}

.midia-ordenacao-numero {
    position: absolute;
    top: 5px;
    left: 5px;
    background: #007cba;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
}



.titulo-tabbar-app{
    position: relative;
    display: block;
    text-align: center;
    font-family: "Roboto Condensed", sans-serif;
    background: #282930;
    font-style: oblique;
    font-size: 15px;
    padding-top: 10px;
    padding-bottom: 11px;
    border-radius: 8px;
}

.app-bottom{
    position: relative;
    text-align: center;
    font-family: "Roboto Condensed", sans-serif;
}

.app-bottom .coluna{

}

.app-bottom .coluna .icone a,
.app-bottom .coluna .icone a:hover{
    text-decoration: none;
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.app-bottom .coluna .icone{
    position: relative;
    display: block;
    background: #f2f2f2;
    border-radius: 8px;
    width: 84px;
    height: 84px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2px;
    margin-top: 8px;
}

.app-bottom .coluna span{
    font-weight: 600;
    font-size: 13px;
    font-family: "Asap Condensed", sans-serif;
}









.app-center{
    position: relative;
    text-align: center;
    font-family: "Roboto Condensed", sans-serif;
}
.app-center .coluna .icone a,
.app-center .coluna .icone a:hover{
    text-decoration: none;
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.app-center .coluna .icone{
    position: relative;
    display: block;
    background: #f2f2f2;
    border-radius: 8px;
    width: 84px;
    height: 84px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2px;
    margin-top: 22px;
}




.app-center .coluna span{
    font-weight: 600;
    font-size: 13px;
    font-family: "Asap Condensed", sans-serif;
    line-height: 17px;
    display: block;
}



/* Layer Overlay */
.layer-actions-app-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99999;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    animation: layer-actions-app-fade-in 0.3s ease-out;
}

@keyframes layer-actions-app-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Container da Layer */
.layer-actions-app-container {
    position: relative;
    width: 100%;
    max-width: 520px;
    max-height: 85vh;
    background: #353535;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    animation: layer-actions-app-slide-up 0.2s ease-out;
    display: flex;
    flex-direction: column;
}
@media(max-width:540px){
    .layer-actions-app-container{
        max-width: 100% !important;
    }
}
@keyframes layer-actions-app-slide-up {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Header com botão de fechar */
.layer-actions-app-header {
    position: relative;
    padding: 0;
    border-bottom: 0px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 32px;
}

.layer-actions-app-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
    position: absolute;
    top: 14px;
    right: 28px;
}

.layer-actions-app-close svg{
    width: 63%;
}

.layer-actions-app-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* Conteúdo */
.layer-actions-app-content {
    flex: 1;
    padding: 30px 20px;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Scrollbar customizada */
.layer-actions-app-content::-webkit-scrollbar {
    width: 8px;
}

.layer-actions-app-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.layer-actions-app-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.layer-actions-app-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Loading State */
.layer-actions-app-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    color: #fff;
}

.layer-actions-app-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: #4a90e2;
    border-radius: 50%;
    animation: layer-actions-app-spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes layer-actions-app-spin {
    to {
        transform: rotate(360deg);
    }
}

.layer-actions-app-loading-text {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* Em Breve Message */
.layer-actions-app-em-breve {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    color: #fff;
}

.layer-actions-app-em-breve-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.layer-actions-app-em-breve-text {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* Toast de Confirmação (usando jquery-confirm) */
.jconfirm.jconfirm-modern .jconfirm-box {
    background: #1a1a2e !important;
    border-radius: 15px !important;
}

.jconfirm.jconfirm-modern .jconfirm-box .jconfirm-title-c {
    color: #fff !important;
}

.jconfirm.jconfirm-modern .jconfirm-box .jconfirm-content {
    color: rgba(255, 255, 255, 0.8) !important;
}

.jconfirm .jconfirm-box.jconfirm-type-orange {
    border-top: solid 7px #2457c5 !important;
}

.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-title{
    color: #f2f2f2 !important;
}
.jconfirm .jconfirm-content div{
    color: #f2f2f2 !important;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-orange,
.jconfirm .jconfirm-box .jconfirm-buttons button.btn-orange:hover,
.jconfirm .jconfirm-box .jconfirm-buttons button.btn-orange:active,
.jconfirm .jconfirm-box .jconfirm-buttons button.btn-orange:focus{
    background: #2457c5 !important;
}



/* Feedback de Salvamento */
.layer-actions-app-feedback {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    min-height: 200px;
}

.layer-actions-app-feedback-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    animation: layer-actions-app-scale-in 0.5s ease-out;
}

.layer-actions-app-feedback-success .layer-actions-app-feedback-icon {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 3px solid #28a745;
}

.layer-actions-app-feedback-error .layer-actions-app-feedback-icon {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border: 3px solid #dc3545;
}

.layer-actions-app-feedback-text {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.layer-actions-app-feedback-success .layer-actions-app-feedback-text {
    color: #28a745;
}

.layer-actions-app-feedback-error .layer-actions-app-feedback-text {
    color: #dc3545;
}

@keyframes layer-actions-app-scale-in {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}


.layer-actions-app-content h2{
    margin-top: -31px !important;
    margin-bottom: 12px !important;
}


.sem-midias-aviso{

}

.sem-midias-aviso h3{
    font-size: 21px;
}


@media(max-width:540px){
    .app-bottom .coluna .icone,
    .app-center .coluna .icone{
        width: 60px;
        height: 60px;
    }
    .app-bottom .coluna span,
    .app-center .coluna span {
        font-weight: 600;
        font-size: 12px;
    }
}


/* ADICIONE ESTE CSS NO SEU dashboard-app.php
    (dentro de uma tag <style> ou onde seus estilos estão) 
*/
.novo-stories-reels-gatasgyn-preview-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Usamos um cinza escuro como na imagem, não preto total */
    background: rgba(000,000,000,0.75); 
    z-index: 200000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.novo-stories-reels-gatasgyn-preview-overlay.visible {
    display: block;
    opacity: 1;
}
.novo-stories-reels-gatasgyn-preview-container {
    width: 100%;
    height: 100%;
    max-width: 450px; /* Limita a largura no desktop */
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}
.novo-stories-reels-gatasgyn-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    z-index: 20;
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
}

/* --- Layout SKELETON (para os ícones) --- */
.novo-stories-reels-gatasgyn-skeleton {
    background: rgba(204, 204, 204, 0.5);
    border-radius: 4px;
    animation: novo-stories-reels-gatasgyn-pulse 1.5s infinite ease-in-out;
}
@keyframes novo-stories-reels-gatasgyn-pulse {
    0% { background: rgba(204, 204, 204, 0.5); }
    50% { background: rgba(204, 204, 204, 0.3); }
    100% { background: rgba(204, 204, 204, 0.5); }
}

/* --- Layout do SLIDER --- */
.novo-stories-reels-gatasgyn-slider-storie {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}
.novo-stories-reels-gatasgyn-slider-reels {
    display: block;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    /* Efeito de "trava" do TikTok */
    scroll-snap-type: y mandatory;
    -webkit-overflow-scrolling: touch; /* Para iOS */
}
.novo-stories-reels-gatasgyn-slide {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    position: relative;
    scroll-snap-align: start; /* Para Reels */
    overflow: hidden; /* Garante que o vídeo não vaze */
}
.novo-stories-reels-gatasgyn-video-player {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cobre a tela inteira */
}

/* --- Layout do HEADER (Storie / Reels) --- */
.novo-stories-reels-gatasgyn-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 15px;
    display: flex;
    align-items: center;
    /* Gradiente sutil no topo para legibilidade */
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 100%);
    z-index: 10;
}
.novo-stories-reels-gatasgyn-header-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.novo-stories-reels-gatasgyn-header-info {
    margin-left: 10px;
    color: #fff;
}
.novo-stories-reels-gatasgyn-header-name {
    font-weight: 600;
    font-size: 14px;
    width: 120px;
    height: 14px;
}
.novo-stories-reels-gatasgyn-header-location {
    font-size: 12px;
    color: #ddd;
    width: 100px;
    height: 12px;
    margin-top: 5px;
}
/* Barras de progresso (somente Storie) */
.novo-stories-reels-gatasgyn-progress-bars {
    position: absolute;
    top: 5px;
    left: 10px;
    right: 10px;
    display: flex;
    gap: 3px;
    z-index: 11;
}
.novo-stories-reels-gatasgyn-progress-bar {
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,0.4);
    border-radius: 2px;
}
.novo-stories-reels-gatasgyn-progress-bar-inner {
    height: 100%;
    width: 0; /* JS vai animar isso */
    background: #fff;
    border-radius: 2px;
}

/* --- Layout da SIDEBAR (Storie / Reels) --- */
.novo-stories-reels-gatasgyn-sidebar {
    position: absolute;
    bottom: 80px;
    right: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 10;
}
.novo-stories-reels-gatasgyn-sidebar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.novo-stories-reels-gatasgyn-sidebar-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.novo-stories-reels-gatasgyn-sidebar-icon-avatar {
    border: 2px solid #fff;
    width: 44px; /* Maior por causa da borda */
    height: 44px;
}
.novo-stories-reels-gatasgyn-sidebar-text {
    color: #fff;
    font-size: 12px;
    width: 30px;
    height: 12px;
    margin-top: 5px;
}

/* --- Layout do FOOTER (Storie) --- */
.novo-stories-reels-gatasgyn-footer-storie {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 15px;
    z-index: 10;
    /* Gradiente sutil no rodapé para legibilidade */
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 100%);
}
.novo-stories-reels-gatasgyn-footer-message {
    width: 100%;
    height: 40px;
    border-radius: 20px;
}

/* --- Layout do FOOTER (Reels) --- */
.novo-stories-reels-gatasgyn-footer-reels {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    z-index: 10;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 100%);
    display: flex;
    align-items: center;
    gap: 10px;
}
.novo-stories-reels-gatasgyn-footer-reels-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}
.novo-stories-reels-gatasgyn-footer-reels-info {
    flex: 1;
}
.novo-stories-reels-gatasgyn-footer-reels-name {
    width: 120px;
    height: 14px;
    margin-bottom: 4px;
}
.novo-stories-reels-gatasgyn-footer-reels-follow {
    width: 60px;
    height: 28px;
    border-radius: 6px;
}

/* --- Navegação (Storie) --- */
.novo-stories-reels-gatasgyn-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    z-index: 20;
    display: none; /* JS controla a visibilidade */
    padding: 10px;
}
.novo-stories-reels-gatasgyn-nav-left { left: 5px; }
.novo-stories-reels-gatasgyn-nav-right { right: 5px; }

/* CSS para ocultar a barra de rolagem do modo Reels
*/
.novo-stories-reels-gatasgyn-slider-reels {
    /* Para Firefox */
    scrollbar-width: none;
    
    /* Para IE e Edge (legado) */
    -ms-overflow-style: none;
}

.novo-stories-reels-gatasgyn-slider-reels::-webkit-scrollbar {
    /* Para Chrome, Safari, Opera e navegadores baseados em WebKit */
    display: none;
}

#video-verificacao-preview-container-js video {
             max-width: 60%; /* Garante que não ultrapasse a largura do container */
             height: auto;    /* Mantém a proporção do vídeo */
             display: block;  /* Remove espaços extras abaixo do vídeo */
             border-radius: 8px; /* Mantém o arredondamento */
             margin-top:20px;
             margin-left: auto;
             margin-right: auto;
             border: 1px solid rgba(255, 255, 255, 0.2); /* Mantém a borda */
         }


/* ==================== ESTILOS PARA BUSCA DE LOCALIDADE ==================== */

.sugestoes-localidade-wrapper {
    position: relative;
    width: 100%;
}

.sugestoes-localidade-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1e1e2e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.sugestoes-localidade-dropdown.sugestoes-localidade-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sugestoes-localidade-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sugestoes-localidade-item:last-child {
    border-bottom: none;
}

.sugestoes-localidade-item:hover,
.sugestoes-localidade-item.sugestoes-localidade-ativo {
    background: rgba(46, 125, 231, 0.15);
    padding-left: 20px;
}

.sugestoes-localidade-cidade {
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
}

.sugestoes-localidade-uf {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.sugestoes-localidade-loading {
    padding: 16px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.sugestoes-localidade-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-top-color: #2e7de7;
    border-radius: 50%;
    animation: sugestoesLocalidadeSpin 0.6s linear infinite;
}

@keyframes sugestoesLocalidadeSpin {
    to { transform: rotate(360deg); }
}

.sugestoes-localidade-nenhuma {
    padding: 16px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-style: italic;
}

/* Scrollbar customizada para o dropdown */
.sugestoes-localidade-dropdown::-webkit-scrollbar {
    width: 6px;
}

.sugestoes-localidade-dropdown::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.sugestoes-localidade-dropdown::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.sugestoes-localidade-dropdown::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}