:root {
    --rosa: #e91e63;
    --azul: #2196f3;
    --verde: #8bc34a;
    --amarelo: #ffeb3b;
    --preto: #1a1a1a;
    --branco: #ffffff;
    --cinza: #f4f7f6;
    
    /* Configuração de Fontes */
    --fonte-titulo: 'Montserrat', sans-serif;
    --fonte-corpo: 'Open Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: var(--fonte-corpo); 
    line-height: 1.6; 
    color: var(--preto); 
    -webkit-font-smoothing: antialiased;
    background-color: #fff;

    /* BLOQUEIO DE SELEÇÃO DE TEXTO */
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 e IE 11 */
    user-select: none; /* Padrão */
}

/* Permite selecionar texto apenas em campos de digitação */
input, textarea {
    user-select: text;
    -webkit-user-select: text;
}

h1, h2, h3, .amount { 
    font-family: var(--fonte-titulo); 
    font-weight: 800;
}

/* Impede arrastar imagens */
img { 
    max-width: 100%; 
    height: auto; 
    pointer-events: none; 
}

.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }

/* HEADER */
header { 
    background: var(--branco); 
    padding: 10px 0; 
    text-align: center; 
    border-bottom: 4px solid var(--amarelo); 
    position: sticky; 
    top: 0; 
    z-index: 100; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); 
}

