/* ===== IMPORTAÇÃO DE FONTES ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ===== RESET E BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #0F172A;
    line-height: 1.6;
    overflow-x: hidden;
    opacity: 1;
    transition: opacity 0.3s ease;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* ===== LOADER ===== */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0F172A;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-logo {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
}

.loader-logo span {
    color: #00B4D8;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
}

.loader-bar-inner {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #0077B6, #00B4D8);
    border-radius: 3px;
    animation: loaderProgress 1s ease-out forwards;
}

@keyframes loaderProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* ===== BOTÕES PADRÃO ===== */
.btn-primary {
    background: linear-gradient(135deg, #0077B6, #00B4D8);
    color: #fff;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 119, 182, 0.35);
    letter-spacing: 0.3px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 119, 182, 0.5);
    background: linear-gradient(135deg, #0088CC, #00C8E8);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    padding: 16px 40px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    transform: translateY(-3px);
}

.btn-secondary-dark {
    background: transparent;
    color: #0077B6;
    padding: 16px 40px;
    border: 2px solid #0077B6;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-secondary-dark:hover {
    background: #0077B6;
    color: #fff;
    transform: translateY(-3px);
}

/* ===== ÍCONES LUCIDE ===== */
.icon-svg {
    width: 24px;
    height: 24px;
    display: inline-block;
    flex-shrink: 0;
    stroke: #0077B6;
    stroke-width: 2;
    fill: none;
    transition: all 0.3s ease;
}

.icon-svg-sm {
    width: 20px;
    height: 20px;
}

.icon-svg-lg {
    width: 32px;
    height: 32px;
}

.icon-svg-xl {
    width: 40px;
    height: 40px;
}

.icon-svg-white {
    stroke: #fff;
}

.icon-svg-dark {
    stroke: #0F172A;
}

/* Hover suave para ícones */
[class*="icon-svg"]:hover {
    transform: scale(1.05);
    stroke: #00B4D8;
}

/* ===== WHATSAPP FLUTUANTE ===== */
.btn-whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 64px;
    height: 64px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

.btn-whatsapp-float .tooltip {
    position: absolute;
    right: 76px;
    background: #0F172A;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.btn-whatsapp-float .tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 8px solid #0F172A;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

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

.btn-whatsapp-float .pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    opacity: 0;
    animation: pulse-whatsapp 2s ease-out infinite;
}

.btn-whatsapp-float .pulse:nth-child(1) {
    animation-delay: 0s;
}

.btn-whatsapp-float .pulse:nth-child(2) {
    animation-delay: 0.5s;
}

@keyframes pulse-whatsapp {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
    background: transparent;
}

.header.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
    padding: 12px 0;
}

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

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

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #0077B6, #00B4D8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: -0.5px;
}

.logo-text {
    font-weight: 700;
    font-size: 1.3rem;
    color: #fff;
    transition: color 0.3s;
}

.logo-text span {
    color: #00B4D8;
}

.header.scrolled .logo-text {
    color: #fff;
}

