/* ========== LANDING PAGE STYLES ========== */
/* SepnIA - Landing Page CSS */

:root {
    --primary: #0056b3;
    --primary-dark: #003d82;
    --accent: #3d8bfd;
    --green: #25D366;
    --dark: #1a1a2e;
    --gray-700: #374151;
    --gray-600: #4B5563;
    --gray-500: #6B7280;
    --gray-300: #D1D5DB;
    --gray-100: #F3F4F6;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--gray-700);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== BLOB SHAPES ========== */
.blob-container {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
    z-index: 0;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(0);
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #0056b3 0%, #003d82 50%, #3d8bfd 100%);
    top: -200px;
    right: -150px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morph 8s ease-in-out infinite;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.3) 0%, rgba(0, 61, 130, 0.3) 100%);
    top: 400px;
    left: -100px;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morph 10s ease-in-out infinite reverse;
}

.blob-3 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    bottom: -150px;
    right: -100px;
    border-radius: 50% 60% 40% 70% / 50% 40% 60% 50%;
    animation: morph 12s ease-in-out infinite;
}

.blob-light {
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.08) 0%, rgba(0, 61, 130, 0.08) 100%);
}

@keyframes morph {

    0%,
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-white {
    background: var(--green);
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn-white:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* ========== HEADER ========== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark, #003d82) 100%);
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.3);
}

.logo-icon i {
    font-size: 22px;
    color: white;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
}

.logo-text span {
    color: var(--primary);
}

/* Sufixo "Suite" do logo da plataforma (páginas institucionais + Checkout) */
.logo-text small {
    font-weight: 600;
    font-size: 0.62em;
    color: var(--gray-500);
    margin-left: 3px;
}

nav {
    display: flex;
    gap: 32px;
}

nav a {
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

nav a:hover {
    color: var(--primary);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-cta .btn {
    padding: 10px 24px;
    font-size: 14px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark);
    cursor: pointer;
    z-index: 1001;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: white;
    padding: 60px 24px 24px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--gray-600);
    cursor: pointer;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav a {
    display: block;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
    text-decoration: none;
    border-bottom: 1px solid var(--gray-100);
    transition: color 0.3s;
}

.mobile-nav a:hover {
    color: var(--primary);
}

.mobile-menu-cta {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-menu-cta .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 24px;
}

.hero-text h1 span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-tags {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-600);
}

.hero-tag i {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 14px;
}

.hero-tag.green i {
    background: rgba(37, 211, 102, 0.15);
    color: var(--green);
}

.hero-tag.blue i {
    background: rgba(61, 139, 253, 0.15);
    color: var(--accent);
}

.hero-tag.purple i {
    background: rgba(0, 86, 179, 0.15);
    color: var(--primary);
}

.hero-trust {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

.trust-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-500);
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.trust-logos {
    display: flex;
    gap: 32px;
    align-items: center;
}

.trust-logos i,
.trust-logos .openai-logo {
    font-size: 28px;
    color: var(--gray-400);
    opacity: 0.7;
    transition: all 0.3s;
}

.trust-logos i:hover,
.trust-logos .openai-logo:hover {
    opacity: 1;
    color: var(--primary);
}

