/* Estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #200800; /* Fundo marrom escuro */
    color: white;
    line-height: 1.6;
    background-image: radial-gradient(circle at top, #3d1000 0%, #200800 70%); /* Gradiente de marrom avermelhado para marrom escuro */
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #200800;
    background-image: radial-gradient(circle at top, #3d1000 0%, #200800 70%);
    color: #ffffff;
    overflow-x: hidden;
}

.app-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    background-color: #1a0025;
    border-radius: 30px;
    border: 3px solid #ff1b6b;
    box-shadow: 0 0 30px rgba(255, 27, 107, 0.5);
    padding: 15px;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Barra de progresso */
#progress-bar-container {
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    margin: 10px 0 20px;
    border-radius: 10px;
    overflow: hidden;
    position: sticky;
    top: 0;
    z-index: 10;
    width: 100%;
}

#progress-bar {
    height: 100%;
    background: linear-gradient(to right, #8B0000, #ff5733); /* Gradiente vermelho escuro para laranja avermelhado */
    border-radius: 10px;
    width: 10%;
    transition: width 0.5s ease;
}

/* Botão voltar */
#back-button {
    position: fixed;
    top: 25px;
    left: 15px;
    cursor: pointer;
    z-index: 999;
    width: 40px;
    height: 40px;
    background-color: rgba(139, 0, 0, 0.8); /* Vermelho escuro transparente */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

#back-button:hover {
    background-color: rgba(178, 34, 34, 0.9); /* Vermelho mais brilhante ao passar o mouse */
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.hidden {
    display: none;
}

/* Telas */
.screen {
    display: none;
    padding: 10px 5px;
    position: relative;
    width: 100%;
    animation: fadeIn 0.5s ease;
}

.screen.active {
    display: block;
}

/* Estilo para telas em tela cheia sem bordas */
.fullscreen-page {
    padding: 0;
    margin: 0;
    position: relative;
    background-color: #1a0025;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.fullscreen-page .premium-hero {
    margin-top: 0;
    margin-bottom: 20px;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    background-color: #1a0025;
    border-bottom: 1px solid rgba(255, 27, 107, 0.3);
}

.fullscreen-page .premium-hero img {
    height: 50vh;
    max-height: 450px;
    width: 100%;
    object-fit: contain;
}

.fullscreen-page .premium-features,
.fullscreen-page .premium-gallery,
.fullscreen-page .pricing,
.fullscreen-page .testimonials-section,
.fullscreen-page .how-it-works,
.fullscreen-page .final-cta {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

.fullscreen-page .premium-description,
.fullscreen-page .premium-feature-highlight,
.fullscreen-page .users-count,
.fullscreen-page .reactions,
.fullscreen-page .cta-button {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

#screen-premium #progress-bar-container,
#screen-premium #back-button,
.fullscreen-page #progress-bar-container,
.fullscreen-page #back-button {
    display: none !important;
}

.premium-img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    max-height: 80vh;
    overflow: hidden;
    padding: 0;
    background: linear-gradient(to bottom, rgba(26, 0, 37, 0.5), rgba(61, 16, 0, 0.3));
    border-radius: 15px;
    position: relative;
}

.premium-img {
    width: auto;
    height: auto;
    max-height: 80vh;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.5s ease, filter 0.5s ease;
    display: block;
    margin: 0 auto;
    padding: 0;
    filter: drop-shadow(0 0 10px rgba(255, 27, 107, 0.5));
}

@media (min-width: 768px) {
    .premium-img {
        max-height: 80vh;
    }
    
    .premium-hero {
        max-width: 700px;
    }
}

.premium-hero:hover .premium-img {
    transform: scale(1.02);
    filter: drop-shadow(0 0 15px rgba(255, 27, 107, 0.7));
}

.premium-img-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 27, 107, 0.1), transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.premium-img-container:hover::before {
    opacity: 1;
}

.premium-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 15px 15px;
    background: linear-gradient(to top, rgba(26, 0, 37, 0.9), transparent);
    text-align: center;
    z-index: 2;
}

