/* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fontes personalizadas da ReportLog - Fallback inteligente */
@font-face {
    font-family: 'Articulat CF';
    src: url('Tipografia/Fontspring-DEMO-articulatcf-regular-BF64a38d8b1d671.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Articulat CF';
    src: url('Tipografia/Fontspring-DEMO-articulatcf-medium-BF64a38d8b06b0b.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Articulat CF';
    src: url('Tipografia/Fontspring-DEMO-articulatcf-bold-BF64a89ce81e.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Articulat CF';
    src: url('Tipografia/Fontspring-DEMO-articulatcf-light-BF64a38d8b23c4f.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}



:root {
    /* Cores oficiais da ReportLog - Aprimoradas */
    --reportlog-blue: #0066ff;
    --reportlog-blue-dark: #0052cc;
    --reportlog-blue-light: #3385ff;
    --reportlog-blue-lighter: #66a3ff;
    
    /* Cores do tema escuro baseadas na paleta oficial */
    --bg-primary: #0a0f1a;
    --bg-secondary: #111827;
    --bg-tertiary: #1f2937;
    --bg-card: #1f2937;
    --bg-overlay: rgba(10, 15, 26, 0.9);
    
    /* Cores de texto */
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --text-inverse: #0a0f1a;
    
    /* Cores de destaque baseadas na ReportLog */
    --accent-primary: var(--reportlog-blue);
    --accent-secondary: var(--reportlog-blue-dark);
    --accent-success: #00e676;
    --accent-warning: #ffc107;
    --accent-danger: #ff5252;
    
    /* Cores de borda */
    --border-primary: #374151;
    --border-secondary: #1f2937;
    
    /* Sombras - Aprimoradas com azul vibrante */
    --shadow-sm: 0 1px 3px rgba(0, 102, 255, 0.15), 0 1px 2px rgba(0, 102, 255, 0.25);
    --shadow-md: 0 4px 6px rgba(0, 102, 255, 0.2), 0 1px 3px rgba(0, 102, 255, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 102, 255, 0.25), 0 4px 6px rgba(0, 102, 255, 0.15);
    --shadow-xl: 0 20px 25px rgba(0, 102, 255, 0.3), 0 10px 10px rgba(0, 102, 255, 0.2);
    
    /* Transições */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', 'Noto Sans', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header e Navegação */
.header {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    border-bottom: 1px solid var(--border-primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

/* Hero Tagline - Linha de destaque centralizada */
.hero-tagline {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    border-bottom: 1px solid var(--border-secondary);
}

.hero-tagline p {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--reportlog-blue-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.hero-tagline p::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--reportlog-blue) 0%, var(--reportlog-blue-light) 100%);
    border-radius: 2px;
    box-shadow: var(--shadow-sm);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.nav-logo {
    height: 20px;
    width: auto;
    transition: transform var(--transition-fast);
}

.nav-brand:hover .nav-logo {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-primary);
    transition: width var(--transition-fast);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

/* Botões */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--reportlog-blue) 0%, var(--reportlog-blue-light) 50%, var(--reportlog-blue-lighter) 100%);
    color: var(--text-inverse);
    border: 1px solid var(--reportlog-blue);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--reportlog-blue-light) 0%, var(--reportlog-blue) 50%, var(--reportlog-blue-dark) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--reportlog-blue-lighter);
}

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

.btn-secondary:hover {
    background-color: var(--bg-tertiary);
    border-color: var(--accent-primary);
}

.btn-outline {
    background-color: transparent;
    color: var(--reportlog-blue);
    border: 1px solid var(--reportlog-blue);
    transition: all var(--transition-fast);
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--reportlog-blue) 0%, var(--reportlog-blue-light) 50%, var(--reportlog-blue-lighter) 100%);
    color: var(--text-inverse);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Garante que os botões btn-outline mantenham o tamanho em todos os estados */
.btn-outline,
.btn-outline:hover,
.btn-outline:focus,
.btn-outline:active,
.btn-outline:visited {
    padding: 0.75rem 1.5rem !important;
    font-size: 0.9rem !important;
    min-height: auto !important;
    height: auto !important;
    width: auto !important;
    max-width: none !important;
    line-height: 1.5 !important;
    border-radius: 0.5rem !important;
    box-sizing: border-box !important;
    display: inline-block !important;
    vertical-align: middle !important;
    text-align: center !important;
    white-space: nowrap !important;
    user-select: none !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: all 0.15s ease-in-out !important;
}

.btn-large {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    min-height: auto;
    height: auto;
    width: auto;
    max-width: none;
}

/* Garante que o botão mantenha o tamanho mesmo quando desabilitado */
.btn-large:disabled,
.btn-large.disabled {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    min-height: auto;
    height: auto;
    width: auto;
    max-width: none;
}

/* Garante que o botão mantenha o tamanho durante o loading */
.btn-large i {
    margin-right: 0.5rem;
    font-size: 1rem;
}

/* Força o botão a manter o tamanho em todos os estados */
.btn-large,
.btn-large:disabled,
.btn-large.disabled,
.btn-large:focus,
.btn-large:hover,
.btn-large:active {
    box-sizing: border-box;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    white-space: nowrap;
    user-select: none;
    border: 1px solid transparent;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
}

/* Garante que todos os botões btn-large mantenham o tamanho */
.btn.btn-large,
.btn-primary.btn-large,
.btn-secondary.btn-large,
.btn-outline.btn-large {
    padding: 0.875rem 1.75rem !important;
    font-size: 1rem !important;
    min-height: auto !important;
    height: auto !important;
    width: auto !important;
    max-width: none !important;
    line-height: 1.5 !important;
    border-radius: 0.5rem !important;
}

/* Garante que os botões btn-large mantenham o tamanho em todos os estados */
.btn.btn-large:hover,
.btn.btn-large:focus,
.btn.btn-large:active,
.btn.btn-large:visited,
.btn-primary.btn-large:hover,
.btn-primary.btn-large:focus,
.btn-primary.btn-large:active,
.btn-primary.btn-large:visited,
.btn-secondary.btn-large:hover,
.btn-secondary.btn-large:focus,
.btn-secondary.btn-large:active,
.btn-secondary.btn-large:visited {
    padding: 0.875rem 1.75rem !important;
    font-size: 1rem !important;
    min-height: auto !important;
    height: auto !important;
    width: auto !important;
    max-width: none !important;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 4rem 2rem 6rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 80vh;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-logo {
    text-align: center;
    margin-bottom: 1rem;
}

.hero-logo-img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform var(--transition-normal);
}

.hero-logo-img:hover {
    transform: scale(1.05);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--reportlog-blue) 30%, var(--reportlog-blue-light) 70%, var(--reportlog-blue-lighter) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-font {
    font-family: 'Articulat CF', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 500px;
}

/* Hero Partners - Parceiros integrados ao hero */
.hero-partners {
    margin-top: 2rem;
    text-align: center;
}

.hero-partners-title {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-partners .partners-banner {
    height: 70px;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-partners .partners-track {
    display: flex;
    align-items: center;
    animation: scroll-left 20s linear infinite;
    width: max-content;
}

.hero-partners .partner-logo {
    margin: 0 1rem;
    width: 140px;
    height: 100px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all var(--transition-fast);
}

.hero-partners .partner-logo:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.hero-partners .partner-logo:hover .partner-img {
    filter: grayscale(0%) brightness(1) contrast(1.1);
}

.hero-partners .partner-img {
    width: 100px;
    height: 60px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.7) contrast(1.1);
    transition: all var(--transition-fast);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    position: relative;
}

.dashboard-preview {
    background-color: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 500px;
    height: 300px;
    position: relative;
    overflow: hidden;
}

.dashboard-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--reportlog-blue) 0%, var(--reportlog-blue-light) 50%, var(--reportlog-blue-lighter) 100%);
}

