/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600;700&family=Nunito:wght@400;600;700;800&family=Caveat:wght@700&display=swap');

:root {
    /* Cores Principais */
    --primary: #FF6B00;
    /* Laranja Vibrante */
    --primary-hover: #e65a00;
    --secondary: #2C3E50;
    /* Azul Escuro */
    --accent: #FFD93D;
    /* Amarelo */
    --success: #6BCB77;
    /* Verde */
    --bg-paper: #F9F7F2;
    /* Off-white */
    --bg-white: #FFFFFF;

    /* Cores de Tape */
    --tape-pink: rgba(255, 159, 243, 0.9);
    --tape-yellow: rgba(254, 202, 87, 0.9);
    --tape-blue: rgba(72, 219, 251, 0.9);

    /* Espaçamentos e Sombras */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.08);
    --shadow-floating: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    --container-width: 1100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--bg-paper);
    color: var(--secondary);
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
}

h1,
h2,
h3 {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

.script-font {
    font-family: 'Caveat', cursive;
    font-size: 1.8rem;
    color: var(--primary);
    transform: rotate(-3deg);
    display: inline-block;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.text-warning {
    color: #f1c40f;
}

.text-muted {
    color: #95a5a6;
}

/* === Botões === */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 0 #bf5000;
}

/* Animação ajustada para manter a escala durante o balanço */
@keyframes wobble-vertical {
    0% {
        transform: scale(1.05) translateY(0);
    }

    16.65% {
        transform: scale(1.05) translateY(6px);
    }

    33.3% {
        transform: scale(1.05) translateY(-5px);
    }

    49.95% {
        transform: scale(1.05) translateY(3px);
    }

    66.6% {
        transform: scale(1.05) translateY(-2px);
    }

    83.25% {
        transform: scale(1.05) translateY(1px);
    }

    100% {
        transform: scale(1.05) translateY(0);
    }
}

.btn-primary:hover {
    background-color: #ff7f2a;
    /* Define o estado final do hover para evitar glitch no fim da animação */
    transform: scale(1.05) translateY(0);
    animation: wobble-vertical 1s ease-in-out;
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.5);
}

.btn-primary:active {
    /* Estado de clique pressionado precisa sobrescrever a animação/transform do hover */
    transform: scale(0.95) !important;
    animation: none;
    /* Para a animação imediatamente */
    box-shadow: 0 2px 0 #bf5000;
}

.btn-pulse {
    animation: pulse 2s infinite;
}

/* Quando passar o mouse no botão que pulsa, troca para a animação de wobble suavemente */
.btn-pulse:hover {
    animation: wobble-vertical 1s ease-in-out;
    /* O resto herda do btn-primary:hover */
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.5), 0 4px 0 #bf5000;
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 107, 0, 0), 0 4px 0 #bf5000;
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0), 0 4px 0 #bf5000;
    }
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* === Efeitos (Tape/Paper) === */
.tape {
    position: relative;
    background: white;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.tape::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%) rotate(-1.5deg);
    width: 120px;
    height: 35px;
    background-color: var(--tape-pink);
    opacity: 0.8;
    z-index: 10;
    mask-image: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg"><rect x="0" y="0" width="100%" height="100%" fill="black"/></svg>');
    /* Simple fallback */
    /* Real tape effect would use mask-image with jagged edges, simplifying for valid CSS without external assets */
    clip-path: polygon(5% 0%, 95% 0%, 100% 100%, 0% 100%);
}

.tape-yellow::before {
    background-color: var(--tape-yellow);
    transform: translateX(-50%) rotate(2deg);
}

.tape-blue::before {
    background-color: var(--tape-blue);
    top: -10px;
    transform: translateX(-50%) rotate(-2deg);
}