.premium-overlay p {
    margin: 0;
    padding-bottom: 5px;
    color: white;
    font-size: 18px;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.premium-features {
    margin: 30px auto;
    background-color: rgba(61, 16, 0, 0.3);
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 800px;
}

.feature {
    display: flex;
    align-items: center;
    padding: 12px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateX(5px);
}

.feature:last-child {
    border-bottom: none;
}

.feature-icon {
    font-size: 20px;
    margin-right: 15px;
    min-width: 30px;
}

.feature-text {
    flex: 1;
}

.feature-check {
    color: #45ff45; /* Verde mais vibrante */
    font-weight: bold;
    text-shadow: 0 0 5px rgba(69, 255, 69, 0.5);
}

.premium-description {
    text-align: center;
    margin: 25px 0;
    line-height: 1.5;
    font-size: 16px;
}

.premium-gallery {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px auto;
    flex-wrap: wrap;
    max-width: 90%;
    overflow: hidden;
    padding: 0 10px;
}

.premium-gallery img {
    width: 30%;
    max-width: 150px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.premium-gallery img:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.fullscreen-page .pricing,
.pricing {
    padding: 25px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(40, 0, 60, 0.9), rgba(26, 0, 37, 0.95));
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    margin: 40px auto;
    max-width: 450px;
    width: 85%;
    border: 3px solid #ff1b6b;
    position: relative;
    overflow: visible;
    box-sizing: border-box;
}

.pricing::before {
    content: '';
    position: absolute;
    top: -3px;
    right: -3px;
    bottom: -3px;
    left: -3px;
    background: linear-gradient(135deg, #ff1b6b, #8B0000);
    z-index: -1;
    border-radius: 22px;
    box-shadow: 0 0 20px rgba(255, 27, 107, 0.5);
}

.pricing::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.1) 0%, transparent 60%); /* Vermelho escuro transparente */
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.pricing:hover::after {
    opacity: 1;
}

.plan {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 15px;
    margin: 0 auto;
}

.plan-name {
    font-weight: 600;
    font-size: 18px;
}

.plan-price {
    font-size: 24px;
    font-weight: 700;
    color: #ff1b6b;
    text-shadow: 0 0 5px rgba(255, 27, 107, 0.5);
}

.cta-button {
    background: linear-gradient(to right, #8B0000, #ff5733); /* Gradiente vermelho escuro para laranja avermelhado */
    color: white;
    border: none;
    padding: 18px 0;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    width: 100%;
    max-width: 90%;
    margin: 20px auto;
    cursor: pointer;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(139, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: block;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(139, 0, 0, 0.4);
}

.pulse-animation {
    animation: pulse 2s infinite;
    display: inline-block;
}

.premium-feature-highlight {
    text-align: center;
    margin: 25px 0;
    font-size: 18px;
    font-weight: 500;
}

.reactions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.reaction {
    font-size: 30px;
    animation: pulse 2s infinite;
}

.reaction-img {
    max-width: 350px;
    height: auto;
    animation: pulse 2s infinite;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.users-count {
    text-align: center;
    margin: 30px 0;
    font-size: 18px;
}

.testimonials-section {
    margin: 30px 0;
    max-width: 100%;
    overflow-x: hidden;
}

.testimonial-card {
    background-color: #3d1000;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.testimonial-name {
    font-weight: 600;
}

.testimonial-stars {
    color: #ffcc00; /* Amarelo dourado para as estrelas */
    text-shadow: 0 0 5px rgba(255, 204, 0, 0.3);
}

.how-it-works {
    margin: 40px 0 20px;
    max-width: 100%;
    overflow-x: hidden;
}

.how-it-works h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 20px;
}

.step-card {
    background-color: #3d1000;
    border-radius: 15px;
    padding: 20px;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    max-width: 90%;
    width: 100%;
    box-sizing: border-box;
}

.step-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.1) 0%, transparent 60%); /* Vermelho escuro transparente */
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-card:hover::after {
    opacity: 1;
}

.step-header {
    margin-bottom: 10px;
}

.step-number {
    font-size: 16px;
    font-weight: 600;
}

.step-card h4 {
    margin-bottom: 10px;
    font-size: 18px;
}

.step-card p {
    margin-bottom: 15px;
    opacity: 0.9;
    font-size: 14px;
}