.dashboard-header {
    margin-bottom: 1.5rem;
}

.dashboard-tabs {
    display: flex;
    gap: 1rem;
}

.tab {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.tab.active {
    background-color: var(--accent-primary);
    color: var(--text-inverse);
}

.tab:not(.active) {
    color: var(--text-muted);
}

.tab:not(.active):hover {
    color: var(--text-primary);
    background-color: var(--bg-tertiary);
}

.dashboard-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.hero-stat-item {
    text-align: center;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(1, 56, 158, 0.1), rgba(1, 56, 158, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(1, 56, 158, 0.2);
    transition: all var(--transition-normal);
}

.hero-stat-item:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(1, 56, 158, 0.15), rgba(1, 56, 158, 0.1));
    border-color: var(--reportlog-blue);
    box-shadow: 0 4px 12px rgba(1, 56, 158, 0.2);
}

.hero-stat-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--reportlog-blue);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background-color: var(--bg-secondary);
}

.section-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.section-logo-img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform var(--transition-normal);
}

.section-logo-img:hover {
    transform: scale(1.05);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: var(--text-primary);
}

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

.feature-card {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-primary);
    transition: all var(--transition-normal);
    text-align: center;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--reportlog-blue), var(--reportlog-blue-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--text-inverse);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Templates Section */
