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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #0a0e1a;
}

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

/* Header */
.header {
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(26, 35, 126, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

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

.logo h1 {
    font-family: 'Orbitron', monospace;
    font-size: 32px;
    font-weight: 800;
    color: #ffd700;
   
    letter-spacing: 2px;
}

.logo span {
    color: #00bfff;
   
}

.nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #ffd700;
}

.cta-button-small {
    background: linear-gradient(135deg, #1a237e, #3949ab);
    color: #ffd700;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 14px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.cta-button-small:hover {
    background: linear-gradient(135deg, #3949ab, #5c6bc0);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.4);
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(135deg, #1a237e, #3949ab);
    color: #ffd700;
    padding: 12px 0;
    text-align: center;
    margin-top: 70px;
    animation: pulse 2s infinite;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
}

.urgency-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.urgency-content i {
    font-size: 18px;
    color: #00bfff;
}

.countdown {
    display: flex;
    align-items: center;
    gap: 10px;
}

.countdown-timer {
    background: rgba(255, 215, 0, 0.2);
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    font-family: 'Orbitron', monospace;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a237e 50%, #0a0e1a 100%);
    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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,215,0,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
    
}

.highlight {
    background: linear-gradient(to bottom, #F8DF71, #9A6521);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* fallback */
}



.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

.social-proof-mini {
    margin-bottom: 30px;
}

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

.stars {
    color: #ffd700;
}

.rating span {
    color: rgba(255, 255, 255, 0.8);
}

.users-count {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.users-count strong {
    color: #00bfff;
}

.cta-button-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #1a237e;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);

    /* 🔥 Truque para borda degradê */
    border: 2px solid transparent;
    background-image: 
        linear-gradient(to bottom, #F8DF71 0%, #F8DF71 30%, #9A6521 100%), /* fundo interno */
        linear-gradient(to bottom, #F8DF71, #9A6521); /* borda */
    background-origin: border-box;
    background-clip: padding-box, border-box;
}




.cta-button-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.5);
}

/* Product Showcase */
.product-showcase {
    position: relative;
    text-align: center;
}

.product-badge {
    position: absolute;
    bottom: -2px; /* fixa embaixo */
    right: 20px;  /* canto direito */
    background: linear-gradient(135deg, #00bfff, #1e88e5);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 191, 255, 0.3);
}


.product-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(26, 35, 126, 0.3);
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.2));
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-circuit, .floating-brain, .floating-data, .floating-quantum {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    animation: float 3s ease-in-out infinite;
}

.floating-circuit {
    top: 20%;
    left: -20px;
    background: linear-gradient(135deg, #00bfff, #1e88e5);
    animation-delay: 0s;
}

.floating-brain {
    top: 50%;
    right: -20px;
    background: linear-gradient(135deg, #ffd700, #ffb300);
    animation-delay: 1s;
}

.floating-data {
    bottom: 30%;
    left: -10px;
    background: linear-gradient(135deg, #9c27b0, #e91e63);
    animation-delay: 2s;
}

.floating-quantum {
    top: 10%;
    right: 10%;
    background: linear-gradient(135deg, #4caf50, #8bc34a);
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(180deg); }
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a237e, #0a0e1a);
    position: relative;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    color: white;
    transition: all 0.3s;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(26, 35, 126, 0.3);
    border-color: rgba(255, 215, 0, 0.4);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(to bottom, #F8DF71, #9A6521);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; 
    color: transparent; /* fallback */
}

.benefit-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
    background: linear-gradient(to bottom, #F8DF71, #9A6521);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* fallback */
}



.benefit-card p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0e1a, #1a237e);
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;

    /* Degradê dourado vertical */
    background: linear-gradient(to bottom, #F8DF71 0%, #9A6521 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* fallback */
}


.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.steps-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.steps-visual {
    position: relative;
}

.steps-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(26, 35, 126, 0.3);
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.2));
}

.demo-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.neural-node {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00bfff, #1e88e5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    color: white;
    animation: pulse-node 2s infinite;
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.5);
}

.node-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.node-2 {
    bottom: 30%;
    right: 20%;
    animation-delay: 1s;
}

@keyframes pulse-node {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

.step-number {
    background: linear-gradient(to bottom, #F8DF71 0%, #9A6521 100%);
    color: #1a237e;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    flex-shrink: 0;
    font-family: 'Orbitron', monospace;
    
}



.step-text h3 {
    font-family: 'Orbitron', monospace;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;

    /* Dourado degradê vertical */
    background: linear-gradient(to bottom, #fffffd 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}


.step-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

.cta-button-secondary {
    background: linear-gradient(to bottom, #F8DF71 0%, #F8DF71 30%, #9A6521 100%);
    color: #1a237e;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);

    /* 🔥 Truque para borda degradê */
    border: 2px solid transparent;
    background-image: 
        linear-gradient(to bottom, #F8DF71 0%, #F8DF71 30%, #9A6521 100%), /* fundo interno */
        linear-gradient(to bottom, #F8DF71, #9A6521); /* borda */
    background-origin: border-box;
    background-clip: padding-box, border-box;
}


.cta-button-secondary:hover {
    background: linear-gradient(135deg, #3949ab, #5c6bc0);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.4);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a237e, #0a0e1a);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.3);
    transition: all 0.3s;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(26, 35, 126, 0.4);
    border-color: rgba(255, 215, 0, 0.4);
}

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

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.testimonial-info h4 {
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 5px;
}

.testimonial-info span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.testimonial-card .stars {
    color: #ffd700;
    margin-top: 5px;
}

.testimonial-card p {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Features */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0e1a, #1a237e);
}

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

.features-header h2 {
    font-family: 'Orbitron', monospace;
    font-size: 48px;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 10px;
    letter-spacing: 2px;
  
}

.features-header p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(26, 35, 126, 0.3);
    border-color: rgba(255, 215, 0, 0.4);
}

.feature-icon {
    font-size: 48px;
    color: #00bfff;
    margin-bottom: 20px;
    
}

.feature-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 22px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Special Offer */
.special-offer {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a237e, #3949ab);
    color: white;
    text-align: center;
    position: relative;
}

.special-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
}

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

.offer-title span {
    font-family: 'Orbitron', monospace;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;

    /* Dourado degradê vertical */
    background: linear-gradient(to bottom, #F8DF71 0%, #9A6521 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* fallback */
}



.underline {
    text-decoration: underline;
    text-decoration-color: #00bfff;
    text-underline-offset: 5px;
}

.offer-content p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0e1a, #1a237e);
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(26, 35, 126, 0.3);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.guarantee-badge {
    background: linear-gradient(135deg, #1a237e, #3949ab);
    color: #ffd700;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.guarantee-badge i {
    margin-right: 10px;
    color: #00bfff;
}

.pricing-content {
    padding: 40px;
}

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

.pricing-header h2 {
    font-family: 'Orbitron', monospace;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;

    /* Dourado degradê vertical */
    background: linear-gradient(to bottom, #F8DF71 0%, #9A6521 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* fallback */
}


.pricing-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.pricing-header h3 {
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.pricing-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.product-image-pricing img {
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.2));
    
    
}

}

.price-display {
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;   /* mantém duas linhas */
    align-items: center;
    gap: 10px; /* espaço entre linhas */
}

.price-row {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 15px; /* espaço entre preços */
}

.old-price {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    margin: 0;
}

.current-price {
    font-family: 'Orbitron', monospace;
    font-size: 64px;
    font-weight: 800;
    text-shadow: none; /* sem neon */

    /* Dourado degradê vertical */
    background: linear-gradient(to bottom, #F8DF71 0%, #9A6521 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* fallback */
}



.savings {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
    animation: pulse 2s infinite;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    text-align: center;     /* centraliza texto dentro */
}

.price-display {
    text-align: center;     /* centraliza elementos do bloco */
}

.cta-button-main {
    display: block;
    background: linear-gradient(to bottom, #F8DF71 0%, #F8DF71 30%, #9A6521 100%);
    color: #1a237e;
    padding: 20px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 800;
    font-size: 20px;
    text-align: center;
    transition: all 0.3s;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    border: 2px solid transparent;

    /* 🔥 Truque para borda degradê */
    border: 2px solid transparent;
    background-image: 
        linear-gradient(to bottom, #F8DF71 0%, #F8DF71 30%, #9A6521 100%), /* fundo interno */
        linear-gradient(to bottom, #F8DF71, #9A6521); /* borda */
    background-origin: border-box;
    background-clip: padding-box, border-box;
}


.cta-button-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.5);
}

.cta-button-main i {
    margin-right: 10px;
}

.button-subtext {
    display: block;
    font-size: 14px;
    font-weight: 400;
    margin-top: 5px;
    opacity: 0.8;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.payment-bubble {
    background: white; /* cor de contraste (fica clean sobre o fundo escuro) */
    padding: 15px 25px;
    border-radius: 50px; /* formato de bolha */
    box-shadow: 0 5px 20px rgba(0,0,0,0.3); /* sombra leve */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.payment-bubble img {
    max-width: 300px; /* tamanho padrão (desktop) */
    height: auto;
    display: block;
    margin: 0 auto; /* centralizar */
}

/* Tablet e celulares médios */
@media (max-width: 768px) {
    .payment-bubble img {
        max-width: 180px;
    }
}

/* Celulares pequenos */
@media (max-width: 480px) {
    .payment-bubble img {
        max-width: 150px;
    }
}


}
.payment-methods img {
    height: 30px;
    opacity: 0.7;
    border-radius: 5px;
}

.purchase-details {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.purchase-details p {
    margin-bottom: 5px;
}

/* Guarantee Section */
.guarantee {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a237e, #0a0e1a);
    color: white;
}

.guarantee-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
}

.guarantee-badge-large {
    text-align: center;
}

.badge-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid #ffd700;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a237e, #3949ab);
    position: relative;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.badge-text {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #00bfff;
}

.badge-days {
    font-family: 'Orbitron', monospace;
    font-size: 36px;
    font-weight: 800;
    color: #ffd700;
    
}

.badge-days-text {
    font-size: 12px;
    font-weight: 600;
    color: #00bfff;
}

.badge-guarantee {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #00bfff;
}

.guarantee-text h2 {
    font-family: 'Orbitron', monospace;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;

    /* Dourado degradê vertical */
    background: linear-gradient(to bottom, #F8DF71 0%, #9A6521 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* fallback */
}


.guarantee-text p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.95;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0e1a, #1a237e);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 60px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s;
    color: white;
}

.faq-question:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
}

.faq-question i {
    transition: transform 0.3s;
    color: #00bfff;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px 20px 20px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a237e, #0a0e1a);
    color: white;
    text-align: center;
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
}

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

.final-cta-content h2 {
    font-family: 'Orbitron', monospace;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;

    /* Dourado degradê vertical */
    background: linear-gradient(to bottom, #F8DF71 0%, #9A6521 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* fallback */
    
}


.urgency-text {
    margin-bottom: 30px;
}

.urgency-text p {
    font-size: 18px;
    color: #ff6b35;
    font-weight: 600;
}

.urgency-text i {
    margin-right: 10px;
}

.cta-button-final {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #1a237e;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 20px;
    transition: all 0.3s;
    margin-bottom: 20px;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);

    /* 🔥 Dourado degradê vertical */
    border: 2px solid transparent;
    background-image:
        linear-gradient(to bottom, #F8DF71 0%, #F8DF71 30%, #9A6521 100%), /* fundo */
        linear-gradient(to bottom, #F8DF71, #9A6521); /* borda */
    background-origin: border-box;
    background-clip: padding-box, border-box;
}


.cta-button-final:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.5);
}

.risk-free {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: #0a0e1a;
    text-align: center;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-content strong {
    background: linear-gradient(to bottom, #F8DF71 0%, #9A6521 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* fallback */
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-main {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .guarantee-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .urgency-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .nav {
        display: none;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .current-price {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .cta-button-hero {
        padding: 15px 25px;
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .current-price {
        font-size: 40px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .logo h1 {
        font-size: 24px;
    }
}

.floating-number {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: 'Orbitron', monospace;
    font-size: 18px;
    color: #1a237e;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: float 4s ease-in-out infinite;

    /* 🔥 degradê dourado vertical */
    background: linear-gradient(to bottom, #F8DF71 0%, #9A6521 100%);
}


/* posições diferentes para cada bola */
.floating-number:nth-child(1) { top: 20%; left: -20px; animation-delay: 0s; }
.floating-number:nth-child(2) { top: 50%; right: -20px; animation-delay: 1s; }
.floating-number:nth-child(3) { bottom: 30%; left: -10px; animation-delay: 2s; }
.floating-number:nth-child(4) { top: 10%; right: 10%; animation-delay: 1.5s; }

.cta-section .cta-button-secondary {
    display: inline-block;
    width: 100%;        /* ocupa toda a largura disponível */
    max-width: 500px;   /* limite opcional para não ficar gigante */
    text-align: center; /* mantém o texto centralizado no botão */
}

.cards-image {
    max-width: 300px; /* ou o tamanho que quiser */
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Desktop grande */
@media (min-width: 1024px) {
    .product-image-pricing img {
        max-width: 400px; /* aumenta só no desktop */
    }

    .badge-image {
        max-width: 180px; /* tamanho padrão (desktop) */
        height: auto;
        display: block;
        margin: 0 auto;
    }
}

/* Tablet e celulares médios */
@media (max-width: 768px) {
    .badge-image {
        max-width: 150px;
        margin: 0 auto; /* 🔥 centraliza só no mobile */
    }
}

/* Celulares pequenos */
@media (max-width: 480px) {
    .badge-image {
        max-width: 150px;
        margin: 0 auto; /* garante que continue centralizado */
    }
}




