@charset "UTF-8";

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Remove qualquer margem/padding do Bootstrap container em mobile */
@media (max-width: 767.98px) {
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    /* Garante que todas as seções ocupem 100% da largura */
    section {
        width: 100% !important;
        margin: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    /* Remove qualquer overflow que possa causar scroll horizontal */
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .col-12, .col-lg-8, .col-lg-7, .col-lg-5 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

.text-success{
    color: rgb(100 221 165) !important;
}

/* Variáveis CSS */
:root {
    --primary-color: rgb(209, 227, 248);
    --secondary-color: #F39C12;
    --success-color: #27AE60;
    --danger-color: #E74C3C;
    --warning-color: #F1C40F;
    --dark-color: #2C3E50;
    --light-color: #ECF0F1;
    --gradient-primary: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    --gradient-secondary: linear-gradient(135deg, #F39C12 0%, #E67E22 100%);
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 5px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 10px 30px rgba(0,0,0,0.2);
}

/* Utilitários */
.text-primary { color: var(--primary-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.btn-primary { 
    background: var(--gradient-primary);
    border: none;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Animações */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% { transform: translateY(0); }
    40%, 43% { transform: translateY(-10px); }
    70% { transform: translateY(-5px); }
    90% { transform: translateY(-2px); }
}

.pulse { animation: pulse 2s infinite; }
.fade-in-up { animation: fadeInUp 0.8s ease-out; }
.bounce { animation: bounce 2s infinite; }

/* Mobile First - Botões */
.btn-cta {
    font-weight: 600;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    display: block;
}

/* Tablet e Desktop */
@media (min-width: 768px) {
    .btn-cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        width: auto;
        display: inline-block;
        letter-spacing: 0.5px;
    }
}

@media (min-width: 1200px) {
    .btn-cta {
        font-size: 1rem;
    }
}

/* Logo */
.logo-container {
    text-align: left;
    padding: 0.5rem 0;
}

.site-logo {
    height: 55px;
    width: auto;
}

/* Tablet e Desktop */
@media (min-width: 768px) {
    .logo-container {
        padding: 0.8rem 0;
    }
    
    .site-logo {
        height: 70px;
    }
}

@media (min-width: 1200px) {
    .site-logo {
        height: 80px;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.1"><polygon points="1000,100 1000,0 0,100"/></svg>');
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0.5rem 0 2rem;
}

/* Tablet e Desktop */
@media (min-width: 768px) {
    .hero-content {
        padding: 1rem 0 2rem;
    }
}

.badge-urgency {
    background: var(--gradient-secondary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    animation: bounce 2s infinite;
    margin-bottom: 1rem !important; /* Override do mb-3 do Bootstrap */
}

/* Mobile First - Hero */
.hero-title {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    padding: 0 0.5rem;
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    padding: 0 0.5rem;
}

/* Tablet e Desktop */
@media (min-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
        padding: 0;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        padding: 0;
    }
}

@media (min-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
}

.benefits-list {
    list-style: none;
}

/* Mobile First - Benefits */
.benefit-item {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    padding: 0 0.5rem;
    line-height: 1.4;
}

.benefit-item i {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Tablet e Desktop */
@media (min-width: 768px) {
    .benefit-item {
        font-size: 1rem;
        margin-bottom: 0.8rem;
        align-items: center;
        padding: 0;
    }
    
    .benefit-item i {
        margin-top: 0;
    }
}

@media (min-width: 1200px) {
    .benefit-item {
        font-size: 1.1rem;
    }
}

.price-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.old-price {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    display: block;
}

/* Mobile First - Preços */
.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--warning-color);
    display: block;
}

/* Tablet e Desktop */
@media (min-width: 768px) {
    .current-price {
        font-size: 2.3rem;
    }
}

@media (min-width: 1200px) {
    .current-price {
        font-size: 2.5rem;
    }
}

.discount-badge {
    background: var(--danger-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-left: 1rem;
}

.guarantee-text {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 1rem;
}

.hero-content-right {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

/* Mobile First - Floating Badge */
.floating-badge {
    background: white;
    color: var(--dark-color);
    padding: 1.5rem 1rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    text-align: center;
    animation: bounce 3s infinite;
    max-width: 280px;
    margin: 1rem auto;
}

.floating-badge span {
    font-size: 1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.3rem;
}

.floating-badge small {
    font-size: 0.8rem;
    color: #666;
}

/* Tablet e Desktop */
@media (min-width: 768px) {
    .floating-badge {
        padding: 1.8rem 1.5rem;
        max-width: 300px;
    }
    
    .floating-badge span {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }
    
    .floating-badge small {
        font-size: 0.85rem;
    }
}

@media (min-width: 1200px) {
    .floating-badge {
        padding: 2rem;
    }
    
    .floating-badge span {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .floating-badge small {
        font-size: 0.9rem;
    }
}

.floating-badge .fas {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.floating-badge span {
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.floating-badge small {
    font-size: 0.9rem;
    color: #666;
}

/* Sections */
/* Mobile First - Títulos */
.section-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
    padding: 0 0.5rem;
    line-height: 1.3;
}

.lead {
    font-size: 1rem;
    color: #666;
    padding: 0 0.5rem;
    line-height: 1.5;
}

/* Tablet e Desktop */
@media (min-width: 768px) {
    .section-title {
        font-size: 2.2rem;
        padding: 0;
    }
    
    .lead {
        font-size: 1.1rem;
        padding: 0;
    }
}

@media (min-width: 1200px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .lead {
        font-size: 1.2rem;
    }
}

/* Problem Section */
.problem-section {
    background: var(--light-color);
}

/* Mobile First - Grids */
.problems-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Tablet e Desktop */
@media (min-width: 768px) {
    .problems-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-top: 2.5rem;
    }
}

@media (min-width: 1200px) {
    .problems-grid {
        margin-top: 3rem;
    }
}

/* Mobile First - Problem Items */
.problem-item {
    background: white;
    padding: 1.5rem 1rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
}

.problem-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

.problem-item p {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Tablet e Desktop */
@media (min-width: 768px) {
    .problem-item {
        padding: 2rem;
    }
    
    .problem-item h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .problem-item p {
        font-size: 1rem;
    }
}

@media (min-width: 1200px) {
    .problem-item h4 {
        font-size: 1.3rem;
    }
}

.problem-item:hover {
    transform: translateY(-5px);
}

.problem-item .fas {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

/* Mobile First - Sections Padding */
.solution-section,
.content-section,
.faq-section {
    padding: 3rem 0;
}

.method-section,
.testimonials-section,
.urgency-section,
.purchase-section,
.problem-section {
    padding: 2.5rem 0;
}

/* Tablet e Desktop */
@media (min-width: 768px) {
    .solution-section,
    .content-section,
    .faq-section {
        padding: 4rem 0;
    }
    
    .method-section,
    .testimonials-section,
    .urgency-section,
    .purchase-section,
    .problem-section {
        padding: 3.5rem 0;
    }
}

@media (min-width: 1200px) {
    .solution-section,
    .content-section,
    .faq-section {
        padding: 5rem 0;
    }
    
    .method-section,
    .testimonials-section,
    .urgency-section,
    .purchase-section,
    .problem-section {
        padding: 4rem 0;
    }
}

.solution-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.feature-icon {
    background: var(--gradient-primary);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.feature-icon .fas {
    font-size: 1.5rem;
}

.feature-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

/* Method Section */
.method-section {
    background: var(--light-color);
}

/* Mobile First - Method Steps */
.method-step {
    background: white;
    padding: 1.5rem 1rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 2rem;
}

.method-step h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

.method-step p {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Tablet e Desktop */
@media (min-width: 768px) {
    .method-step {
        padding: 2rem;
        margin-bottom: 0;
    }
    
    .method-step h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .method-step p {
        font-size: 1rem;
    }
}

@media (min-width: 1200px) {
    .method-step h4 {
        font-size: 1.4rem;
    }
}

.method-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    background: var(--gradient-secondary);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 1.5rem;
}

.step-icon .fas {
    font-size: 2rem;
}

.method-step h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

/* Material Preview - Layout otimizado */
.material-preview {
    text-align: center;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.material-preview img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-heavy);
    transition: transform 0.3s ease;
    max-width: 500px;
}

.material-preview img:hover {
    transform: scale(1.02);
}

/* Tablet e Desktop */
@media (min-width: 768px) {
    .material-preview img {
        max-width: 600px;
    }
}

@media (min-width: 1200px) {
    .material-preview img {
        max-width: none;
    }
}

/* Content Section */

/* Mobile First - Content Items (Layout Vertical Centralizado) */
.content-item {
    background: white;
    padding: 1.2rem 1rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border: 2px solid transparent;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.content-icon {
    background: var(--gradient-primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 1rem;
}

.content-icon .fas {
    font-size: 1.2rem;
}

.content-text {
    text-align: center;
    width: 100%;
}

.content-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    line-height: 1.3;
}

.content-item p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0;
    color: #666;
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991.98px) {
    .content-item {
        padding: 1.6rem 1.4rem;
        margin-bottom: 1.2rem;
    }
    
    .content-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.2rem;
    }
    
    .content-icon .fas {
        font-size: 1.4rem;
    }
    
    .content-item h4 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .content-item p {
        font-size: 0.95rem;
    }
}

/* Desktop - Cards empilhados verticalmente na coluna direita */
@media (min-width: 992px) {
    .content-item {
        padding: 1.5rem 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .content-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .content-icon .fas {
        font-size: 1.4rem;
    }
    
    .content-item h4 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .content-item p {
        font-size: 0.9rem;
    }
    
    /* Remove margin-bottom do último card */
    .col-lg-5 > div:last-child .content-item {
        margin-bottom: 0;
    }
    
    /* Alinhamento da seção no desktop */
    .row.align-items-center {
        align-items: flex-start;
    }
    
    /* Centraliza verticalmente a coluna dos cards */
    .col-lg-5 {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

@media (min-width: 1200px) {
    .content-item {
        padding: 1.8rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .content-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.2rem;
    }
    
    .content-icon .fas {
        font-size: 1.6rem;
    }
    
    .content-item h4 {
        font-size: 1.2rem;
        margin-bottom: 0.7rem;
    }
    
    .content-item p {
        font-size: 1rem;
    }
}

.content-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.content-item.bonus {
    border-color: var(--success-color);
    background: linear-gradient(135deg, #f8fff8 0%, #e8f5e8 100%);
}

.bonus-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--success-color);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.content-item.bonus .content-icon {
    background: var(--gradient-secondary);
}

.content-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.content-value {
    background: var(--light-color);
    color: var(--dark-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
}

.total-value-section {
    background: var(--gradient-primary);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
}

.value-breakdown h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.total-price {
    font-size: 2rem;
    text-decoration: line-through;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.offer-price {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.offer-price strong {
    font-size: 3rem;
    color: var(--warning-color);
    display: block;
}

.savings {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--warning-color);
}

/* Testimonials Section */
.testimonials-section {
    background: var(--light-color);
}

/* Mobile First - Testimonials */
.testimonial-card {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 1.5rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.2rem;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Tablet e Desktop */
@media (min-width: 768px) {
    .testimonial-card {
        padding: 2rem;
        margin-bottom: 0;
    }
    
    .testimonial-card p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.stars {
    margin-bottom: 1rem;
}

.stars .fas {
    color: var(--warning-color);
    margin-right: 0.2rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #666;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.testimonial-author strong {
    display: block;
    color: var(--dark-color);
}

.testimonial-author small {
    color: #666;
}



/* Urgency Section */
.urgency-section {
    background: var(--gradient-secondary);
    color: white;
}

.urgency-content {
    text-align: center;
}

/* Mobile First - Countdown */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem 0.8rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    min-width: 70px;
    flex: 1;
    max-width: 90px;
}

.countdown-number {
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
}

.countdown-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Tablet e Desktop */
@media (min-width: 768px) {
    .countdown-timer {
        gap: 1.5rem;
    }
    
    .countdown-item {
        padding: 1.2rem 1rem;
        min-width: 90px;
        max-width: 110px;
    }
    
    .countdown-number {
        font-size: 2.2rem;
    }
    
    .countdown-label {
        font-size: 0.85rem;
    }
}

@media (min-width: 1200px) {
    .countdown-timer {
        gap: 2rem;
    }
    
    .countdown-item {
        padding: 1.5rem;
        min-width: 100px;
        max-width: none;
    }
    
    .countdown-number {
        font-size: 2.5rem;
    }
    
    .countdown-label {
        font-size: 0.9rem;
    }
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.urgency-reasons {
    margin: 2rem 0;
}

.reason-item {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Purchase Section */
.purchase-section {
    background: var(--light-color);
    padding: 0 !important;
}

.purchase-card {
    background: white;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    width: 100%;
    margin: 0;
}

.purchase-header {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem 1rem;
}

.purchase-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

/* Urgência no Header */
.urgency-pulse {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    display: inline-block;
    animation: pulse 2s infinite;
    backdrop-filter: blur(10px);
}

.urgency-text {
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Mobile First - Purchase Content */
.purchase-content {
    padding: 1.5rem 0;
    background: white;
}

/* Tablet e Desktop */
@media (min-width: 768px) {
    .purchase-content {
        padding: 2rem 0;
    }
    
    .purchase-header {
        padding: 2.5rem 2rem;
    }
}

/* Seção de Dor/Problemas - Reduzida */
.pain-points {
    background: linear-gradient(135deg, #ffe6e6 0%, #ffcccc 100%);
    padding: 1rem 1.2rem;
    border-radius: 12px;
    border-left: 4px solid var(--danger-color);
}

.pain-points h3 {
    color: var(--danger-color);
    font-size: 1.1rem;
    font-weight: 700;
}

.pain-item {
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: flex-start;
    line-height: 1.3;
}

.pain-item i {
    margin-top: 0.15rem;
    flex-shrink: 0;
    font-size: 0.9rem;
}

/* Seção de Benefícios/Soluções - Reduzida */
.solution-benefits {
    background: linear-gradient(135deg, #e6ffe6 0%, #ccffcc 100%);
    padding: 1rem 1.2rem;
    border-radius: 12px;
    border-left: 4px solid var(--success-color);
}

.solution-benefits h3 {
    color: var(--success-color);
    font-size: 1.1rem;
    font-weight: 700;
}

.solution-item {
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: flex-start;
    line-height: 1.3;
}

.solution-item i {
    margin-top: 0.15rem;
    flex-shrink: 0;
    font-size: 0.9rem;
}

/* Seção de Preço com Urgência */
.price-urgency-section {
    background: var(--gradient-primary);
    color: white;
    padding: 1.8rem 1.2rem;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.price-urgency-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.price-comparison {
    position: relative;
    z-index: 2;
}

.old-price-section {
    margin-bottom: 0.8rem;
}

.old-price-label {
    display: block;
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 0.2rem;
}

.old-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    opacity: 0.7;
    font-weight: 500;
}

.current-price-section {
    position: relative;
}

.current-price-label {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
    font-weight: 600;
}

/* Mobile First - Current Price */
.current-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--warning-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    display: block;
    line-height: 1;
}

/* Tablet e Desktop */
@media (min-width: 768px) {
    .current-price {
        font-size: 3rem;
    }
}

.discount-badge {
    background: var(--danger-color);
    color: white;
    padding: 0.4rem 0.9rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 0.6rem;
    display: inline-block;
    animation: bounce 2s infinite;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.value-proposition {
    position: relative;
    z-index: 2;
}

.value-text {
    font-size: 0.95rem;
    margin-bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.8rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.value-text strong {
    font-size: 1rem;
    color: var(--warning-color);
}

/* Botão de Compra Principal - DESTAQUE MÁXIMO */
.btn-purchase {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
    border-radius: 15px;
    padding: 1.5rem 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 10px 35px rgba(40, 167, 69, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 1.1rem;
}

.btn-purchase::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.5s;
}

.btn-purchase:hover::before {
    left: 100%;
}

.btn-purchase:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(40, 167, 69, 0.6);
}

.btn-text {
    display: block;
    line-height: 1.4;
}

.btn-text strong {
    font-size: 1.05rem;
    display: block;
    margin-bottom: 0.3rem;
}

.btn-text small {
    font-size: 0.9rem;
    opacity: 0.95;
    font-weight: 600;
}

/* Mobile adjustments */
@media (max-width: 576px) {
    .btn-purchase {
        padding: 1.3rem 1.5rem;
        font-size: 1rem;
    }
    
    .btn-text strong {
        font-size: 0.95rem;
    }
    
    .btn-text small {
        font-size: 0.85rem;
    }
}

/* Segurança do Pagamento - Reduzida */
.payment-security {
    background: rgba(0, 0, 0, 0.03);
    padding: 0.8rem;
    border-radius: 10px;
}

.security-badges {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--success-color);
    margin-bottom: 0.4rem;
}

.payment-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.payment-icons i {
    font-size: 1.6rem;
    color: #666;
    transition: color 0.3s ease;
}

.payment-icons i:hover {
    color: var(--primary-color);
}

.payment-text {
    font-size: 0.75rem;
    color: #666;
    margin-left: 0.3rem;
}

/* Garantia Destacada - COR AZUL */
.guarantee-highlight {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 1.2rem;
    border-radius: 12px;
    border: 2px solid #2196F3;
    position: relative;
}

.guarantee-badge-large {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
}

.guarantee-badge-large i {
    font-size: 1.1rem;
}

.guarantee-text {
    color: #1565C0;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0;
}

.guarantee-text strong {
    color: #0D47A1;
    font-size: 1rem;
}

/* Urgência Final - Reduzida */
.final-urgency {
    background: var(--gradient-secondary);
    color: white;
    padding: 1.2rem;
    border-radius: 12px;
    position: relative;
}

.urgency-box h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.urgency-box p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.8rem;
}

.social-proof {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.6rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    backdrop-filter: blur(10px);
}

/* Responsividade para Mobile */
@media (max-width: 576px) {
    .purchase-header {
        padding: 1.5rem 1rem;
    }
    
    .purchase-header h2 {
        font-size: 1.6rem;
    }
    
    .purchase-content {
        padding: 1rem 0;
    }
    
    .pain-points,
    .solution-benefits {
        padding: 0.8rem 1rem;
    }
    
    .pain-item,
    .solution-item {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }
    
    .price-urgency-section {
        padding: 1.5rem 1rem;
    }
    
    .current-price {
        font-size: 2.2rem;
    }
    
    .guarantee-highlight {
        padding: 1rem;
    }
    
    .guarantee-badge-large {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .final-urgency {
        padding: 1rem;
    }
    
    .urgency-box h4 {
        font-size: 1rem;
    }
    
    .urgency-box p {
        font-size: 0.85rem;
    }
}

/* Botão fixo no mobile para melhor conversão */
@media (max-width: 767.98px) {
    .mobile-sticky-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
        z-index: 1000;
        border-top: 3px solid var(--success-color);
        transform: translateY(100%);
        opacity: 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .mobile-sticky-cta.show {
        transform: translateY(0);
        opacity: 1;
    }
    
    .mobile-sticky-cta .btn-purchase {
        margin: 0;
        font-size: 0.9rem;
        padding: 1rem;
        box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
        border-radius: 12px;
    }
    
    .mobile-sticky-cta .btn-purchase:hover {
        transform: none; /* Remove hover transform em mobile */
        box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    }
    
    /* Adiciona espaço no final da página para não sobrepor o botão fixo */
    .purchase-section {
        padding-bottom: 6rem !important;
    }
    
    /* Animação especial para o botão fixo */
    .mobile-sticky-cta .pulse {
        animation: mobilePulse 2s infinite;
    }
    
    @keyframes mobilePulse {
        0% { 
            transform: scale(1);
            box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
        }
        50% { 
            transform: scale(1.02);
            box-shadow: 0 6px 25px rgba(40, 167, 69, 0.5);
        }
        100% { 
            transform: scale(1);
            box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
        }
    }
    
    /* Melhora a legibilidade do texto no botão fixo */
    .mobile-sticky-cta .btn-purchase {
        font-weight: 800;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        letter-spacing: 0.3px;
    }
    
    /* Adiciona um indicador visual de urgência */
    .mobile-sticky-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, 
            var(--success-color) 0%, 
            var(--warning-color) 50%, 
            var(--success-color) 100%);
        animation: urgencyGlow 2s infinite;
    }
    
    @keyframes urgencyGlow {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.7; }
    }
}

.purchase-benefits {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 15px;
}

.purchase-benefits .benefit-item {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.payment-methods {
    margin-top: 1rem;
}

.guarantee-section {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
}

.guarantee-badge {
    background: var(--success-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1rem;
}

.guarantee-badge .fas {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

/* FAQ Section */

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.accordion-button {
    background: white;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-primary);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 1.5rem;
    background: var(--light-color);
}

/* Footer */
.footer-section {
    background: var(--dark-color);
    color: white;
}

.footer-brand {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-right: 1.5rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-contact a:hover {
    color: white;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

/* Ajustes específicos para mobile pequeno */
@media (max-width: 576px) {
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .purchase-content {
        padding: 1rem;
    }
    
    .btn-purchase {
        font-size: 1rem;
        padding: 0.9rem 1.2rem;
    }
    
    .hero-content {
        padding: 0.5rem 0;
    }
    
    .badge-urgency {
        margin-bottom: 0.8rem !important;
    }
    
    .urgency-reasons .reason-item {
        font-size: 0.9rem;
        text-align: left;
    }
    
    /* Cards ainda menores em mobile pequeno */
    .content-item {
        padding: 1rem 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .content-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 0.8rem;
    }
    
    .content-icon .fas {
        font-size: 1.1rem;
    }
    
    .content-item h4 {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .content-item p {
        font-size: 0.8rem;
    }
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Hover effects */
.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-color);
}