.step-img {
    width: 100%;
    max-width: 50%;
    height: auto;
    border-radius: 10px;
    margin-top: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.step-card:hover .step-img {
    transform: scale(1.02);
}

.chat-preview {
    margin-top: 20px;
    border-radius: 15px;
    overflow: hidden;
    background-color: #2c0c00; /* Fundo marrom mais escuro */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.chat-message {
    background-color: #8B0000; /* Vermelho escuro */
    display: inline-block;
    padding: 10px 15px;
    border-radius: 20px;
    margin: 10px;
    box-shadow: 0 3px 10px rgba(139, 0, 0, 0.3);
}

.chat-message p {
    margin: 0;
    color: white;
}

.chat-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    transition: transform 3s ease;
}

.chat-preview:hover .chat-img {
    transform: scale(1.05);
}

.final-cta {
    margin-top: 40px;
    max-width: 100%;
    overflow-x: hidden;
}

.final-cta p {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.security {
    background-color: #3d1000; /* Marrom avermelhado */
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.lock-icon {
    font-size: 30px;
    margin-bottom: 10px;
    display: block;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.security h3 {
    margin-bottom: 15px;
}

.security p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 15px;
    text-align: center;
}

.refund-policy {
    font-size: 12px !important;
    opacity: 0.7 !important;
}

.security-badges {
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.security-badges p {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.security-icon {
    font-size: 18px;
}

/* Imagens Mulher Asiática */
.asiatica-perfil {
    background-image: url('https://prochatai.site/wp-content/uploads/2025/04/Perfil.png');
    background-size: cover;
    background-position: center;
    height: 220px;
}

.asiatica-atletica {
    background-image: url('https://prochatai.site/wp-content/uploads/2025/04/atletica.png');
    background-size: cover;
    background-position: center;
}

.asiatica-gorda {
    background-image: url('https://prochatai.site/wp-content/uploads/2025/04/gorda.png');
    background-size: cover;
    background-position: center;
}

.asiatica-magra {
    background-image: url('https://prochatai.site/wp-content/uploads/2025/04/magra.png');
    background-size: cover;
    background-position: center;
}

.asiatica-perfeita {
    background-image: url('https://prochatai.site/wp-content/uploads/2025/04/perfeito.png');
    background-size: cover;
    background-position: center;
}

/* Imagens Mulher Latina */
.latina-perfil {
    background-image: url('https://prochatai.site/wp-content/uploads/2025/04/perfil-1.png');
    background-size: cover;
    background-position: center;
    height: 220px;
}

.latina-atletica {
    background-image: url('https://prochatai.site/wp-content/uploads/2025/04/atletica-1.png');
    background-size: cover;
    background-position: center;
}

.latina-gorda {
    background-image: url('https://prochatai.site/wp-content/uploads/2025/04/gorda-1.png');
    background-size: cover;
    background-position: center;
}

.latina-magra {
    background-image: url('https://prochatai.site/wp-content/uploads/2025/04/magro.png');
    background-size: cover;
    background-position: center;
}

.latina-perfeita {
    background-image: url('https://prochatai.site/wp-content/uploads/2025/04/perfeito-1.png');
    background-size: cover;
    background-position: center;
}

/* Imagens Mulher Loira */
.loira-perfil {
    background-image: url('https://prochatai.site/wp-content/uploads/2025/04/perfil-2.png');
    background-size: cover;
    background-position: center;
    height: 220px;
}

.loira-atletica {
    background-image: url('https://prochatai.site/wp-content/uploads/2025/04/atletica-2.png');
    background-size: cover;
    background-position: center;
}

.loira-gorda {
    background-image: url('https://prochatai.site/wp-content/uploads/2025/04/gorda-2.png');
    background-size: cover;
    background-position: center;
}

.loira-magra {
    background-image: url('https://prochatai.site/wp-content/uploads/2025/04/magra-1.png');
    background-size: cover;
    background-position: center;
}

.loira-perfeita {
    background-image: url('https://prochatai.site/wp-content/uploads/2025/04/perfeita.png');
    background-size: cover;
    background-position: center;
}

/* Ajustes para opções com imagens de fundo */
.option[class*="asiatica-"],
.option[class*="latina-"],
.option[class*="loira-"] {
    position: relative;
}

.option[class*="asiatica-"] span,
.option[class*="latina-"] span,
.option[class*="loira-"] span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
    padding: 20px 10px 10px;
    text-align: center;
    font-weight: 500;
    z-index: 3;
}

/* Imagens Mulher Afro */
.afro-perfil {
    background-image: url('https://prochatai.site/wp-content/uploads/2025/04/perfil-3.png');
    background-size: cover;
    background-position: center;
    height: 220px;
}

.afro-atletica {
    background-image: url('https://prochatai.site/wp-content/uploads/2025/04/atletica-3.png');
    background-size: cover;
    background-position: center;
}

.afro-gorda {
    background-image: url('https://prochatai.site/wp-content/uploads/2025/04/gorda-3.png');
    background-size: cover;
    background-position: center;
}

.afro-magra {
    background-image: url('https://prochatai.site/wp-content/uploads/2025/04/magra-2.png');
    background-size: cover;
    background-position: center;
}

.afro-perfeita {
    background-image: url('https://prochatai.site/wp-content/uploads/2025/04/perfeito-2.png');
    background-size: cover;
    background-position: center;
}

/* Ajustes para opções com imagens de fundo */
.option[class*="asiatica-"],
.option[class*="latina-"],
.option[class*="loira-"],
.option[class*="afro-"] {
    position: relative;
}

.option[class*="asiatica-"] span,
.option[class*="latina-"] span,
.option[class*="loira-"] span,
.option[class*="afro-"] span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
    padding: 20px 10px 10px;
    text-align: center;
    font-weight: 500;
    z-index: 3;
}

/* Imagens de Interação */
.conexao-img {
    background-image: url('https://prochatai.site/wp-content/uploads/2025/04/Flux_Dev_Two_abstract_human_silhouettes_intertwined_with_flowi_2.jpg');
    background-size: cover;
    background-position: center;
    height: 170px;
}

.amizade-img {
    background-image: url('https://prochatai.site/wp-content/uploads/2025/04/Leonardo_Phoenix_10_Two_human_figures_sit_side_by_side_in_a_co_2.jpg');
    background-size: cover;
    background-position: center;
    height: 170px;
}

.casual-img {
    background-image: url('https://prochatai.site/wp-content/uploads/2025/04/Leonardo_Phoenix_10_Two_human_figures_sit_across_from_each_oth_0.jpg');
    background-size: cover;
    background-position: center;
    height: 170px;
}

.caso-img {
    background-image: url('https://prochatai.site/wp-content/uploads/2025/04/Flux_Dev_Stylized_silhouette_of_two_figures_in_a_bed_surrounde_0.jpg');
    background-size: cover;
    background-position: center;
    height: 170px;
}

/* Ajustes para opções com imagens de interação */
.option.option-interacao {
    display: flex;
    flex-direction: column;
    padding-top: 0;
    overflow: hidden;
}

.option-interacao-img {
    width: 100%;
    height: 170px;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
    transition: transform 0.5s ease;
}

.option.option-interacao:hover .option-interacao-img {
    transform: scale(1.05);
}

.option.option-interacao span {
    position: relative;
    padding: 15px 10px;
    background: #3d1000;
    text-align: center;
    border-radius: 0 0 15px 15px;
    margin-top: auto;
    z-index: 2;
}

/* Animação para o botão de play quando áudio está tocando */
.play-button.playing {
    background-color: #8B0000; /* Vermelho escuro durante a reprodução */
    animation: pulse-audio 2s infinite ease-in-out;
    box-shadow: 0 0 15px rgba(139, 0, 0, 0.5);
}

@keyframes pulse-audio {
    0% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
    75% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

img {
    max-width: 100%;
    height: auto;
}

.testimonial-card, .step-card, .premium-features, .feature, .premium-description, .premium-feature-highlight, .users-count {
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    word-wrap: break-word;
}

@media (max-width: 600px) {
    .pricing {
        width: 80%;
        margin: 30px auto;
    }
}

/* Tela Premium (Pitch de Vendas) */
.premium-hero {
    position: relative;
    margin: 0 auto 30px;
    overflow: hidden;
    border-radius: 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(26, 0, 37, 0.95), rgba(40, 0, 60, 0.9));
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-width: 90%;
    border: 2px solid #ff1b6b;
}

.premium-img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    max-height: 80vh;
    overflow: hidden;
    padding: 0;
    background: linear-gradient(to bottom, rgba(26, 0, 37, 0.5), rgba(61, 16, 0, 0.3));
    border-radius: 15px;
    position: relative;
}

.premium-img {
    width: auto;
    height: auto;
    max-height: 80vh;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.5s ease, filter 0.5s ease;
    display: block;
    margin: 0 auto;
    padding: 0;
    filter: drop-shadow(0 0 10px rgba(255, 27, 107, 0.5));
}

@media (min-width: 768px) {
    .premium-img {
        max-height: 80vh;
    }
    
    .premium-hero {
        max-width: 700px;
    }
}

.premium-hero:hover .premium-img {
    transform: scale(1.02);
    filter: drop-shadow(0 0 15px rgba(255, 27, 107, 0.7));
}

.premium-img-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 27, 107, 0.1), transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.premium-img-container:hover::before {
    opacity: 1;
}

