:root {
    --clr-accent-yellow: #FFC100;
    --clr-accent-yellow-hover: #e6ae00;
    --clr-accent-yellow-dark: #b38700;
    --clr-accent-yellow-light: rgba(255, 193, 0, 0.12);
    --clr-accent-yellow-glow: rgba(255, 193, 0, 0.35);
    --clr-black-pure: #000000;
    --clr-navy-900: #0a0a0c;
    --clr-navy-800: #121215;
    --clr-navy-700: #1c1c21;
    --clr-navy-600: #27272a;
    --clr-bg-light: #f4f4f6;
    --clr-surface-white: #ffffff;
    --clr-surface-glass: rgba(255, 255, 255, 0.95);
    --clr-border-light: #e4e4e7;
    --clr-border-dark: rgba(255, 255, 255, 0.12);
    --clr-text-main: #09090b;
    --clr-text-muted: #52525b;
    --clr-text-light: #ffffff;
    --clr-text-dim: #a1a1aa;
    --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 40px -15px rgba(0, 0, 0, 0.25), 0 0 20px rgba(255, 193, 0, 0.15);
    --shadow-yellow-glow: 0 0 30px rgba(255, 193, 0, 0.45);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    font-size: 16px;
}
body {
    font-family: var(--font-body);
    background-color: var(--clr-bg-light);
    color: var(--clr-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--clr-navy-900);
}
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}
ul {
    list-style: none;
}
img {
    max-width: 100%;
    display: block;
}
.container {
    width: 92%;
    max-width: 1320px;
    margin: 0 auto;
}
.section {
    padding: clamp(4.5rem, 8vw, 7rem) 0;
    position: relative;
}
.text-center {
    text-align: center;
}
.text-accent {
    color: var(--clr-accent-yellow) !important;
}
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.7s cubic-bezier(0.215, 0.61, 0.355, 1);
    will-change: opacity, transform;
}
.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.section-tag {
    display: inline-block;
    padding: 0.4rem 1.1rem;
    background: rgba(255, 193, 0, 0.15);
    color: var(--clr-navy-900);
    border: 1px solid rgba(255, 193, 0, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--clr-text-muted);
    max-width: 720px;
    margin: 0 auto 3.5rem auto;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all 0.3s ease;
}
.header.scrolled {
    background: rgba(10, 10, 12, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0.8rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 193, 0, 0.15);
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
}
.logo-dot {
    color: var(--clr-accent-yellow);
    display: inline-block;
    animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.3); }
}
.nav-list {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}
.nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.25rem 0;
}
.nav-link:hover {
    color: var(--clr-accent-yellow);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clr-accent-yellow);
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.btn-insta-header {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 193, 0, 0.3);
    color: var(--clr-accent-yellow);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}
.btn-insta-header:hover {
    background: var(--clr-accent-yellow);
    color: #000000;
    box-shadow: 0 4px 15px rgba(255, 193, 0, 0.4);
}
.btn-cta-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1.4rem;
    background: var(--clr-accent-yellow);
    color: #000000;
    font-weight: 800;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(255, 193, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}
.btn-cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 193, 0, 0.55);
    background: var(--clr-accent-yellow-hover);
}
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
}
.hero-section {
    position: relative;
    background-color: var(--clr-navy-900);
    color: #ffffff;
    padding: clamp(8rem, 12vw, 11rem) 0 clamp(4.5rem, 8vw, 7rem) 0;
    overflow: hidden;
}
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.shape-1 {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(255, 193, 0, 0.18) 0%, rgba(10, 10, 12, 0) 70%);
    border-radius: 50%;
    filter: blur(60px);
}
.shape-2 {
    position: absolute;
    bottom: -15%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(10, 10, 12, 0) 70%);
    border-radius: 50%;
    filter: blur(60px);
}
.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 193, 0, 0.1) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.6;
}
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    position: relative;
    z-index: 2;
}
.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 1.1rem;
    background: rgba(255, 193, 0, 0.1);
    border: 1px solid rgba(255, 193, 0, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    color: var(--clr-accent-yellow);
    backdrop-filter: blur(8px);
    margin-bottom: 1.5rem;
}
.badge-icon {
    color: var(--clr-accent-yellow);
}
.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.12;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}
.title-dash {
    color: var(--clr-accent-yellow);
}
.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: #a1a1aa;
    line-height: 1.6;
    margin-bottom: 2.2rem;
    max-width: 560px;
}
.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1.05rem 2.2rem;
    background: var(--clr-accent-yellow);
    color: #000000;
    font-weight: 800;
    font-size: 1.05rem;
    border-radius: var(--radius-full);
    box-shadow: 0 10px 30px rgba(255, 193, 0, 0.4), 0 0 0 2px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}
