:root {
    --primary: #0F4C5C;
    --primary-dark: #0a3540;
    --secondary: #FF6B6B;
    --secondary-dark: #e85a5a;
    --bg-white: #FFFFFF;
    --bg-gray: #F8FAFC;
    --text-main: #0a2e37;
    --text-muted: #54748a;
    --border: #e2e8f0;
    --shadow-sm: 0 2px 8px rgba(15, 76, 92, 0.05);
    --shadow-md: 0 8px 24px rgba(15, 76, 92, 0.08);
    --shadow-lg: 0 20px 50px rgba(15, 76, 92, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-gray);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    color: var(--primary);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.02em;
}

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


/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-family: inherit;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    background: none;
}

.btn-primary {
    background-color: var(--secondary);
    color: white;
    box-shadow: 0 4px 14px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-white {
    background-color: white;
    color: var(--primary);
}

.btn-outline-white {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
}


/* HEADER */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 8px 0;
    transition: all 0.3s ease;
    background: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
}

header.scrolled {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    background: rgba(248, 250, 252, 0.95);
}

header.scrolled .logo-img {
    height: 64px;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
    text-decoration: none;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.logo-img {
    height: 108px;
    width: auto;
    max-width: 420px;
    object-fit: contain;
    display: block;
    transition: height 0.3s ease;
}

.footer-logo .logo-img {
    height: 56px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

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


/* HERO SECTION */

.hero {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(circle, rgba(15, 76, 92, 0.05) 0%, rgba(248, 250, 252, 0) 70%);
    z-index: -1;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

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


/* DASHBOARD MOCKUP */

.dashboard-mockup {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
}

.mockup-topbar {
    background: var(--bg-gray);
    padding: 12px 20px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid var(--border);
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
}

.mockup-dot:nth-child(1) {
    background: #FF6B6B;
}

.mockup-dot:nth-child(2) {
    background: #FCD34D;
}

.mockup-dot:nth-child(3) {
    background: #10B981;
}

.mockup-content {
    display: grid;
    grid-template-columns: 220px 1fr;
    height: 500px;
}

.mockup-sidebar {
    background: var(--primary);
    padding: 24px 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.mockup-sidebar-item {
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mockup-sidebar-item.active {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.mockup-main {
    padding: 24px;
    text-align: left;
}

.mockup-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.mockup-stat {
    background: var(--bg-gray);
    padding: 16px;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.mockup-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.mockup-stat-value {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.2rem;
}

.mockup-charts {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    height: 300px;
}

.mockup-chart {
    background: var(--bg-gray);
    border-radius: 8px;
    border: 1px solid var(--border);
    padding: 16px;
    position: relative;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 200px;
    margin-top: 16px;
}

.chart-bar {
    width: 100%;
    height: 0;
    background: var(--primary);
    opacity: 0.2;
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: height 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active .chart-bar {
    height: var(--bar-h);
}

.chart-bar:nth-child(1) { transition-delay: 0.05s; }
.chart-bar:nth-child(2) { transition-delay: 0.1s; }
.chart-bar:nth-child(3) { transition-delay: 0.15s; }
.chart-bar:nth-child(4) { transition-delay: 0.2s; }
.chart-bar:nth-child(5) { transition-delay: 0.25s; }
.chart-bar:nth-child(6) { transition-delay: 0.3s; }

.chart-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: var(--secondary);
    border-radius: 4px 4px 0 0;
}


/* SECTIONS GENERIC */

section {
    padding: 100px 0;
}

.bg-gray {
    background-color: var(--bg-gray);
}

.bg-white {
    background-color: var(--bg-white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.tag {
    display: inline-block;
    background: rgba(15, 76, 92, 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


/* PROBLEM SECTION */

.problems {
    background: white;
}

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

.problem-card {
    background: var(--bg-gray);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border);
    transition: transform 0.3s;
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
}

.problem-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 107, 107, 0.1);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 16px;
}

.arrow-down {
    text-align: center;
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 32px;
}

.solution-banner {
    background: var(--primary);
    color: white;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.solution-banner span {
    color: var(--secondary);
}


/* FEATURES SECTION */

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

.feature-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-gray);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 8px;
}

.feature-list i {
    color: var(--secondary);
    font-size: 0.8rem;
}


/* SECURITY SECTION */

.security {
    background: var(--primary-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.security::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48cGF0dGVybiBpZD0iZ3JpZCIgd2lkdGg9IjQwIiBoZWlnaHQ9IjQwIiBwYXR0ZXJuVW5pdHM9InVzZXJTcGFjZU9uVXNlIj48cGF0aCBkPSJNIDQwIDAgTCAwIDAgMCA0MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJyZ2JhKDI1NSwyNTUsMjU1LDAuMDUpIiBzdHJva2Utd2lkdGg9IjEiLz48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JpZCkiLz48L3N2Zz4=');
    z-index: 0;
}

.security .section-header h2,
.security .section-header p {
    color: white;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 1;
}

.security-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.security-card i {
    color: var(--secondary);
    font-size: 1.5rem;
}


/* LIGHT CARD GRID (Avarias / Ocorrências) */

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

.light-card {
    background: var(--bg-gray);
    border: 1px solid var(--border);
    color: var(--text-main);
    padding: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 500;
}

.light-card i {
    color: var(--secondary);
    font-size: 1.5rem;
}


/* COMPATIBILITY & TIMELINE */

.compatibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    text-align: center;
}

.compat-item {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.compat-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
}


/* FINAL CTA */

.final-cta {
    background: var(--primary);
    text-align: center;
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.final-cta h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}


/* FOOTER */

footer {
    background: #051920;
    color: rgba(255, 255, 255, 0.6);
    padding: 60px 0 30px;
}

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

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

.footer-logo {
    color: white;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
}

.footer-logo span {
    color: var(--secondary);
}

.footer-col h4 {
    color: white;
    margin-bottom: 16px;
    font-size: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
}


/* ABOUT / NOSSA HISTÓRIA */

.story-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 40px;
}

.story-lead {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.story-text p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.story-text p:last-child {
    margin-bottom: 0;
}

.story-text strong {
    color: var(--primary);
}

.story-problems {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    align-content: start;
}

.story-problem-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    box-shadow: var(--shadow-sm);
}

.story-problem-item i {
    color: var(--secondary);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.story-highlight {
    max-width: 800px;
    margin: 0 auto;
    background: var(--primary);
    color: white;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    position: relative;
}

.story-highlight i {
    color: var(--secondary);
    font-size: 1.5rem;
    margin-bottom: 16px;
    display: inline-block;
}

.story-highlight p {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.5;
}


/* NOSSO PROPÓSITO */

.purpose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 32px;
}

.purpose-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.purpose-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.purpose-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-gray);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.purpose-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.purpose-card p {
    color: var(--text-muted);
}

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

.value-card {
    background: var(--bg-gray);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    transition: transform 0.3s, border-color 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
}

.value-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 107, 107, 0.1);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.value-card h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}


/* FUNDADORES */

.founders-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-bottom: 56px;
}

.founders-grid::before {
    content: '';
    position: absolute;
    top: 64px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border) 15%, var(--border) 85%, transparent);
    z-index: 0;
}