/* ===== NAVEGAÇÃO DESKTOP ===== */
.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00B4D8;
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-login {
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.btn-login:hover {
    color: #fff;
}

.btn-credenciar-header {
    background: #0077B6;
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
    border: none;
    box-shadow: 0 4px 16px rgba(0, 119, 182, 0.3);
}

.btn-credenciar-header:hover {
    background: #0088CC;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 119, 182, 0.4);
}

/* ===== MENU HAMBURGUER ===== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== MENU MOBILE OVERLAY ===== */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #0F172A;
    z-index: 1000;
    padding: 80px 32px 40px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu .nav-link {
    display: block;
    padding: 14px 0;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-menu .nav-link:hover {
    color: #fff;
}

.mobile-menu .nav-link::after {
    display: none;
}

.mobile-actions {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-actions .btn-primary {
    width: 100%;
    text-align: center;
}

.mobile-actions .btn-secondary {
    width: 100%;
    text-align: center;
}

/* ===== HERO ===== */
#hero {
    background: linear-gradient(160deg, #0F172A 0%, #1A2335 40%, #0F172A 100%);
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

#hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

#hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 119, 182, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.hero-content {
    max-width: 620px;
}

.hero-top-bar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 119, 182, 0.12);
    border: 1px solid rgba(0, 119, 182, 0.2);
    padding: 6px 18px 6px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero-top-bar svg {
    width: 16px;
    height: 16px;
    stroke: #00B4D8;
    stroke-width: 2.5;
    fill: none;
}

.hero-top-bar span {
    font-size: 0.75rem;
    font-weight: 600;
    color: #00B4D8;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 3.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero-content h1 .highlight {
    background: linear-gradient(135deg, #0077B6, #00B4D8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content .subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 24px;
    line-height: 1.7;
    max-width: 480px;
}

.hero-indicators {
    display: flex;
    gap: 48px;
    margin-bottom: 24px;
}

.hero-indicator {
    transition: all 0.3s ease;
    cursor: default;
}

.hero-indicator:hover {
    transform: translateY(-2px);
}

.hero-indicator .number {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    display: block;
    background: linear-gradient(135deg, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-indicator .label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
}

.hero-exclusividade {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    padding: 6px 18px;
    background: rgba(0, 119, 182, 0.12);
    border: 1px solid rgba(0, 119, 182, 0.2);
    border-radius: 50px;
    letter-spacing: 0.3px;
}

.hero-exclusividade .check-icon {
    color: #22C55E;
    font-weight: 700;
    font-size: 0.85rem;
}

.hero-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-card {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    padding: 32px 28px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.mockup-header h4 {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

.mockup-status-badge {
    background: rgba(0, 180, 216, 0.15);
    color: #00B4D8;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
}

.mockup-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.mockup-item:last-child {
    border-bottom: none;
}

.mockup-item-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mockup-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
}

.icon-blue { background: #0077B6; }
.icon-green { background: #0D7C4A; }
.icon-orange { background: #D95B0C; }
.icon-purple { background: #6A4C9C; }
.icon-red { background: #B23A48; }

.mockup-item-name {
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
}

.mockup-item-desc {
    color: rgba(255,255,255,0.35);
    font-size: 0.8rem;
}

.mockup-item-status {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
}

.status-progress {
    background: rgba(255, 193, 7, 0.15);
    color: #FFD60A;
}
.status-approved {
    background: rgba(0, 200, 83, 0.15);
    color: #00C853;
}
.status-pending {
    background: rgba(255, 87, 34, 0.15);
    color: #FF5722;
}
.status-done {
    background: rgba(0, 180, 216, 0.15);
    color: #00B4D8;
}

.mockup-footer {
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.mockup-footer span {
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
}

.mockup-footer .highlight-number {
    color: #00B4D8;
    font-weight: 700;
    font-size: 1.1rem;
}

/* ===== SEÇÃO OPORTUNIDADES PERDIDAS ===== */
#oportunidades-perdidas {
    padding: 80px 0;
    background: #fff;
}

#oportunidades-perdidas h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0F172A;
    text-align: center;
    margin-bottom: 12px;
}

#oportunidades-perdidas > .container > p {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
    color: #64748B;
    font-size: 1.05rem;
}

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

.oportunidade-perdida-card {
    background: #f8fafc;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #eef2f6;
    transition: all 0.3s ease;
}

.oportunidade-perdida-card:hover {
    transform: translateY(-6px);
    border-color: #0077B6;
    box-shadow: 0 12px 40px rgba(0, 119, 182, 0.06);
}

.oportunidade-perdida-card svg {
    width: 40px;
    height: 40px;
    stroke: #0077B6;
    stroke-width: 2;
    fill: none;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.oportunidade-perdida-card:hover svg {
    transform: scale(1.05);
    stroke: #00B4D8;
}

.oportunidade-perdida-card h4 {
    font-size: 1rem;
    color: #0F172A;
}

/* ===== SEÇÃO BENEFÍCIOS ===== */
#beneficios {
    padding: 80px 0;
    background: #f8fafc;
}

#beneficios h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0F172A;
    text-align: center;
    margin-bottom: 12px;
}

#beneficios > .container > p {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
    color: #64748B;
    font-size: 1.05rem;
}

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

.beneficio-card {
    background: #fff;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.beneficio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 119, 182, 0.08);
    border-color: #0077B6;
}

.beneficio-card svg {
    width: 36px;
    height: 36px;
    stroke: #0077B6;
    stroke-width: 2;
    fill: none;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.beneficio-card:hover svg {
    transform: scale(1.05);
    stroke: #00B4D8;
}

.beneficio-card h4 {
    font-size: 1rem;
    color: #0F172A;
    margin-bottom: 4px;
}

.beneficio-card p {
    color: #64748B;
    font-size: 0.85rem;
}

/* ===== SEÇÃO FATURAMENTO ===== */
#faturamento {
    padding: 80px 0;
    background: #fff;
}

#faturamento h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0F172A;
    text-align: center;
    margin-bottom: 12px;
}

#faturamento > .container > p {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
    color: #64748B;
    font-size: 1.05rem;
}

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

.faturamento-card {
    background: #f8fafc;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #eef2f6;
    transition: all 0.3s ease;
}

.faturamento-card:hover {
    transform: translateY(-6px);
    border-color: #0077B6;
    box-shadow: 0 12px 40px rgba(0, 119, 182, 0.06);
}

.faturamento-card .qtd {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0F172A;
}

.faturamento-card .detalhe {
    color: #64748B;
    font-size: 0.9rem;
    margin: 8px 0;
}

.faturamento-card .valor {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0077B6;
    margin-top: 12px;
}

.faturamento-obs {
    text-align: center;
    color: #94a3b8;
    font-size: 0.8rem;
    margin-top: 32px;
    font-style: italic;
}

/* ===== SEÇÃO OPORTUNIDADES ===== */
#oportunidades {
    padding: 80px 0;
    background: #f8fafc;
}

#oportunidades h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0F172A;
    text-align: center;
    margin-bottom: 12px;
}

#oportunidades > .container > p {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
    color: #64748B;
    font-size: 1.05rem;
}

.oportunidades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.oportunidade-card {
    background: #fff;
    padding: 28px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    font-weight: 500;
    color: #0F172A;
}

.oportunidade-card:hover {
    transform: translateY(-4px);
    border-color: #0077B6;
    box-shadow: 0 8px 24px rgba(0, 119, 182, 0.06);
}

.oportunidade-card svg {
    width: 32px;
    height: 32px;
    stroke: #0077B6;
    stroke-width: 2;
    fill: none;
    display: block;
    margin: 0 auto 8px;
    transition: all 0.3s ease;
}

.oportunidade-card:hover svg {
    transform: scale(1.05);
    stroke: #00B4D8;
}

/* ===== SEÇÃO COMPARATIVO ===== */
#comparativo {
    padding: 80px 0;
    background: #0F172A;
    color: #fff;
}