.btn-cta-primary:hover::before {
    left: 100%;
}
.btn-cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
    background: var(--clr-accent-yellow-hover);
    box-shadow: 0 15px 35px rgba(255, 193, 0, 0.6);
}
.btn-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    font-size: 0.85rem;
}
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.8rem;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.98rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}
.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--clr-accent-yellow);
    color: var(--clr-accent-yellow);
    transform: translateY(-2px);
}
.hero-metrics {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.metric-item {
    display: flex;
    flex-direction: column;
}
.metric-value {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--clr-accent-yellow);
    font-family: var(--font-heading);
}
.metric-label {
    font-size: 0.8rem;
    color: #a1a1aa;
}
.metric-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.12);
}
.hero-visual {
    position: relative;
}
.hero-card-glow {
    position: absolute;
    inset: -15px;
    background: radial-gradient(circle, var(--clr-accent-yellow) 0%, transparent 70%);
    border-radius: var(--radius-lg);
    filter: blur(30px);
    opacity: 0.2;
}
.hero-preview-window {
    position: relative;
    background: #0f0f12;
    border: 1px solid rgba(255, 193, 0, 0.2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
}
.window-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.window-dots {
    display: flex;
    gap: 6px;
}
.window-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot-red { background: #ef4444; }
.dot-yellow { background: #FFC100; }
.dot-green { background: #10b981; }
.window-title {
    font-size: 0.82rem;
    color: #a1a1aa;
    font-weight: 500;
}
.window-badge {
    font-size: 0.72rem;
    font-weight: 800;
    color: #000000;
    background: var(--clr-accent-yellow);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 5px;
}
.pulse-dot {
    width: 6px;
    height: 6px;
    background: #000000;
    border-radius: 50%;
    animation: pulseGlow 1.5s infinite;
}
.window-body {
    padding: 1.4rem;
}
.sim-header-info {
    margin-bottom: 1.2rem;
}
.sim-topic {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-accent-yellow);
    font-weight: 700;
}
.sim-header-info h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-top: 0.2rem;
}
.sim-speaker-card {
    display: flex;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.04);
    padding: 1rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--clr-accent-yellow);
    margin-bottom: 1.2rem;
}
.speaker-avatar {
    font-size: 1.8rem;
}
.speaker-details {
    flex: 1;
}
.speaker-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.4rem;
}
.speaker-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: #ffffff;
}
.speaker-timer {
    font-size: 0.75rem;
    color: #000000;
    background: var(--clr-accent-yellow);
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-sm);
}
.speaker-text {
    font-size: 0.85rem;
    color: #e4e4e7;
    font-style: italic;
    margin-bottom: 0.4rem;
}
.source-tag {
    font-size: 0.75rem;
    color: #a1a1aa;
    background: rgba(255, 255, 255, 0.06);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    display: inline-block;
}
.sim-feed-stream {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1rem;
}
.feed-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 0.8rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: #a1a1aa;
}
.feed-item.highlight {
    background: rgba(255, 193, 0, 0.12);
    border: 1px solid rgba(255, 193, 0, 0.3);
    color: #ffffff;
}
.feed-msg {
    flex: 1;
}
.feed-time {
    font-size: 0.7rem;
    color: #71717a;
}
.window-footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.8rem;
    color: #a1a1aa;
}
.quem-somos-section {
    background-color: #ffffff;
    border-bottom: 1px solid var(--clr-border-light);
}
.quem-somos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 5vw, 4.5rem);
    align-items: center;
}
.qs-lead {
    font-size: 1.18rem;
    color: var(--clr-navy-900);
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}
.qs-body {
    font-size: 0.98rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}
