:root {
  --primary-red: #dc2626;
  --accent-red:  #ef4444;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #f0f0f0;
    background-color: #1A1A1A;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
}

h2 {
    font-size: 2.5rem;
    font-weight: 800;
}

h3 {
    font-size: 2rem;
    font-weight: 700;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #E53E3E, #B30000);
    color: white;
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(229, 62, 62, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #333333, #000000);
    color: white;
    box-shadow: 0 8px 25px rgba(51, 51, 51, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(51, 51, 51, 0.4);
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
}

.btn-full {
    width: 100%;
}

/* Emoji Styles */
.emoji {
    font-size: 1.2em;
    margin-right: 0.5rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1A1A1A 0%, #333333 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="1" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge .text {
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
  color: var(--text-gray);
  text-align: center;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
}


.hero-cta {
    margin-top: 2rem;
}

/* Problem Section */
.problem {
    padding: 80px 0;
    background: #0D0D0D;
}

.problem-content {
    text-align: center;
}

.problem-header {
    margin-bottom: 3rem;
}

.problem-header h2 {
    color: #E53E3E;
    font-size: 2.2rem;
}

.problem-list {
    display: grid;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.problem-item {
    display: flex;
    align-items: center;
    background: #2A2A2A;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    font-size: 1.1rem;
    font-weight: 500;
    color: #f0f0f0;
}

.problem-item .icon {
    margin-right: 1rem;
    font-size: 1.5rem;
}

.problem-solution {
    background: linear-gradient(135deg, #E53E3E, #B30000);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    margin-top: 2rem;
}

.problem-solution h3 {
    font-size: 1.8rem;
    margin: 0;
}

/* Solution Section */
.solution {
    padding: 80px 0;
    background: #1A1A1A;
}

.solution-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.solution-header h2 {
    color: #E53E3E;
    margin-bottom: 2rem;
}

.solution-description {
    font-size: 1.3rem;
    color: #f0f0f0;
    line-height: 1.8;
}

/* Plans Section */
.plans {
    padding: 100px 0;
    background: #0D0D0D;
}

.plans-header {
    text-align: center;
    margin-bottom: 4rem;
}

.plans-header h2 {
    color: #E53E3E;
    font-size: 2.5rem;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.plan-card {
    background: #2A2A2A;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.plan-card.featured {
    border: 3px solid #E53E3E;
    transform: scale(1.05);
}

.plan-badge-featured {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #E53E3E, #B30000);
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.plan-badge.basic {
    background: linear-gradient(135deg, #333333, #000000);
    color: white;
}

.plan-badge.complete {
    background: linear-gradient(135deg, #E53E3E, #B30000);
    color: white;
}

.plan-price {
    font-size: 3rem;
    font-weight: 900;
    color: #E53E3E;
}

.plan-price .currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.plan-features {
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.5;
}

.feature .icon {
    margin-right: 0.75rem;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature.included {
    color: #f0f0f0;
}

.feature.excluded {
    color: #999;
    opacity: 0.7;
}

.feature.bonus {
    color: #E53E3E;
    font-weight: 600;
}

/* Social Proof Section */
.social-proof {
    padding: 80px 0;
    background: #1A1A1A;
}

.social-proof-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.social-proof-header h2 {
    color: #E53E3E;
    margin-bottom: 3rem;
}

.social-proof-list {
    display: grid;
    gap: 1.5rem;
}

.proof-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2A2A2A;
    padding: 1.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #f0f0f0;
}

.proof-item .icon {
    margin-right: 1rem;
    font-size: 1.5rem;
}

/* Value Proposition Section */
.value-proposition {
    padding: 80px 0;
    background: #0D0D0D;
}

.value-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.value-header h2 {
    color: #E53E3E;
    margin-bottom: 3rem;
}

.value-comparison {
    display: grid;
    gap: 2rem;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    padding: 2rem;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 500;
    color: #f0f0f0;
}

.comparison-item.negative {
    background: #2A2A2A;
    border-left: 4px solid #E53E3E;
}

.comparison-item.positive {
    background: #2A2A2A;
    border-left: 4px solid #28a745; /* Keep green for positive */
}

.comparison-item .icon {
    margin-right: 1rem;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Comparison Table Section */
.comparison-table {
    padding: 80px 0;
    background: white;
}

.comparison-table {
    padding: 80px 0;
    background: #1A1A1A;
}

.table-header h2 {
    color: #E53E3E;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.comparison {
    width: 100%;
    border-collapse: collapse;
    background: #2A2A2A;
}

.comparison th,
.comparison td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid #333333;
}

.comparison th {
    background: linear-gradient(135deg, #333333, #000000);
    color: white;
    font-weight: 700;
    text-align: center;
}

.comparison td {
    font-size: 1rem;
    text-align: center;
    color: #f0f0f0;
}

.comparison .highlight {
    background: #4A0000;
    font-weight: 650;
    color: #FFFFFF;
}

/* Urgency Section */
.urgency {
    padding: 80px 0;
    background: linear-gradient(135deg, #E53E3E, #B30000);
    color: white;
    text-align: center;
}

.urgency-header h2 {
    margin-bottom: 2rem;
}

.urgency-price {
    margin-bottom: 2rem;
}

.old-price {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.new-prices {
    font-size: 1.8rem;
    font-weight: 700;
}

.urgency-benefits {
    font-size: 1.4rem;
    font-weight: 600;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: #0D0D0D;
}

.how-it-works-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.how-it-works-header h2 {
    color: #E53E3E;
    margin-bottom: 3rem;
}

.steps {
    display: grid;
    gap: 2rem;
}

.step {
    display: flex;
    align-items: center;
    background: #2A2A2A;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
    color: #f0f0f0;
}

.step-number {
    font-size: 2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-text {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Guarantee Section */
.guarantee {
    padding: 80px 0;
    background: #1A1A1A;
    text-align: center;
}

.guarantee-content {
    max-width: 600px;
    margin: 0 auto;
}

.guarantee-header h2 {
    color: #E53E3E;
    margin-bottom: 2rem;
}

.guarantee-text {
    font-size: 1.3rem;
    color: #f0f0f0;
    line-height: 1.8;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #E53E3E, #B30000);
    color: white;
    text-align: center;
}

.final-cta-header h2 {
    margin-bottom: 3rem;
    font-size: 2.2rem;
}

.final-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.final-message {
    margin-top: 3rem;
}

.final-message p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: #000000;
    color: white;
    text-align: center;
}

.footer-content p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}







/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    /* REMOVA ESTAS DUAS LINHAS (elas sobrescrevem o clamp() ) */
    /* .hero-title {
        font-size: 2.8rem;
    } */
    /* .hero-subtitle {
        font-size: 1.0rem;
    } */
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .plan-card.featured {
        transform: none;
    }
    
    .final-cta-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
    
    .comparison th,
    .comparison td {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    /* REMOVA ESTA LINHA (ela sobrescreve o clamp() ) */
    /* .hero-title {
        font-size: 2.2rem;
    } */
    
    .plans, .social-proof, .value-proposition, .comparison-table, .urgency, .how-it-works, .guarantee, .final-cta {
        padding: 60px 0;
    }
    
    .problem {
        padding: 60px 0;
    }
    
    .solution {
        padding: 60px 0;
    }
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.plan-card,
.problem-item,
.proof-item,
.step {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
.btn:focus,
a:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .hero,
    .final-cta {
        background: white !important;
        color: black !important;
    }
    
    .btn {
        border: 2px solid #333 !important;
        background: white !important;
        color: black !important;
    }
}


/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
    color: white;
}

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

/* Additional CTA Enhancements */
.btn-pulse {
    animation: buttonPulse 2s infinite;
}

@keyframes buttonPulse {
    0% { box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3); }
    50% { box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5); }
    100% { box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3); }
}

/* Sticky CTA Bar for Mobile */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    padding: 1rem;
    z-index: 1500;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.sticky-cta.show {
    transform: translateY(0);
}

.sticky-cta .btn {
    width: 100%;
    margin: 0;
    background: white;
    color: #ff6b35;
    font-weight: 800;
}

.sticky-cta .btn:hover {
    background: #f8f9fa;
    transform: none;
}

@media (min-width: 769px) {
    .sticky-cta {
        display: none;
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 80px;
        left: 15px;
    }
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
    opacity: 0.8;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.trust-badge i {
    color: #28a745;
}

@media (max-width: 768px) {
    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Corrige padding lateral em telas pequenas */
@media (max-width: 768px) {
  .section-recebe,
  .section-bonus,
  .section-planos,
  .section-depoimentos,
  .section-checkout {
    padding-left: 16px;
    padding-right: 16px;
  }
}


.hero-subtitle .hero-highlight {
  display: inline-block; /* Essencial para a animação funcionar bem */
  color: var(--accent-red);
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-red) 0%, var(--primary-red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none; /* Remove qualquer sombra de texto que possa interferir */
  position: relative; /* Necessário para a animação */
  animation: pulse 2s ease-in-out infinite;
}

/* Animação de pulso que já existe no seu código, mas garantindo que está aqui */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}


/* SEGUNDO LOTE DE CSS */
:root {
     Paleta Principal Otimizada 
    --primary-black: #0a0a0a;
    --secondary-black: #151515;
    --tertiary-black: #1f1f1f;
    --accent-black: #262626;
    --primary-red: #dc2626;
    --secondary-red: #b91c1c;
    --accent-red: #ef4444;
    --bright-red: #f87171;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --text-gray-light: #e5e5e5;
    --text-gray-dark: #9ca3af;
    --border-gray: #404040;
    --border-subtle: rgba(255, 255, 255, 0.1);
    --shadow-red: rgba(220, 38, 38, 0.3);
    --shadow-red-hover: rgba(220, 38, 38, 0.4);
    --overlay-red: rgba(220, 38, 38, 0.1);
}

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

body {
    background: var(--primary-black);
    color: var(--text-white);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

h1, h2, h3 {
    font-weight: 700;
    color: var(--text-white);
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    color: var(--text-white);
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--primary-red) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}
 
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 50%, var(--tertiary-black) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, var(--overlay-red) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(220, 38, 38, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    color: var(--text-white);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 32px;
    box-shadow: 0 4px 20px var(--shadow-red);
    border: 1px solid rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--shadow-red-hover);
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--primary-red) 100%);
}

.hero-badge .emoji {
    font-size: 16px;
    filter: grayscale(20%);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--text-white) 0%, var(--text-gray-light) 50%, var(--text-white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* CORREÇÃO: Melhor formatação do texto no mobile */
@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
        padding: 0 10px;
        word-spacing: 0.1em;
        text-align: center;
    }
}

.hero-subtitle .hero-highlight {
  color: var(--accent-red) !important;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-red) 0%, var(--primary-red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pulse 2s ease-in-out infinite;
}

.hero-image-container {
    position: relative;
    margin: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 90%;
    height: auto;
    border-radius: 16px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 100px var(--overlay-red);
    transition: all 0.5s ease;
    border: 1px solid var(--border-subtle);
}

.hero-image:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 120px rgba(220, 38, 38, 0.12);
}

.hero-cta {
    margin-top: 48px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 50%, var(--primary-red) 100%);
    color: var(--text-white);
    padding: 18px 36px;
    font-size: 1.1rem;
    box-shadow: 
        0 8px 32px var(--shadow-red),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.5);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 40px var(--shadow-red-hover),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--primary-red) 50%, var(--accent-red) 100%);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn span {
    position: relative;
    z-index: 2;
    font-size: 1rem;
}

 
.showcase-section {
    padding: 80px 0;
    background: #000;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.content-text {
    padding-right: 40px;
}

.title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.1;
}