/* === Scarcity Bar === */
.scarcity-bar {
    background: #e74c3c;
    color: white;
    display: flex;
    /* Flexbox para centralizar */
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
    font-size: 1rem;
    /* Texto levemente maior */
    font-weight: 700;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    /* Mais impacto */
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.scarcity-bar p {
    margin: 0;
    text-align: center;
    animation: gentle-bounce 2s infinite;
    max-width: 100%;
}

@keyframes gentle-bounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* === Hero Section === */
/* === Bonus Section Redesign === */
.bonus-header {
    text-align: center;
    /* Centraliza tudo */
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bonus-badge {
    background: #e67e22;
    /* Laranja queimado */
    color: white;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 8px 16px;
    border-radius: 50px;
    /* Pill shape */
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transform: none;
    /* Remove rotação */
}

.bonus-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 3.5rem;
    line-height: 1.1;
    text-transform: uppercase;
    color: white;
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.3);
}

.strike-title {
    text-decoration: line-through;
    text-decoration-color: #e74c3c;
    /* Vermelho para o risco */
    text-decoration-thickness: 3px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.8rem;
    display: block;
    /* Garante que fique em linha própria */
    margin-bottom: 5px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}

.hero {
    padding: 60px 0 80px;
}

.brand-badge {
    background: var(--accent);
    color: var(--secondary);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 15px;
    transform: rotate(-2deg);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #555;
}

.hero-image-wrapper {
    max-width: 600px;
    margin: 0 auto 50px;
    padding: 20px;
    border-radius: 12px;
    transform: rotate(1deg);
    background: white;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
    /* Transição suave */
}

/* Efeito ao passar o mouse ou toque */
/* Efeito ao passar o mouse ou toque */
.hero-image-wrapper:hover {
    /* REMOVIDO EFEITO DE MOVIMENTO PEDIDO PELO USUÁRIO */
    transform: none !important;
    box-shadow: var(--shadow-md);
    z-index: 10;
}

.tag-floating {
    position: absolute;
    bottom: -10px;
    right: -20px;
    background: white;
    padding: 10px 20px;
    box-shadow: var(--shadow-sm);
    border-radius: 50px;
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    color: var(--primary);
    transform: rotate(-5deg);
    border: 2px solid var(--primary);
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.trust-indicators {
    font-size: 0.9rem;
    color: #666;
    display: flex;
    gap: 20px;
}

/* === Benefits Section === */
.benefits-section {
    padding: 60px 0;
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    transition: transform 0.3s ease;
    animation: float-balloon 3s ease-in-out infinite;
    /* Efeito de balão flutuando */
}

@keyframes float-balloon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.icon-box.heart {
    background: #ff7675;
}

.icon-box.gift {
    background: #74b9ff;
}

.icon-box.users {
    background: #fdcb6e;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* === Showcase Section (Infinite Marquee) === */
.showcase-section {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.5);
    border-top: 1px dashed #ccc;
    border-bottom: 1px dashed #ccc;
    overflow: hidden;
}

.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
}

/* Pause animation on hover */
.marquee-track:hover {
    animation-play-state: paused;
}

.gallery-grid {
    display: flex;
    /* Mantém estrutura interna dos grupos */
    gap: 20px;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 10px));
    }

    /* -50% do total (2 grupos) menos metade do gap para ajuste fino se necessário, mas -50% exato geralmente é o ideal se o gap for parte do fluxo */
}

/* Correção matemática: A track tem 2 grupos idênticos. Queremos mover exatamente a largura de UM grupo.
   Se a track tem largura 2W (W = largura do grupo). Mover de 0 a -W faz o segundo grupo assumir o lugar do primeiro.
   Como W é 50% de 2W, usamos -50%.
*/
@keyframes marquee-scroll {
    to {
        transform: translateX(-50%);
    }
}


.gallery-item {
    flex: 0 0 300px;
    /* Card levemente maior para visualização melhor */
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s;
    position: relative;
    background: white;
    /* Garante fundo branco se imagem falhar */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 107, 0, 0.9);
    color: white;
    padding: 10px;
    text-align: center;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* === How it Works === */
.how-it-works {
    padding: 80px 0;
}

.steps-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.step-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    position: relative;
    padding: 20px;
}

.step-circle {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 10px;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    animation: float-balloon 3s ease-in-out infinite;
    /* Mesmo efeito dos balões */
}

.step-connector {
    flex: 0 0 50px;
    height: 2px;
    background: #ccc;
    margin-top: 50px;
    border-top: 2px dashed #bbb;
    display: none;
}

/* Simplified */