.qs-stats-row {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--clr-border-light);
}
.qs-stat {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.qs-stat-num {
    width: 44px;
    height: 44px;
    background: var(--clr-accent-yellow-light);
    color: var(--clr-navy-900);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}
.qs-stat h5 {
    font-size: 1rem;
    margin-bottom: 0.1rem;
}
.qs-stat span {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
}
.quem-somos-cards-column {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.qs-feature-box {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem;
    background: var(--clr-bg-light);
    border: 1px solid var(--clr-border-light);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}
.qs-feature-box:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--clr-accent-yellow);
}
.highlight-box {
    background: #ffffff;
    border: 2px solid var(--clr-accent-yellow);
    box-shadow: 0 10px 25px rgba(255, 193, 0, 0.15);
}
.qs-box-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--clr-navy-900);
    color: #ffffff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}
.qs-box-icon.icon-accent {
    background: var(--clr-accent-yellow);
    color: #000000;
    box-shadow: 0 6px 16px rgba(255, 193, 0, 0.3);
}
.qs-feature-box h4 {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
}
.qs-feature-box p {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
}
.sobre-section {
    background-color: var(--clr-bg-light);
}
.quote-card {
    background: var(--clr-navy-900);
    color: #ffffff;
    padding: clamp(2rem, 5vw, 3.5rem);
    border-radius: var(--radius-lg);
    margin-bottom: 4rem;
    position: relative;
    border: 1px solid rgba(255, 193, 0, 0.2);
    box-shadow: var(--shadow-lg);
}
.quote-icon {
    font-size: 2.5rem;
    color: var(--clr-accent-yellow);
    opacity: 0.8;
    margin-bottom: 1rem;
}
.quote-text {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-style: italic;
    line-height: 1.7;
    color: #e4e4e7;
    margin-bottom: 1.8rem;
    font-weight: 300;
}
.quote-author {
    display: flex;
    flex-direction: column;
    border-left: 3px solid var(--clr-accent-yellow);
    padding-left: 1rem;
}
.author-name {
    font-weight: 700;
    color: #ffffff;
    font-size: 1rem;
}
.author-title {
    font-size: 0.85rem;
    color: #a1a1aa;
}
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.pillar-card {
    background: var(--clr-surface-white);
    padding: 2.2rem 1.8rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border-light);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}
.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--clr-accent-yellow);
}
.pillar-icon {
    width: 50px;
    height: 50px;
    background: var(--clr-accent-yellow-light);
    color: var(--clr-navy-900);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
}
.pillar-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
}
.pillar-card p {
    font-size: 0.92rem;
    color: var(--clr-text-muted);
}
.dinamica-section {
    background-color: #ffffff;
}
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.feature-card {
    background: var(--clr-surface-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    border: 1px solid var(--clr-border-light);
    box-shadow: var(--shadow-md);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.highlighted-card {
    border: 2px solid var(--clr-accent-yellow);
    background: linear-gradient(180deg, #ffffff 0%, #fffdf0 100%);
    box-shadow: 0 15px 35px rgba(255, 193, 0, 0.15);
}
.card-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.25rem 0.75rem;
    background: #e4e4e7;
    color: var(--clr-navy-900);
    border-radius: var(--radius-full);
}
.badge-accent {
    background: var(--clr-accent-yellow);
    color: #000000;
}
.card-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.8rem;
}
.icon-navy {
    background: var(--clr-navy-900);
    color: #ffffff;
}
.icon-accent {
    background: var(--clr-accent-yellow);
    color: #000000;
    box-shadow: 0 8px 20px rgba(255, 193, 0, 0.4);
}
.card-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.card-description {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    line-height: 1.65;
    margin-bottom: 1.8rem;
    flex-grow: 1;
}
.card-list {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--clr-border-light);
}
.card-list li {
    font-size: 0.88rem;
    color: var(--clr-navy-900);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
}
.card-list li i {
    color: var(--clr-navy-900);
    font-size: 0.8rem;
}
.plataforma-section {
    background: var(--clr-bg-light);
    overflow: hidden;
}
.plataforma-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 5vw, 4.5rem);
    align-items: center;
}
.plataforma-lead {
    font-size: 1.15rem;
    color: var(--clr-navy-900);
    line-height: 1.65;
    margin-bottom: 2rem;
}
.plataforma-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.pf-item {
    display: flex;
    gap: 1.2rem;
}
.pf-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: #ffffff;
    border: 1px solid var(--clr-border-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--clr-navy-900);
    box-shadow: var(--shadow-sm);
}
.pf-text h4 {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}
.pf-text p {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
}
.plataforma-action-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
}
.btn-cta-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.1rem 2.4rem;
    background: var(--clr-accent-yellow);
    color: #000000;
    font-weight: 800;
    font-size: 1.05rem;
    border-radius: var(--radius-full);
    box-shadow: 0 10px 25px rgba(255, 193, 0, 0.35);
    border: 2px solid #000000;
    transition: all 0.3s ease;
}
.btn-cta-highlight:hover {
    background: #000000;
    color: var(--clr-accent-yellow);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}