.title-white {
    color: #fff;
}

.title-green {
    color: #e53e3e;
}

.subtitle {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.4;
}

.features-list {
    list-style: none;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #fff;
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.1), rgba(229, 62, 62, 0.05));
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(229, 62, 62, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.2), rgba(229, 62, 62, 0.1));
    border-color: rgba(229, 62, 62, 0.4);
    transform: translateX(5px);
}

.check-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #e53e3e, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 4px 8px rgba(229, 62, 62, 0.3);
}

.feature-text {
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.templates-section {
    text-align: center;
}

.templates-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.templates-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    perspective: 1000px;
}

.template-card {
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 9/16;
    position: relative;
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #333;
}

.template-card:hover {
    transform: rotateY(5deg) rotateX(5deg) translateZ(20px);
    box-shadow: 0 30px 60px rgba(255, 0, 0, 0.4);
    border-color: #e53e3e;
}

.template-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.template-card:hover .template-image {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .content-text {
        padding-right: 0;
    }

    .title {
        font-size: 2.8rem;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 16px 15px; 
        margin: 0 5px 15px 5px; 
        align-items: center;
    }

    .check-icon {
        margin-top: 0;
    }

    .feature-text {
        font-size: 0.95rem;
        line-height: 1.4;
    }

 
    .templates-showcase {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin: 0 10px; 
    }

    .templates-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .showcase-section {
        padding: 60px 0;
    }
}

 
.problem {
    padding: 50px 0 30px 0;
    background: var(--primary-black);
}