.templates {
    padding: 4rem 0 6rem;
    background-color: var(--bg-primary);
}

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

.template-card {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-primary);
    transition: all var(--transition-normal);
    text-align: center;
}

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

.template-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--reportlog-blue) 0%, var(--reportlog-blue-light) 50%, var(--reportlog-blue-lighter) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--text-inverse);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.template-card:hover .template-icon {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.template-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.template-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

/* Stats Section */
.stats {
    padding: 2rem 0 4rem;
    background-color: var(--bg-secondary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--reportlog-blue);
    line-height: 1;
    text-shadow: 0 0 20px rgba(0, 102, 255, 0.4);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* CTA Section */
.cta {
    padding: 4rem 0 6rem;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 102, 255, 0.08) 0%, rgba(0, 102, 255, 0.03) 100%);
    pointer-events: none;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cta p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Garante que botões dentro de cards mantenham o tamanho */
.template-card .btn,
.feature-card .btn {
    width: auto !important;
    min-width: auto !important;
    max-width: none !important;
    margin: 0 auto !important;
    display: inline-block !important;
}

/* Video Section */
.video-section {
    padding: 6rem 0;
    background-color: var(--bg-primary);
}

/* Partners Section */
.partners-section {
    padding: 6rem 0;
    background-color: var(--bg-secondary);
    overflow: hidden;
}

.partners-banner {
    position: relative;
    width: 100%;
    height: 140px;
    margin: 3rem 0;
    overflow: hidden;
}

.partners-track {
    display: flex;
    align-items: center;
    animation: scroll-left 30s linear infinite;
    width: max-content;
}

.partners-track:hover {
    animation-play-state: paused;
}

.partner-logo {
    flex-shrink: 0;
    margin: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    padding: 1rem;
    transition: all var(--transition-normal);
    width: 140px;
    height: 100px;
}

.partner-logo:hover {
    transform: translateY(-4px);
    border-color: var(--reportlog-blue);
    box-shadow: var(--shadow-md);
}

.partner-img {
    width: 100px;
    height: 60px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8);
    transition: filter var(--transition-normal);
}