.action-note {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
}
.mockup-container {
    background: #0a0a0c;
    border: 2px solid var(--clr-accent-yellow);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 25px rgba(255, 193, 0, 0.15);
}
.mockup-header-bar {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mockup-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.mockup-status-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffffff;
    background: rgba(255, 193, 0, 0.15);
    border: 1px solid rgba(255, 193, 0, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.mockup-app-interface {
    padding: 1.4rem;
    background: #f4f4f6;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.user-header-card {
    background: #ffffff;
    padding: 1rem 1.2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-sm);
}
.user-info-text strong {
    display: block;
    font-size: 0.98rem;
    color: #000000;
}
.user-info-text span {
    font-size: 0.78rem;
    color: #71717a;
}
.user-stats-badges {
    display: flex;
    gap: 0.8rem;
}
.u-stat {
    text-align: center;
    font-size: 0.7rem;
    color: #71717a;
}
.u-stat strong {
    display: block;
    font-size: 1.05rem;
    color: #000000;
}
.u-stat.highlight-stat strong {
    color: #000000;
    background: var(--clr-accent-yellow);
    padding: 0 0.4rem;
    border-radius: 4px;
}
.debate-preview-box {
    background: #ffffff;
    padding: 1.4rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border-light);
    box-shadow: var(--shadow-sm);
}
.dp-tag-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
}
.dp-source-pill {
    font-size: 0.7rem;
    font-weight: 700;
    color: #000000;
    background: var(--clr-accent-yellow-light);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
}
.debate-preview-box h5 {
    font-size: 1.05rem;
    margin: 0.4rem 0 0.4rem 0;
    color: #000000;
}
.debate-preview-box p {
    font-size: 0.88rem;
    color: #52525b;
    line-height: 1.5;
    margin-bottom: 1.2rem;
}
.dp-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.real-btn-black {
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 0.6rem 1.2rem;
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.2s ease;
}
.real-btn-black:hover {
    background: var(--clr-accent-yellow);
    color: #000000;
}
.etapas-section {
    background-color: #ffffff;
}
.etapas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.etapa-card {
    background: var(--clr-bg-light);
    padding: 2.2rem 1.8rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border-light);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: all 0.3s ease;
}
.etapa-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--clr-accent-yellow);
}
.etapa-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--clr-accent-yellow);
    margin-bottom: 0.5rem;
}
.etapa-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
}
.etapa-card p {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
}
.footer {
    background-color: var(--clr-navy-900);
    color: #ffffff;
    padding: 5rem 0 2rem 0;
    border-top: 1px solid rgba(255, 193, 0, 0.2);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 4rem;
}
.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 1rem;
}
.footer-desc {
    color: #a1a1aa;
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 440px;
}
.insta-box-footer {
    display: inline-block;
}
.insta-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1.4rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 193, 0, 0.3);
    border-radius: var(--radius-md);
    color: #ffffff;
    transition: all 0.3s ease;
}
.insta-link-btn:hover {
    background: var(--clr-accent-yellow);
    color: #000000;
    border-color: var(--clr-accent-yellow);
}
.insta-link-btn i {
    font-size: 2rem;
    color: var(--clr-accent-yellow);
}
.insta-link-btn:hover i {
    color: #000000;
}
.insta-title {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.insta-handle {
    font-size: 1.05rem;
    font-weight: 800;
}
.footer-contact-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.2rem;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}
.form-title {
    color: #ffffff;
    font-size: 1.35rem;
    margin-bottom: 0.4rem;
}
.form-subtitle {
    color: #a1a1aa;
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.form-group label {
    font-size: 0.85rem;
    color: #e4e4e7;
    font-weight: 500;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--clr-accent-yellow);
    box-shadow: 0 0 0 3px rgba(255, 193, 0, 0.25);
}
.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.95rem 1.8rem;
    background: var(--clr-accent-yellow);
    color: #000000;
    font-weight: 800;
    font-size: 0.98rem;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-submit:hover {
    background: var(--clr-accent-yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 193, 0, 0.4);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    color: #a1a1aa;
}
.social-footer-badge {
    color: var(--clr-accent-yellow);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.social-footer-badge:hover {
    color: #ffffff;
}
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--clr-accent-yellow);
    color: #000000;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    font-weight: 800;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 2000;
}
.toast.show {
    transform: translateY(0);
    opacity: 1;
}
.construction-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.construction-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.construction-modal-card {
    background: #0a0a0c;
    border: 2px solid var(--clr-accent-yellow);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    max-width: 480px;
    width: 100%;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(255, 193, 0, 0.25);
    transform: scale(0.9);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
}
.construction-modal-overlay.active .construction-modal-card {
    transform: scale(1);
}
.modal-close-btn {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}
.modal-close-btn:hover {
    background: var(--clr-accent-yellow);
    color: #000000;
    transform: rotate(90deg);
}
.modal-header-icon {
    width: 72px;
    height: 72px;
    background: var(--clr-accent-yellow);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 1.4rem auto;
    box-shadow: 0 10px 25px rgba(255, 193, 0, 0.4);
}
.modal-tag-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 800;
    background: rgba(255, 193, 0, 0.15);
    color: var(--clr-accent-yellow);
    padding: 0.25rem 0.8rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.8rem;
}
.modal-title {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}
.modal-description {
    color: #a1a1aa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}
.modal-subtext {
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.btn-modal-insta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.95rem 1.6rem;
    background: var(--clr-accent-yellow);
    color: #000000;
    font-weight: 800;
    font-size: 1rem;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 193, 0, 0.35);
}
.btn-modal-insta:hover {
    background: var(--clr-accent-yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 193, 0, 0.5);
}
.btn-modal-close-secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #a1a1aa;
    padding: 0.75rem 1.4rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}
