@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
body {
    background-color: #121212;
    color: #ffffff;
    font-family: "Lexend", serif;
    font-optical-sizing: auto;      
    font-style: normal;
    font-variation-settings:"wdth" 100;
}
.wizard {
    max-width: 400px;
    margin: 50px auto;
    background: #1e1e1e;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}
.step-header {
    display: flex;
    /* justify-content: center; */
    margin-bottom: 30px;
}
.step-header .step {
    width: 30px;
    height: 30px;
    background: rgb(209 62 62);
    border-radius: 50%;
    text-align: center;
    line-height: 25px;
    color: #ffffff;
    margin: 0 5px;
    border: #6a6a6a 1px solid;
    font-size: large;
    font-weight: bold;
}

.step-header .step.active {
    background: #4caf50;
    color: #ffffff;
}
.step-content {
    display: none;
}
.step-content.active {
    display: block;
}
.step-disabled{
    background: #6a6a6a!important;
}
.btn-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.preview-container {
    background: #2b2b2b;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    color: #cccccc;
    text-align: center;
}
.preview-title {
    font-size: 1.5rem;
    color: #ffffff;
}

#dropzone_photo_files{
    color: black!important;
}
input.custom-input, textarea.custom-input {
    background-color: #333;
    border: 1px solid #bbb;
    color: #fff;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    outline: none;
    width: 100% !important;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    min-width: 0;
    max-width: 100%;
}
input.custom-input{
    height: 40px!important;
}

/* Estiliza o placeholder */
input.custom-input::placeholder, textarea.custom-input::placeholder {
    color: #ccc;
    opacity: 1;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Efeito ao focar */
input.custom-input:focus, textarea.custom-input:focus {
    border-color: #fff;
    background-color: #444;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Ajustes específicos para dispositivos Apple */
@media screen and (-webkit-min-device-pixel-ratio:0) {
    input.custom-input, textarea.custom-input {
        -webkit-appearance: none;
        border-radius: 5px;
    }
}
.button-custom {
    background-color: #000; /* Fundo preto */
    color: #fff; /* Texto branco */
    border: 1px solid #ccc; /* Borda cinza claro */
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 10px; /* Espaço entre as setas e o texto */
    border-radius: 5px; /* Borda levemente arredondada */
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Efeito ao passar o mouse */
.button-custom:hover {
    background-color: #222; /* Preto mais claro */
    border-color: #fff; /* Destaca a borda */
}
.custom-list {
    list-style: none; /* Remove os marcadores padrão */
    padding: 0;
}

.custom-list li {
    color: #f8f8f8; /* Cor gelo */
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px; /* Espaço entre o ícone e o texto */
}

/* Adiciona o símbolo ✔ antes de cada item da lista */
.custom-list li::before {
    content: "✔";
    color: #4CAF50; /* Cor verde para o check */
    font-weight: bold;
}

.browser-container {
    width: 800px; /* Largura da janela do navegador */
    height: 100%;
    border: 2px solid #ccc; /* Borda cinza */
    border-radius: 8px; /* Borda arredondada */
    /* overflow: hidden; Para esconder conteúdos que ultrapassem */
    background-color: #1e1e1e; /* Fundo cinza claro */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Sombra para um efeito 3D */
}
@media screen and (max-width: 800px) {
    .browser-container {
        width: 100%; /* Ajusta a largura para telas menores */
    }
    
}
/* Barra superior (simula a barra do navegador) */
.browser-header {
    background-color: #ddd;
    display: flex;
    align-items: center;
    padding: 8px;
}

/* Botões de controle (fechar, minimizar, maximizar) */
.browser-buttons {
    display: flex;
    gap: 6px;
    margin-right: 12px;
}

.browser-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.close {
    background-color: #ff5f57; /* Vermelho */
}

.minimize {
    background-color: #ffbd2e; /* Amarelo */
}

.maximize {
    background-color: #28c940; /* Verde */
}

/* Barra de URL */
.browser-url {
    flex: 1;
    background-color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    border: 1px solid #ccc;
    text-align: center;
    color: #666;
}

/* Área de conteúdo (onde a página "abre") */
.browser-content {
    background-color: #1e1e1e;
    padding: 20px;
    /* height: 300px; Altura da "página aberta" */
    overflow: hidden; /*Permite rolagem se o conteúdo for grande*/
}
/* Container principal do navegador mobile */
.mobile-browser {
    width: 100%; /* Largura do navegador (simulando um smartphone) */
    height: 640px; /* Altura do navegador */
    border-radius: 20px; /* Borda arredondada para parecer um celular */
    border: 5px solid #222; /* Borda preta simulando o corpo do celular */
    overflow: hidden;
    background-color: #f8f9fa;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Sombra para realismo */
    display: flex;
    flex-direction: column;
}

/* Simula a barra de status do celular (horário, sinal, bateria) */
.status-bar {
    background-color: #000;
    color: white;
    font-size: 14px;
    padding: 5px 10px;
    text-align: right;
    font-family: sans-serif;
}

/* Barra de navegação (como a barra do Chrome no mobile) */
.mobile-header {
    background-color: #ddd;
    display: flex;
    align-items: center;
    padding: 8px;
    gap: 6px;
}

/* Botões de navegação (voltar e avançar) */
.nav-buttons {
    display: flex;
    gap: 6px;
}

.nav-buttons span {
    width: 16px;
    height: 16px;
    display: inline-block;
    text-align: center;
    font-weight: bold;
    background: #bbb;
    color: #333;
    border-radius: 50%;
    line-height: 16px;
    font-size: 12px;
    cursor: pointer;
}

/* Barra de URL */
.mobile-url {
    flex: 1;
    background-color: white;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 12px;
    border: 1px solid #ccc;
    text-align: center;
    color: #666;
    font-family: sans-serif;
}

/* Área de conteúdo */
.mobile-content {
    background-color: white;
    flex: 1;
    padding: 15px;
    overflow-y: auto; /* Permite rolagem */
    font-family: sans-serif;
    font-size: 14px;
}

/* Barra inferior (simulando gestos do iPhone ou Android) */
.mobile-footer {
    background-color: #222;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-bar {
    width: 80px;
    height: 5px;
    background-color: white;
    border-radius: 5px;
}

input, textarea, .dropzone{
    border: #E32636 1px solid!important;
}

.block-ui-message {
    text-align: center;
    font-family: 'Playfair Display', serif;
    color: #E32636;
}

.block-ui-message p {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 500;
}

.heart-loader {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    position: relative;
    animation: heartbeat 1.2s infinite;
}

.heart-loader:before,
.heart-loader:after {
    content: '';
    background: #E32636;
    width: 30px;
    height: 50px;
    border-radius: 30px 30px 0 0;
    position: absolute;
    /* left: 15px; */
    transform: rotate(-45deg);
    transform-origin: 0 100%;
}

.heart-loader:after {
    left: 0;
    transform: rotate(45deg);
    transform-origin: 100% 100%;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.3);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.3);
    }
    70% {
        transform: scale(1);
    }
}