#comparativo h2 {
    font-size: 2.4rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
}

#comparativo > .container > p {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
    color: rgba(255,255,255,0.5);
    font-size: 1.05rem;
}

.comparativo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.comparativo-col {
    background: rgba(255,255,255,0.04);
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.06);
}

.comparativo-col h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.comparativo-col ul li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
}

.comparativo-col ul li .icon-x {
    color: #EF4444;
    font-weight: 700;
}

.comparativo-col ul li .icon-check {
    color: #22C55E;
    font-weight: 700;
}

.comparativo-col.destaque {
    background: rgba(0, 119, 182, 0.08);
    border-color: rgba(0, 119, 182, 0.2);
}

/* ===== SEÇÃO PLATAFORMA ===== */
#plataforma {
    padding: 80px 0;
    background: #fff;
}

#plataforma h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0F172A;
    text-align: center;
    margin-bottom: 12px;
}

#plataforma > .container > p {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 16px;
    color: #64748B;
    font-size: 1.05rem;
}

#plataforma .plataforma-desc {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
    color: #64748B;
    font-size: 0.95rem;
    line-height: 1.7;
}

.plataforma-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.plataforma-item {
    background: #f8fafc;
    padding: 24px 16px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eef2f6;
    transition: all 0.3s ease;
}

.plataforma-item:hover {
    transform: translateY(-4px);
    border-color: #0077B6;
}

.plataforma-item svg {
    width: 32px;
    height: 32px;
    stroke: #0077B6;
    stroke-width: 2;
    fill: none;
    display: block;
    margin: 0 auto 8px;
    transition: all 0.3s ease;
}

.plataforma-item:hover svg {
    transform: scale(1.05);
    stroke: #00B4D8;
}

.plataforma-item h4 {
    font-size: 0.95rem;
    color: #0F172A;
}

/* ===== SEÇÃO ECOSSISTEMA ===== */
#ecossistema {
    padding: 80px 0;
    background: #f8fafc;
}