/* === Social Proof === */
.social-proof {
    padding: 80px 0;
    background: var(--bg-white);
}

.testimonials-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.polaroid {
    background: white;
    padding: 15px 15px 40px 15px;
    box-shadow: var(--shadow-md);
    transform: rotate(-2deg);
    max-width: 300px;
    transition: transform 0.3s;
}

.polaroid:nth-child(2) {
    transform: rotate(1deg);
    margin-top: -20px;
}

.polaroid:nth-child(3) {
    transform: rotate(3deg);
}

.polaroid:hover {
    transform: scale(1.05) rotate(0);
    z-index: 10;
}

.polaroid-img {
    background: #eee;
    height: 220px;
    overflow: hidden;
    margin-bottom: 20px;
}

.polaroid-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    font-family: 'Caveat', cursive;
    font-size: 1.3rem;
    color: #444;
    line-height: 1.4;
}

.author {
    font-size: 0.9rem;
    font-weight: bold;
    margin-top: 10px;
    text-transform: uppercase;
    color: var(--primary);
}

/* === Pricing === */
.pricing-section {
    padding: 80px 0;
    background-color: var(--secondary);
    color: white;
    margin-top: 40px;
    background-image: radial-gradient(#34495e 1px, transparent 1px);
    background-size: 20px 20px;
}

.pricing-header p {
    color: #bdc3c7;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
    align-items: center;
}

.price-card {
    background: white;
    color: var(--secondary);
    padding: 40px;
    border-radius: 12px;
    width: 350px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
    /* Centraliza botões e títulos */
}

.price-card.basic {
    height: auto;
    transform: scale(0.95);
    opacity: 0.9;
}

.price-card.premium {
    border: 2px solid #FF6B00;
    transform: scale(1.05);
    z-index: 10;
    padding-top: 50px;
    /* Space for the badge */
    position: relative;
    overflow: visible;
    /* To let badge stick out */
}

.best-value-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    /* Centraliza horizontalmente */
    transform: translateX(-50%);
    /* Ajuste fino do centro */
    right: auto;
    background: #f1c40f;
    /* Flashy Yellow */
    color: #2c3e50;
    font-family: 'Caveat', cursive;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 8px 30px;
    /* Mais padding lateral */
    border-radius: 50px;
    /* Pill shape simétrica */
    /* Fun shape */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 3px solid #2c3e50;
    z-index: 20;
    text-transform: uppercase;
}

.premium-title {
    color: #e67e22;
    /* Rust Orange text */
    font-family: 'Fredoka', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    text-align: center;
}

/* Price Section */
.price-container {
    text-align: center;
    margin-bottom: 25px;
}

.old-price {
    font-size: 1rem;
    text-decoration: line-through;
    text-decoration-color: #e74c3c;
    text-decoration-thickness: 2px;
    color: #95a5a6;
    display: block;
    margin-bottom: -5px;
}

.current-price {
    font-size: 4rem;
    font-weight: 800;
    color: #27ae60;
    line-height: 1;
    font-family: 'Nunito', sans-serif;
}

.current-price .currency {
    font-size: 1.5rem;
    vertical-align: text-top;
    color: #2c3e50;
}

.save-badge {
    background: #fff3cd;
    color: #856404;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 2px 12px;
    border-radius: 12px;
    display: inline-block;
    margin-top: 5px;
    border: 1px solid #ffeeba;
}

/* Premium Features */
.premium-list {
    margin-bottom: 20px;
}

.premium-list li i {
    color: #FF6B00 !important;
    /* Orange Checks */
    background: transparent !important;
}

/* Bonus Box */
.premium-bonus-box {
    background: #fffbef;
    /* Light Yellow Bg */
    border: 2px dashed #f1c40f;
    border-radius: 10px;
    padding: 25px 15px 15px;
    margin: 20px 0;
    position: relative;
    text-align: left;
}

.bonus-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #f1c40f;
    color: #2c3e50;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 3px 15px;
    text-transform: uppercase;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.bonus-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bonus-list li {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #555;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bonus-list li i {
    color: #e67e22;
    /* Orange icons for bonuses */
    font-size: 0.8rem;
}