.founder-card {
    position: relative;
    z-index: 1;
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.founder-avatar {
    width: 96px;
    height: 96px;
    margin: 0 auto 20px;
    border-radius: 22px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, border-radius 0.3s ease;
    position: relative;
    overflow: hidden;
}

.founder-avatar::after {
    content: '';
    position: absolute;
    inset: -6px;
    border: 2px solid var(--border);
    border-radius: 26px;
    z-index: -1;
}

.founder-card:hover .founder-avatar {
    transform: scale(1.06) rotate(-3deg);
    border-radius: 30%;
}

.founder-initial {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
}

.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 22%;
    display: block;
}

.founder-name {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 4px;
    transition: color 0.2s ease;
}

.founder-card:hover .founder-name {
    color: var(--secondary);
}

.founder-role {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.founder-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 100px;
    border: 2px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.founder-card:hover .founder-linkedin {
    background: var(--primary);
    color: white;
}

.founder-linkedin-pending {
    border-color: var(--border);
    color: var(--text-muted);
    cursor: default;
}

.founder-card:hover .founder-linkedin-pending {
    background: none;
    color: var(--text-muted);
}

.founder-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.founder-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--secondary);
    color: white;
    text-decoration: none;
    font-size: 1.05rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.founder-whatsapp:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
}


/* MODAL DE CONTATO */

.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.contact-modal.open {
    visibility: visible;
    opacity: 1;
}

.contact-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 46, 55, 0.55);
    backdrop-filter: blur(2px);
}

.contact-modal-card {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 32px;
    max-width: 420px;
    width: 100%;
    box-shadow: var(--shadow-lg);
    transform: translateY(16px) scale(0.97);
    transition: transform 0.25s ease;
}

.contact-modal.open .contact-modal-card {
    transform: translateY(0) scale(1);
}

.contact-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: var(--bg-gray);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.contact-modal-close:hover {
    background: var(--border);
}

.contact-modal-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    padding-right: 24px;
}

.contact-modal-card > p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.contact-modal-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.2s ease;
}

.contact-option:hover {
    border-color: var(--secondary);
    background: var(--bg-gray);
    transform: translateY(-2px);
}

.contact-option-avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.contact-option-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 22%;
    display: block;
}

.contact-option-avatar .founder-initial {
    width: 100%;
    height: 100%;
    border-radius: 0;
    font-size: 1.1rem;
}

.contact-option-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.contact-option-info strong {
    color: var(--primary);
    font-size: 0.95rem;
}

.contact-option-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.contact-option > i.fa-whatsapp {
    color: var(--secondary);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.closing-quote {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.closing-quote p {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.4;
}


/* MOCKUP CAPTION */

.mockup-caption {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 12px;
}


/* MODULE STRIP */

.module-strip {
    padding: 32px 0;
    background: white;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.module-strip-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.module-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-gray);
    border: 1px solid var(--border);
    color: var(--primary);
    padding: 10px 18px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
}

.module-chip i {
    color: var(--secondary);
}


/* STEPS / COMO FUNCIONA */

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

.steps-grid::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border) 15%, var(--border) 85%, transparent);
    z-index: 0;
}