#ecossistema h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0F172A;
    text-align: center;
    margin-bottom: 12px;
}

#ecossistema > .container > p {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
    color: #64748B;
    font-size: 1.05rem;
}

.ecossistema-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.ecossistema-item {
    background: #fff;
    padding: 28px 20px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    position: relative;
}

.ecossistema-item:hover {
    transform: translateY(-4px);
    border-color: #0077B6;
    box-shadow: 0 8px 24px rgba(0, 119, 182, 0.08);
}

.ecossistema-item .badge-expansao {
    display: inline-block;
    background: rgba(0, 119, 182, 0.1);
    color: #0077B6;
    font-size: 0.6rem;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 8px;
}

.ecossistema-item svg {
    width: 32px;
    height: 32px;
    stroke: #0077B6;
    stroke-width: 2;
    fill: none;
    display: block;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.ecossistema-item:hover svg {
    transform: scale(1.05);
    stroke: #00B4D8;
}

.ecossistema-item h4 {
    font-size: 0.95rem;
    color: #0F172A;
    font-weight: 600;
}

.ecossistema-item .desc {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 4px;
}

/* ===== SEÇÃO AUTORIDADE ===== */
#autoridade {
    padding: 80px 0;
    background: #f8fafc;
}

#autoridade h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0F172A;
    text-align: center;
    margin-bottom: 12px;
}

#autoridade > .container > p {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
    color: #64748B;
    font-size: 1.05rem;
}

.autoridade-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.autoridade-item {
    background: #fff;
    padding: 24px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.autoridade-item:hover {
    transform: translateY(-4px);
    border-color: #0077B6;
}

.autoridade-item .check {
    color: #22C55E;
    font-weight: 700;
    font-size: 1.2rem;
}

.autoridade-item h4 {
    font-size: 0.95rem;
    color: #0F172A;
    margin-top: 4px;
}

/* ===== SEÇÃO NÚMEROS ===== */
#numeros {
    padding: 60px 0;
    background: #0F172A;
    color: #fff;
    text-align: center;
}

#numeros h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.numeros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 30px;
}

.numeros-grid .numero-item {
    background: rgba(255,255,255,0.04);
    padding: 24px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.04);
    transition: all 0.3s ease;
}

.numeros-grid .numero-item:hover {
    border-color: rgba(0, 180, 216, 0.2);
    transform: translateY(-4px);
}

.numero-item .num {
    font-size: 2.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0077B6, #00B4D8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.numero-item .label {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* ===== SEÇÃO CREDENCIAMENTO ===== */
#credenciamento {
    padding: 80px 0;
    background: #fff;
}

#credenciamento h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0F172A;
    text-align: center;
    margin-bottom: 12px;
}

#credenciamento > .container > p {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
    color: #64748B;
    font-size: 1.05rem;
}

.credenciamento-passos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.passo-credenciamento {
    text-align: center;
    padding: 24px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #eef2f6;
}

.passo-credenciamento .num {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #0077B6;
    color: #fff;
    border-radius: 50%;
    line-height: 40px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 12px;
}

.passo-credenciamento h4 {
    font-size: 1rem;
    color: #0F172A;
    margin-bottom: 4px;
}

.passo-credenciamento p {
    color: #64748B;
    font-size: 0.85rem;
}

/* ===== CARD PROCESSO SELETIVO ===== */
.card-processo-seletivo {
    max-width: 600px;
    margin: 0 auto 40px;
    background: linear-gradient(135deg, #f0f7ff, #e8f4f8);
    padding: 28px 32px;
    border-radius: 16px;
    border-left: 4px solid #0077B6;
    text-align: center;
}

.card-processo-seletivo svg {
    width: 32px;
    height: 32px;
    stroke: #0077B6;
    stroke-width: 2;
    fill: none;
    display: block;
    margin: 0 auto 8px;
}

.card-processo-seletivo h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 8px;
}

.card-processo-seletivo p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== FORMULÁRIO ===== */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #f8fafc;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #eef2f6;
}

.form-container .form-title {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 8px;
}