.header-flex { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.logo-img { 
    height: 45px; 
    width: auto; 
    display: block;
    transition: transform 0.3s ease;
}

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

.instagram-top-link { 
    color: var(--rosa); 
    text-decoration: none; 
    font-weight: 700; 
    font-size: 0.8rem; 
    font-family: var(--fonte-titulo); 
    text-transform: uppercase;
}

/* HERO */
.hero { padding: 80px 0; background-color: var(--cinza); text-align: center; }
.hero h1 { font-size: 2.8rem; margin-bottom: 20px; color: var(--preto); text-transform: uppercase; letter-spacing: -1px; }
.hero h1 span { color: var(--rosa); }
.hero p { font-size: 1.15rem; margin-bottom: 30px; padding: 0 10px; font-weight: 400; }

/* BOTÕES */
.btn-whatsapp { 
    background: var(--rosa); 
    color: #fff; 
    padding: 18px 40px; 
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: 800; 
    font-size: 1.1rem; 
    display: inline-block; 
    transition: 0.3s; 
    box-shadow: 0 5px 15px rgba(233,30,99,0.3); 
    border: none; 
    font-family: var(--fonte-titulo); 
    text-transform: uppercase; 
}
.btn-whatsapp:hover { transform: scale(1.05); background: #d81b60; }

/* GALERIA */
.gallery { padding: 80px 0; text-align: center; }
.gallery .subtitle { margin-bottom: 40px; color: #666; font-size: 1.1rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.gallery-item p { font-family: var(--fonte-titulo); font-weight: 700; color: var(--preto); margin-top: 10px; }
.image-box { display: flex; align-items: center; justify-content: space-around; background: var(--cinza); padding: 15px; border-radius: 15px; margin-bottom: 10px; }
.img-orig { width: 40%; border-radius: 8px; filter: grayscale(1); }
.img-mug { 
    width: 40%; 
    border-radius: 8px; 
    border: 3px solid var(--amarelo);
    transition: transform 0.5s ease; /* Adiciona suavidade */
    cursor: zoom-in;
}

.gallery-item:hover .img-mug {
    transform: scale(1.1); /* Aumenta levemente ao passar o rato */
    z-index: 10;
}
.arrow-icon { color: var(--rosa); font-weight: 800; font-size: 1.5rem; }

/* INSTAGRAM CTA */
.instagram-cta {
    margin-top: 40px;
    background: #fff5f8;
    padding: 25px;
    border-radius: 20px;
    border: 2px dashed var(--rosa);
    text-align: center;
}
.btn-instagram {
    display: inline-block;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff !important;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    transition: 0.3s;
    font-family: var(--fonte-titulo);
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* PRICING */
.pricing { padding: 80px 0; background-color: var(--amarelo); text-align: center; }
.price-card { background: #fff; padding: 40px; border-radius: 30px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); display: inline-block; max-width: 500px; width: 100%; }
.badge { background: var(--rosa); color: #fff; padding: 6px 15px; border-radius: 20px; font-size: 0.75rem; font-weight: 800; font-family: var(--fonte-titulo); }
.price-value { margin: 20px 0 10px 0; color: var(--preto); }
.currency { font-size: 1.5rem; vertical-align: top; font-weight: 800; }
.amount { font-size: 5rem; line-height: 1; }
.cents { font-size: 1.5rem; vertical-align: top; font-weight: 800; }
.pix-highlight { background: #e8f5e9; color: #2e7d32; padding: 15px; border-radius: 12px; margin-bottom: 25px; border: 2px dashed #2e7d32; }
.pix-highlight strong { display: block; font-size: 1.6rem; font-family: var(--fonte-titulo); }
.shipping-box { text-align: left; margin-bottom: 20px; font-size: 0.9rem; background: var(--cinza); padding: 15px; border-radius: 10px; }
.shipping-box ul { list-style: none; margin-top: 10px; }
.shipping-box li { display: flex; justify-content: space-between; margin-bottom: 5px; border-bottom: 1px dashed #ddd; padding-bottom: 5px; }
.shipping-box li.free-shipping { color: var(--rosa); font-weight: 800; border-bottom: none; }
.price-features { list-style: none; text-align: left; margin: 20px 0; }
.price-features li { margin-bottom: 10px; font-size: 0.95rem; }

/* POLÍTICAS (NOVO ESTILO COM CARROSSEL E HOVER) */
.policy-section { 
    padding: 80px 0; 
    background: #fff; 
    text-align: center; 
    overflow: hidden; 
}

.policy-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 20px; 
    padding: 10px; 
}

.policy-item { 
    padding: 25px; 
    border: 2px solid #eee; 
    border-radius: 15px; 
    text-align: left; 
    background: var(--cinza); 
    transition: all 0.3s ease;
    position: relative;
    top: 0;
}

.policy-icon { 
    font-size: 2rem; 
    display: block; 
    margin-bottom: 10px; 
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.policy-item strong { 
    display: block; 
    margin-bottom: 10px; 
    font-family: var(--fonte-titulo); 
    color: var(--preto); 
}

/* Efeito Hover (Mouse) */
.policy-item:hover {
    transform: translateY(-7px);
    border-color: var(--rosa);
    background: #fff;
    box-shadow: 0 15px 30px rgba(233, 30, 99, 0.15);
}

.policy-item:hover .policy-icon {
    transform: scale(1.2) rotate(-10deg);
}

/* FAQ E GARANTIA */
.faq { padding: 80px 0; background: var(--cinza); }
.faq-item { background: #fff; padding: 25px; margin-bottom: 15px; border-radius: 12px; border-left: 6px solid var(--verde); text-align: left; }
.satisfaction-guarantee { margin-top: 30px; padding: 20px; background: #fdfdfd; border: 1px solid #eee; border-radius: 15px; display: flex; align-items: center; gap: 15px; text-align: left; }
.guarantee-icon { font-size: 2.5rem; }

/* WHATSAPP FLOAT */
.whatsapp-float { position: fixed; width: 65px; height: 65px; bottom: 30px; right: 30px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 1000; box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4); transition: 0.3s; }
.whatsapp-float img { width: 35px; }

footer { padding: 60px 0; text-align: center; background: #111; color: #fff; }

/* === AVISO DE ARRASTAR (SWIPE HINT) === */
.swipe-hint {
    display: none; /* Escondido por padrão (PC) */
}

/* RESPONSIVIDADE */
@media (max-width: 600px) {
    .header-flex { flex-direction: column; gap: 12px; }
    .logo-img { height: 35px; } 
    .hero h1 { font-size: 2rem; }
    .amount { font-size: 4rem; }
    .btn-whatsapp { width: 100%; padding: 15px 20px; font-size: 1rem; }
    .image-box { flex-direction: column; gap: 15px; }
    .img-orig, .img-mug { width: 80%; }
    .arrow-icon { transform: rotate(90deg); margin: 10px 0; }
    
    /* Mobile Carrossel para Políticas */
    .policy-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 15px;
        padding-bottom: 20px;
    }

    .policy-item {
        min-width: 85vw;
        scroll-snap-align: center;
        border-color: #eee;
    }
    
    /* Barra de rolagem sutil */
    .policy-grid::-webkit-scrollbar {
        height: 4px;
    }
    .policy-grid::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 4px;
    }

    /* Estilo do aviso "Arraste para o lado" */
    .swipe-hint {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
        color: var(--rosa);
        font-family: var(--fonte-titulo);
        font-weight: 700;
        font-size: 0.9rem;
        background: #fff5f8;
        padding: 8px;
        border-radius: 20px;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
        border: 1px dashed var(--rosa);
    }

    /* Animação da setinha movendo */
    .moving-arrow {
        display: inline-block;
        animation: moveRight 1.5s infinite ease-in-out;
    }

    @keyframes moveRight {
        0% { transform: translateX(0); opacity: 0.5; }
        50% { transform: translateX(5px); opacity: 1; }
        100% { transform: translateX(0); opacity: 0.5; }
    }
}

/* === ANIMAÇÃO PULSAR NO BOTÃO === */
@keyframes pulse-green {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(233, 30, 99, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(233, 30, 99, 0); }
}

.btn-whatsapp.main-btn {
    animation: pulse-green 2s infinite;
}

/* === GOOGLE REVIEWS SIMULADO === */
.google-reviews-section {
    padding: 60px 0;
    background: #fff;
    text-align: center;
}
.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    border: 1px solid #e1e1e1;
}
.google-icon { width: 25px; height: 25px; }
.google-score { font-weight: bold; font-family: var(--fonte-titulo); color: #333; }
.reviews-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.review-card {
    min-width: 300px;
    max-width: 300px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    scroll-snap-align: center;
}
.reviewer-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.reviewer-avatar {
    width: 40px; height: 40px;
    background: #78909c;
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: bold; font-size: 1.1rem;
}
.reviewer-info strong { display: block; font-size: 0.9rem; color: #333; }
.reviewer-info span { font-size: 0.75rem; color: #777; }
.review-stars { color: #fbc02d; font-size: 1rem; margin-bottom: 8px; }
.review-text { font-size: 0.9rem; color: #555; line-height: 1.5; }
.verify-icon { color: #2196f3; font-size: 0.8rem; margin-left: 5px; }

/* Barra de rolagem sutil */
.reviews-container::-webkit-scrollbar { height: 6px; }
.reviews-container::-webkit-scrollbar-thumb { background: #ccc; border-radius: 10px; }

/* === BARRA FIXA MOBILE === */
.mobile-buy-bar {
    display: none; /* Escondido por padrão */
}

@media (max-width: 600px) {
    .mobile-buy-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 12px 20px;
        box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
        z-index: 998; /* Fica abaixo do botão do Whats, mas acima de tudo */
        justify-content: space-between;
        align-items: center;
        border-top: 2px solid var(--amarelo);
    }

    .mobile-buy-info {
        display: flex;
        flex-direction: column;
    }

    .mobile-buy-info span {
        font-size: 0.7rem;
        color: #666;
        text-transform: uppercase;
        font-weight: bold;
    }

    .mobile-buy-info strong {
        font-size: 1.2rem;
        color: var(--preto);
        font-family: var(--fonte-titulo);
    }

    .btn-mobile-buy {
        background: var(--rosa);
        color: #fff;
        padding: 10px 20px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 800;
        font-size: 0.9rem;
        font-family: var(--fonte-titulo);
        text-transform: uppercase;
    }
    
    /* Ajuste para o rodapé não ficar coberto pela barra */
    footer { padding-bottom: 100px !important; }
    
    /* Sobe o botão flutuante do Whats para não bater na barra */
    .whatsapp-float { bottom: 85px !important; width: 55px; height: 55px; }
}

/* Animação suave para a Prova Social */
@keyframes soft-pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(1.02); }
    100% { opacity: 1; transform: scale(1); }
}

.social-proof-animate {
    animation: soft-pulse 3s infinite ease-in-out;
    display: inline-block; /* Garante que o scale funcione bem */
    width: 100%;
}