.premium-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 15px 15px;
    background: linear-gradient(to top, rgba(26, 0, 37, 0.9), transparent);
    text-align: center;
    z-index: 2;
}

.premium-overlay p {
    margin: 0;
    padding-bottom: 5px;
    color: white;
    font-size: 18px;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

h2 {
    text-align: center;
    margin: 20px 0 30px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
}

.highlight {
    background-color: #8B0000; /* Vermelho escuro para destaque */
    padding: 0 5px;
    border-radius: 5px;
    color: white;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.option {
    background-color: #3d1000; /* Marrom avermelhado */
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    transform-origin: center;
    height: 220px;
    display: flex;
    flex-direction: column;
}

.option.asiatica-perfil,
.option.asiatica-atletica,
.option.asiatica-magra,
.option.asiatica-gorda,
.option.asiatica-perfeita {
    background-color: transparent;
}

/* Opção sem imagem (apenas texto) */
.option-text {
    background-color: #3d1000; /* Marrom avermelhado */
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    transform-origin: center;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px 10px;
}

.option-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(255, 27, 107, 0);
    z-index: 2;
    transition: box-shadow 0.3s ease;
    pointer-events: none;
}

.option:hover .option-glow, 
.option.selected .option-glow,
.option-text:hover .option-glow,
.option-text.selected .option-glow {
    box-shadow: 0 0 15px rgba(139, 0, 0, 0.7); /* Vermelho escuro */
}

.option:hover, .option.selected,
.option-text:hover, .option-text.selected {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.option.selected,
.option-text.selected {
    border: 3px solid #8B0000; /* Vermelho escuro para borda */
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.5);
}

.option:active,
.option-text:active {
    transform: scale(0.98);
}

.option img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.option:hover img {
    transform: scale(1.05);
}

.option span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
    padding: 20px 10px 10px;
    text-align: center;
    font-weight: 500;
    z-index: 3;
}