footer > .container{
    display: block!important;
}

.button-border {
    border: #c55252 1px solid;
    border-radius: 6px;
    padding: 10px;
    margin: 10px;
    color: #ffffff;
    text-decoration: none;
}

#melhorarMensagem {
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
    transition: all 0.3s ease;
}

#melhorarMensagem:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.youtube-results {
    position: absolute;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    background: #1e1e1e;
    border: 1px solid #E32636;
    border-radius: 4px;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    display: none;
    color: #ffffff;
}

.youtube-result-item {
    display: flex;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #333;
    transition: background-color 0.2s;
}

.youtube-result-item:hover {
    background-color: #333;
}

.youtube-result-item img {
    width: 120px;
    height: 68px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 4px;
}

.youtube-result-info {
    flex: 1;
}

.youtube-result-title {
    font-weight: 500;
    margin-bottom: 4px;
    color: #ffffff;
}

.youtube-result-channel {
    font-size: 0.9em;
    color: #cccccc;
}

.youtube-input-container {
    position: relative;
}

#next-btn{
    /* background-color: #E32636; */
    background: linear-gradient(to right, #be3a53, #ff3858);
}

.small-hint {
    font-size: 0.68em;
    line-height: 1.2;
    display: block;
    margin-top: 0.1rem;
    margin-bottom: 0.1rem;
}

.swiper {
    position: relative;
    width: 100%;
    /* Em telas pequenas, ocupa todo o container */
    aspect-ratio: 275 / 470;
    /* Mantém a proporção vertical */
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
}

/* Em telas acima de 768px (desktop), limitamos a largura em 275px 
para ficar fininho e alto. Ajuste 768px se quiser outro breakpoint. */
@media (min-width: 768px) {
    .swiper {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .swiper {
        max-width: 300px;
    }
}
/* Swiper Styles */
.swiper {
    width: 100%;
    height: 100%;
    margin: 20px 0;
    background-color: #12121200!important;
    border-radius: 8px;
    overflow: hidden;
}

.swiper-slide {
    text-align: center;
    background-color: #12121200!important;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Força a cor de fundo em todos os estados do slide */
.swiper-slide[style*="background-color"],
.swiper-slide-active[style*="background-color"],
.swiper-slide-next[style*="background-color"],
.swiper-slide-prev[style*="background-color"],
.swiper-slide-duplicate-active[style*="background-color"],
.swiper-slide-duplicate-next[style*="background-color"],
.swiper-slide-duplicate-prev[style*="background-color"] {
    background-color: #121212 !important;
}

.swiper-slide img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Ajuste específico para imagens em modo retrato */
.swiper-slide img[style*="aspect-ratio: 3/4"],
.swiper-slide img[style*="aspect-ratio: 2/3"],
.swiper-slide img[style*="aspect-ratio: 4/5"] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #121212;
}

.swiper-button-next,
.swiper-button-prev {
    color: #E32636;
    background: rgba(0, 0, 0, 0.3);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.5);
    color: #ff3858;
}

.swiper-pagination-bullet {
    background: #E32636!important;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #ff3858!important;
    opacity: 1;
    transform: scale(1.2);
}

/* Ajuste para o container do Swiper */
.swiper-container {
    background-color: #121212;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}
