/* Doces Criativos e Virais - Estilos Modernos */

/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', Arial, sans-serif;
}

body {
    background-color: #f8f3f0;
    color: #4a3636;
    line-height: 1.6;
}

.container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background: linear-gradient(to bottom, #ffffff, #fdf6f2);
    min-height: 100vh;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    position: relative;
    border-radius: 0 0 20px 20px;
}

/* Header e Logo */
.header {
    text-align: center;
    padding: 15px 0 25px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(to right, transparent, #e75a87, transparent);
}

.logo {
    max-width: 180px;
    margin: 0 auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Sistema de pontuação */
.coin-counter {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ffd700, #ffb700);
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.coin-icon {
    font-size: 20px;
    margin-right: 5px;
    animation: coinSpin 4s infinite linear;
}

.coin-amount {
    font-weight: 700;
    color: #5a4500;
    font-size: 18px;
}

@keyframes coinSpin {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

.coin-popup {
    position: fixed;
    font-size: 24px;
    animation: coinFloat 1.5s forwards;
    z-index: 100;
    pointer-events: none;
}

@keyframes coinFloat {
    0% {
        transform: translateY(0) scale(0.5);
        opacity: 0;
    }
    20% {
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
    }
    100% {
        transform: translateY(-80px) scale(1);
        opacity: 0;
    }
}

/* Efeito de brilho nas moedas */
.coin-amount.highlight {
    animation: coinHighlight 0.5s;
}

@keyframes coinHighlight {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); color: #ffcc00; }
    100% { transform: scale(1); }
}

/* Barra de progresso */
.progress-container {
    padding: 15px 10px;
    position: relative;
}

.progress-bar {
    height: 10px;
    background-color: #f0e0e0;
    border-radius: 20px;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.progress {
    height: 100%;
    background: linear-gradient(to right, #e75a87, #ff8fab);
    border-radius: 20px;
    transition: width 0.8s ease;
    position: relative;
    overflow: hidden;
}

.progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0.3),
        rgba(255, 255, 255, 0.1)
    );
    transform: skewX(-20deg) translateX(-100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    100% {
        transform: skewX(-20deg) translateX(200%);
    }
}

/* Conteúdo das perguntas */
.question-container {
    padding: 25px 15px;
    animation: fadeIn 0.5s ease-in-out;
    transition: opacity 0.3s ease;
}

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

h1 {
    font-size: 26px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
    color: #d23f69;
    line-height: 1.3;
}

h2 {
    font-size: 18px;
    color: #7e6b6b;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 500;
}

/* Imagem de destaque no início do quiz */
.intro-image {
    width: 100%;
    max-width: 460px;
    display: block;
    margin: 10px auto 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Opções de resposta */
.options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 25px 0;
}

.option {
    display: flex;
    align-items: center;
    padding: 16px;
    border: 1px solid #f0d9d9;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.option:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(231, 90, 135, 0.15);
    border-color: #e75a87;
}

.option:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.emoji {
    font-size: 28px;
    margin-right: 15px;
    min-width: 40px;
    text-align: center;
    transition: transform 0.3s;
}

.option:hover .emoji {
    transform: scale(1.2);
}

.option-text {
    font-size: 16px;
    font-weight: 500;
}

.option-subtext {
    font-size: 14px;
    color: #9e8989;
    margin-top: 4px;
}

.option-coins {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(255, 215, 0, 0.2);
    color: #5a4500;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.option:hover .option-coins {
    background-color: rgba(255, 215, 0, 0.4);
    transform: scale(1.1);
}

/* Botões */
.button {
    display: block;
    width: 100%;
    padding: 16px;
    background: linear-gradient(to right, #e75a87, #ff8fab);
    color: white;
    text-align: center;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 30px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(231, 90, 135, 0.3);
    position: relative;
    overflow: hidden;
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 90, 135, 0.4);
}

.button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(231, 90, 135, 0.3);
}

.button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.button:hover::after {
    transform: translateX(100%);
}

.button.pink {
    background: linear-gradient(to right, #e75a87, #ff8fab);
}

.button.green {
    background: linear-gradient(to right, #4CAF50, #7ed957);
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px 0;
    font-size: 12px;
    color: #9e8989;
    border-top: 1px solid #f0e0e0;
    margin-top: 30px;
}

/* Elementos adicionais */
.testimonial {
    padding: 20px;
    background-color: #fff;
    border-radius: 15px;
    margin: 25px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #e75a87;
}

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

.testimonial-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 12px;
    border: 2px solid #e75a87;
    object-fit: cover;
}

.stars {
    color: #ffb74d;
    margin-top: 10px;
    letter-spacing: 2px;
}

/* Benefícios */
.benefits {
    background-color: transparent;
    padding: 15px 0;
    margin: 20px 0;
    box-shadow: none;
}

.benefits-title {
    color: #e75a87;
    text-align: center;
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 700;
    padding-bottom: 8px;
    position: relative;
}

.benefits-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #e75a87;
}

/* Novo Grid de Benefícios */
.benefits-grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 10px;
    max-width: 450px;
    margin: 0 auto;
}

.benefit-grid-item {
    background-color: #fff;
    border-radius: 15px;
    border: 1px solid #f0e0e0;
    padding: 12px 15px 12px 12px;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.benefit-check {
    position: absolute;
    top: 12px;
    left: 12px;
    color: #e75a87;
    font-size: 14px;
}

.benefit-grid-title {
    color: #e75a87;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
    padding-left: 20px;
    line-height: 1.2;
    text-transform: uppercase;
}

.benefit-grid-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
    min-height: 60px;
}

.benefit-grid-content p {
    font-size: 12px;
    line-height: 1.3;
    color: #666;
    padding-left: 20px;
    margin-bottom: 0;
    text-align: left;
    width: 68%;
}

.benefit-image-container {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    position: static;
}

.benefit-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (min-width: 768px) {
    .benefits-grid-container {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        padding: 0 15px;
    }
}

.highlight-pink {
    color: #e75a87;
    font-weight: 600;
}

/* Background colors for icons */
.green-bg {
    background-color: #4CAF50;
}

.blue-bg {
    background-color: #3f51b5;
}

.yellow-bg {
    background-color: #FFB700;
}

.gold-bg {
    background-color: #FFD700;
}

.benefit-icon {
    font-size: 32px;
}

/* Estilos para a seção de bônus */
.bonus-section {
    margin-top: 20px;
    padding-top: 10px;
    position: relative;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.bonus {
    color: #e75a87;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
    text-transform: uppercase;
}

.bonus::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: #e75a87;
}

.bonus-grid-item {
    border: 1px solid #FFB700;
    background-color: #fff;
}

.bonus-grid-item .benefit-check {
    color: #FFB700;
}

.bonus-grid-item .benefit-grid-title {
    color: #FFB700;
}

.bonus-grid-item .benefit-image-container {
    background-color: #fffbf0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bonus-grid-item .benefit-icon {
    font-size: 24px;
    text-align: center;
    color: #FFB700;
}

.bonus-grid-item.highlight-bonus {
    background-color: #fffbf0;
    border: 1px solid #FFB700;
    box-shadow: 0 1px 3px rgba(255, 183, 0, 0.2);
}

/* Preço */
.price {
    background: linear-gradient(135deg, #e75a87, #ff8fab);
    color: white;
    text-align: center;
    padding: 25px;
    border-radius: 15px;
    margin: 25px 0;
    box-shadow: 0 8px 25px rgba(231, 90, 135, 0.3);
    position: relative;
    overflow: hidden;
}

.price::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    opacity: 0.6;
}

.old-price {
    text-decoration: line-through;
    font-size: 20px;
    opacity: 0.8;
}

.new-price {
    font-size: 42px;
    font-weight: bold;
    margin: 10px 0;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Garantia */
.guarantee {
    background: linear-gradient(135deg, #ff8fab, #e75a87);
    color: white;
    border-radius: 15px;
    padding: 20px;
    margin: 25px 0;
    display: flex;
    align-items: center;
    box-shadow: 0 8px 20px rgba(231, 90, 135, 0.25);
}

.guarantee-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 20px;
    border: 3px solid white;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.guarantee-text {
    flex: 1;
}

.guarantee-title {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
}

/* Gráficos */
.chart-container {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
}

.chart-item {
    text-align: center;
    width: 22%;
}

.chart-bar {
    height: 150px;
    background-color: #f0e0e0;
    position: relative;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

.chart-fill {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to top, #e75a87, #ff8fab);
    border-radius: 0 0 8px 8px;
    transition: height 1s ease-out;
}

.chart-label {
    font-weight: bold;
    color: #d23f69;
}

.chart-sublabel {
    font-size: 12px;
    color: #9e8989;
}

/* Animações e efeitos */
.hidden {
    display: none;
}

/* Efeitos de destaque */
.highlight {
    position: relative;
    display: inline-block;
    color: #e75a87;
    font-weight: 700;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: rgba(231, 90, 135, 0.2);
    z-index: -1;
}

/* Adaptações para dispositivos móveis */
@media (max-width: 480px) {
    .container {
        padding: 15px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    h2 {
        font-size: 16px;
    }
    
    .option {
        padding: 12px;
    }
    
    .emoji {
        font-size: 24px;
    }
    
    .new-price {
        font-size: 36px;
    }
}

/* Animações para elementos que aparecem */
@keyframes slideInFromBottom {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-in {
    animation: slideInFromBottom 0.5s ease-out forwards;
}

/* Decorações temáticas */
.chocolate-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0.05;
    background-image: radial-gradient(#4a3636 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Novos elementos adicionados */
.profile-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
}

.profile-image {
    width: 100%;
    display: block;
}

.profile-content {
    background: linear-gradient(135deg, #e75a87, #ff8fab);
    color: white;
    padding: 25px;
}

.profile-content h1 {
    color: white;
    text-align: left;
    margin-bottom: 15px;
}

.profile-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-header {
    background-color: #8b2323;
    color: white;
    padding: 12px;
    display: flex;
    align-items: center;
    border-radius: 8px 8px 0 0;
}

.menu-icon {
    margin-right: 15px;
    font-size: 18px;
}

.news-category {
    text-align: center;
    flex: 1;
    font-weight: 600;
    letter-spacing: 1px;
}

.search-icon {
    margin-left: 15px;
    font-size: 18px;
}

.news-content {
    padding: 20px;
    background-color: white;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.news-author {
    color: #7e6b6b;
    margin-bottom: 20px;
    font-size: 14px;
    font-style: italic;
}

.news-paragraph {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-image {
    width: 100%;
    border-radius: 8px;
    margin: 15px 0;
}

.loading-bar {
    height: 15px;
    background-color: #f0e0e0;
    border-radius: 20px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

.loading-progress {
    height: 100%;
    background: linear-gradient(to right, #e75a87, #ff8fab);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.loading-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0.1)
    );
    transform: skewX(-20deg) translateX(-100%);
    animation: shimmer 1.5s infinite;
}

.animate-loading {
    position: relative;
    background-size: 200% 200%;
    background-image: linear-gradient(
        to right, 
        #e75a87, 
        #ff8fab, 
        #ff8fab, 
        #e75a87
    );
    animation: progressPulse 1.5s ease-in-out infinite;
}

@keyframes progressPulse {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.loading-text {
    text-align: center;
    color: #7e6b6b;
    font-size: 16px;
    margin-top: 10px;
    min-height: 24px;
    font-style: italic;
}

.plan-box {
    background-color: #fff;
    padding: 25px;
    border-radius: 15px;
    margin: 25px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #4CAF50;
}

.plan-box h3 {
    color: #4CAF50;
    margin-bottom: 10px;
    font-size: 20px;
}

.section-title {
    text-align: center;
    font-size: 24px;
    margin: 30px 0 15px;
    color: #d23f69;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #e75a87, #ff8fab);
    border-radius: 3px;
}

.section-description {
    text-align: center;
    margin-bottom: 30px;
    font-size: 16px;
    color: #7e6b6b;
}

.loading-text {
    text-align: center;
    color: #7e6b6b;
    font-size: 16px;
    margin-top: 10px;
    min-height: 24px;
    font-style: italic;
}

.loading-text span {
    display: inline-block;
    animation: fadeInOut 1.5s ease-in-out infinite;
}

@keyframes fadeInOut {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

/* Estilos para a seção de análise */
.analysis-container {
    padding: 20px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(231, 90, 135, 0.15);
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.analysis-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #e75a87, #ff8fab);
}

.analysis-graphics {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    position: relative;
    height: 120px;
}

.circle-loader {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #f0e0e0;
    position: relative;
    animation: rotate 10s linear infinite;
}

.circle-loader-inner {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 50%;
    border: 3px dashed #e75a87;
    animation: rotate-reverse 7s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes rotate-reverse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

.data-points {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.data-point {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #e75a87;
    border-radius: 50%;
    opacity: 0;
    animation: data-point-move 3s ease-in-out infinite;
    animation-delay: var(--delay);
}

.data-point:nth-child(1) { top: 20%; left: 30%; }
.data-point:nth-child(2) { top: 70%; left: 20%; }
.data-point:nth-child(3) { top: 40%; left: 70%; }
.data-point:nth-child(4) { top: 80%; left: 60%; }
.data-point:nth-child(5) { top: 30%; left: 80%; }

@keyframes data-point-move {
    0% { 
        transform: scale(0);
        opacity: 0;
    }
    20% { 
        transform: scale(1);
        opacity: 1;
    }
    60% {
        transform: scale(1);
        opacity: 1;
    }
    100% { 
        transform: scale(0);
        opacity: 0;
    }
}

.percentage-display {
    text-align: center;
    margin: 20px 0;
}

.percentage-number {
    font-size: 48px;
    font-weight: 700;
    color: #d23f69;
    display: inline-block;
    position: relative;
    animation: pulse 2s infinite;
}

.percentage-symbol {
    font-size: 24px;
    position: relative;
    top: -20px;
}

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

.analysis-details {
    margin-top: 30px;
}

.analysis-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 10px;
    transition: transform 0.3s;
}

.analysis-item:hover {
    transform: translateX(5px);
}

.analysis-icon {
    font-size: 24px;
    margin-right: 15px;
    min-width: 30px;
    text-align: center;
}

.analysis-label {
    font-weight: 600;
    color: #4a3636;
    min-width: 80px;
}

.analysis-progress {
    flex: 1;
    height: 10px;
    background-color: #f0e0e0;
    border-radius: 5px;
    overflow: hidden;
    margin-left: 15px;
}

.analysis-bar {
    height: 100%;
    background: linear-gradient(to right, #e75a87, #ff8fab);
    border-radius: 5px;
    animation: bar-fill 2s ease-out;
}

@keyframes bar-fill {
    0% { width: 0; }
}

/* Container de resultados */
.results-container {
    padding: 20px 0;
    animation: fadeIn 0.8s ease-in-out;
}

.results-container .chart-container {
    margin-top: 30px;
}

/* Seção de moedas ganhas */
.coins-earned {
    background: linear-gradient(135deg, #ffda00, #ffb800);
    border-radius: 20px;
    padding: 25px 20px;
    margin: 30px 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 200, 0, 0.3);
    position: relative;
    overflow: hidden;
    animation: pulse-glow 2s infinite alternate;
}

.coins-earned::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
    animation: rotate-glow 8s linear infinite;
    pointer-events: none;
}

@keyframes rotate-glow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse-glow {
    0% { box-shadow: 0 10px 30px rgba(255, 200, 0, 0.3); }
    100% { box-shadow: 0 15px 40px rgba(255, 200, 0, 0.5); }
}

.coins-earned-title {
    color: #7a6500;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.coins-earned-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
}

#total-coins {
    font-size: 60px;
    font-weight: 700;
    color: #5a4500;
    text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    animation: coin-pulse 1s infinite alternate;
}

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

.coin-icon-large {
    font-size: 48px;
    margin-left: 15px;
    animation: coin-rotate 3s infinite linear;
    filter: drop-shadow(2px 2px 0 rgba(255, 255, 255, 0.5));
}

@keyframes coin-rotate {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

.coins-earned-message {
    color: #5a4500;
    font-size: 18px;
    font-weight: 600;
    margin-top: 15px;
    position: relative;
    animation: message-highlight 2s infinite alternate;
}

@keyframes message-highlight {
    0% { color: #5a4500; }
    100% { color: #8b6b00; }
}

/* Efeito de confete ao redor */
.coins-earned::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle, #fff 1px, transparent 1px),
        radial-gradient(circle, #fff 1px, transparent 1px),
        radial-gradient(circle, #fff 1px, transparent 1px),
        radial-gradient(circle, #fff 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px, 15px 5px, 5px 15px;
    opacity: 0.15;
    pointer-events: none;
}

/* Efeitos de celebração */
.coins-earned.celebrating {
    animation: celebrate 0.5s ease-in-out;
}

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

/* Efeito quando a contagem termina */
#total-coins.count-complete {
    animation: count-complete 1s ease-out;
    color: #ff8c00;
}

@keyframes count-complete {
    0% { transform: scale(1); text-shadow: 0 0 0 rgba(255, 215, 0, 0); }
    50% { transform: scale(1.2); text-shadow: 0 0 20px rgba(255, 215, 0, 0.8); }
    100% { transform: scale(1); text-shadow: 0 0 0 rgba(255, 215, 0, 0); }
}

/* Efeito de partículas de celebração */
@keyframes particle-animation {
    0% { transform: translate(0, 0); opacity: 1; }
    100% { transform: translate(var(--tx), var(--ty)); opacity: 0; }
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color);
    pointer-events: none;
    animation: particle-animation 1s ease-out forwards;
}

/* Estilos para a página de vendas aprimorada */
.sale-title {
    font-size: 32px;
    color: #d23f69;
    margin-bottom: 15px;
}

.sale-subtitle {
    font-size: 20px;
    color: #7e6b6b;
    margin-bottom: 30px;
}

/* Banner de vendas */
.sales-banner {
    background: linear-gradient(135deg, #e75a87, #ff8fab);
    color: white;
    border-radius: 15px;
    padding: 25px 20px;
    margin: 30px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(231, 90, 135, 0.3);
}

.banner-badge {
    position: absolute;
    top: 10px;
    right: -30px;
    background-color: #ffb700;
    color: #5a4500;
    font-weight: 700;
    font-size: 14px;
    padding: 5px 40px;
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.sales-banner h3 {
    font-size: 28px;
    margin: 20px 0;
    font-weight: 700;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.banner-tagline {
    font-size: 18px;
    font-weight: 500;
    margin-top: 10px;
    letter-spacing: 0.5px;
}

/* Seção de depoimentos */
.testimonials-section {
    margin: 40px 0;
}

.testimonials-title {
    text-align: center;
    color: #d23f69;
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 700;
}

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

.testimonial {
    padding: 20px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #e75a87;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.featured-testimonial {
    border: 2px solid #e75a87;
    border-left-width: 6px;
    background: linear-gradient(to right, #fff, #fff8f9);
}

/* Seção de economia de tempo */
.time-saving {
    display: flex;
    align-items: center;
    padding: 25px;
    background: linear-gradient(to right, #f8f8f8, #fff);
    border-radius: 15px;
    margin: 30px 0;
    border-left: 5px solid #4CAF50;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.time-icon {
    font-size: 40px;
    margin-right: 20px;
    animation: pulse 2s infinite;
}

.time-content h3 {
    color: #4CAF50;
    margin-bottom: 10px;
    font-weight: 700;
}

.time-content p {
    font-size: 16px;
    line-height: 1.5;
}

/* Botão pulsante */
.pulse-button {
    animation: button-pulse 2s infinite;
}

@keyframes button-pulse {
    0% {
        box-shadow: 0 4px 15px rgba(231, 90, 135, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(231, 90, 135, 0.6);
    }
    100% {
        box-shadow: 0 4px 15px rgba(231, 90, 135, 0.3);
    }
}

/* Informações de pagamento */
.payment-info {
    margin-top: 10px;
    font-size: 14px;
    opacity: 0.8;
}

/* Oferta limitada */
.limited-offer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background-color: #fff3cd;
    border-radius: 10px;
    margin: 25px 0;
    border: 1px dashed #ffb700;
}

.offer-icon {
    font-size: 24px;
    margin-right: 15px;
    animation: shake 1s infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.offer-text {
    font-weight: 600;
    color: #5a4500;
}

/* Destaque para benefícios */
.highlight-benefit {
    background-color: #fff8f0;
    border-left: 4px solid #ffb700;
    padding: 15px;
    border-radius: 10px;
}

/* Final da página */
.final-testimonials {
    margin-top: 40px;
}

.footer {
    text-align: center;
    padding: 20px 0;
    color: #9e8989;
    font-size: 14px;
    margin-top: 40px;
    border-top: 1px solid #f0e0e0;
}

/* Carrossel de depoimentos */
.testimonials-carousel {
    position: relative;
    margin: 30px 0;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
}

.carousel-slide .testimonial {
    margin: 0;
    height: 100%;
    border-radius: 0;
    border-left: none;
    box-shadow: none;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.carousel-prev, 
.carousel-next {
    background: linear-gradient(135deg, #e75a87, #ff8fab);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(231, 90, 135, 0.3);
    transition: all 0.3s ease;
}

.carousel-prev:hover, 
.carousel-next:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(231, 90, 135, 0.4);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin: 0 15px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #f0d9d9;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background-color: #e75a87;
    transform: scale(1.3);
}

@media (max-width: 480px) {
    .carousel-prev, 
    .carousel-next {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .carousel-dot {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }
}

/* Galeria de imagens */
.gallery-section {
    margin: 40px 0;
    padding: 20px 0;
    background-color: #fff8fa;
    border-radius: 15px;
}

.gallery-title {
    text-align: center;
    color: #d23f69;
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
}

.gallery-subtitle {
    text-align: center;
    color: #7e6b6b;
    font-size: 16px;
    margin-bottom: 25px;
}

.gallery-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 0 15px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.gallery-image {
    width: 100%;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(231, 90, 135, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-text {
    color: white;
    font-weight: 600;
    text-align: center;
    padding: 0 15px;
    font-size: 14px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-text {
    transform: translateY(0);
}

@media (min-width: 768px) {
    .gallery-container {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* Introdução da galeria */
.gallery-intro {
    background: linear-gradient(135deg, #e75a87, #ff8fab);
    color: white;
    padding: 25px 20px;
    border-radius: 15px;
    margin: 30px 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(231, 90, 135, 0.25);
}

.gallery-intro::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
    opacity: 0.6;
}

.gallery-intro-content {
    position: relative;
    z-index: 1;
}

.gallery-intro h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.gallery-intro p {
    font-size: 16px;
    line-height: 1.5;
} 