.openai-logo {
    display: flex;
    align-items: center;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

/* Chat Window Styles - WhatsApp Theme */
.chat-window {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    width: 380px;
    border: 1px solid #e1e1e1;
}

.chat-header-lp {
    padding: 12px 16px;
    background: #00a884;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar-lp {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.chat-info-lp h4 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.chat-info-lp span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.chat-body-lp {
    padding: 20px 16px;
    background: #e5ddd5;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4ccc4' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    min-height: 360px;
}

.chat-message-lp {
    display: flex;
    margin-bottom: 12px;
}

.chat-message-lp.user {
    justify-content: flex-end;
}

.chat-message-lp.bot {
    justify-content: flex-start;
}

.msg-avatar-lp {
    display: none;
}

.msg-bubble-lp {
    max-width: 85%;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.45;
    position: relative;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.chat-message-lp.bot .msg-bubble-lp {
    background: white;
    color: #111;
    border-top-left-radius: 0;
}

.chat-message-lp.user .msg-bubble-lp {
    background: #d9fdd3;
    color: #111;
    border-top-right-radius: 0;
}

.chat-input-lp {
    padding: 10px 12px;
    background: #f0f0f0;
    display: flex;
    gap: 10px;
    align-items: center;
}

.chat-input-lp input {
    flex: 1;
    background: white;
    border: none;
    border-radius: 24px;
    padding: 10px 16px;
    color: #333;
    font-size: 14px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.chat-input-lp input::placeholder {
    color: #999;
}

.chat-input-lp button {
    background: #00a884;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    color: white;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-input-lp button:hover {
    background: #008f72;
}

.float-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
}

.float-card-1 {
    top: 80px;
    left: -40px;
}

.float-card-2 {
    bottom: 120px;
    right: -30px;
    animation-delay: 1.5s;
}

.float-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.float-icon.green {
    background: #dcfce7;
    color: var(--green);
}

.float-icon.purple {
    background: #e8f4fc;
    color: var(--primary);
}

.float-text {
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
}

.float-sub {
    font-size: 12px;
    color: var(--gray-500);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* ========== SECTION STYLES ========== */
section {
    position: relative;
    padding: 70px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 17px;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== PROBLEMS SECTION ========== */
.problems-section {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    padding: 70px 0;
}

.problems-section .section-header {
    text-align: left;
}

.problems-section .section-header h2 {
    color: white;
    position: relative;
    padding-left: 20px;
    text-align: left;
    display: inline-block;
}

.problems-section .section-header h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--green);
    border-radius: 2px;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.problem-card {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s;
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.problem-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.problem-icon.red {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.problem-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ef4444;
    margin-bottom: 12px;
}

.problem-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* ========== FEATURES ========== */
.features {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: #f8fafc;
    border-radius: 24px;
    padding: 36px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 24px;
}

.feature-icon.purple {
    background: #e8f4fc;
    color: var(--primary);
}

.feature-icon.green {
    background: #dcfce7;
    color: var(--green);
}

.feature-icon.blue {
    background: #dbeafe;
    color: var(--accent);
}

.feature-icon.orange {
    background: #ffedd5;
    color: #f97316;
}

.feature-icon.pink {
    background: #fce7f3;
    color: #ec4899;
}

.feature-icon.cyan {
    background: #cffafe;
    color: #06b6d4;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
    position: relative;
    overflow: hidden;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 60px;
}

.step-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.step-row:nth-child(even) {
    direction: rtl;
}

.step-row:nth-child(even)>* {
    direction: ltr;
}

.step-content {
    max-width: 480px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
}

.step-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.step-content p {
    font-size: 16px;
    color: var(--gray-600);
}

.step-image {
    display: flex;
    justify-content: center;
}

.step-mockup {
    width: 280px;
    height: 480px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 30px 60px rgba(102, 126, 234, 0.25);
}

.step-mockup-inner {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--gray-300);
}

/* ========== INTEGRATIONS ========== */
.integrations {
    position: relative;
    overflow: hidden;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.integration-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.integration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.integration-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

.integration-card h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.integration-card p {
    font-size: 14px;
    color: var(--gray-500);
}

/* ========== META LOOP SECTION ========== */
.meta-loop-section {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    padding: 70px 0;
}

.meta-loop-section .section-header h2,
.reports-section .section-header h2 {
    color: #ffffff !important;
}

.meta-loop-section .section-header,
.reports-section .section-header {
    text-align: left;
}

.loop-title {
    color: #ffffff !important;
    position: relative;
    padding-left: 20px;
    font-size: 36px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-align: left;
    display: inline-block;
}

.loop-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--green);
    border-radius: 3px;
}

.loop-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 50px;
}

.loop-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.loop-card:hover {
    border-color: rgba(37, 211, 102, 0.5);
    transform: translateY(-5px);
}

.loop-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.loop-card>p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 24px;
}

.loop-list {
    list-style: none;
    padding: 0;
}

.loop-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.loop-list li i {
    color: var(--green);
    margin-top: 4px;
}

.prompt-example {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
}

.prompt-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.prompt-example code {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Consolas', monospace;
    font-size: 14px;
}

.prompt-example .highlight {
    color: #10b981;
    background: rgba(16, 185, 129, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
}

.prompt-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin-top: 12px;
}

/* ========== REPORTS SECTION ========== */
.reports-section {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    padding: 70px 0;
}

.reports-section .section-header {
    margin-bottom: 30px;
}

.reports-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.reports-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
}

.reports-list li i {
    color: var(--green);
    margin-top: 5px;
    font-size: 18px;
}

.reports-cta-box {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0.08) 100%);
    border: 2px solid rgba(16, 185, 129, 0.4);
    border-radius: 20px;
    padding: 40px;
    max-width: 550px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.reports-cta-box h4 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.reports-cta-box p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    line-height: 1.7;
}

/* ========== PRICING ========== */
.pricing {
    position: relative;
    overflow: visible;
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: #f1f5f9;
    padding: 12px 28px;
    border-radius: 50px;
    display: inline-flex;
}

.section-header+.billing-toggle {
    display: flex;
    justify-content: center;
}

