/* Reset e Variáveis */
:root {
    /* Paleta GUIA (Baseada no PDF) */
    --primary: #fc9003;       /* Laranja vibrante */
    --primary-hover: #e68200; /* Laranja um pouco mais escuro para hover */
    --secondary: #fbde95;     /* Creme suave */
    --dark: #2e4365;          /* Azul escuro */
    --dark-hover: #1f2d45;    /* Azul mais escuro para hover */
    --bg-main: #f8f7f4;       /* Fundo geral e header */
    
    /* Tons de apoio */
    --gray-dark: #4a5568;
    --gray: #8E8E93;
    --gray-light: #C7C7CC;
    --gray-lighter: #e2e8f0;
    --white: #FFFFFF;
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(46, 67, 101, 0.08); /* Sombra puxando pro azul da marca */
    --shadow-md: 0 4px 16px rgba(46, 67, 101, 0.12);
    --shadow-lg: 0 8px 32px rgba(46, 67, 101, 0.16);
    
    /* Bordas */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50%;
    
    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--dark);
    background-color: var(--bg-main);
    line-height: 1.6;
}

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

/* Tipografia */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
}

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

#aviso-painel-gestor {
    display: none;
    color: var(--gray-light);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition-normal);
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

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

.btn-outline:hover {
    background-color: rgba(252, 144, 3, 0.1);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

/* Header */
.main-header {
    background-color: var(--bg-main);
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

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

.rocket-icon {
    color: var(--primary);
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

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

.logo-flow {
    color: var(--primary);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition-fast);
}

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

.nav-button {
    background-color: var(--primary);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: var(--radius-md);
}

.nav-button:hover {
    background-color: var(--primary-hover);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--bg-main) 0%, var(--secondary) 100%);
    overflow: hidden;
}

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

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-dark);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-text {
    font-size: 0.9rem;
    color: var(--gray-dark);
    font-weight: 500;
}

/* Dashboard Preview */
.dashboard-preview {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-10deg);
    transition: var(--transition-normal);
}

.dashboard-preview:hover {
    transform: perspective(1000px) rotateY(-5deg);
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-lighter);
}

.preview-tabs {
    display: flex;
    gap: 8px;
}

.tab {
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    background-color: var(--bg-main);
    color: var(--gray-dark);
    cursor: pointer;
}

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

.preview-actions {
    color: var(--primary);
    font-size: 1.25rem;
    cursor: pointer;
}

.kanban-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.kanban-column {
    min-height: 300px;
}

.column-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    margin-bottom: 16px;
    border-bottom: 3px solid;
}

.task-count {
    background-color: var(--secondary);
    color: var(--dark);
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
}

.task-card {
    background-color: var(--bg-main);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 12px;
}

.task-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.tag {
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

.tag.urgent {
    background-color: rgba(252, 144, 3, 0.1);
    color: var(--primary);
}

.tag.onboarding {
    background-color: rgba(46, 67, 101, 0.1);
    color: var(--dark);
}

.task-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
}

.assignee {
    display: flex;
    align-items: center;
    gap: 8px;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
}

.avatar-large {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.deadline {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 600;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 16px;
}

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

.feature-card {
    background-color: var(--bg-main);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.75rem;
    background-color: var(--white);
    color: var(--primary);
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background-color: var(--bg-main);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 24px;
}

.step-line {
    position: absolute;
    top: 30px;
    left: 20%;
    right: 20%;
    height: 4px;
    background-color: var(--secondary);
    z-index: 1;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--white);
}

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

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

.person {
    text-align: center;
}

.person span {
    display: block;
    margin-top: 8px;
    font-weight: 500;
    color: var(--dark);
}

.connection-line {
    position: absolute;
    bottom: -40px;
    left: 20%;
    right: 20%;
    height: 2px;
    background-color: var(--secondary);
}

.project-result {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.team-highlight {
    background-color: rgba(251, 222, 149, 0.3); /* Fundo creme super suave */
    border-left: 4px solid var(--primary);
    padding: 20px;
    margin-top: 30px;
    border-radius: var(--radius-sm);
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.team-highlight i {
    color: var(--primary);
    font-size: 1.5rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #e68200 100%);
    color: var(--white);
}

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

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 16px;
    color: var(--white);
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

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

.cta-footer {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

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

/* Footer */
.main-footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 80px 0 40px;
}

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

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-tagline {
    color: var(--gray-light);
    margin-bottom: 24px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.link-group h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1rem;
}

.link-group a {
    display: block;
    color: var(--gray-light);
    text-decoration: none;
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

.link-group a:hover {
    color: var(--secondary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--gray-light);
    color: var(--gray-light);
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

/* Responsividade Unificada */
@media (max-width: 992px) {
    h1 {
        font-size: 2.75rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .kanban-preview {
        grid-template-columns: 1fr; 
    }
}

@media (max-width: 768px) {
    .main-nav ul {
        display: none;
    }

    #login-gestor {
        display: none;
    }

    #aviso-painel-gestor {
        display: block;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-section {
        padding: 120px 0 60px; 
    }

    .hero-image {
        display: none; 
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 40px;
    }

    .step.aos-init.aos-animate {
        padding: 0 10px;
    }
    
    .step-line {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
