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

:root {
    --primary-color: #000000;
    --secondary-color: #FFD700;
    --accent-color: #FF6B00;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --bg-dark: #0a0a0a;
    --bg-light: #f5f5f5;
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-dark: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2a2a2a 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 107, 0, 0.1) 0%, transparent 50%);
    animation: gradientMove 10s ease infinite;
}

@keyframes gradientMove {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-overlay {
    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 1200 800"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,215,0,0.05)" stroke-width="1"/></pattern></defs><rect width="1200" height="800" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
}

.black-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-gold);
    color: var(--primary-color);
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease;
}

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

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    color: var(--text-light);
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -2px;
    animation: fadeInUp 1s ease 0.2s both;
}

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

.hero-title .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-bottom: 40px;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease 0.4s both;
}

.price-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid var(--secondary-color);
    border-radius: 20px;
    padding: 30px;
    margin: 40px auto;
    max-width: 400px;
    animation: fadeInUp 1s ease 0.6s both;
}

.old-price {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    text-decoration: line-through;
    margin-bottom: 10px;
}

.current-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: var(--secondary-color);
    font-weight: 900;
    margin: 10px 0;
}

.currency {
    font-size: 2rem;
    margin-right: 5px;
    margin-top: 10px;
}

.amount {
    font-size: 5rem;
    line-height: 1;
}

.cents {
    font-size: 2rem;
    margin-top: 10px;
}

.price-label {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-gold);
    color: var(--primary-color);
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    animation: fadeInUp 1s ease 0.8s both;
}

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

.pulse {
    animation: pulse 2s infinite;
}

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

.urgency-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    font-weight: 600;
    margin-top: 20px;
    font-size: 1rem;
    animation: fadeInUp 1s ease 1s both;
}

.urgency-text i {
    animation: flicker 1.5s infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--secondary-color);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

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

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: -1px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--gradient-gold);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* What Is Section */
.what-is {
    background: var(--bg-light);
}

.intro-text {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
}

.intro-text p {
    margin-bottom: 15px;
}

.intro-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.description-box {
    max-width: 900px;
    margin: 40px auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
}

.highlight-text {
    color: var(--accent-color);
    font-weight: 700;
}

.whatsapp-group {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 60px auto 0;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    padding: 40px;
    border-radius: 20px;
    color: white;
}

.whatsapp-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.whatsapp-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.whatsapp-content p {
    font-size: 1rem;
    opacity: 0.95;
}

/* Benefits Section */
.benefits {
    background: white;
}

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

.benefit-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    color: white;
}

