/* ========================================
   DESIGN SYSTEM - DARK THEME
   ======================================== */

:root {
    --color-dark-bg: #0A0E27;
    --color-dark-card: #162044;
    --color-dark-blue: #1a2744;
    --color-gold: #FFB61F;
    --color-gold-dark: #FF8C00;
    --color-light-blue: #4FC3F7;
    --color-white: #FFFFFF;
    --color-gray-light: #E0E0E0;
    --color-gray: #9E9E9E;
    --color-green: #10B981;
    
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ========================================
   RESET & BASE
   ======================================== */

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

html {
    scroll-behavior: smooth;
}

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

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

/* ========================================
   HERO SECTION - MODERN
   ======================================== */

.hero-modern {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0A0E27 0%, #0d1233 50%, #0A0E27 100%);
}

.hero-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
}

.hero-person-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 30%, rgba(0,0,0,0.8) 50%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 30%, rgba(0,0,0,0.8) 50%, rgba(0,0,0,0) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(10, 14, 39, 1) 0%, rgba(10, 14, 39, 0.9) 30%, rgba(10, 14, 39, 0.3) 60%, rgba(10, 14, 39, 0.1) 100%);
    z-index: 2;
}

/* Floating Icons with Glow */
.floating-icons-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.floating-icon-modern {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(22, 32, 68, 0.8);
    border: 2px solid rgba(79, 195, 247, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.floating-icon-modern svg {
    width: 28px;
    height: 28px;
    color: var(--color-light-blue);
}

.floating-icon-modern .icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 195, 247, 0.4) 0%, transparent 70%);
    filter: blur(15px);
    z-index: -1;
}

.icon-people {
    top: 15%;
    right: 25%;
    animation-delay: 0s;
}

.icon-building {
    top: 25%;
    right: 8%;
    animation-delay: 1s;
}

.icon-dollar {
    top: 50%;
    right: 5%;
    animation-delay: 2s;
}

.icon-chart {
    top: 70%;
    right: 15%;
    animation-delay: 3s;
}

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

/* Decorative Lines */
.decorative-lines {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 40%;
    z-index: 2;
    opacity: 0.5;
    pointer-events: none;
}

.line-svg {
    width: 100%;
    height: 100%;
}

/* Hero Content */
.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-content-modern {
    max-width: 550px;
    padding: 100px 0;
}

.hero-title-modern {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    font-style: italic;
}

.title-white {
    color: var(--color-white);
}

.title-gold {
    color: var(--color-gold);
}

.hero-description-modern {
    font-size: 16px;
    color: var(--color-gray-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.hero-subtitle-modern {
    font-size: 15px;
    color: var(--color-gray);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-subtitle-modern strong {
    color: var(--color-gold);
    font-weight: 700;
}

.btn-apply-modern {
    background: var(--color-gold);
    color: var(--color-dark-bg);
    border: none;
    padding: 18px 40px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(255, 182, 31, 0.4);
}

.btn-apply-modern:hover {
    background: var(--color-gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 182, 31, 0.6);
}

/* ========================================
   PROBLEM SECTION
   ======================================== */

.problem-section {
    padding: 80px 0;
    background: var(--color-dark-bg);
    position: relative;
}

.problem-card {
    background: linear-gradient(135deg, rgba(22, 32, 68, 0.8), rgba(22, 32, 68, 0.4));
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(79, 195, 247, 0.2);
    backdrop-filter: blur(10px);
}

.problem-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 182, 31, 0.15);
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 182, 31, 0.3);
}

.problem-label-icon {
    color: var(--color-gold);
    font-size: 14px;
}

.problem-label-text {
    color: var(--color-gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.problem-card h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.problem-card p {
    font-size: 16px;
    color: var(--color-gray-light);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.problem-card p strong {
    color: var(--color-gold);
}

.highlight-gold {
    color: var(--color-gold);
}

/* ========================================
   BENEFITS SECTION
   ======================================== */

.benefits-section {
    padding: 80px 0;
    background: var(--color-dark-bg);
}

.section-header {
    margin-bottom: 50px;
}

.section-bar {
    padding: 20px 0;
    text-align: center;
}

.gold-bar {
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-dark));
    border-radius: 8px;
}

.gold-bar h2 {
    color: var(--color-dark-bg);
    font-size: 24px;
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.benefit-card {
    background: var(--color-dark-card);
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid rgba(79, 195, 247, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(79, 195, 247, 0.3);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefit-card p {
    font-size: 14px;
    color: var(--color-gray-light);
    line-height: 1.6;
}

/* ========================================
   UNIQUE SECTION
   ======================================== */

.unique-section {
    padding: 80px 0;
    background: var(--color-dark-bg);
}

.unique-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.unique-left h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.unique-subtitle {
    font-size: 18px;
    color: var(--color-gray-light);
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(79, 195, 247, 0.2);
}

.unique-subtitle strong {
    color: var(--color-gold);
}

.unique-description {
    font-size: 14px;
    color: var(--color-gray);
    margin-bottom: 25px;
    line-height: 1.7;
}

.unique-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.unique-list li {
    background: rgba(22, 32, 68, 0.6);
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(79, 195, 247, 0.1);
}

.check-icon {
    color: var(--color-green);
    font-weight: bold;
    font-size: 16px;
}

/* Chart */
.chart-container {
    position: relative;
    height: 250px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 15px;
    padding: 20px;
}

.chart-line-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.growth-line {
    width: 100%;
    height: 100%;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    height: 100%;
    z-index: 1;
}

.bar {
    width: 50px;
    background: linear-gradient(180deg, var(--color-gold), var(--color-gold-dark));
    border-radius: 4px 4px 0 0;
    transition: height 0.5s ease;
}

/* ========================================
   LEADERS SECTION
   ======================================== */

.leaders-section {
    padding: 80px 0;
    background: var(--color-dark-bg);
}

.leaders-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 182, 31, 0.15);
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 182, 31, 0.3);
    margin-left: 50%;
    transform: translateX(-50%);
}

.leaders-label-icon {
    color: var(--color-green);
    font-size: 14px;
}

.leaders-label-text {
    color: var(--color-gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.leaders-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
}

.leaders-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.leader-card {
    background: linear-gradient(135deg, rgba(22, 32, 68, 0.8), rgba(22, 32, 68, 0.4));
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(79, 195, 247, 0.15);
}

.leader-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.leader-card-jorge .leader-content {
    flex-direction: row;
}

.leader-card-fabio .leader-content {
    flex-direction: row;
}

.leader-text {
    flex: 1;
}

.leader-text h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-gold);
}

