/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #f39c12;
    --primary-dark: #e08e0b;
    --primary-glow: rgba(243, 156, 18, 0.2);
    --bg-dark: #0f0f13;
    --bg-card: #16161d;
    --bg-card2: #1e1e2a;
    --text-primary: #f0f0f5;
    --text-muted: #8888aa;
    --border: rgba(255, 255, 255, 0.07);
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 20px 60px rgba(0,0,0,0.4);
}

html { scroll-behavior: smooth; }

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

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 18px 0;
    transition: all 0.4s ease;
}

.header.scrolled {
    background: rgba(15, 15, 19, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px var(--primary));
}

.logo span {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.logo span strong {
    color: var(--primary);
    font-weight: 800;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--text-primary);
}

.nav-website {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    color: var(--primary) !important;
    border: 1px solid rgba(243, 156, 18, 0.25);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}
.nav-website:hover {
    background: rgba(243, 156, 18, 0.08);
    border-color: var(--primary);
    color: var(--primary) !important;
    transform: translateY(-1px);
}

.cta-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #0f0f13;
    box-shadow: 0 4px 24px rgba(243, 156, 18, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(243, 156, 18, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-text {
    background: transparent;
    color: var(--text-muted);
    padding: 10px 0;
    font-size: 15px;
}

.btn-text:hover {
    color: var(--primary);
}

.btn-text i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.btn-text:hover i {
    transform: translateX(4px);
}

.btn-large {
    padding: 14px 32px;
    font-size: 16px;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 70% 40%, rgba(243, 156, 18, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 70%, rgba(100, 80, 200, 0.08) 0%, transparent 60%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 24px;
}

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

.badge-new {
    display: inline-block;
    background: rgba(243, 156, 18, 0.1);
    border: 1px solid rgba(243, 156, 18, 0.3);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    letter-spacing: 0.3px;
}

.hero-content h1 {
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.3px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--primary), #ff9f43);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

/* ===== DASHBOARD SHOWCASE ===== */
.dashboard-showcase {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

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

.desktop-frame {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.06);
}

.frame-dots {
    display: flex;
    gap: 6px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid var(--border);
}

.frame-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
}

.frame-dots span:first-child { background: #ff5f57; }
.frame-dots span:nth-child(2) { background: #febc2e; }
.frame-dots span:last-child { background: #28c840; }

.desktop-frame img {
    width: 100%;
    display: block;
}

.mobile-frame {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 140px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 18px;
    padding: 6px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}

.mobile-frame img {
    width: 100%;
    display: block;
    border-radius: 12px;
}


/* ===== SEGMENTOS ===== */
.segmentos {
    padding: 100px 0;
    position: relative;
}

.segmentos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 14px;
}

.section-title h2 span {
    background: linear-gradient(135deg, var(--primary), #ff9f43);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.segmento-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.segmento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #ff9f43);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.segmento-card:hover {
    transform: translateY(-8px);
    border-color: rgba(243, 156, 18, 0.25);
    box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 40px var(--primary-glow);
}

.segmento-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(243, 156, 18, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid rgba(243, 156, 18, 0.2);
    transition: all 0.3s ease;
}

.segmento-card:hover .card-icon {
    background: rgba(243, 156, 18, 0.2);
    transform: scale(1.1);
}

.card-icon i {
    font-size: 28px;
    color: var(--primary);
}

.segmento-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.segmento-card > p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.feature-list li i {
    font-size: 16px;
    color: var(--primary);
    flex-shrink: 0;
}

/* ===== HIGHLIGHT BANNER ===== */
.highlight-banner {
    position: relative;
    padding: 48px 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.08) 0%, rgba(15, 15, 19, 0.95) 50%, rgba(243, 156, 18, 0.06) 100%);
    border-top: 1px solid rgba(243, 156, 18, 0.15);
    border-bottom: 1px solid rgba(243, 156, 18, 0.15);
}

.highlight-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(243, 156, 18, 0.12) 0%, transparent 70%);
    pointer-events: none;
    animation: bannerPulse 4s ease-in-out infinite;
}

@keyframes bannerPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

.highlight-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.highlight-container > i {
    font-size: 36px;
    color: var(--primary);
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(243, 156, 18, 0.5));
    animation: rocketBounce 2s ease-in-out infinite;
}