.benefit-icon.rocket {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.benefit-icon.fire {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.benefit-icon.lightbulb {
    background: linear-gradient(135deg, #ffc837 0%, #ff8008 100%);
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Live and Bonus Section */
.live-bonus {
    background: var(--gradient-dark);
    color: white;
}

.live-section {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FF0000;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.live-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.live-description {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.95;
}

.bonus-title {
    color: var(--secondary-color);
    margin-bottom: 60px;
}

.bonus-title i {
    color: var(--secondary-color);
}

.bonus-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.bonus-item {
    display: flex;
    gap: 25px;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.bonus-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.bonus-check {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.bonus-text h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

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

/* AI Robot Section */
.ai-robot-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.ai-robot-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.ai-robot-section .container {
    position: relative;
    z-index: 2;
}

.ai-robot-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.9);
    color: #000;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.ai-robot-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ai-robot-title i {
    font-size: clamp(2.5rem, 6vw, 4rem);
    animation: rotate 3s linear infinite;
}

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

.ai-robot-subtitle {
    text-align: center;
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    margin-bottom: 50px;
    opacity: 0.95;
    font-weight: 600;
}

.ai-robot-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
    align-items: start;
}

.ai-robot-description h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.ai-robot-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    opacity: 0.95;
}

.ai-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.ai-feature {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.ai-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.ai-feature i {
    font-size: 2rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.ai-feature h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.ai-feature p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

/* AI Robot Demo */
.ai-robot-demo {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 20px;
}

.demo-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.demo-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.demo-title {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.demo-chat {
    padding: 25px;
    background: #f8f9fa;
    min-height: 400px;
    max-height: 500px;
    overflow-y: auto;
}

.chat-message {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    animation: fadeInUp 0.5s ease;
}

.chat-message.user {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.user-avatar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.ai-avatar {
    background: var(--gradient-gold);
    color: #000;
}

.message-bubble {
    background: white;
    padding: 15px 20px;
    border-radius: 18px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    max-width: 80%;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
}

.chat-message.user .message-bubble {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.chat-message.ai .message-bubble {
    background: white;
}

/* Typing Animation */
.chat-message.typing {
    opacity: 1;
    animation: fadeIn 0.3s ease;
}

.chat-message.response {
    animation-delay: 2s;
    opacity: 0;
    animation: fadeInUp 0.5s ease 2s forwards;
}

.typing-indicator {
    display: flex;
    gap: 5px;
    padding: 5px 0;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: #999;
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.demo-footer {
    background: white;
    padding: 15px 20px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
}

.demo-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
    font-weight: 600;
}

.demo-info i {
    color: #27c93f;
}

/* AI Value Box */
.ai-robot-value {
    text-align: center;
    margin: 50px 0;
}

.value-box {
    display: inline-flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 3px solid var(--secondary-color);
    border-radius: 20px;
    padding: 30px 60px;
}

.value-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.value-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--secondary-color);
    margin: 10px 0;
}

.value-included {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #4ade80;
}

/* Use Cases */
.ai-use-cases {
    margin-top: 50px;
}

.ai-use-cases h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
}

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

.use-case {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.use-case:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.use-case i {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.use-case span {
    display: block;
    font-weight: 600;
    font-size: 1rem;
}

/* AI CTA Box */
.ai-cta-box {
    text-align: center;
    margin-top: 50px;
    background: rgba(0, 0, 0, 0.2);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid var(--secondary-color);
}

.ai-cta-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.ai-cta-text i {
    color: var(--secondary-color);
    font-size: 2rem;
}

.ai-cta-subtext {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* For Who Section */
.for-who {
    background: var(--bg-light);
}

.for-who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.for-who-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.for-who-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.for-who-item i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.for-who-item p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

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

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-color);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

.cta-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 40px;
    line-height: 1.3;
}

.cta-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.cta-highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    font-weight: 600;
}

.cta-highlight-item i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.final-price {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 3px solid var(--secondary-color);
    border-radius: 25px;
    padding: 40px;
    margin: 50px auto;
}

.final-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.final-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: var(--secondary-color);
    font-weight: 900;
    margin: 15px 0;
}

.final-currency {
    font-size: 2.5rem;
    margin-right: 8px;
    margin-top: 15px;
}

.final-number {
    font-size: 6rem;
    line-height: 1;
}

.final-cents {
    font-size: 2.5rem;
    margin-top: 15px;
}

.final-info {
    display: block;
    font-size: 1rem;
    margin-top: 15px;
    opacity: 0.9;
}

.cta-button-large {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--gradient-gold);
    color: var(--primary-color);
    padding: 25px 60px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    margin-top: 30px;
}

.cta-button-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.6);
}

.guarantee-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.9;
}

.guarantee-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

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

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.footer-logo p {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 30px;
}

.footer-info p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 15px;
}

.footer-disclaimer {
    max-width: 800px;
    margin: 20px auto 0;
    font-size: 0.8rem !important;
    line-height: 1.6;
    opacity: 0.6 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: 100svh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .price-box {
        padding: 25px;
    }
    
    .amount {
        font-size: 4rem;
    }
    
    .cta-button {
        padding: 18px 40px;
        font-size: 1rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .whatsapp-group {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .benefits-grid,
    .for-who-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .bonus-item {
        flex-direction: column;
        text-align: center;
    }
    
    /* AI Robot Responsive */
    .ai-robot-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ai-robot-demo {
        position: static;
    }
    
    .demo-chat {
        max-height: 450px;
    }
    
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .value-box {
        padding: 25px 40px;
    }
    
    .value-amount {
        font-size: 2.5rem;
    }
    
    .ai-cta-text {
        font-size: 1.3rem;
    }
    
    .cta-highlights {
        flex-direction: column;
        gap: 20px;
    }
    
    .final-number {
        font-size: 4.5rem;
    }
    
    .cta-button-large {
        padding: 20px 40px;
        font-size: 1.1rem;
    }
    
    .guarantee-badges {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .amount {
        font-size: 3.5rem;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .intro-text,
    .description-box {
        font-size: 1rem;
        padding: 25px;
    }
    
    .final-number {
        font-size: 4rem;
    }
    
    .cta-button-large {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
    }
    
    /* AI Robot Mobile */
    .ai-robot-title {
        font-size: 1.8rem;
    }
    
    .ai-robot-subtitle {
        font-size: 1rem;
    }
    
    .ai-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .message-bubble {
        font-size: 0.9rem;
        max-width: 90%;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .value-box {
        padding: 20px 30px;
    }
    
    .value-amount {
        font-size: 2rem;
    }
    
    .ai-cta-text {
        font-size: 1.1rem;
        flex-direction: column;
    }
    
    .ai-cta-subtext {
        font-size: 1rem;
    }
}