.form-container .form-subtitle {
    text-align: center;
    color: #64748B;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.form-container .form-destaque {
    text-align: center;
    color: #0F172A;
    font-size: 0.85rem;
    margin-bottom: 32px;
    padding: 12px;
    background: rgba(0, 119, 182, 0.05);
    border-radius: 8px;
    border-left: 3px solid #0077B6;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    font-size: 0.85rem;
    color: #0F172A;
    margin-bottom: 6px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #fff;
    color: #0F172A;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #0077B6;
    box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.1);
}

.form-group input::placeholder {
    color: #9CA3AF;
}

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 4px;
}

.form-group.checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 3px;
    cursor: pointer;
    accent-color: #0077B6;
}

.form-group.checkbox label {
    font-size: 0.85rem;
    color: #64748B;
    cursor: pointer;
    font-weight: 400;
}

.form-group.checkbox label a {
    color: #0077B6;
    font-weight: 500;
}

.form-group.checkbox label a:hover {
    text-decoration: underline;
}

.form-container .btn-primary {
    width: 100%;
    margin-top: 8px;
}

.form-obs {
    text-align: center;
    color: #9CA3AF;
    font-size: 0.8rem;
    margin-top: 16px;
    line-height: 1.5;
}

/* ===== SEÇÃO FAQ ===== */
#faq {
    padding: 80px 0;
    background: #f8fafc;
}

#faq h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0F172A;
    text-align: center;
    margin-bottom: 48px;
}

.faq-item {
    max-width: 720px;
    margin: 0 auto 12px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eef2f6;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #0077B6;
}

.faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #0F172A;
    transition: all 0.3s ease;
    background: #fff;
    border: none;
    width: 100%;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.faq-question:hover {
    color: #0077B6;
}

.faq-question .icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: #0077B6;
}

.faq-item.active .faq-question .icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
    color: #64748B;
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

/* ===== SEÇÃO PARA QUEM É ===== */
#para-quem {
    padding: 80px 0;
    background: #fff;
}

#para-quem h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0F172A;
    text-align: center;
    margin-bottom: 12px;
}

#para-quem > .container > p {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
    color: #64748B;
    font-size: 1.05rem;
}

.para-quem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.para-quem-item {
    background: #f8fafc;
    padding: 20px 16px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #eef2f6;
    font-weight: 500;
    color: #0F172A;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.para-quem-item:hover {
    border-color: #0077B6;
    background: #f0f7ff;
}

.para-quem-item svg {
    width: 28px;
    height: 28px;
    stroke: #0077B6;
    stroke-width: 2;
    fill: none;
    transition: all 0.3s ease;
}

.para-quem-item:hover svg {
    transform: scale(1.05);
    stroke: #00B4D8;
}

/* ===== SEÇÃO POR QUE AGORA ===== */
#por-que-agora {
    padding: 80px 0;
    background: #f8fafc;
}

#por-que-agora h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0F172A;
    text-align: center;
    margin-bottom: 12px;
}

#por-que-agora > .container > p {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
    color: #64748B;
    font-size: 1.05rem;
}

/* ===== CTA FINAL ===== */
#cta-final {
    padding: 80px 0;
    background: #0F172A;
    text-align: center;
    color: #fff;
}

#cta-final h2 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 16px;
}

#cta-final p {
    max-width: 600px;
    margin: 0 auto 36px;
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
    line-height: 1.7;
}

#cta-final .btn-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

/* ===== RODAPÉ ===== */
.footer {
    background: #0a0f1a;
    color: rgba(255,255,255,0.5);
    padding: 56px 0 28px;
}

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

.footer-brand .logo-text {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 4px;
    display: block;
}

.footer-brand .logo-text span {
    color: #00B4D8;
}

.footer-brand .tagline {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.35);
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.9rem;
    max-width: 340px;
    line-height: 1.7;
    color: rgba(255,255,255,0.4);
}

.footer h4 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.footer ul li {
    padding: 5px 0;
    font-size: 0.85rem;
}

.footer ul li a:hover {
    color: #00B4D8;
}

.footer-contato li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-destaque {
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
    margin: 16px 0;
}

.footer-destaque span {
    color: #00B4D8;
    font-weight: 500;
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.04);
    margin: 20px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

.footer-bottom a {
    color: rgba(255,255,255,0.3);
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #00B4D8;
}