.problem-content {
    text-align: center;
}

.problem-header h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-white);
}

.problem-list {
    margin-bottom: 30px;
}

.problem-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-align: left;
     CORREÇÃO: Efeito sutil de destaque 
    border: 1px solid rgba(220, 38, 38, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.problem-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(220, 38, 38, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.1);
}

.problem-item .icon {
    font-size: 1.2em;
    color: var(--primary-red);
    min-width: 20px;
}

.problem-solution {
    margin-top: 30px;
}

.problem-solution h3 {
    font-size: 1.5rem;
    color: var(--text-white); 
    margin-bottom: 20px;
}
 
.problem-cta-btn {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    color: var(--text-white); 
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    border: none;
    cursor: pointer;
}

.problem-cta-btn:hover {
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--primary-red) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.fitness-pro-section {
    padding: 60px 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.header {
    text-align: center;
    margin-bottom: 50px;
}

.header .title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #e53e3e, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 30px rgba(229, 62, 62, 0.3);
}

.content-box {
    background: rgba(45, 45, 45, 0.8);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.main-features {
    margin-bottom: 40px;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.highlight-number {
    color: #e53e3e;
    font-weight: 700;
    font-size: 1.2rem;
}


@media (max-width: 768px) {
    .fitness-pro-section {
        padding: 40px 0;
    }

    .header .title {
        font-size: 2rem;
    }

    .content-box,
    .bonus-section {
        padding: 25px 20px;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 18px 15px;
        align-items: center;
    }
    
    .bonus-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 20px 15px;
        align-items: center;
    }
}

 
.bonus-section {
    margin-top: 50px;
    padding: 50px 40px;
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.15), rgba(255, 107, 107, 0.15));
    border-radius: 25px;
    border: 3px solid rgba(229, 62, 62, 0.5);
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(229, 62, 62, 0.4);
}

