@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --bg-color: #0a0b10;
    --card-bg: rgba(23, 25, 35, 0.7);
    --primary: #f97316;
    --primary-hover: #ea580c;
    --secondary: #3b82f6;
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --danger: #ef4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

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

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 120px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    background: rgba(10, 11, 16, 0.6);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
}

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

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

.logo img {
    height: 42px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
}

.brand span {
    color: var(--primary);
}

.subtitle {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 10px 20px -5px rgba(249, 115, 22, 0.4);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(249, 115, 22, 0.5);
}

.btn-outline {
    border: 1.5px solid rgba(255, 255, 255, 0.3); /* Borda mais visível */
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
}

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

.btn-block {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    min-height: 95vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 150px;
    background: linear-gradient(rgba(10, 11, 16, 0.8), rgba(10, 11, 16, 0.7)), 
                url('assets/img/Reuniao2.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.cta-group {
    display: flex;
    gap: 1rem;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5);
}

/* Problem/Feature Section */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
}

.section-header p {
    font-size: 1.35rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--card-bg);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    background: rgba(23, 25, 35, 0.9);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--primary);
    font-size: 1.5rem;
}

/* Impact Box com efeito de reflexo */
.impact-box {
    margin-top: 4rem;
    text-align: center;
    padding: 3.5rem;
    border-radius: 24px;
    position: relative;
    background: var(--card-bg);
    
    /* Border Gradient Effect (Reflexo no contorno) */
    border: 1px solid transparent;
    background-image: linear-gradient(var(--card-bg), var(--card-bg)), 
                      linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(249, 115, 22, 0.2) 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
                inset 0 0 20px rgba(249, 115, 22, 0.05);
    transition: transform 0.3s ease;
}

.impact-box:hover {
    transform: scale(1.01);
}

.impact-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 1px; /* Espessura do contorno */
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.impact-box h2 {
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.impact-box p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-muted);
}

.impact-box strong {
    color: #fff;
}

/* Hidden Loss Lists */
.check-list, .success-list {
    list-style: none;
    margin-top: 2rem;
}

.check-list li, .success-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.check-list i { color: var(--danger); }
.success-list i { color: #10b981; }

/* How It Works (Steps) */
.how-it-works {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.step {
    position: relative;
    padding: 2rem;
    background: var(--glass-bg);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.step-num {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Form Section */
.cta-final {
    background: linear-gradient(rgba(10, 11, 16, 0.9), rgba(10, 11, 16, 0.9)), url('assets/img/hero.png');
    background-size: cover;
    background-attachment: fixed;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 4rem;
    border-radius: 32px;
    position: relative;
    
    /* Border Gradient Effect (Reflexo no contorno) */
    border: 1px solid transparent;
    background-image: linear-gradient(var(--card-bg), var(--card-bg)), 
                      linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(249, 115, 22, 0.2) 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    
    backdrop-filter: blur(20px);
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8);
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 32px;
    padding: 1px;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.diagnostic-form .form-group {
    margin-bottom: 1.5rem;
}

.diagnostic-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.diagnostic-form input, 
.diagnostic-form select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.diagnostic-form input:focus, 
.diagnostic-form select:focus {
    border-color: var(--primary);
}

.diagnostic-form select option {
    background-color: #1a1c23; /* Fundo escuro sólido para as opções */
    color: #fff;
    padding: 10px;
}

/* Mockup */
.mockup-container {
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.8);
}

.mockup-container img {
    width: 100%;
    display: block;
}

/* Footer */
footer {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-muted);
}

/* Responsiveness Improvements */
@media (max-width: 1024px) {
    .grid-2, .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .hero {
        padding-top: 100px;
        min-height: auto;
    }
    .cta-group {
        justify-content: center;
        flex-wrap: wrap;
    }
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .how-it-works {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .feature-grid, .how-it-works {
        grid-template-columns: 1fr;
    }
    .form-container {
        padding: 2rem;
    }
    .impact-box {
        padding: 2.5rem 1.5rem;
    }
    .impact-box h2 {
        font-size: 1.8rem;
    }
    .impact-box p {
        font-size: 1.1rem;
    }
    .feature-card {
        padding: 2rem 1.5rem;
    }
    nav .btn {
        display: none; /* Hide nav button on mobile to save space */
    }
    .logo img {
        height: 36px;
    }
    .brand {
        font-size: 1.2rem;
    }
    .subtitle {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    .logo {
        gap: 0.5rem;
    }
    .logo img {
        height: 32px;
    }
    .brand {
        font-size: 1.1rem;
    }
    .subtitle {
        font-size: 0.65rem;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    .impact-box {
        padding: 2rem 1rem;
    }
    .impact-box h2 {
        font-size: 1.5rem;
    }
    .impact-box p {
        font-size: 1rem;
    }
    .btn {
        width: 100%;
    }
}

@media (max-width: 360px) {
    .brand {
        font-size: 1rem;
    }
    .logo {
        gap: 0.4rem;
    }
}