.option-text span {
    font-weight: 500;
    z-index: 3;
    position: relative;
}

/* Grade de opções para etnia e corpo */
.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Grade de opções sem imagens */
.options-noimg {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
}

@media (min-width: 480px) {
    .options-noimg {
        grid-template-columns: repeat(3, 1fr);
    }
}

.options-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.highlight::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.highlight:hover::after {
    opacity: 1;
}

/* Opções de voz */
.options-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.option-voice, .option-button {
    background-color: #3d1000; /* Marrom avermelhado */
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Estilo para o botão continuar na tela de voz */
#voz-continue {
    background: linear-gradient(to right, #5d0000, #8B0000); /* Gradiente de vermelho mais escuro para vermelho escuro */
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    margin: 30px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 80%;
    max-width: 300px;
}

#voz-continue::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s;
}

#voz-continue:hover::before {
    left: 100%;
}

#voz-continue:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(139, 0, 0, 0.3);
}

.option-voice::before, .option-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(139, 0, 0, 0.1), rgba(255, 87, 51, 0.1)); /* Gradiente vermelho para laranja transparente */
    opacity: 0;
    transition: opacity 0.3s;
}

.option-voice:hover::before, .option-button:hover::before,
.option-voice.selected::before, .option-button.selected::before {
    opacity: 1;
}

.option-voice:hover, .option-button:hover,
.option-voice.selected, .option-button.selected {
    background-color: #5e1a00; /* Marrom avermelhado mais intenso ao passar o mouse */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.option-voice.selected, .option-button.selected {
    border: 2px solid #8B0000; /* Vermelho escuro para borda */
}

.play-button {
    width: 40px;
    height: 40px;
    background-color: #5e1a00; /* Marrom avermelhado mais intenso */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    z-index: 2;
}

