﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF6B35;
    --secondary-color: #F7931E;
    --dark-color: #1a1a1a;
    --light-color: #ffffff;
    --gray-color: #6b7280;
    --bg-light: #f9fafb;
    --gradient-1: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 40px;
    width: auto;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
    letter-spacing: -1px;
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-menu a {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-1);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark-color);
}

/* Hero Section */
.hero-section {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #fef8f6 0%, #fff5f0 100%);
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
    color: var(--dark-color) !important;
}

.highlight {
    color: #FF6B35 !important;
}

.hero-description {
    font-size: 20px;
    color: var(--gray-color);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-1);
    color: white !important;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
}

.btn-primary i,
.btn-primary * {
    color: white !important;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
    color: white !important;
}

.btn-primary:hover i,
.btn-primary:hover * {
    color: white !important;
}

.btn-secondary {
    background: white;
    color: #1a1a1a !important;
    border: 2px solid var(--dark-color);
}

.btn-secondary:hover {
    background: var(--dark-color);
    color: white !important;
}

.btn-outline {
    background: transparent !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
}

.btn-outline:hover {
    background: var(--primary-color) !important;
    color: white !important;
    border-color: var(--primary-color) !important;
}

.btn-large {
    padding: 18px 48px;
    font-size: 18px;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #FF6B35 !important;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-color);
    font-weight: 500;
}

/* Hero Right */
.hero-image-container {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
    z-index: 2;
}

.floating-card i {
    font-size: 24px;
    color: var(--primary-color);
}

.floating-card span {
    font-weight: 600;
    font-size: 14px;
}

.card-1 {
    top: 50px;
    left: -30px;
    animation-delay: 0s;
}

.card-2 {
    top: 200px;
    right: -30px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 50px;
    left: 30px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-main-visual {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-lg);
    margin: 0 auto;
    max-width: 450px;
}

.chat-preview {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.chat-message {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    animation: slideIn 0.5s ease forwards;
    opacity: 0;
}

.chat-message.bot {
    animation-delay: 0.5s;
}

.chat-message.user {
    flex-direction: row-reverse;
    animation-delay: 1.5s;
}

.chat-message.bot:last-child {
    animation-delay: 2.5s;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bot-avatar {
    background: var(--gradient-1);
    color: white;
}

.user-avatar {
    background: #e5e7eb;
    color: var(--dark-color);
}

.message {
    background: #f3f4f6;
    padding: 12px 16px;
    border-radius: 16px;
    max-width: 280px;
    font-size: 15px;
}

.chat-message.bot .message {
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8dd 100%);
}

.chat-message.user .message {
    background: var(--gradient-1);
    color: white;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
}

.section-description {
    font-size: 18px;
    color: var(--gray-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 16px;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 28px;
    color: white;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-description {
    color: var(--gray-color);
    line-height: 1.7;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, #fef8f6 0%, #fff5f0 100%);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.step-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: all 0.3s;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-description {
    color: var(--gray-color);
    line-height: 1.7;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.3s;
    border: 2px solid transparent !important;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    background: white !important;
    border: 2px solid #FF6B35 !important;
    border-color: #FF6B35 !important;
    box-shadow: var(--shadow-md);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-8px);
    border-color: #FF6B35 !important;
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-1);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.plan-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--gray-color);
}

.amount {
    font-size: 56px;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1;
}

.period {
    font-size: 16px;
    color: var(--gray-color);
    align-self: flex-end;
    padding-bottom: 8px;
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.plan-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.plan-features i {
    color: #FF6B35 !important;
    font-size: 18px;
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
}

.pricing-card .btn-outline {
    background: transparent !important;
    color: #FF6B35 !important;
    border: 2px solid #FF6B35 !important;
}

.pricing-card .btn-outline:hover {
    background: #FF6B35 !important;
    color: white !important;
}

.pricing-card .btn-primary {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%) !important;
    color: white !important;
    border: none !important;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-1);
    color: white !important;
    text-align: center;
    position: relative;
    z-index: 100;
    isolation: isolate;
}