.bonus-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(229, 62, 62, 0.2), transparent);
    animation: rotate 6s linear infinite;
    z-index: -1;
}

.bonus-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-shadow: 0 0 20px rgba(229, 62, 62, 0.5);
}

.bonus-title::before,
.bonus-title::after {
    content: '🎁';
    font-size: 2rem;
    animation: bounce 2s infinite;
}

.highlight-badge {
    background: linear-gradient(135deg, #ff6b6b, #e53e3e);
    color: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 800;
    display: block;
    text-align: center;
    margin: 0 auto 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.5);
    animation: pulse 2s infinite;
}

.bonus-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 2px solid rgba(229, 62, 62, 0.3);
    backdrop-filter: blur(5px);
}

.bonus-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(229, 62, 62, 0.4);
    border-color: rgba(229, 62, 62, 0.6);
}

.bonus-icon {
    font-size: 2rem;
    min-width: 40px;
    animation: float 3s ease-in-out infinite;
}

.bonus-text {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.access-section {
    margin-top: 40px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.access-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.cta-button {
    background: linear-gradient(135deg, #e53e3e, #c53030);
    color: #fff;
    padding: 25px 50px;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 20px 50px rgba(229, 62, 62, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    width: 100%;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(229, 62, 62, 0.6);
}

 === SEÇÃO FEEDBACKS === 
.social-proof {
    padding: 60px 0 40px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.whatsapp-card {
    background: #0d1418;
    border-radius: 20px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.whatsapp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.1);
}

.whatsapp-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding: 15px;
    background: #1f2937;
    border-radius: 15px;
    border-left: 4px solid #25d366;
}

.whatsapp-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 1rem;
}

.whatsapp-info h4 {
    color: #25d366;
    font-size: 1rem;
    margin-bottom: 2px;
}

.whatsapp-info span {
    color: #9ca3af;
    font-size: 0.8rem;
}

.whatsapp-status {
    font-size: 0.7rem;
    color: #25d366;
    margin-left: auto;
}

.whatsapp-message {
    background: #005c4b;
    padding: 15px 18px;
    border-radius: 18px 18px 4px 18px;
    margin-left: 40px;
    position: relative;
    color: #e9ecef;
    font-size: 0.95rem;
    line-height: 1.5;
}

.whatsapp-message::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: -8px;
    width: 0;
    height: 0;
    border-left: 8px solid #005c4b;
    border-bottom: 8px solid transparent;
}

.whatsapp-time {
    font-size: 0.7rem;
    color: #8696a0;
    margin-top: 8px;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
}

.instagram-card {
    background: #000;
    border-radius: 20px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(225, 48, 108, 0.2);
}

.instagram-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(225, 48, 108, 0.1);
}