.leader-card p {
    font-size: 14px;
    color: var(--color-gray-light);
    line-height: 1.8;
}

.leader-image-wrapper {
    position: relative;
    flex-shrink: 0;
}

.leader-image {
    width: 180px;
    height: 180px;
    object-fit: cover;
    object-position: center top;
    border-radius: 12px;
    display: block;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.leader-card-jorge .leader-image-wrapper {
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.leader-card-jorge .leader-image {
    width: 180px;
    height: 180px;
    object-fit: cover;
    object-position: top center;
    border-radius: 12px;
}

.leader-card-fabio .leader-image-wrapper {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.leader-card-fabio .leader-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    object-position: center top;
    border-radius: 12px;
}

.leader-avatar-placeholder {
    width: 180px;
    height: 180px;
    background: var(--color-dark-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--color-gray);
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */

.how-it-works-section {
    padding: 80px 0;
    background: var(--color-dark-bg);
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.step-item {
    background: var(--color-dark-card);
    padding: 25px 35px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(79, 195, 247, 0.1);
}

.step-item:hover {
    transform: translateX(10px);
    border-color: rgba(79, 195, 247, 0.3);
}

.step-arrow {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
    flex-shrink: 0;
}

.step-arrow svg {
    width: 24px;
    height: 24px;
}

.step-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.step-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
}

.step-content p {
    font-size: 14px;
    color: var(--color-gray);
    text-align: right;
}

/* ========================================
   APPLY SECTION
   ======================================== */

.apply-section {
    padding: 100px 0;
    background: var(--color-dark-bg);
}

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

.apply-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
}

.apply-content p {
    font-size: 16px;
    color: var(--color-gray-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.btn-apply-large {
    background: var(--color-gold);
    color: var(--color-dark-bg);
    border: none;
    padding: 20px 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(255, 182, 31, 0.4);
}

.btn-apply-large:hover {
    background: var(--color-gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 182, 31, 0.6);
}

.apply-subtitle {
    margin-top: 25px;
}

.apply-link {
    color: var(--color-gray);
    text-decoration: none;
    font-size: 14px;
    border: 1px solid var(--color-gray);
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
}

.apply-link:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    padding: 40px 0;
    background: rgba(10, 14, 39, 0.9);
    border-top: 1px solid rgba(79, 195, 247, 0.1);
    text-align: center;
}

.footer p {
    color: var(--color-gray);
    font-size: 14px;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 992px) {
    .hero-bg-image {
        width: 100%;
        opacity: 0.4;
    }
    
    .hero-person-bg {
        mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
        -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    }
    
    .hero-overlay {
        background: linear-gradient(180deg, rgba(10, 14, 39, 0.7) 0%, rgba(10, 14, 39, 1) 100%);
    }
    
    .floating-icons-container {
        width: 100%;
    }
    
    .unique-content {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .leader-content {
        flex-direction: column !important;
        text-align: center;
    }
    
    .step-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .step-content p {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .problem-card {
        padding: 40px 25px;
    }
    
    .problem-card h2 {
        font-size: 24px;
    }
    
    .unique-left h2 {
        font-size: 28px;
    }
    
    .leaders-title {
        font-size: 28px;
    }
    
    .apply-content h2 {
        font-size: 32px;
    }
    
    .btn-apply-large {
        padding: 16px 30px;
        font-size: 14px;
    }
}

/* ========================================
   ACESSIBILIDADE - ESTADOS DE FOCUS PARA TECLADO
   ======================================== */

.btn-apply-modern:focus,
.btn-apply-large:focus,
.apply-link:focus {
    outline: 3px solid var(--color-gold);
    outline-offset: 2px;
}

/* Para navegação por teclado */
*:focus-visible {
    outline: 2px solid var(--color-light-blue);
    outline-offset: 2px;
}

/* ========================================
   ACESSIBILIDADE - PREFERS REDUCED MOTION
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