.cta-section * {
    color: white !important;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    color: white !important;
}

.cta-description {
    color: white !important;
}

/* Foré§ar cores laranja e remover roxo */
.pricing-card.featured,
.pricing-card.featured *,
.pricing-card.featured:hover {
    border-color: #FF6B35 !important;
}

.badge,
.feature-icon,
.step-number {
    background: var(--gradient-1) !important;
}

/* Foré§ar é­cones especé­ficos para laranja */
.plan-features i {
    color: #FF6B35 !important;
}

.floating-card i {
    color: #FF6B35 !important;
}

/* écones dentro de elementos com fundo laranja devem ser brancos */
.feature-icon i,
.step-number,
.badge,
.bot-avatar i,
.bot-avatar i.fas,
.bot-avatar i.far,
.bot-avatar i.fab {
    color: white !important;
}

/* écones dentro de botéµes primé¡rios devem ser brancos */
.btn-primary i,
.btn-primary i.fas,
.btn-primary i.far,
.btn-primary i.fab {
    color: white !important;
}

/* Remover qualquer vesté­gio de cores roxas */
* {
    /* Sobrescrever roxo do Elementor */
}

/* Foré§ar apenas cores laranja/preto - NUNCA ROXO */
h1, h2, h3, h4, h5, h6,
.hero-title,
.hero-title *,
.section-title,
.section-title *,
.highlight,
.stat-number {
    color: inherit !important;
}

.hero-title {
    color: var(--dark-color) !important;
}

.highlight {
    color: #FF6B35 !important;
}

.stat-number {
    color: #FF6B35 !important;
}

a, button, .btn {
    text-decoration: none !important;
}

.cta-description {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    color: white !important;
}

.cta-section .btn-primary {
    background: white !important;
    color: #FF6B35 !important;
    border: 2px solid white !important;
}

.cta-section .btn-primary i,
.cta-section .btn-primary i.fab,
.cta-section .btn-primary i.fas {
    color: white !important;
}

.cta-section .btn-primary:hover {
    transform: scale(1.05);
    color: white !important;
    background: #FF6B35 !important;
    border: 2px solid white !important;
}

.cta-section .btn-primary:hover i,
.cta-section .btn-primary:hover i.fab,
.cta-section .btn-primary:hover i.fas {
    color: white !important;
}

/* Footer */
.footer {
    background: #0A0A0A;
    color: white;
    padding: 60px 0 30px;
    position: relative;
    z-index: 10;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-content-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.footer-slogan {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.footer-left .logo {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
}

.footer-left p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 700;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 768px) { .nav-menu { position: fixed; top: 70px; left: 0; right: 0; background: rgba(10, 10, 10, 0.98); backdrop-filter: blur(20px); flex-direction: column; padding: 20px; gap: 15px; box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3); transform: translateY(-100%); transition: transform 0.3s ease; display: flex; z-index: 999; } .nav-menu.active { transform: translateY(0); display: flex;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image-container {
        height: 400px;
        margin-top: 40px;
    }
    
    .floating-card {
        font-size: 12px;
        padding: 12px 16px;
    }
    
    .features-grid,
    .steps-container,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .cta-title {
        font-size: 32px;
    }
}

/* Boté£o Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #FF6B35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4), 0 0 20px rgba(255, 107, 53, 0.3);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6), 0 0 30px rgba(255, 107, 53, 0.5);
}

.whatsapp-float i {
    line-height: 1;
}

@keyframes whatsapp-pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4), 0 0 20px rgba(255, 107, 53, 0.3);
    }
    50% {
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.6), 0 0 30px rgba(255, 107, 53, 0.5);
    }
}

/* Responsivo para mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
}.footer-links-simple {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0;
}

.footer-links-simple a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links-simple a:hover {
    color: #FF6B35;
}

.footer-links-simple a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF6B35;
    transition: width 0.3s ease;
}

.footer-links-simple a:hover::after {
    width: 100%;
}