.billing-toggle span {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-400);
    transition: color 0.3s;
    cursor: pointer;
}

.billing-toggle span.active {
    color: var(--dark);
    font-weight: 700;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 32px;
    background: #94a3b8;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s;
    border: none;
    padding: 0;
    flex-shrink: 0;
}

.toggle-switch.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 26px;
    height: 26px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.toggle-switch.active::after {
    transform: translateX(28px);
}

.discount-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    font-size: 13px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    letter-spacing: 0.3px;
}

.savings-badge {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.3s;
}

.savings-badge i {
    font-size: 13px;
}

.yearly-price {
    display: none;
}

.yearly-price.show {
    display: block;
}

.monthly-price.hide {
    display: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.pricing-card {
    background: white;
    border-radius: 28px;
    padding: 40px;
    border: 2px solid var(--gray-100);
    transition: all 0.3s;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(102, 126, 234, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.pricing-card .tagline {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 24px;
}

.pricing-price {
    margin-bottom: 24px;
}

.pricing-price .currency {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    vertical-align: top;
}

.pricing-price .amount {
    font-size: 52px;
    font-weight: 800;
    color: var(--dark);
}

.pricing-price .period {
    font-size: 16px;
    color: var(--gray-500);
}

.pricing-card .btn {
    width: 100%;
    margin-bottom: 28px;
}

.pricing-features {
    list-style: none;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--gray-600);
}

.pricing-features li i {
    color: var(--green);
}

/* ========== PRICING INFO BOXES ========== */
.pricing-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 60px;
}

.pricing-info-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s;
}

.pricing-info-box:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border-color: var(--primary);
}

.info-box-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.info-box-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.1) 0%, rgba(61, 139, 253, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.info-box-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.info-box-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.info-box-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.65;
}

.info-box-list li i {
    color: var(--green);
    margin-top: 4px;
    flex-shrink: 0;
    font-size: 13px;
}

.info-box-list li i.fa-info-circle {
    color: var(--primary);
}

.info-highlight {
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.06) 0%, rgba(61, 139, 253, 0.04) 100%);
    border: 1px solid rgba(0, 86, 179, 0.12);
    border-radius: 12px;
    padding: 16px 20px;
}

.info-highlight p {
    font-size: 13px;
    color: var(--gray-700);
    line-height: 1.7;
    margin: 0;
}