.partner-logo:hover .partner-img {
    filter: grayscale(0%) brightness(1);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 50%, #075e54 100%);
    border-radius: 50%;
    box-shadow: 
        0 8px 32px rgba(37, 211, 102, 0.3),
        0 4px 16px rgba(37, 211, 102, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.whatsapp-button a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.whatsapp-button a:hover::before {
    left: 100%;
}

.whatsapp-button a:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 
        0 12px 40px rgba(37, 211, 102, 0.4),
        0 8px 24px rgba(37, 211, 102, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.whatsapp-button a:active {
    transform: scale(0.95);
    transition: all 0.1s ease;
}

.whatsapp-button i {
    font-size: 2.2rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.whatsapp-button a:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

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

.whatsapp-button::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-radius: 50%;
    animation: notification-pulse 2s ease-in-out infinite;
    opacity: 0.8;
}

@keyframes notification-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.video-container {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-primary);
}

.video-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

.video-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* About Section */
.about-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: 4rem 0 6rem;
    background-color: var(--bg-secondary);
}

.contact-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    transition: all var(--transition-normal);
}

.contact-item:hover {
    border-color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--reportlog-blue);
    width: 40px;
    text-align: center;
    transition: all var(--transition-fast);
}

.contact-item:hover i {
    color: var(--reportlog-blue-light);
    transform: scale(1.1);
}

.contact-item h4 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-secondary);
    margin: 0;
}

.mini-map {
    margin-top: 0.75rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-primary);
}

.mini-map:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.mini-map iframe {
    display: block;
    width: 100%;
    height: 120px;
    border: none;
    border-radius: 8px;
    transition: all var(--transition-normal);
}

.mini-map iframe:hover {
    transform: scale(1.02);
}

.contact-form {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-primary);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--reportlog-blue);
    box-shadow: 0 0 0 3px rgba(1, 56, 158, 0.1);
    transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-primary);
    padding: 4rem 0 2rem;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.footer-logo {
    height: 50px;
    width: auto;
    transition: transform var(--transition-fast);
}

.footer-brand:hover .footer-logo {
    transform: scale(1.05);
}

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

.footer-column h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-column ul li a:hover {
    color: var(--accent-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-primary);
    color: var(--text-muted);
}