.guarantee-mini {
    margin-top: 15px;
    font-size: 0.8rem;
    color: #27ae60;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-weight: 600;
}

.price-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.gold {
    color: #f1c40f;
    font-weight: 800;
}

.old-price {
    text-decoration: line-through;
    color: #95a5a6;
    font-size: 1rem;
    margin-bottom: 5px;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.one-time {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 25px;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.price-card ul li {
    margin-bottom: 12px;
    color: #2c3e50;
    /* Darker blue-gray for better readability */
    font-size: 1rem;
    display: flex;
    align-items: center;
    font-weight: 600;
    /* Bold text for features */
}

.price-card ul li.active i {
    background-color: #d5f5e3;
    /* Light Green Background */
    color: #2ecc71;
    /* Dark Green Check */
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.price-card ul li.inactive {
    color: #bdc3c7;
    font-weight: 400;
}

.price-card ul li.inactive i {
    background-color: #f8f9fa;
    color: #bdc3c7;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.features li.bonus {
    background: #fff8e1;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 600;
    color: #d35400;
    margin-left: -10px;
    width: calc(100% + 20px);
}

.scarcity-text {
    font-size: 0.85rem;
    margin-top: 10px;
    font-weight: bold;
}

/* === Guarantee Premium Redesign === */
.guarantee-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.guarantee-box {
    background: #fff;
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    border: 3px solid #f1c40f;
    /* Borda Dourada */
    overflow: hidden;
}

/* Fundo sutil de papel/artesanato */
.guarantee-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#f1c40f 15%, transparent 16%),
        radial-gradient(#f1c40f 15%, transparent 16%);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

/* Selo de Garantia (Escudo + 7) */
.guarantee-seal {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-seal i {
    font-size: 6rem;
    color: #27ae60;
    filter: drop-shadow(0 5px 10px rgba(39, 174, 96, 0.3));
}

.guarantee-days {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    /* Ajuste fino para centralizar no escudo */
    font-family: 'Fredoka', sans-serif;
    font-size: 2.5rem;
    color: white;
    font-weight: 700;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.guarantee-days span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-top: -5px;
    letter-spacing: 1px;
}

.guarantee-content {
    position: relative;
    z-index: 2;
}

.guarantee-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.guarantee-title span {
    color: #27ae60;
    /* Destaque verde */
}

.guarantee-desc {
    font-family: 'Nunito', sans-serif;
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    max-width: 90%;
    margin: 0 auto 20px;
}

.guarantee-cta {
    display: inline-block;
    background: #f1c40f;
    color: #2c3e50;
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Ajustes Footer */
footer {
    background: #34495e;
    padding: 40px 0;
    color: #bdc3c7;
    margin-top: 0;
}

.faq-section {
    padding: 60px 0 100px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-grid {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* === FAQ Remodelado === */
.faq-section {
    padding: 80px 0 100px;
    background-color: #fca5a51a;
    /* Fundo bem suave */
    position: relative;
}

.faq-section h2 {
    font-family: 'Caveat', cursive;
    /* Fonte manuscrita estilo "Dúvidas?" da imagem */
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
    transform: rotate(-2deg);
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
}

details {
    background: white;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    /* Sombra leve */
    border: 1px solid #e1e8ed;
    /* Borda sutil */
    cursor: pointer;
    /* transition: all 0.3s ease;  <-- REMOVIDO para evitar sensação de delay */
    overflow: hidden;
    /* Para animação */
    border-left: none;
    /* Removendo estilo antigo */
}

details:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    /* transform: translateY(-2px); <-- REMOVIDO para evitar movimento que distrai */
    border-color: #FF6B00;
    /* Laranja no hover */
}

details[open] {
    border-left: 5px solid #FF6B00;
    /* Laranja quando aberto */
    background: #fff;
}

details summary {
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: #2c3e50;
    list-style: none;
    /* Remove triângulo padrão */
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding-right: 20px;
    /* Espaço pro ícone */
}

/* Ocultar marcador padrão no Chrome/Safari */
details summary::-webkit-details-marker {
    display: none;
}

/* Ícone da seta customizado */
details summary::after {
    content: '\f078';
    /* FontAwesome Chevron Down */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #FF6B00;
    /* Laranja */
    font-size: 1rem;
    transition: transform 0.3s ease;
}

details[open] summary::after {
    transform: rotate(180deg);
    /* Gira ao abrir */
}

details[open] summary {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    color: #FF6B00;
}

details p {
    margin-top: 0;
    color: #555;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    /* animation: fadeBtn 0.5s ease; <-- REMOVIDO O DELAY DA ANIMAÇÃO */
}

/* @keyframes fadeBtn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
} */

footer {
    background: #34495e;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* === Bonus Section Redesign === */
.bonus-section {
    padding: 80px 0;
    background-color: #1e5c35;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    color: white;
    border-top: 10px solid #144023;
    border-bottom: 10px solid #144023;
    overflow: hidden;
    /* Evita scroll horizontal indesejado por rotação */
}

.bonus-header {
    text-align: center;
    /* Centraliza tudo */
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bonus-badge {
    background: #e67e22;
    /* Laranja queimado */
    color: white;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 8px 16px;
    border-radius: 50px;
    /* Pill shape */
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transform: none;
    /* Remove rotação */
}

.bonus-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 3.5rem;
    line-height: 1.1;
    text-transform: uppercase;
    color: white;
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.3);
}

.strike-title {
    text-decoration: line-through;
    text-decoration-color: #e74c3c;
    /* Vermelho para o risco */
    text-decoration-thickness: 3px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.8rem;
    display: block;
    /* Garante que fique em linha própria */
    margin-bottom: 5px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 60px;
    /* Aumentei o gap para dar espaço às rotações */
    max-width: 1100px;
    margin: 40px auto 0;
    /* Margem superior para separar do título */
    padding: 20px;
}

.bonus-card {
    background: white;
    padding: 20px;
    /* Mais padding interno */
    border-radius: 12px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: row;
    /* Garante lado a lado no desktop */
    gap: 25px;
    align-items: center;
    transition: transform 0.3s ease;
    min-height: 180px;
    /* Altura mínima consistente */
}

/* Efeito de Borda Pontilhada Interna */
.bonus-card::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 2px dashed #bdc3c7;
    border-radius: 8px;
    pointer-events: none;
    z-index: 1;
}

/* Rotação Alternada */
.bonus-card:nth-child(odd) {
    transform: rotate(-1.5deg);
}

.bonus-card:nth-child(even) {
    transform: rotate(1.5deg);
}

.bonus-card:hover {
    transform: rotate(0deg) scale(1.02);
    z-index: 20;
}

/* Tape (Fita Adesiva) */
.bonus-card::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%) rotate(-1deg);
    width: 60px;
    height: 30px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.bonus-img-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    flex-shrink: 0;
    z-index: 5;
    margin-left: 10px;
    /* Afasta da borda pontilhada */
}

.bonus-img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border: 3px solid white;
}

.bonus-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-icon {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 45px;
    height: 45px;
    background: #FF6B00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    border: 3px solid white;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.bonus-content {
    flex: 1;
    text-align: left;
    z-index: 5;
    padding-right: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bonus-content h3 {
    font-family: 'Caveat', cursive;
    font-size: 2rem;
    margin-bottom: 5px;
    color: #2c3e50;
    font-weight: 700;
    line-height: 1.1;
}

.bonus-content p {
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 15px;
    line-height: 1.4;
}

.price-tag {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.price-strike {
    text-decoration: line-through;
    color: #95a5a6;
    font-weight: 600;
}

.free-badge {
    background: #2ecc71;
    color: white;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 4px;
    /* Retangular arredondado */
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Mais espaço lateral */


    .hero-title {
        font-size: 2.2rem;
    }

    /* Correção do wrapper da imagem no mobile */
    .hero-image-wrapper {
        max-width: 90%;
        margin: 0 auto 30px;
        transform: rotate(0deg);
        /* Remove rotação estática para alinhar melhor */
        padding: 10px;
        /* Menos padding */
    }

    /* Remove o hover "bugado" de toque e adiciona animação automática suave */
    .hero-image-wrapper:hover {
        transform: rotate(0deg);
        /* Desativa o efeito de escala/rotação do desktop */
        box-shadow: var(--shadow-md);
        /* Sombra padrão */
    }

    /* Animação contínua de flutuação para mobile (substitui interatividade de toque) */
    .hero-img {
        animation: float-mobile 4s ease-in-out infinite;
    }

    .pricing-cards {
        flex-direction: column;
    }

    .price-card {
        width: 100%;
        margin: 0 auto 30px;
        transform: none !important;
    }

    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }
}

@keyframes float-mobile {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Aplica o efeito de hover interativo APENAS em dispositivos que têm mouse (evita bugs em touch) */
@media (hover: hover) {
    .hero-image-wrapper:hover {
        transform: rotate(0deg) scale(1.05) translateY(-5px);
        box-shadow: 0 25px 35px -5px rgba(0, 0, 0, 0.15), 0 15px 15px -5px rgba(0, 0, 0, 0.08);
        z-index: 10;
    }
}

/* === Bonus Section Responsive Fixes === */
@media (max-width: 900px) {
    .bonus-grid {
        grid-template-columns: 1fr;
        /* Coluna única */
        max-width: 600px;
        margin: 40px auto;
        gap: 40px;
        padding: 0 20px;
    }

    .bonus-card {
        flex-direction: column;
        /* Empilha imagem e conteúdo */
        text-align: center;
        padding: 30px;
        width: 100%;
        align-items: center;
    }

    .bonus-img-wrapper {
        margin: 0 auto 15px auto;
        /* Centraliza imagem com margem inferior */
        width: 200px;
        /* Imagem maior no mobile */
        height: 200px;
    }

    .bonus-content {
        padding-right: 0;
        text-align: center;
        align-items: center;
    }

    .bonus-content h3 {
        margin-top: 10px;
        font-size: 2.2rem;
    }

    .price-tag {
        width: 100%;
        max-width: 320px;
        justify-content: space-between;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .bonus-title {
        font-size: 2.5rem;
    }

    .strike-title {
        font-size: 1.5rem;
    }

    .bonus-card {
        padding: 20px;
    }

    .bonus-img-wrapper {
        width: 160px;
        height: 160px;
    }
}

/* ==========================================================================
   Testimonials / Social Proof (Premium & Human) - OTIMIZADO
   ========================================================================== */
.testimonials-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    position: relative;
}

.testimonials-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.testimonial-card-premium {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.testimonial-header-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #FF6B00;
}

.testimonial-info h4 {
    margin: 0;
    font-size: 1rem;
    color: #333;
    font-weight: 700;
    line-height: 1.2;
}

.testimonial-info span {
    font-size: 0.8rem;
    color: #FF6B00;
    font-weight: 600;
    display: block;
}

.testimonial-stars {
    color: #ffc107;
    font-size: 0.75rem;
    margin-top: 4px;
}

.testimonial-content h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 8px;
    font-weight: 800;
}

.testimonial-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 12px;
}

.verified-badge {
    color: #28a745;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 40px 0;
    }

    .testimonials-grid-new {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Live Purchase Notifications (Responsive & Premium)
   ========================================================================== */
.purchase-notification {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background: white;
    padding: 12px 18px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10000;
    border-left: 4px solid #FF6B00;
    transform: translateX(-120%);
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    max-width: 320px;
    pointer-events: none;
}

.purchase-notification.show {
    transform: translateX(0);
}

.notif-img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(255, 107, 0, 0.2);
}

.notif-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.notif-content {
    flex: 1;
}

.notif-title {
    font-size: 0.9rem;
    color: #333;
    margin: 0;
    line-height: 1.3;
}

.notif-title strong {
    color: #FF6B00;
}

.notif-text {
    font-size: 0.8rem;
    color: #666;
    margin: 2px 0 0 0;
}

.notif-time {
    font-size: 0.7rem;
    color: #999;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Responsividade Mobile */
@media (max-width: 768px) {
    .purchase-notification {
        bottom: 10px;
        left: 10px;
        right: 10px;
        max-width: calc(100% - 20px);
        padding: 10px 15px;
    }

    .notif-img {
        width: 40px;
        height: 40px;
    }

    .notif-title {
        font-size: 0.85rem;
    }
}