/* ========== PRICING FAQ ========== */
.pricing-faq {
    margin-top: 60px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-faq-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 28px;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    background: white;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-item.open {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 86, 179, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    font-family: inherit;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: -2px;
    border-radius: 14px;
}

.faq-question i {
    font-size: 12px;
    color: var(--gray-400);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 22px;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 22px 18px;
}

.faq-answer p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

.faq-answer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Retention feature icon color */
.pricing-features .fa-clock-rotate-left {
    color: var(--primary) !important;
}

/* ========== CTA SECTION ========== */
.cta-section {
    position: relative;
    padding: 120px 0;
    overflow: visible;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.cta-section .blob-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: visible;
}

.cta-section .blob {
    opacity: 0.9;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-content h2 {
    font-size: 44px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== FOOTER ========== */
footer {
    background: var(--dark);
    color: var(--gray-300);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    max-width: 280px;
    margin-top: 16px;
}

.footer-links h4 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: var(--gray-300);
    text-decoration: none;
    font-size: 14px;
    padding: 8px 0;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.2s;
}

.footer-social a:hover {
    background: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--green);
    border-radius: 50%;
    color: white;
    font-size: 28px;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text p {
        margin: 0 auto 32px;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-tags {
        justify-content: center;
    }

    .hero-image {
        margin-top: 60px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .loop-grid {
        grid-template-columns: 1fr;
    }

    .step-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .step-row:nth-child(even) {
        direction: ltr;
    }

    .step-content {
        max-width: 100%;
        text-align: center;
    }

    .step-number {
        margin: 0 auto 24px;
    }

    .integrations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    html,
    body {
        overflow-x: hidden;
    }

    nav,
    .header-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .container {
        padding: 0 16px;
    }

    /* Blobs mais discretos */
    .blob {
        opacity: 0.3;
        transform: scale(0.5);
    }

    /* Hero */
    .hero {
        padding-top: 100px;
    }

    .hero-text h1 {
        font-size: 28px;
        line-height: 1.2;
    }

    .hero-text p {
        font-size: 14px;
    }

    .hero-tags {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }

    .hero-cta .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 14px 24px;
    }

    .hero-trust {
        text-align: center;
        margin-top: 32px;
    }

    .hero-trust .trust-label {
        font-size: 11px;
    }

    .trust-logos {
        justify-content: center;
    }

    .trust-logos i,
    .trust-logos svg {
        font-size: 22px;
        width: 22px;
        height: 22px;
    }

    .hero-image {
        display: none;
    }

    /* Sections */
    section {
        padding: 50px 0;
        overflow-x: hidden;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .loop-title {
        font-size: 22px;
        padding-left: 16px;
    }

    /* Grids */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .problems-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .integrations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .loop-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 24px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 40px;
    }

    .pricing-info-box {
        padding: 20px;
    }

    .pricing-faq {
        margin-top: 40px;
    }

    .faq-question {
        padding: 14px 16px;
        font-size: 14px;
    }

    .faq-answer {
        padding: 0 16px;
    }

    .faq-item.open .faq-answer {
        padding: 0 16px 14px;
    }

    /* Cards */
    .feature-card {
        padding: 20px;
    }

    .problem-card {
        padding: 20px;
    }

    .loop-card {
        padding: 20px;
    }

    .integration-card {
        padding: 16px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }

    .footer-brand p {
        margin: 16px auto 0;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    /* Other */
    .phone-mockup {
        display: none;
    }

    .chat-window {
        display: none;
    }

    .float-card {
        display: none;
    }

    .reports-cta-box {
        max-width: 100%;
        padding: 20px;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .cta-content p {
        font-size: 14px;
    }
}

/* ========== LANGUAGE SELECTOR ========== */
.lang-selector {
    position: relative;
    z-index: 1002;
    display: flex;
    align-items: center;
}

.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid var(--gray-300);
    border-radius: 50px;
    padding: 5px 10px 5px 10px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s;
    color: var(--gray-600);
    line-height: 1;
    white-space: nowrap;
}

.lang-toggle:hover {
    border-color: var(--primary);
    background: rgba(0, 86, 179, 0.05);
}

.lang-toggle .fa-chevron-down {
    font-size: 9px;
    transition: transform 0.2s;
    color: var(--gray-400);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
    z-index: 1003;
}

.lang-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 9px 12px;
    border: none;
    background: none;
    cursor: pointer;
    border-radius: 8px;
    font-size: 14px;
    color: var(--gray-700);
    transition: background 0.15s;
    white-space: nowrap;
}

.lang-option:hover {
    background: var(--gray-100);
}

.lang-option.active {
    background: rgba(0, 86, 179, 0.08);
    color: var(--primary);
    font-weight: 600;
}

/* Flag images */
.lang-flag-img {
    display: inline-block;
    border-radius: 3px;
    object-fit: cover;
    vertical-align: middle;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.lang-flag {
    display: flex;
    align-items: center;
    line-height: 1;
}

.lang-name {
    font-size: 14px;
}

.lang-current-flag {
    display: flex;
    align-items: center;
    line-height: 1;
}

/* Mobile language selector */
.mobile-lang-selector {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
}

.mobile-lang-selector .lang-selector {
    width: 100%;
}

.mobile-lang-selector .lang-toggle {
    width: 100%;
    justify-content: center;
}

.mobile-lang-selector .lang-dropdown {
    position: static;
    box-shadow: none;
    border: 1px solid var(--gray-100);
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transform: none;
    padding: 0;
    margin-top: 8px;
    transition: all 0.3s;
}

.mobile-lang-selector .lang-dropdown.open {
    opacity: 1;
    max-height: 300px;
    visibility: visible;
    padding: 6px;
}
/* ===== Header: respiro e colapso (jul/2026) ==============================
   Serve as 5 paginas institucionais (SobreNos, Contato, Privacidade, TermosDeUso,
   LGPD). O Checkout tambem carrega este CSS, mas nao tem nav — as regras abaixo
   simplesmente nao o afetam.

   Medido nas institucionais em producao:
     1280px -> folga entre logo e nav: 72px
     1024px -> 6px
      900px -> ZERO  (o logo encostava no primeiro item da nav)

   O .header-inner usa justify-content:space-between, que distribui a FOLGA entre os
   itens. Com o header cheio — logo "SepnIA Suite" (mais largo que o antigo "SepnIA")
   + 4 itens de nav + seletor de idioma + 2 botoes — essa folga zerava.

   1) gap explicito, para o logo nunca mais colar no primeiro item;
   2) a nav colapsa no hamburguer a 1150px, nao mais a 768px. Abaixo disso o header
      nao cabe. Era um bug de responsivo que ja existia e ninguem tinha medido.
   ======================================================================== */
.header-inner { gap: 24px; }
#header nav { gap: 24px; }

@media (max-width: 1150px) {
    #header nav { display: none; }
    #header .header-cta { display: none; }
    #header .mobile-menu-btn { display: block; }
}