.btn-modal-close-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}
@media (max-width: 1024px) {
    .container {
        width: 90%;
    }
    .hero-container,
    .quem-somos-grid,
    .plataforma-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .hero-visual {
        max-width: 540px;
        margin: 0 auto;
        width: 100%;
    }
    .cards-grid,
    .pillars-grid,
    .etapas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }
    .section-title {
        font-size: 1.6rem;
        text-align: left;
        margin-bottom: 0.6rem;
    }
    .section-subtitle {
        font-size: 0.95rem;
        text-align: left;
        margin-bottom: 1.8rem;
    }
    .section-tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
        margin-bottom: 0.6rem;
    }
    .header {
        padding: 0.75rem 0;
    }
    .logo {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 193, 0, 0.3);
        color: var(--clr-accent-yellow);
        font-size: 1.2rem;
    }
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(10, 10, 12, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 2rem 1.5rem;
        transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        z-index: 999;
        border-top: 1px solid rgba(255, 193, 0, 0.2);
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        width: 100%;
    }
    .nav-link {
        font-size: 1.25rem;
        font-weight: 700;
        color: #ffffff;
        width: 100%;
        display: block;
        padding-bottom: 0.6rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .btn-insta-header {
        padding: 0.4rem 0.7rem;
        font-size: 0.8rem;
    }
    .btn-cta-nav {
        padding: 0.45rem 0.85rem;
        font-size: 0.8rem;
    }
    .hero-section {
        padding: 5.8rem 0 3rem 0;
    }
    .badge-tag {
        font-size: 0.78rem;
        padding: 0.35rem 0.85rem;
        margin-bottom: 0.9rem;
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .hero-title {
        font-size: 1.95rem;
        line-height: 1.2;
        margin-bottom: 0.9rem;
    }
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.55;
        margin-bottom: 1.5rem;
    }
    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
        width: 100%;
        margin-bottom: 2rem;
    }
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }
    .hero-metrics {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.6rem;
        padding-top: 1rem;
    }
    .metric-divider {
        display: none;
    }
    .metric-item {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        background: rgba(255, 255, 255, 0.03);
        padding: 0.6rem 0.9rem;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.08);
    }
    .metric-value {
        font-size: 1.1rem;
    }
    .metric-label {
        font-size: 0.8rem;
    }
    .hero-preview-window {
        border-radius: 16px;
    }
    .window-body {
        padding: 1rem;
    }
    .sim-speaker-card {
        padding: 0.85rem;
        gap: 0.8rem;
        border-radius: 10px;
    }
    .speaker-text {
        font-size: 0.8rem;
    }
    .qs-lead {
        font-size: 1.05rem;
    }
    .qs-body {
        font-size: 0.9rem;
    }
    .qs-stats-row {
        flex-direction: column;
        gap: 0.9rem;
    }
    .qs-feature-box {
        padding: 1.1rem 0.9rem;
        gap: 0.8rem;
        border-radius: 14px;
    }
    .qs-feature-box h4 {
        font-size: 1rem;
    }
    .qs-feature-box p {
        font-size: 0.85rem;
    }
    .quote-card {
        padding: 1.5rem 1.1rem;
        border-radius: 16px;
        margin-bottom: 2rem;
    }
    .quote-text {
        font-size: 1rem;
    }
    .pillar-card,
    .feature-card,
    .etapa-card {
        padding: 1.5rem 1.1rem;
        border-radius: 16px;
    }
    .card-title {
        font-size: 1.2rem;
    }
    .card-description {
        font-size: 0.88rem;
    }
    .card-badge {
        position: static;
        display: inline-block;
        margin-bottom: 0.8rem;
        align-self: flex-start;
    }
    .real-app-frame {
        flex-direction: column;
        border-radius: 14px;
    }
    .app-sidebar-real {
        width: 100%;
        padding: 0.85rem;
        border-right: none;
        border-bottom: 1px solid var(--clr-border-light);
    }
    .app-nav-real {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 0.2rem;
        white-space: nowrap;
        gap: 0.4rem;
    }
    .app-nav-real li {
        font-size: 0.72rem;
        padding: 0.35rem 0.55rem;
    }
    .app-content-real {
        padding: 0.85rem;
    }
    .user-header-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
        padding: 0.85rem;
    }
    .user-stats-badges {
        width: 100%;
        justify-content: space-between;
        padding-top: 0.5rem;
        border-top: 1px solid var(--clr-border-light);
    }
    .footer {
        padding: 3rem 0 1.5rem 0;
    }
    .footer-contact-form {
        padding: 1.4rem 1.1rem;
        border-radius: 16px;
    }
    .form-group input,
    .form-group textarea {
        font-size: 16px; 
        padding: 0.75rem;
    }
    .btn-submit {
        width: 100%;
        padding: 0.85rem;
    }
    .insta-link-btn {
        width: 100%;
        justify-content: center;
    }
    .construction-modal-card {
        padding: 1.8rem 1.2rem;
        border-radius: 20px;
    }
    .modal-header-icon {
        width: 58px;
        height: 58px;
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    .modal-title {
        font-size: 1.28rem;
    }
    .modal-description {
        font-size: 0.88rem;
    }
}
@media (max-width: 480px) {
    .header-actions {
        gap: 0.35rem;
    }
    .btn-insta-header span {
        display: none; 
    }
    .btn-cta-nav span {
        font-size: 0.75rem;
    }
    .hero-title {
        font-size: 1.75rem;
    }
}