.instagram-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding: 15px;
    background: #1a1a1a;
    border-radius: 15px;
    border-left: 4px solid #e1306c;
}

.instagram-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e1306c, #fd1d1d, #fcb045);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 1rem;
    border: 2px solid transparent;
}

.instagram-info h4 {
    color: #e1306c;
    font-size: 1rem;
    margin-bottom: 2px;
}

.instagram-info span {
    color: #9ca3af;
    font-size: 0.8rem;
}

.instagram-verified {
    color: #1da1f2;
    font-size: 0.9rem;
    margin-left: auto;
}

.instagram-message {
    background: #262626;
    padding: 20px;
    border-radius: 15px;
    color: #fafafa;
    font-size: 0.95rem;
    line-height: 1.6;
    border: 1px solid #3c3c3c;
}

.instagram-actions {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #3c3c3c;
}

.instagram-action {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8e8e8e;
    font-size: 0.8rem;
}

.instagram-action.liked {
    color: #e1306c;
}

.urgencia-premium {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0000 50%, #000000 100%);
    color: #ffffff;
    padding: 35px 25px;
    margin: 20px auto; 
    max-width: 1200px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 15px 30px rgba(255, 0, 0, 0.2),
        0 0 0 1px rgba(255, 0, 0, 0.1);
}

.urgencia-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 0, 0, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 0, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.urgencia-premium::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, #ff0000, #cc0000);
    border-radius: 17px;
    z-index: -1;
    opacity: 0.6;
    animation: borderPulse 2s ease-in-out infinite alternate;
}

.urgencia-header {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.urgencia-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(255, 0, 0, 0.3);
}

.urgencia-titulo {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #ff0000 50%, #ffffff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    line-height: 1.1;
}

.urgencia-subtitulo {
    font-size: 1rem;
    color: #cccccc;
    font-weight: 400;
    margin-bottom: 25px;
}

.contador-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 25px 0;
}

.contador-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 1px solid #ff0000;
    border-radius: 8px;
    padding: 15px 12px;
    text-align: center;
    min-width: 70px;
    position: relative;
    overflow: hidden;
}

.contador-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.contador-numero {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ff0000;
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.contador-label {
    font-size: 0.7rem;
    color: #999999;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.info-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    padding: 15px;
    background: rgba(255, 0, 0, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 0, 0, 0.15);
}

.vagas-alerta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #ff0000;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.preco-info {
    text-align: right;
}

.preco-atual {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ff0000;
    margin-bottom: 2px;
}

.preco-original {
    font-size: 0.9rem;
    color: #999999;
    text-decoration: line-through;
    margin-bottom: 4px;
}

.economia-destaque {
    background: linear-gradient(135deg, #00ff00, #00cc00);
    color: #000000;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(0, 255, 0, 0.3);
    animation: economiaGlow 2s ease-in-out infinite alternate;
}

.botao-cta {
    display: block;
    width: 100%;
    max-width: 1200px;
    margin: 20px auto 0;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: #ffffff;
    padding: 14px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.3);
    text-decoration: none;
    text-align: center;
}

.botao-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.5);
}

.popup-compra {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid #ff0000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.4s ease;
    max-width: 280px;
}

.popup-compra.show {
    opacity: 1;
    transform: translateX(0);
}

.popup-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.popup-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
}

.popup-info {
    flex: 1;
}

.popup-nome {
    font-weight: 600;
    font-size: 0.9rem;
    color: #ffffff;
}