/* ===== ANIMAÇÕES SCROLL ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1024px) {
    #hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-content .subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-indicators {
        justify-content: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-top-bar {
        margin-left: auto;
        margin-right: auto;
    }
    .mockup-card {
        max-width: 100%;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .comparativo-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    .header-actions .btn-login {
        display: none;
    }
    .btn-credenciar-header {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .mobile-overlay {
        display: block;
    }

    .btn-whatsapp-float {
        width: 54px;
        height: 54px;
        bottom: 20px;
        right: 20px;
    }
    .btn-whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    .btn-whatsapp-float .tooltip {
        display: none;
    }

    #hero {
        padding: 120px 0 60px;
        min-height: auto;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content .subtitle {
        font-size: 1rem;
    }
    .hero-indicators {
        gap: 24px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-indicator .number {
        font-size: 1.5rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 320px;
    }
    .hero-exclusividade {
        font-size: 0.65rem;
        padding: 4px 14px;
    }

    #oportunidades-perdidas h2,
    #beneficios h2,
    #faturamento h2,
    #oportunidades h2,
    #comparativo h2,
    #plataforma h2,
    #ecossistema h2,
    #autoridade h2,
    #credenciamento h2,
    #faq h2,
    #para-quem h2,
    #por-que-agora h2 {
        font-size: 1.8rem;
    }

    #cta-final h2 {
        font-size: 2rem;
    }

    .comparativo-grid {
        grid-template-columns: 1fr;
    }
    .comparativo-col {
        padding: 24px 20px;
    }

    .numeros-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .numeros-grid .numero-item {
        padding: 16px 12px;
    }
    .numero-item .num {
        font-size: 2rem;
    }

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

    .form-container {
        padding: 24px 20px;
    }
    .card-processo-seletivo {
        padding: 20px;
        margin: 0 16px 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-destaque {
        font-size: 0.85rem;
    }

    .oportunidades-perdidas-grid {
        grid-template-columns: 1fr 1fr;
    }
    .oportunidades-grid {
        grid-template-columns: 1fr 1fr;
    }
    .beneficios-grid {
        grid-template-columns: 1fr 1fr;
    }
    .autoridade-grid {
        grid-template-columns: 1fr 1fr;
    }
    .plataforma-grid {
        grid-template-columns: 1fr 1fr;
    }
    .ecossistema-grid {
        grid-template-columns: 1fr 1fr;
    }
    .para-quem-grid {
        grid-template-columns: 1fr 1fr;
    }
    .credenciamento-passos {
        grid-template-columns: 1fr 1fr;
    }

    .mockup-card {
        padding: 20px 16px;
    }
    .mockup-item {
        flex-wrap: wrap;
        gap: 4px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .btn-primary,
    .btn-secondary,
    .btn-secondary-dark {
        padding: 14px 24px;
        font-size: 0.9rem;
        width: 100%;
    }
    .hero-indicators {
        gap: 12px;
    }
    .hero-indicator .number {
        font-size: 1.2rem;
    }
    .hero-indicator .label {
        font-size: 0.7rem;
    }
    .oportunidades-perdidas-grid {
        grid-template-columns: 1fr 1fr;
    }
    .beneficios-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .oportunidades-grid {
        grid-template-columns: 1fr 1fr;
    }
    .autoridade-grid {
        grid-template-columns: 1fr;
    }
    .plataforma-grid {
        grid-template-columns: 1fr 1fr;
    }
    .ecossistema-grid {
        grid-template-columns: 1fr 1fr;
    }
    .para-quem-grid {
        grid-template-columns: 1fr 1fr;
    }
    .credenciamento-passos {
        grid-template-columns: 1fr;
    }
    .numeros-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    #cta-final .btn-group {
        flex-direction: column;
        align-items: center;
    }
    #cta-final .btn-group .btn-primary,
    #cta-final .btn-group .btn-secondary {
        width: 100%;
        max-width: 320px;
    }
    .form-container {
        padding: 16px;
    }
    .card-processo-seletivo {
        padding: 16px;
        margin: 0 0 24px;
    }
    .card-processo-seletivo h4 {
        font-size: 1rem;
    }
    .card-processo-seletivo p {
        font-size: 0.85rem;
    }
    .faq-question {
        font-size: 0.9rem;
        padding: 16px 18px;
    }
    .mockup-footer .highlight-number {
        font-size: 0.9rem;
    }
    .btn-whatsapp-float {
        width: 48px;
        height: 48px;
        bottom: 16px;
        right: 16px;
    }
    .btn-whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}