:root {
    /* Color Palette */
    --bg-main: #0a0a0c;
    --bg-secondary: #121216;
    --bg-glass: rgba(30, 30, 35, 0.6);
    --border-glass: rgba(255, 255, 255, 0.08);
    
    --text-primary: #ffffff;
    --text-secondary: #a0a0ab;
    --text-muted: #6e6e77;
    
    --accent-orange: #FF6B00;
    --accent-orange-glow: rgba(255, 107, 0, 0.4);
    --accent-white-glow: rgba(255, 255, 255, 0.15);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing & Layout */
    --container-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Utilities */
h1, h2, h3, h4, .logo-text {
    font-family: var(--font-heading);
    line-height: 1.2;
}

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

/* Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.box-glass {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.visible {
    opacity: 1;
    transform: translate(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Buttons */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B00 0%, #FF8A00 100%);
    color: #fff;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px var(--accent-orange-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.6);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.2rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 24px 0;
    background: linear-gradient(to bottom, rgba(10, 10, 12, 0.9) 0%, rgba(10, 10, 12, 0) 100%);
    backdrop-filter: blur(8px);
}

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

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

.brand-logo {
    height: 144px; /* Altura 3x maior que a original (48px) */
    width: auto;
    object-fit: contain;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.hero-glow-white {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    height: 60vh;
    background: radial-gradient(circle, var(--accent-white-glow) 0%, transparent 60%);
    filter: blur(100px);
    z-index: -1;
    pointer-events: none;
}

.hero-glow-orange {
    position: absolute;
    top: 40%;
    right: 10%;
    width: 40vw;
    height: 40vh;
    background: radial-gradient(circle, var(--accent-orange-glow) 0%, transparent 70%);
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.text-highlight {
    color: var(--accent-orange);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 48px;
}

/* Reusable Section Headers */
.section-badge {
    display: inline-block;
    color: var(--accent-orange);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 24px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
}

/* Stats Section */
.stats-section {
    padding: 60px 0 120px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 48px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border-left: 2px solid var(--accent-orange);
    padding: 40px 30px;
    border-radius: 0 16px 16px 0;
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateX(10px);
}

.stat-icon {
    margin-bottom: 16px;
    color: var(--accent-orange);
}

.stat-icon svg {
    width: 48px;
    height: 48px;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 8px;
    color: var(--accent-orange);
}

.stat-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Problem Section */
.problem-section {
    padding: 120px 0;
    position: relative;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

.problem-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.problem-content {
    flex: 1;
}

.problem-list {
    margin-top: 48px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.problem-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.problem-icon {
    background: rgba(255, 255, 255, 0.05);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    flex-shrink: 0;
    color: var(--accent-orange);
}

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

.problem-text h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.problem-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.problem-graphic {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 500px;
}

/* Abstract Shape Animation mimicking Entlify Cross */
.abstract-shape {
    position: relative;
    width: 300px;
    height: 300px;
}

.shape-part {
    position: absolute;
    width: 100px;
    height: 30px;
    background: linear-gradient(90deg, #FF6B00, rgba(255, 107, 0, 0.2));
    border-radius: 15px;
    animation: pulseGlow 4s infinite alternate;
}

.part-1 { top: 135px; left: 0; transform: rotate(0deg); }
.part-2 { top: 135px; right: 0; transform: rotate(180deg); }
.part-3 { left: 135px; top: 0; transform: rotate(-90deg); }
.part-4 { left: 135px; bottom: 0; transform: rotate(90deg); }

@keyframes pulseGlow {
    0% { filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.5)); transform: scale(1); }
    100% { filter: drop-shadow(0 0 30px rgba(255, 107, 0, 0.8)); transform: scale(1.05); }
}

/* Authority Section */
.authority-section {
    padding: 120px 0;
    background: linear-gradient(to bottom, var(--bg-main), var(--bg-secondary));
    position: relative;
    overflow: hidden;
}

.authority-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.05) 0%, transparent 60%);
    transform: translateY(-50%);
    pointer-events: none;
}

.authority-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.authority-content {
    flex: 1;
}

.authority-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-image-container {
    position: relative;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-orange), #2a1b12);
    padding: 6px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 60px rgba(255, 107, 0, 0.2);
    z-index: 1;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--bg-secondary);
    background-color: var(--bg-main);
}

/* Floating Badge */
.experience-badge {
    position: absolute;
    bottom: 20px;
    left: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 20px;
    background: rgba(30, 30, 35, 0.85);
    border-left: 3px solid var(--accent-orange);
    animation: float 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.exp-number {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--accent-orange);
    line-height: 1;
}

