* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    touch-action: pan-y;
}

html {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

#app {
    max-width: 480px;
    margin: 0 auto;
    background-color: white;
    min-height: 100vh;
    position: relative;
}

.progress-bar-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background-color: #f0f0f0;
    z-index: 1000;
    max-width: 480px;
    margin: 0 auto;
}

.progress-bar {
    height: 100%;
    background-color: #f5a5b0;
    transition: width 0.3s ease;
    width: 0%;
}

.screen {
    display: none;
    padding: 20px;
    padding-top: 30px;
    animation: fadeIn 0.5s ease;
}

.screen.active {
    display: block;
}

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

.logo-container {
    text-align: center;
    margin-bottom: 5px;
}

.logo-placeholder {
    color: #DAA520;
    padding: 0;
    border-radius: 0;
    font-weight: bold;
    font-size: 18px;
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
}

.logo-placeholder img {
    max-width: 280px;
    max-height: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.logo-container-small {
    text-align: center;
    margin-bottom: 10px;
}

.logo-placeholder-small {
    color: #DAA520;
    padding: 0;
    border-radius: 0;
    font-weight: bold;
    display: inline-block;
    font-size: 14px;
    background: none;
}

.logo-placeholder-small img {
    max-width: 200px;
    max-height: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.content {
    padding-bottom: 40px;
}

.title-blue {
    color: #4169E1;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
}

.title-blue-italic {
    color: #4169E1;
    font-size: 26px;
    font-weight: bold;
    font-style: italic;
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.3;
}

.title-green {
    color: #4CAF50;
    font-size: 32px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.15);
    letter-spacing: 0.5px;
}

.title-black-bold {
    color: #333;
    font-size: 26px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.title-black-italic {
    color: #333;
    font-size: 22px;
    font-weight: bold;
    font-style: italic;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.4;
}

.description {
    text-align: center;
    margin-bottom: 15px;
    color: #555;
    font-size: 16px;
}

.description-italic {
    text-align: center;
    margin-bottom: 20px;
    color: #555;
    font-size: 16px;
    font-style: italic;
}

.description-italic-underline {
    text-align: center;
    margin-bottom: 20px;
    color: #555;
    font-size: 16px;
    font-style: italic;
    text-decoration: underline;
}

.image-placeholder {
    text-align: center;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.image-placeholder video {
    width: 100%;
    height: auto;
    min-height: 200px;
    max-width: 100%;
    border-radius: 10px;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.image-placeholder img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    object-fit: cover;
}

/* Vídeos verticais para páginas de perguntas */
.screen:not(#screen-intro):not(#screen-result) .image-placeholder {
    max-width: 300px;
    margin: 20px auto;
}

.screen:not(#screen-intro):not(#screen-result) .image-placeholder video {
    aspect-ratio: 9/16;
    max-width: 280px;
    width: 100%;
    height: auto;
    min-height: 400px;
}

/* Tela da Mariana Cândido */
.mariana-image {
    text-align: center;
    margin-bottom: 30px;
}

.mariana-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.mariana-title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.3;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mariana-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    text-align: left;
    padding: 0 10px;
}

.mariana-text strong {
    color: #333;
    font-weight: 600;
}

.highlight-text {
    background: linear-gradient(135deg, #f5c2c7 0%, #f0b7be 100%);
    color: #333;
    padding: 3px 8px;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(245, 194, 199, 0.3);
}

/* Tela da Notícia */
.noticia-title {
    font-size: 26px;
    font-weight: bold;
    font-style: italic;
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.3;
}

.noticia-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    margin-bottom: 30px;
}

.noticia-header {
    background: #dc3545;
    padding: 0;
}

.gastronomia-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    color: white;
}

.menu-icon, .search-icon {
    font-size: 18px;
    font-weight: bold;
}

.gastronomia-text {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
}

.noticia-content {
    padding: 20px;
}

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

.noticia-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.foto-credito {
    position: absolute;
    bottom: 8px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.noticia-subtitle {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.author {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    font-style: italic;
}

.noticia-description {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
}

.data-noticia {
    color: #999;
    font-size: 13px;
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 20px;
}

.benefits {
    margin: 25px 0;
}

.benefit-item {
    background-color: #fff;
    padding: 15px;
    margin: 10px 0;
    border-left: 4px solid #4CAF50;
    font-size: 15px;
    color: #333;
    line-height: 1.5;
}

.benefits-check {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 25px 20px;
    margin: 25px 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

.benefits-check .benefit-item {
    border-left: 4px solid #4CAF50;
    background: white;
    margin-bottom: 12px;
    border-radius: 8px;
    padding: 15px 20px;
    font-weight: 600;
    color: #333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefits-check .benefit-item:last-child {
    margin-bottom: 0;
}

.benefits-check .benefit-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.2);
    border-left-width: 6px;
}

.benefits-check .benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(76, 175, 80, 0.05) 0%, transparent 100%);
    z-index: -1;
}