/* Responsividade */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav-menu {
        order: 3;
        width: 100%;
        justify-content: center;
    }
    
    .hero {
        grid-template-columns: 1fr 1fr;
        text-align: center;
        padding: 3rem 1rem;
        gap: 2rem;
        max-width: 100%;
    }
    
    .hero-tagline {
        padding: 1.5rem 1rem;
    }
    
    .hero-tagline p {
        font-size: 1.25rem;
        max-width: 600px;
    }
    
    .hero-logo-img {
        height: 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-partners {
        margin-top: 1.5rem;
    }
    
    .hero-partners-title {
        font-size: 0.9rem;
    }
    
    .hero-partners .partners-banner {
        height: 60px;
    }
    
    .hero-partners .partner-logo {
        width: 120px;
        height: 80px;
        margin: 0 0.75rem;
        padding: 0.75rem;
    }
    
    .dashboard-preview {
        max-width: 400px;
        height: 250px;
        padding: 1.25rem;
    }
    
    .video-wrapper iframe {
        height: 250px;
    }
    
    .video-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .partners-banner {
        height: 120px;
    }
    
    .partner-logo {
        margin: 0 1rem;
        width: 120px;
        height: 80px;
        padding: 0.75rem;
    }
    
    .whatsapp-button {
        bottom: 1rem;
        right: 1rem;
    }
    
    .whatsapp-button a {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-button i {
        font-size: 1.8rem;
    }
    
    .whatsapp-button::after {
        width: 16px;
        height: 16px;
        top: -8px;
        right: -8px;
    }
    
    .mini-map {
        margin-top: 0.5rem;
    }
    
    .mini-map iframe {
        height: 100px;
    }
    
    /* About Page Specific Styles */
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-preview {
        width: 100%;
        max-width: 350px;
        height: 250px;
        padding: 1.5rem;
    }
    
    .about-preview-content {
        gap: 0.75rem;
    }
    
    .about-preview-item {
        padding: 0.5rem;
    }
    
    .mission-content,
    .vision-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 1.5rem;
    }
    
    .mission-icon,
    .vision-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    /* Simple About Page Mobile Styles */
    .hero-simple-title {
        font-size: 2.5rem;
    }
    
    .hero-simple-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-simple-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .content-title {
        font-size: 2rem;
    }
    
    .content-text p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .values-simple {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .value-item {
        padding: 1.5rem;
    }
    
    .cta-simple-title {
        font-size: 2rem;
    }
    
    .cta-simple p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .cta-simple-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Enhanced About Page Mobile Styles */
    .hero-stats-simple {
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .hero-stat-simple {
        min-width: 120px;
        padding: 0.75rem;
    }
    
    .hero-stat-simple i {
        font-size: 1.25rem;
    }
    
    .hero-stat-simple span {
        font-size: 0.8rem;
    }
    
    .content-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .mission-card,
    .vision-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
        text-align: center;
    }
    
    .mission-icon-large,
    .vision-icon-large {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
        margin: 0 auto;
    }
    
    .mission-highlight,
    .vision-highlight {
        border-left: none;
        border-bottom: 3px solid var(--reportlog-blue);
        padding-left: 0;
        padding-bottom: 1rem;
    }
    
    .vision-features {
        gap: 0.75rem;
    }
    
    .vision-feature {
        padding: 0.5rem;
    }
    
    .cta-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .dashboard-preview {
        width: 100%;
        max-width: 450px;
    }
    
    /* About Page Specific Styles */
    .hero-description {
        font-size: 1.1rem;
        color: var(--text-secondary);
        margin-bottom: 2rem;
        max-width: 600px;
        line-height: 1.6;
    }
    
    .hero-buttons {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .about-preview {
        background-color: var(--bg-card);
        border: 1px solid var(--border-primary);
        border-radius: 16px;
        padding: 2rem;
        box-shadow: var(--shadow-xl);
        width: 400px;
        height: 300px;
        position: relative;
        overflow: hidden;
    }
    
    .about-preview::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--reportlog-blue) 0%, var(--reportlog-blue-light) 50%, var(--reportlog-blue-lighter) 100%);
    }
    
    .about-preview-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .about-preview-logo {
        margin-bottom: 1rem;
    }
    
    .about-preview-logo-img {
        height: 50px;
        width: auto;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    }
    
    .about-preview-header h3 {
        color: var(--text-primary);
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }
    
    .about-preview-header p {
        color: var(--text-secondary);
        font-size: 0.9rem;
        margin: 0;
    }
    
    .about-preview-content {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-preview-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 0.75rem;
        background-color: var(--bg-tertiary);
        border-radius: 8px;
        border: 1px solid var(--border-primary);
        transition: all var(--transition-normal);
    }
    
    .about-preview-item:hover {
        border-color: var(--reportlog-blue);
        transform: translateX(4px);
    }
    
    .about-preview-item i {
        color: var(--reportlog-blue);
        font-size: 1.2rem;
        width: 20px;
        text-align: center;
    }
    
    .about-preview-item span {
        color: var(--text-primary);
        font-weight: 500;
    }
    
    .mission-section,
    .values-section,
    .vision-section {
        padding: 6rem 0;
        background-color: var(--bg-secondary);
    }
    
    .values-section {
        background-color: var(--bg-primary);
    }
    
    .mission-content,
    .vision-content {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 4rem;
        align-items: center;
        margin-top: 3rem;
    }
    
    .mission-text p,
    .vision-text p {
        font-size: 1.1rem;
        color: var(--text-secondary);
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }
    
    .mission-visual,
    .vision-visual {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .mission-icon,
    .vision-icon {
        width: 120px;
        height: 120px;
        background: linear-gradient(135deg, var(--reportlog-blue) 0%, var(--reportlog-blue-light) 50%, var(--reportlog-blue-lighter) 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3rem;
        color: white;
        box-shadow: var(--shadow-lg);
        transition: all var(--transition-normal);
    }
    
    .mission-icon:hover,
    .vision-icon:hover {
        transform: scale(1.1) rotate(5deg);
        box-shadow: var(--shadow-xl);
    }
    
    .values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .value-card {
        background-color: var(--bg-card);
        border: 1px solid var(--border-primary);
        border-radius: 16px;
        padding: 2rem;
        text-align: center;
        transition: all var(--transition-normal);
        position: relative;
        overflow: hidden;
    }
    
    .value-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--reportlog-blue) 0%, var(--reportlog-blue-light) 50%, var(--reportlog-blue-lighter) 100%);
    }
    
    .value-card:hover {
        transform: translateY(-8px);
        border-color: var(--reportlog-blue);
        box-shadow: var(--shadow-lg);
    }
    
    .value-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--reportlog-blue) 0%, var(--reportlog-blue-light) 50%, var(--reportlog-blue-lighter) 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        font-size: 2rem;
        color: white;
        box-shadow: var(--shadow-md);
        transition: all var(--transition-normal);
    }
    
    .value-card:hover .value-icon {
        transform: scale(1.1);
        box-shadow: var(--shadow-lg);
    }
    
    .value-card h3 {
        color: var(--text-primary);
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }
    
    .value-card h3 {
        color: var(--text-primary);
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }
    
    .value-card p {
        color: var(--text-secondary);
        line-height: 1.6;
        margin: 0;
    }
    
    /* Simple About Page Styles */
    .hero-simple {
        padding: 6rem 0 4rem;
        background-color: var(--bg-secondary);
        text-align: center;
    }
    
    .hero-simple-content {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .hero-simple-logo {
        margin-bottom: 2rem;
    }
    
    .hero-simple-logo-img {
        height: 80px;
        width: auto;
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    }
    
    .hero-simple-title {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 1rem;
        background: linear-gradient(135deg, var(--text-primary) 0%, var(--reportlog-blue) 30%, var(--reportlog-blue-light) 70%, var(--reportlog-blue-lighter) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .hero-simple-subtitle {
        font-size: 1.5rem;
        color: var(--reportlog-blue);
        margin-bottom: 1rem;
        font-weight: 600;
    }
    
    .hero-simple-description {
        font-size: 1.2rem;
        color: var(--text-secondary);
        line-height: 1.6;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .content-section {
        padding: 4rem 0;
        background-color: var(--bg-primary);
    }
    
    .content-section.values-section {
        background-color: var(--bg-secondary);
    }
    
    .content-header {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .content-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 1rem;
    }
    
    .content-text {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
    }
    
    .content-text p {
        font-size: 1.1rem;
        color: var(--text-secondary);
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }
    
    .content-text p:last-child {
        margin-bottom: 0;
    }
    
    .values-simple {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        max-width: 1000px;
        margin: 0 auto;
    }
    
    .value-item {
        background-color: var(--bg-card);
        border: 1px solid var(--border-primary);
        border-radius: 12px;
        padding: 2rem;
        text-align: center;
        transition: all var(--transition-normal);
        position: relative;
        overflow: hidden;
    }
    
    .value-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--reportlog-blue) 0%, var(--reportlog-blue-light) 50%, var(--reportlog-blue-lighter) 100%);
    }
    
    .value-item:hover {
        transform: translateY(-4px);
        border-color: var(--reportlog-blue);
        box-shadow: var(--shadow-md);
    }
    
    .value-item h3 {
        color: var(--reportlog-blue);
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }
    
    .value-item p {
        color: var(--text-secondary);
        line-height: 1.6;
        margin: 0;
    }
    
    .cta-simple {
        padding: 4rem 0 6rem;
        background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    
    .cta-simple::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 102, 255, 0.02) 100%);
        pointer-events: none;
    }
    
    .cta-simple-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: var(--text-primary);
        position: relative;
        z-index: 1;
    }
    
    .cta-simple p {
        font-size: 1.1rem;
        color: var(--text-secondary);
        margin-bottom: 1rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        position: relative;
        z-index: 1;
    }
    
    .cta-simple-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 2rem;
        position: relative;
        z-index: 1;
    }
    
    /* Enhanced About Page Elements */
    .hero-stats-simple {
        display: flex;
        gap: 2rem;
        justify-content: center;
        margin-top: 3rem;
        flex-wrap: wrap;
    }
    
    .hero-stat-simple {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        padding: 1rem;
        background-color: var(--bg-card);
        border: 1px solid var(--border-primary);
        border-radius: 12px;
        transition: all var(--transition-normal);
        min-width: 150px;
    }
    
    .hero-stat-simple:hover {
        transform: translateY(-4px);
        border-color: var(--reportlog-blue);
        box-shadow: var(--shadow-md);
    }
    
    .hero-stat-simple i {
        font-size: 1.5rem;
        color: var(--reportlog-blue);
    }
    
    .hero-stat-simple span {
        color: var(--text-primary);
        font-size: 0.9rem;
        font-weight: 500;
        text-align: center;
    }
    
    .content-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--reportlog-blue) 0%, var(--reportlog-blue-light) 50%, var(--reportlog-blue-lighter) 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        font-size: 2rem;
        color: white;
        box-shadow: var(--shadow-md);
    }
    
    .mission-card {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 3rem;
        align-items: center;
        background-color: var(--bg-card);
        border: 1px solid var(--border-primary);
        border-radius: 16px;
        padding: 3rem;
        box-shadow: var(--shadow-md);
        max-width: 900px;
        margin: 0 auto;
    }
    
    .mission-icon-large {
        width: 120px;
        height: 120px;
        background: linear-gradient(135deg, var(--reportlog-blue) 0%, var(--reportlog-blue-light) 50%, var(--reportlog-blue-lighter) 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3rem;
        color: white;
        box-shadow: var(--shadow-lg);
        flex-shrink: 0;
    }
    
    .mission-content {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .mission-highlight {
        font-size: 1.2rem;
        color: var(--text-primary);
        line-height: 1.7;
        font-weight: 500;
        border-left: 4px solid var(--reportlog-blue);
        padding-left: 1.5rem;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, var(--reportlog-blue) 0%, var(--reportlog-blue-light) 50%, var(--reportlog-blue-lighter) 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
        font-size: 1.5rem;
        color: white;
        box-shadow: var(--shadow-sm);
        transition: all var(--transition-normal);
    }
    
    .value-item:hover .value-icon {
        transform: scale(1.1);
        box-shadow: var(--shadow-md);
    }
    
    .vision-card {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 3rem;
        align-items: center;
        background-color: var(--bg-card);
        border: 1px solid var(--border-primary);
        border-radius: 16px;
        padding: 3rem;
        box-shadow: var(--shadow-md);
        max-width: 900px;
        margin: 0 auto;
    }
    
    .vision-content {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .vision-highlight {
        font-size: 1.2rem;
        color: var(--text-primary);
        line-height: 1.7;
        font-weight: 500;
        border-left: 4px solid var(--reportlog-blue);
        padding-left: 1.5rem;
    }
    
    .vision-features {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin: 1rem 0;
    }
    
    .vision-feature {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 0.75rem;
        background-color: var(--bg-tertiary);
        border-radius: 8px;
        border: 1px solid var(--border-primary);
        transition: all var(--transition-normal);
    }
    
    .vision-feature:hover {
        border-color: var(--reportlog-blue);
        transform: translateX(4px);
    }
    
    .vision-feature i {
        color: var(--reportlog-blue);
        font-size: 1.2rem;
        width: 20px;
        text-align: center;
    }
    
    .vision-feature span {
        color: var(--text-primary);
        font-weight: 500;
    }
    
    .vision-icon-large {
        width: 120px;
        height: 120px;
        background: linear-gradient(135deg, var(--reportlog-blue) 0%, var(--reportlog-blue-light) 50%, var(--reportlog-blue-lighter) 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3rem;
        color: white;
        box-shadow: var(--shadow-lg);
        flex-shrink: 0;
    }
    
    .cta-content {
        position: relative;
        z-index: 1;
    }
    
    .cta-icon {
        width: 100px;
        height: 100px;
        background: linear-gradient(135deg, var(--reportlog-blue) 0%, var(--reportlog-blue-light) 50%, var(--reportlog-blue-lighter) 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 2rem;
        font-size: 2.5rem;
        color: white;
        box-shadow: var(--shadow-lg);
    }
    
    .hero-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-stat-number {
        font-size: 0.9rem;
    }
    
    .hero-stat-label {
        font-size: 0.7rem;
    }
    
    .features-grid,
    .templates-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 3rem 1rem;
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-tagline {
        padding: 1rem 0.5rem;
    }
    
    .hero-tagline p {
        font-size: 1.1rem;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .hero-partners {
        margin-top: 1rem;
    }
    
    .hero-partners-title {
        font-size: 0.8rem;
    }
    
    .hero-partners .partners-banner {
        height: 80px;
    }
    
    .hero-partners .partner-logo {
        width: 100px;
        height: 60px;
        margin: 0 0.5rem;
        padding: 0.5rem;
    }
    
    .dashboard-preview {
        max-width: 350px;
        height: 220px;
        padding: 1rem;
    }
    
    .nav-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    /* Botões btn-large mantêm o tamanho mesmo em telas pequenas */
    .btn-large {
        width: auto !important;
        min-width: auto !important;
        max-width: none !important;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.template-card {
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Seleção de texto */
::selection {
    background-color: var(--accent-primary);
    color: var(--text-inverse);
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-primary);
}

/* Notificações do Formulário */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    position: relative;
}

.notification i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.notification-success i {
    color: var(--accent-success);
}

.notification-error i {
    color: var(--accent-danger);
}

.notification-info i {
    color: var(--reportlog-blue);
}

.notification-warning i {
    color: var(--accent-warning);
}

.notification span {
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.4;
    flex: 1;
}

.notification-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.notification-close:hover {
    background-color: var(--bg-tertiary);
    color: var(--text-primary);
}

/* Bordas coloridas para notificações */
.notification-success {
    border-left: 4px solid var(--accent-success);
}

.notification-error {
    border-left: 4px solid var(--accent-danger);
}

.notification-info {
    border-left: 4px solid var(--reportlog-blue);
}

.notification-warning {
    border-left: 4px solid var(--accent-warning);
}

/* Responsividade para notificações */
@media (max-width: 768px) {
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100%);
    }
    
    .notification.show {
        transform: translateY(0);
    }
    
    .notification-content {
        padding: 1rem;
    }
    
    .notification span {
        font-size: 0.9rem;
    }
}

/* Regras específicas para botões btn-large em todas as resoluções */
@media (max-width: 1200px) {
    .btn-large {
        padding: 0.875rem 1.75rem !important;
        font-size: 1rem !important;
        width: auto !important;
        min-width: auto !important;
        max-width: none !important;
    }
    
    .btn-outline {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.9rem !important;
        width: auto !important;
        min-width: auto !important;
        max-width: none !important;
    }
}

@media (max-width: 768px) {
    .btn-large {
        padding: 0.875rem 1.75rem !important;
        font-size: 1rem !important;
        width: auto !important;
        min-width: auto !important;
        max-width: none !important;
    }
    
    .btn-outline {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.9rem !important;
        width: auto !important;
        min-width: auto !important;
        max-width: none !important;
    }
}

@media (max-width: 480px) {
    .btn-large {
        padding: 0.875rem 1.75rem !important;
        font-size: 1rem !important;
        width: auto !important;
        min-width: auto !important;
        max-width: none !important;
    }
    
    .btn-outline {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.9rem !important;
        width: auto !important;
        min-width: auto !important;
        max-width: none !important;
    }
}