.exp-text {
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.2;
    color: var(--text-primary);
}

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

/* Founder Quote Box */
.founder-quote-box {
    margin-top: 32px;
    padding: 32px;
    position: relative;
    border-left: 2px solid var(--accent-orange);
}

.founder-quote-box::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    font-family: var(--font-heading);
    color: rgba(255, 107, 0, 0.1);
    line-height: 1;
    z-index: 0;
}

.founder-quote {
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.founder-info {
    display: flex;
    flex-direction: column;
}

.founder-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--accent-orange);
}

.founder-role {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Solution Section */
.solution-section {
    padding: 120px 0;
}

.solution-container {
    padding: 60px;
    background-image: radial-gradient(circle at top right, rgba(255, 107, 0, 0.1), transparent 50%);
}

.solution-header {
    text-align: center;
    margin-bottom: 60px;
}
.solution-header .section-subtitle {
    margin: 0 auto 32px;
}

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

.solution-card {
    background: rgba(0, 0, 0, 0.3);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.solution-card:hover {
    border-color: rgba(255, 107, 0, 0.3);
    transform: translateY(-10px);
}

.solution-num {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.solution-card h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.solution-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Methodology Section */
.methodology-section {
    padding: 100px 0;
    background: radial-gradient(circle at left center, rgba(255, 107, 0, 0.05) 0%, transparent 60%);
}

.methodology-section .section-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 80px;
}

.steps-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.step-item {
    flex: 1;
    min-width: 200px;
    position: relative;
    padding: 30px 20px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    text-align: center;
}

.step-icon {
    margin-bottom: 20px;
    color: var(--accent-orange);
}

.step-icon svg {
    width: 48px;
    height: 48px;
}

.step-label {
    display: block;
    color: var(--accent-orange);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.step-item h3 {
    margin-bottom: 12px;
}

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

.step-connector {
    height: 2px;
    flex: 0.5;
    background: linear-gradient(90deg, rgba(255, 107, 0, 0.5), transparent);
}

/* Target Section */
.target-section {
    padding: 120px 0;
    position: relative;
}

.target-glow {
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 60vw;
    height: 40vh;
    background: radial-gradient(circle, var(--accent-orange-glow) 0%, transparent 70%);
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
}

.target-container {
    display: flex;
    gap: 40px;
}

.target-content {
    flex: 2;
    padding: 60px;
}

.check-list {
    list-style: none;
    margin-top: 32px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 500;
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--accent-orange);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 0.9rem;
}

.target-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.investment-card, .result-card {
    padding: 40px;
    height: 100%;
}

.highlight-border {
    position: relative;
}

.highlight-border::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px; bottom: -1px;
    background: linear-gradient(135deg, var(--accent-orange), transparent);
    z-index: -1;
    border-radius: 25px;
}

.investment-price {
    font-size: 3.5rem;
    color: var(--accent-orange);
    margin-bottom: 16px;
}

.investment-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.result-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.result-value {
    font-size: 1.8rem;
    line-height: 1.3;
}

/* CTA Section */
.cta-section {
    padding: 60px 0 120px;
}

.cta-container {
    padding: 80px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    background: linear-gradient(135deg, rgba(30, 30, 35, 0.8) 0%, rgba(10, 10, 12, 0.9) 100%);
    border-top: 2px solid rgba(255, 107, 0, 0.3);
}

.cta-content {
    flex: 1;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.cta-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.cta-limits {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 20px;
    border-radius: 12px;
}

.cta-action {
    flex-shrink: 0;
}

/* Footer */
.footer {
    padding: 60px 0 40px;
    border-top: 1px solid var(--border-glass);
    background: #050505;
}

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

.brand-logo-footer {
    height: 120px; /* Altura 3x maior que a original (40px) */
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(200%); /* Opcional: Efeito monocromático branco para rodapé escuro */
    opacity: 0.8;
    transition: var(--transition);
}

.brand-logo-footer:hover {
    filter: none;
    opacity: 1;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 16px;
}

.footer-links {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .problem-container, .authority-container {
        flex-direction: column;
    }
    
    .target-container {
        flex-direction: column;
    }
    
    .cta-container {
        flex-direction: column;
        text-align: center;
    }
    
    .steps-flow {
        flex-direction: column;
    }
    
    .step-connector {
        width: 2px;
        height: 30px;
        background: linear-gradient(180deg, rgba(255, 107, 0, 0.5), transparent);
    }
}

@media (max-width: 768px) {
    .solution-container {
        padding: 40px 20px;
    }
    
    .target-content {
        padding: 40px 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
}