.btn {
    width: calc(100% - 12px);
    padding: 18px 24px;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 15px 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #5cb85c 0%, #449d44 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(92, 184, 92, 0.4), 
                0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary::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.6s ease;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    background: linear-gradient(135deg, #449d44 0%, #357a35 100%);
    box-shadow: 0 8px 25px rgba(92, 184, 92, 0.5), 
                0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-success {
    background: linear-gradient(135deg, #5cb85c 0%, #449d44 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(92, 184, 92, 0.4), 
                0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-success::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.6s ease;
}

.btn-success:hover {
    transform: translateY(-3px) scale(1.02);
    background: linear-gradient(135deg, #449d44 0%, #357a35 100%);
    box-shadow: 0 8px 25px rgba(92, 184, 92, 0.5), 
                0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-success:hover::before {
    left: 100%;
}

.subtitle-green {
    color: #4CAF50;
    text-align: center;
    font-size: 16px;
    margin-top: 15px;
    font-weight: 500;
}

.question-title {
    font-size: 28px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    line-height: 1.3;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.subtitle {
    text-align: center;
    color: #666;
    font-size: 15px;
    margin-bottom: 25px;
}

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

.option-btn {
    background: linear-gradient(135deg, #f5a5b0 0%, #e89ca8 100%);
    border: none;
    padding: 18px 24px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #2c2c2c;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    box-shadow: 0 6px 20px rgba(245, 165, 176, 0.4), 
                0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 8px 6px;
    position: relative;
    overflow: hidden;
    line-height: 1.3;
    width: calc(100% - 12px);
    letter-spacing: 0.3px;
}

.option-btn::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.6s ease;
}

.option-btn:hover::before {
    left: 100%;
}

.option-btn:hover {
    background: linear-gradient(135deg, #f197a4 0%, #e5909c 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(245, 165, 176, 0.5), 
                0 4px 12px rgba(0, 0, 0, 0.15);
}

.option-btn .arrow {
    font-size: 24px;
    font-weight: bold;
    color: #1a1a1a;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.option-btn:hover .arrow {
    color: #000;
    transform: translateX(5px);
}

/* Carrossel de Testimoniais */
.testimonials-carousel {
    margin: 30px 0;
    position: relative;
    touch-action: pan-y;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    height: 600px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    touch-action: pan-y;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #f5a5b0;
}

.dot:hover {
    background-color: #f0b7be;
}

.whatsapp-mockup {
    background-color: #e5ddd5;
    border-radius: 15px;
    overflow: hidden;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.whatsapp-header {
    background-color: #075e54;
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.back-arrow {
    font-size: 24px;
    cursor: pointer;
}

.whatsapp-contact {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.whatsapp-icons {
    display: flex;
    gap: 15px;
    font-size: 20px;
}

.whatsapp-messages {
    padding: 15px;
    min-height: 300px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect fill="%23e5ddd5" width="100" height="100"/></svg>');
}

.message {
    margin: 10px 0;
    padding: 10px 12px;
    border-radius: 8px;
    max-width: 80%;
    font-size: 14px;
    position: relative;
}

.message.received {
    background-color: white;
    margin-right: auto;
}

.message.sent {
    background-color: #dcf8c6;
    margin-left: auto;
}

.message .time {
    font-size: 11px;
    color: #666;
    margin-top: 5px;
    display: block;
    text-align: right;
}

.loading-content {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
}

.loading-title {
    font-size: 24px;
    margin-bottom: 20px;
}

.loading-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ecf0f1;
}

.brick-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 60px;
    margin: 30px 0;
}

.loading-bar-container {
    width: 100%;
    max-width: 400px;
    height: 30px;
    background-color: #555;
    border-radius: 15px;
    overflow: hidden;
    margin: 20px 0;
}

.loading-bar {
    height: 100%;
    background: linear-gradient(90deg, #DAA520 0%, #FFD700 100%);
    transition: width 0.5s ease;
    border-radius: 15px;
}

.loading-percentage {
    font-size: 20px;
    font-weight: bold;
    color: #DAA520;
    margin-top: 10px;
}

.fire-text {
    text-align: center;
    font-size: 16px;
    font-style: italic;
    color: #e74c3c;
    margin: 20px 0;
    font-weight: 500;
}

.secret-text {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #DAA520;
    margin-bottom: 25px;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.offer-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 30px 0;
}

.offer-card {
    background: linear-gradient(135deg, #d4f4dd 0%, #c8e6c9 100%);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.offer-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.offer-card h5 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #2c3e50;
}

.offer-card ul {
    list-style: none;
    margin: 15px 0;
}

.offer-card li {
    margin: 8px 0;
    font-size: 15px;
    color: #333;
}

.price-old {
    text-decoration: line-through;
    color: #e74c3c;
    font-size: 18px;
    font-weight: bold;
}

.price-new {
    font-size: 36px;
    font-weight: bold;
    color: #2c3e50;
    margin: 10px 0;
}

.highlight {
    background-color: #4CAF50;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
    font-weight: bold;
    margin: 10px 0;
}

.guarantee {
    text-align: center;
    font-size: 12px;
    color: #666;
    margin-top: 15px;
}

.bonus-section {
    margin: 20px 0;
    padding: 15px;
    background-color: rgba(255,255,255,0.5);
    border-radius: 10px;
}

.bonus {
    font-size: 14px;
    margin: 10px 0;
    color: #333;
}

.bonus-price {
    color: #e74c3c;
    text-decoration: line-through;
}

.bonus-extra {
    background-color: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 15px;
    margin: 15px 0;
}

.bonus-extraordinary {
    font-weight: bold;
    font-size: 16px;
    color: #d35400;
}

.bonus-title {
    font-weight: bold;
    font-size: 15px;
    color: #333;
}

.price-total {
    font-size: 18px;
    margin: 15px 0;
    color: #333;
}

.strikethrough {
    text-decoration: line-through;
    color: #e74c3c;
}

.price-today {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.price-final {
    font-size: 32px;
    font-weight: bold;
    color: #2c3e50;
    background-color: #4CAF50;
    color: white;
    padding: 10px;
    border-radius: 10px;
    display: inline-block;
    margin: 10px 0;
}

.testimonial-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 25px 0;
}

.testimonial-card {
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.testimonial-header {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: center;
}

.avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
    overflow: hidden;
    background: #f0f0f0;
}

.avatar-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-info {
    flex: 1;
}

.stars {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 5px;
    letter-spacing: 2px;
    text-shadow: 0 1px 3px rgba(255, 215, 0, 0.3);
    font-weight: bold;
}

.testimonial-name {
    color: #f5a5b0;
    font-size: 16px;
    font-weight: 600;
}

.testimonial-text {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.title-underline {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    text-decoration: underline;
    margin-bottom: 25px;
    color: #333;
}

.faq-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
}

.faq-accordion {
    margin: 20px 0;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.faq-question {
    padding: 20px 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #f5a5b0;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: transparent;
    border-radius: 8px;
    position: relative;
}

.faq-question:hover {
    background-color: rgba(245, 165, 176, 0.1);
    color: #e08995;
    transform: translateX(4px);
}

.faq-arrow {
    font-size: 24px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #999;
    font-weight: bold;
}

.faq-item.active .faq-arrow {
    transform: rotate(90deg);
    color: #f5a5b0;
}

.faq-answer {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 15px;
    background-color: rgba(245, 165, 176, 0.02);
    border-radius: 0 0 8px 8px;
    margin-top: -8px;
}

.faq-item.active .faq-answer {
    opacity: 1;
    max-height: 200px;
    padding: 20px 15px;
    margin-top: 0;
}

.faq-answer p {
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

.footer-info {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.footer-info p {
    font-size: 12px;
    color: #666;
    margin: 8px 0;
    line-height: 1.5;
}

/* Social Proof Screen Styles */
.notifications-container {
    margin: 30px 0;
    text-align: center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.notifications-container img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
}

.brick-cake-image {
    margin: 30px 0 20px 0;
    text-align: center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.brick-cake-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 375px) {
    .question-title {
        font-size: 24px;
        font-weight: 900;
    }
    
    .option-btn {
        font-size: 15px;
        padding: 18px;
    }
    
    .title-blue,
    .title-green {
        font-size: 28px;
        font-weight: 900;
    }
    
    .notifications-container {
        margin: 20px 0;
    }
    
    .brick-cake-image {
        margin: 20px 0 15px 0;
    }
}

/* Screen Result Styles */
.description-highlight {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 20px 0;
    line-height: 1.4;
}

.description-italic-small {
    text-align: center;
    font-style: italic;
    color: #666;
    font-size: 14px;
    margin: 15px 0;
}

.testimonial-highlight {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: center;
}

.testimonial-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0;
    font-style: italic;
}

.testimonial-subtitle {
    font-size: 16px;
    color: #333;
    margin: 10px 0;
}

.testimonial-green {
    color: #4CAF50;
    font-style: italic;
    font-size: 16px;
    margin: 15px 0 0 0;
}

.description-italic-question {
    text-align: center;
    font-style: italic;
    font-weight: 600;
    color: #333;
    font-size: 16px;
    margin: 25px 0;
}

.video-section {
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
    border-radius: 20px;
    padding: 40px 20px;
    margin: 30px 0;
    text-align: center;
    color: white;
}

.video-overlay h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 25px 0;
}

.video-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.video-option {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-option:hover {
    transform: translateX(5px);
}

.play-icon, .restart-icon {
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.video-caption {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 15px 0 5px 0;
    text-decoration: underline;
}

.video-subcaption {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin: 0 0 25px 0;
}

.secret-title {
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    color: #333;
    margin: 30px 0 25px 0;
    line-height: 1.3;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    padding: 0 10px;
}

.offer-title {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 30px 0;
    font-style: italic;
}

.chef-highlight {
    background: #fff9e6;
    padding: 20px;
    border-radius: 15px;
    margin: 25px 0;
    text-align: center;
}

.chef-text {
    font-size: 16px;
    color: #333;
    margin: 0 0 15px 0;
}

.chef-bonus {
    font-size: 14px;
    color: #666;
    margin: 0;
    text-decoration: line-through;
}

.offer-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 30px 0;
}

.offer-card {
    background: #e8f5e8;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    position: relative;
}

.offer-number {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
}

.offer-title-card {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 20px 0;
}

.offer-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.offer-list li {
    padding: 5px 0;
    font-size: 14px;
    color: #333;
}

.price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 16px;
    margin: 10px 0 5px 0;
}

.price-new {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.price-highlight {
    background: #4CAF50;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    margin: 10px 0 20px 0;
    display: inline-block;
}

.bonus-section {
    margin: 20px 0;
    text-align: left;
}

.bonus {
    font-size: 14px;
    color: #333;
    margin: 8px 0;
    line-height: 1.4;
}

.bonus-price {
    color: #e74c3c;
    font-weight: 600;
}

.bonus-extra {
    background: #f0f8ff;
    padding: 15px;
    border-radius: 10px;
    margin: 15px 0;
}

.bonus-extraordinary {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin: 0 0 5px 0;
}

.bonus-description {
    font-size: 12px;
    color: #666;
    margin: 2px 0;
}

.bonus-special {
    background: #e8f5e8;
    padding: 15px;
    border-radius: 10px;
    margin: 15px 0;
}

.bonus-special-title {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px 0;
}

.bonus-special-text {
    font-size: 13px;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

.price-total {
    font-size: 16px;
    color: #e74c3c;
    margin: 15px 0 5px 0;
}

.price-today {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.price-final {
    font-size: 18px;
    font-weight: 600;
    color: #2c5234;
    margin: 5px 0 20px 0;
    background: linear-gradient(135deg, #e8f5e8 0%, #d4f1d4 100%);
    padding: 12px 20px;
    border-radius: 8px;
    border-left: 4px solid #4CAF50;
    text-align: center;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
}

.cookie-image {
    margin: 20px 0;
    width: 100%;
}

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

.warning {
    color: #e74c3c;
    font-size: 14px;
    font-weight: 600;
    margin: 15px 0 5px 0;
}

.update-warning {
    font-size: 14px;
    color: #333;
    margin: 5px 0;
}

.opportunity {
    font-size: 14px;
    color: #333;
    margin: 5px 0 15px 0;
}

.guarantee {
    font-size: 12px;
    color: #666;
    margin: 15px 0 0 0;
}

/* Guarantee Seal Styles */
.guarantee-seal {
    margin: 40px 0 30px 0;
    text-align: center;
}

.guarantee-seal img {
    width: 100%;
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Previne cliques fantasma em vídeos durante transições no mobile */
@media (max-width: 768px) {
    .screen video {
        touch-action: manipulation;
    }
    
    .screen.transitioning video {
        pointer-events: none !important;
    }
}

/* Security Seals Styles */
.security-seals {
    margin: 30px 0 20px 0;
    text-align: center;
}

.security-seals img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .guarantee-seal {
        margin: 30px 0 25px 0;
    }
    
    .guarantee-seal img {
        max-width: 200px;
    }
    
    .security-seals {
        margin: 25px 0 15px 0;
    }
    
    .security-seals img {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .testimonial-highlight {
        padding: 20px 15px;
    }
    
    .video-section {
        padding: 30px 15px;
    }
    
    .offer-card {
        padding: 20px 15px;
    }
    
    .bonus-section {
        text-align: center;
    }
}