@keyframes rocketBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.highlight-container p {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.3px;
    line-height: 1.4;
    text-align: center;
}

.highlight-container p span {
    background: linear-gradient(135deg, var(--primary), #ff9f43);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

@media (max-width: 600px) {
    .highlight-container {
        flex-direction: column;
        gap: 12px;
    }
    .highlight-banner {
        padding: 36px 0;
    }
}

/* ===== DESTAQUES ===== */
.destaques {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent, rgba(243, 156, 18, 0.03), transparent);
}

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

.destaque-text h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.destaque-text h2 span {
    background: linear-gradient(135deg, var(--primary), #ff9f43);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.destaque-text > p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
}

.inline-screenshot {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 36px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.inline-screenshot:hover {
    transform: scale(1.02);
}

.inline-screenshot img {
    width: 100%;
    display: block;
}

.destaque-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 28px;
}

.d-icon {
    width: 48px;
    height: 48px;
    background: rgba(243, 156, 18, 0.1);
    border: 1px solid rgba(243, 156, 18, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.destaque-item:hover .d-icon {
    background: rgba(243, 156, 18, 0.2);
    transform: scale(1.05);
}

.d-icon i {
    font-size: 22px;
    color: var(--primary);
}

.destaque-item h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.destaque-item p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Floating Elements */
.destaque-visual {
    position: relative;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blob-bg {
    position: absolute;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 5s ease-in-out infinite;
}

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

.floating-element {
    position: absolute;
    background: var(--bg-card2);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 12px 22px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    white-space: nowrap;
}

.floating-element i {
    font-size: 18px;
    color: var(--primary);
}

.el-1 {
    top: 60px;
    right: 20px;
    animation: floatEl 5s ease-in-out infinite;
}

.el-2 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation: floatEl 5s ease-in-out 1.5s infinite;
}

.el-3 {
    bottom: 60px;
    right: 30px;
    animation: floatEl 5s ease-in-out 3s infinite;
}

@keyframes floatEl {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.el-2 {
    animation: floatEl2 5s ease-in-out 1.5s infinite;
}

@keyframes floatEl2 {
    0%, 100% { transform: translateY(-50%); }
    50% { transform: translateY(calc(-50% - 12px)); }
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 50% 50%, rgba(243, 156, 18, 0.1) 0%, transparent 70%);
}

.cta-container {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 14px;
}

.cta-section p {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo span {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    display: block;
    margin-bottom: 12px;
}

.footer-logo span strong {
    color: var(--primary);
    font-weight: 800;
}

.footer-logo p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4,
.footer-social h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.footer-links a,
.footer-social a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-social a:hover {
    color: var(--primary);
}

.footer-social a i {
    font-size: 18px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content p { margin: 0 auto 36px; }
    .hero-actions { justify-content: center; }
    .hero-image { display: none; }
    .nav { display: none; }

    .cards-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .destaques-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .destaque-visual { display: none; }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 600px) {
    .cta-buttons .btn-outline { display: none; }
    .section-title h2 { font-size: 28px; }
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    text-decoration: none;
    transition: all 0.3s ease;
    animation: whatsappPulse 2.5s ease-in-out infinite;
}

.whatsapp-float i {
    font-size: 32px;
    color: #fff;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-tooltip {
    position: absolute;
    right: 72px;
    background: var(--bg-card2);
    color: var(--text-primary);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(8px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid var(--bg-card2);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    }
    50% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45),
                    0 0 0 12px rgba(37, 211, 102, 0.15);
    }
}

@media (max-width: 600px) {
    .whatsapp-float {
        width: 54px;
        height: 54px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float i { font-size: 28px; }
    .whatsapp-tooltip { display: none; }
}

/* ===== DROPDOWN ===== */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 8px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    color: var(--text-primary);
    padding: 10px 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: rgba(243, 156, 18, 0.1);
    color: var(--primary);
}