.popup-local {
    font-size: 0.8rem;
    color: #999999;
}

.popup-acao {
    font-size: 0.85rem;
    color: #ff0000;
    font-weight: 600;
}

.popup-tempo {
    font-size: 0.75rem;
    color: #666666;
    margin-top: 5px;
}

.plans {
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
}

.plans::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(139, 0, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(139, 0, 0, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

 CORREÇÃO: Container com margem para planos 
.plans .container {
    padding: 0 30px;
}

@media (max-width: 768px) {
    .plans .container {
        padding: 0 20px;
    }
}

.plans-header {
    text-align: center;
    margin-bottom: 60px;
}

.plans-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(220, 38, 38, 0.3);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-card {
    background: rgba(42, 42, 42, 0.8);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.plan-card.featured {
    border: 2px solid #dc2626;
    box-shadow: 0 10px 40px rgba(220, 38, 38, 0.2);
    transform: scale(1.05);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.3);
}

.plan-badge-featured {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.plan-badge.basic {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.plan-badge.complete {
    background: rgba(220, 38, 38, 0.2);
    color: #dc2626;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.currency {
    font-size: 1.8rem; 
    color: #dc2626;
    font-weight: 600;
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    color: #dc2626;
    text-shadow: 0 2px 10px rgba(220, 38, 38, 0.3);
    position: relative;
    animation: priceGlow 3s ease-in-out infinite;
}

@keyframes priceGlow {
    0%, 100% {
        text-shadow: 0 2px 10px rgba(220, 38, 38, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(220, 38, 38, 0.6), 0 0 30px rgba(220, 38, 38, 0.4);
    }
}

.payment-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 15px;
    padding: 8px 12px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 8px;
    font-size: 0.75rem;
    color: #22c55e;
    font-weight: 600;
}

.payment-security .icon {
    font-size: 0.8rem;
}

.plan-features {
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    padding: 8px 0;
}

.feature .icon {
    font-size: 16px;
    margin-top: 2px;
    min-width: 20px;
}

.feature.included {
    color: #e5e5e5;
}

.feature.excluded {
    color: #888;
    opacity: 0.7;
}

.feature.bonus {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
    padding: 12px;
    border-radius: 8px;
    border-left: 3px solid #fbbf24;
}

.plan-cta {
    margin-top: 30px;
}

.btn-secondary {
    background: rgba(107, 114, 128, 0.2);
    color: #e5e5e5;
    border: 1px solid rgba(107, 114, 128, 0.3);
}

.btn-secondary:hover {
    background: rgba(107, 114, 128, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 114, 128, 0.2);
}

.btn-full {
    display: block;
    width: 100%;
    padding: 18px 24px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary.btn-full {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    border: 1px solid rgba(220, 38, 38, 0.3);
    position: relative;
    animation: pulseGlow 2s ease-in-out infinite;
    box-shadow: 
        0 0 20px rgba(220, 38, 38, 0.4),
        0 0 40px rgba(220, 38, 38, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-primary.btn-full::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #dc2626, #ef4444, #dc2626, #ef4444);
    border-radius: inherit;
    z-index: -1;
    animation: rotateBorder 3s linear infinite;
    opacity: 0.7;
}

.btn-primary.btn-full::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
}

.btn-primary.btn-full:hover {
    animation: pulseGlowHover 1s ease-in-out infinite;
    transform: translateY(-3px);
}


.comparison-table {
    padding: 60px 0;
    background: var(--primary-black);
}

.table-header {
    text-align: center;
    margin-bottom: 40px;
}

.table-header h2 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.comparison {
    width: 100%;
    border-collapse: collapse;
    background: rgba(42, 42, 42, 0.8);
    backdrop-filter: blur(10px);
}

.comparison th,
.comparison td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison th {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison td {
    color: #e5e5e5;
    font-size: 1rem;
}

.comparison tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.guarantee {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
}

.guarantee-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-header {
    margin-bottom: 30px;
}

.guarantee-header h2 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.guarantee-text {
    font-size: 1.2rem;
    color: var(--text-gray-light);
    line-height: 1.6;
}

.how-it-works {
    padding: 60px 0;
    background: var(--primary-black);
}

.how-it-works-content {
    text-align: center;
}

.how-it-works-header h2 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 40px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.9), rgba(30, 30, 30, 0.9)) 
    padding: 25px 15px;
    border-radius: 15px;
    border: 1px solid rgba(220, 38, 38, 0.2); 
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.2);
    border-color: rgba(220, 38, 38, 0.4);
}

.step-number {
    font-size: 1.8rem; 
    margin-bottom: 12px;
}

.step-text {
    font-size: 1rem; 
    color: var(--text-gray-light);
    line-height: 1.4;  
}

.footer {
    padding: 40px 0;
    background: var(--secondary-black);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    text-align: center;
    color: var(--text-gray);
}

.footer-content p {
    margin-bottom: 10px;
}


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

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

@keyframes borderPulse {
    0% { opacity: 0.4; }
    100% { opacity: 0.8; }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes economiaGlow {
    0% { box-shadow: 0 2px 8px rgba(0, 255, 0, 0.3); }
    100% { box-shadow: 0 2px 15px rgba(0, 255, 0, 0.5); }
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 0 20px rgba(220, 38, 38, 0.4),
            0 0 40px rgba(220, 38, 38, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 
            0 0 30px rgba(220, 38, 38, 0.6),
            0 0 60px rgba(220, 38, 38, 0.3),
            0 0 80px rgba(220, 38, 38, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
}

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

@keyframes pulseGlowHover {
    0%, 100% {
        box-shadow: 
            0 5px 25px rgba(220, 38, 38, 0.5),
            0 0 50px rgba(220, 38, 38, 0.3),
            0 0 80px rgba(220, 38, 38, 0.1);
    }
    50% {
        box-shadow: 
            0 8px 35px rgba(220, 38, 38, 0.7),
            0 0 70px rgba(220, 38, 38, 0.4),
            0 0 100px rgba(220, 38, 38, 0.2);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
        padding: 40px 0;
    }

    .hero-badge {
        padding: 10px 20px;
        font-size: 12px;
        margin-bottom: 24px;
    }

    .hero-title {
        margin-bottom: 20px;
    }

    .hero-subtitle {
        margin-bottom: 32px;
    }

    .hero-image {
        max-width: 95%;
    }

    .btn-primary {
        padding: 16px 28px;
        font-size: 1rem;
    }

    .hero-cta {
        margin-top: 36px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .whatsapp-card, .instagram-card {
        padding: 15px;
    }

    .urgencia-premium {
        padding: 25px 20px;
        margin: 15px;
    }
    
    .urgencia-titulo {
        font-size: 1.8rem;
    }
    
    .contador-numero {
        font-size: 1.5rem;
    }
    
    .info-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .preco-info {
        text-align: center;
    }
    
    .popup-compra {
        right: 10px;
        bottom: 10px;
        max-width: 240px;
        padding: 12px 15px;
    }

    .plans {
        padding: 60px 0;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .plan-card.featured {
        transform: none;
    }

    .plan-card.featured:hover {
        transform: translateY(-5px);
    }

    .plan-card {
        padding: 20px;
    }

    .plans-header h2 {
        font-size: 1.8rem;
    }

    .amount {
        font-size: 3rem;
    }

    .currency {
        font-size: 1.5rem;
    }

    .btn-full {
        padding: 16px 20px;
        font-size: 1rem;
    }

    .table-wrapper {
        font-size: 0.9rem;
    }

    .comparison th,
    .comparison td {
        padding: 15px 10px;
    }

    .guarantee-header h2,
    .how-it-works-header h2,
    .table-header h2 {
        font-size: 2rem;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .step {
        padding: 20px 15px;
    }

    .step-number {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .step-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 11px;
        padding: 8px 16px;
    }

    .btn-primary {
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    .title {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .bonus-title {
        font-size: 1.5rem;
    }

    .feature-text {
        font-size: 0.85rem;
    }

    .bonus-text {
        font-size: 0.9rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 18px 25px;
    }

    .urgencia-titulo {
        font-size: 1.5rem;
    }

    .amount {
        font-size: 2.5rem;
    }

    .currency {
        font-size: 1.3rem;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .hero-content {
        animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .hero-badge {
        animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
    }

    .hero-title {
        animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
    }

    .hero-subtitle {
        animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
    }

    .hero-image {
        animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
    }

    .hero-cta {
        animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 1s both;
    }
}