.step-card {
    position: relative;
    z-index: 1;
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--secondary);
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}


/* DEEP DIVE SECTIONS */

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

.deepdive-grid.reverse .deepdive-text {
    order: 2;
}

.deepdive-grid.reverse .deepdive-visual {
    order: 1;
}

.deepdive-text p {
    color: var(--text-muted);
    margin: 16px 0 24px;
}

.mini-mockup {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-md);
}

.mini-mockup-title {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    font-size: 1rem;
}

.mini-mockup-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-main);
}

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

.mini-mockup-highlight {
    font-weight: 700;
    color: var(--primary);
}

.mini-badge {
    background: var(--bg-gray);
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    white-space: nowrap;
}

.mini-badge-warn {
    background: rgba(255, 107, 107, 0.12);
    color: var(--secondary-dark);
}

.mini-badge-ok {
    background: rgba(15, 76, 92, 0.1);
    color: var(--primary);
}

.mini-progress {
    height: 8px;
    background: var(--bg-gray);
    border-radius: 100px;
    overflow: hidden;
    margin: 8px 0;
}

.mini-progress-bar {
    height: 100%;
    width: 0;
    background: var(--secondary);
    border-radius: 100px;
    transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.reveal.active .mini-progress-bar {
    width: var(--bar-w);
}


/* THREE INDICATORS */

.indicators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.indicator-card {
    background: var(--bg-gray);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.indicator-letter {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.indicator-card p {
    color: var(--text-muted);
}


/* FLOW DIAGRAM (Beneficiamento / Requisições) */

.flow-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.flow-step {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.flow-step-final {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.flow-arrow {
    color: var(--secondary);
    font-size: 1.1rem;
}

.flow-footnote {
    text-align: center;
    color: var(--text-muted);
    margin-top: 24px;
}


/* RELATÓRIOS - EVOLVING NOTE */

.evolving-note {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    background: rgba(15, 76, 92, 0.06);
    border: 1px solid rgba(15, 76, 92, 0.15);
    color: var(--primary);
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.evolving-note i {
    color: var(--secondary);
}


/* PARA QUEM É - SEGMENTS */

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

.segment-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 16px;
    text-align: center;
    font-weight: 600;
    color: var(--primary);
    transition: transform 0.3s, border-color 0.3s;
}

.segment-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
}

.segment-emoji {
    display: block;
    font-size: 2rem;
    margin-bottom: 12px;
}


/* DIFFERENTIALS - CHIPS */

.diff-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.diff-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-gray);
    border: 1px solid var(--border);
    color: var(--text-main);
    padding: 10px 18px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.85rem;
}

.diff-chip i {
    color: var(--secondary);
}


/* FINAL CTA TEXT */

.final-cta-text {
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: -16px auto 32px;
    font-size: 1.1rem;
}


/* ANIMATIONS */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* RESPONSIVE NAV */

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    padding: 4px 8px;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    .nav-content {
        position: relative;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        background: var(--bg-white);
        box-shadow: var(--shadow-md);
        border-radius: 12px;
        padding: 16px 20px;
        gap: 12px;
        border: 1px solid var(--border);
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links li {
        width: 100%;
    }
    .nav-links a {
        display: block;
        width: 100%;
        padding: 8px 0;
    }
    .nav-links li .btn {
        width: 100%;
    }
    .hero {
        padding: 120px 0 60px;
    }
    .mockup-content {
        grid-template-columns: 1fr;
        height: auto;
    }
    .mockup-sidebar {
        display: none;
    }
    .mockup-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .mockup-charts {
        grid-template-columns: 1fr;
        height: auto;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .security-grid,
    .light-grid {
        grid-template-columns: 1fr;
    }
    .compatibility-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .story-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .story-problems {
        grid-template-columns: repeat(2, 1fr);
    }
    .purpose-grid {
        grid-template-columns: 1fr;
    }
    .founders-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
    }
    .founders-grid::before {
        display: none;
    }
    .deepdive-grid,
    .deepdive-grid.reverse {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .deepdive-grid.reverse .deepdive-text,
    .deepdive-grid.reverse .deepdive-visual {
        order: initial;
    }
    .steps-grid::before {
        display: none;
    }
    .flow-row {
        flex-direction: column;
    }
    .flow-arrow {
        transform: rotate(90deg);
    }
    .logo-img {
        height: 72px;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    section {
        padding: 64px 0;
    }
    .hero {
        padding: 100px 0 40px;
    }
    .mockup-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .mockup-stat {
        padding: 10px;
    }
    .btn {
        padding: 14px 22px;
        font-size: 0.9rem;
    }
    .final-cta {
        padding: 80px 0;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .story-problems {
        grid-template-columns: 1fr;
    }
    .story-highlight {
        padding: 28px 24px;
    }
    .closing-quote p {
        font-size: 1.2rem;
    }
    .module-strip-inner {
        gap: 8px;
    }
    .module-chip {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    .segments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mini-mockup {
        padding: 18px;
    }
}