.option-voice:hover .play-button {
    transform: scale(1.1);
    background-color: #8B0000; /* Vermelho escuro ao passar o mouse */
}

.voice-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.option-button {
    justify-content: center;
    padding: 20px;
    font-weight: 500;
}

.sliders-container {
    margin-top: 20px;
}

.slider-item {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.slider-item span {
    width: 100px;
    text-align: center;
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
}

/* Container personalizado para os sliders */
.personality-custom-container {
    position: relative;
    background-color: rgba(26, 0, 37, 0.8);
    border: 3px solid #ff1b6b;
    border-radius: 20px;
    padding: 30px 20px;
    margin: 30px 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Área clicável para os sliders */
.slider-track {
    flex: 1;
    height: 30px;
    margin: 0 15px;
    position: relative;
    cursor: pointer;
    z-index: 5;
}

.slider-track::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 3px;
    background-color: #3d1000;
    z-index: 1;
    border-radius: 3px;
}

/* Esconder o controle deslizante padrão */
.personality-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 10;
    cursor: pointer;
}

/* Bolinha do slider */
.slider-personality-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff1b6b, #8B0000);
    box-shadow: 0 0 15px rgba(255, 27, 107, 0.7);
    z-index: 2;
    pointer-events: none;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: left 0.2s ease;
}

/* Botão continuar na tela de personalidade */
#personalidade-continue {
    background: linear-gradient(to right, #8B0000, #ff5733);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    margin: 30px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 80%;
    max-width: 300px;
}

#personalidade-continue::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s;
}

#personalidade-continue:hover::before {
    left: 100%;
}

#personalidade-continue:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(139, 0, 0, 0.3);
}

/* Container para as opções Sim/Não */
.yes-no-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 15px auto;
    max-width: 80%;
}

/* Botões Sim/Não */
.yes-no-btn {
    padding: 14px 50px;
    border-radius: 50px;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
}

.yes-btn {
    background: linear-gradient(to right, #32cd32, #1a9f1a);
    color: white;
}

.no-btn {
    background: linear-gradient(to right, #ff3333, #cc0000);
    color: white;
}

.yes-no-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.yes-no-btn.selected {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(255, 27, 107, 0.7);
}

/* Container para os previews de foto e vídeo */
.preview-container {
    display: flex;
    justify-content: center;
    margin: 5px auto 25px;
    max-width: 90%;
}

.preview-box {
    width: 200px;
    height: 240px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 auto;
    border: 2px solid #ff1b6b;
}

.preview-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 27, 107, 0.4);
}

.preview-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.preview-box:hover img {
    transform: scale(1.1);
}

.preview-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 10px 8px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    text-align: center;
    z-index: 2;
}

.preview-overlay span {
    font-size: 12px;
    font-weight: 500;
}

.video-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff1b6b;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.8rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

/* Botão continuar */
.continue-button {
    background: linear-gradient(to right, #ff1b6b, #7b00e0);
    color: white;
    border: none;
    padding: 15px 0;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    margin: 30px auto 15px;
    display: block;
    width: 80%;
    max-width: 300px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(255, 27, 107, 0.4);
}

.continue-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease-in-out;
}

.continue-button:hover::before {
    left: 100%;
}

.continue-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 27, 107, 0.6);
}

/* Tela de carregamento intermediária - nunca deve ser exibida */
#screen-loading-transition {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none !important; /* Nunca mostrar essa tela */
    justify-content: center;
    align-items: center;
    background-color: #1a0025;
    z-index: 10;
    min-height: 300px;
}

#screen-loading-transition.active {
    display: none !important; /* Forçar esconder, mesmo com classe active */
}

#progress-bar-only {
    width: 80%;
    max-width: 400px;
    height: 10px;
    background-color: #330033;
    border-radius: 5px;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

#progress-fill {
    height: 100%;
    background: linear-gradient(to right, #ff1b6b, #7b00e0);
    border-radius: 5px;
    width: 0%; /* Começa em 0 e é animado via JavaScript */
    transition: width 0.8s ease-in-out;
    box-shadow: 0 0 10px rgba(255, 27, 107, 0.5);
}

/* Ajustes para a tela de fotos e vídeos */
.screen-title {
    margin-bottom: 15px;
    text-align: center;
}

.screen-title p {
    opacity: 0.8;
    font-size: 16px;
    margin-top: 5px;
} 