/* ========================================
   FLOKISYS - DARK TECH THEME 2025
   Paleta: Preto (#000000), Branco (#FFFFFF), Roxo (#7F17D3)
   Design: Bento Grid + Scrollytelling
   ======================================== */

/* Fontes Personalizadas FlokiSys */

@font-face {
    font-family: 'PP Neue Machina';
    src: url('../fonts/PPNeueMachina-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Neue Machina';
    src: url('../fonts/PPNeueMachina-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Neue Machina';
    src: url('../fonts/PPNeueMachina-Ultrabold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(100px);
    }
}

:root {
    /* Cores FlokiSys */
    --floki-purple: #7F17D3;
    --floki-purple-dark: #5c0f9d;
    --floki-purple-light: #9c3eff;
    --floki-purple-on-dark: #c084fc; /* Para texto roxo em fundos escuros — contraste 8:1 */
    --floki-purple-glow: rgba(127, 23, 211, 0.3);

    --floki-black: #080010;
    --floki-gray-dark: #0a0a0a;
    --floki-gray-medium: #1a1a1a;
    --floki-gray-light: #2a2a2a;
    --floki-gray-border: #333333;

    --floki-white: #FFFFFF;
    --floki-off-white: #f5f5f5;
    --floki-gray-text: #c0c0c0;

    /* Gradientes */
    --gradient-purple: linear-gradient(135deg, var(--floki-purple) 0%, var(--floki-purple-dark) 100%);
    --gradient-dark: linear-gradient(180deg, var(--floki-black) 0%, var(--floki-gray-dark) 100%);

    /* Sombras e Efeitos */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-purple: 0 4px 24px var(--floki-purple-glow);
    --shadow-purple-intense: 0 8px 40px rgba(127, 23, 211, 0.6);

    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body {
    font-family: 'PP Neue Machina', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--floki-white);
    background-color: var(--floki-black);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Canvas de Partículas — direto no body, abaixo de todo o conteúdo */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    display: block;
}

.main-content {
    position: relative;
    z-index: 1;
    isolation: isolate;  /* cria stacking context selado: canvas nunca penetra aqui */
    background: transparent;
}

/* Seções ficam dentro do stacking context do main-content */
section {
    position: relative;
}

/* Elementos do blog ficam acima das partículas */
.blog-container,
.article-card,
.blog-header,
.articles-grid,
.article-container,
.article-full,
.article-header,
.article-body,
.article-cta-box {
    position: relative;
    z-index: 2;
}

/* Tipografia */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'PP Neue Machina', 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    color: var(--floki-white);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h4 {
    font-size: clamp(1.25rem, 3vw, 2rem);
}

p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #c0c0c0;
    line-height: 1.7;
    font-weight: 400;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* ========================================
   NAVBAR - FIXO NO TOPO
   ======================================== */
.navbar-flokisys {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--floki-gray-border);
    z-index: 1000;
    padding: 0.5rem 0;
    height: 70px;
    display: flex;
    align-items: center;
}

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

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--floki-white);
    transition: all var(--transition-fast);
}

.navbar-logo:hover {
    opacity: 0.8;
}

.logo-image {
    height: 150px;
    width: auto;
}

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    background: linear-gradient(135deg, var(--floki-white) 0%, var(--floki-purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* No desktop, esconder botões duplicados em navbar-actions */
.navbar-actions .btn-small {
    display: none;
}

/* Mostrar menu normalmente no desktop */
.navbar-menu .btn-small {
    display: inline-block;
}

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--floki-purple);
    transition: width var(--transition-normal);
}

.nav-link:hover {
    color: var(--floki-purple);
}

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

.btn-small {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
}

/* ========================================
   HAMBURGER MENU
   ======================================== */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-btn span {
    width: 100%;
    height: 3px;
    background: var(--floki-white);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Overlay */
.navbar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.navbar-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .hamburger-btn {
        display: flex;
    }

    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        border-left: 1px solid rgba(127, 23, 211, 0.3);
        overflow-y: auto;
        box-shadow: -5px 0 20px rgba(127, 23, 211, 0.2);
    }

    .navbar-menu.active {
        right: 0;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 0.75rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(127, 23, 211, 0.1);
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover {
        padding-left: 10px;
        transition: padding-left 0.2s ease;
    }

    /* No mobile, esconder botões dentro do menu e mostrar em navbar-actions */
    .navbar-menu .btn-small {
        display: none;
    }

    .navbar-actions .btn-small {
        display: inline-block;
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

/* ========================================
   HERO SECTION - FUTURISTA
   ======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-grid-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(var(--floki-gray-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--floki-gray-border) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.1;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--floki-purple-glow) 0%, transparent 70%);
    filter: blur(100px);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
    padding: 2rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(127, 23, 211, 0.15);
    border: 1px solid var(--floki-purple);
    border-radius: 50px;
    color: #b68eff;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1.5s ease 0.5s forwards;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--floki-white) 0%, var(--floki-purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: fadeInUp 1.8s ease 1s forwards;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    color: var(--floki-off-white);
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1.8s ease 1.5s forwards;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1.8s ease 2s forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Botões FlokiSys */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-purple);
    color: var(--floki-white);
    box-shadow: var(--shadow-purple);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-purple-intense);
}

.btn-secondary {
    background: transparent;
    color: var(--floki-white);
    border: 2px solid var(--floki-purple);
}

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

.btn-ghost {
    background: var(--floki-gray-medium);
    color: var(--floki-white);
    border: 1px solid var(--floki-gray-border);
}

.btn-ghost:hover {
    background: var(--floki-gray-light);
    border-color: var(--floki-purple);
}

/* ========================================
   SOBRE NÓS - DNA CORPORATIVO
   ======================================== */
.about-section {
    padding: 8rem 0;
    background: var(--floki-gray-dark);
    position: relative;
    min-height: 100vh;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--floki-gray-medium);
    border-radius: 50px;
    color: var(--floki-purple-on-dark);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--floki-white) 0%, var(--floki-purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.25rem;
    color: #c0c0c0;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    opacity: 1 !important;
}

.pillar-card {
    background: var(--floki-gray-medium);
    border: 1px solid var(--floki-gray-border);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    opacity: 1 !important;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-purple);
    transform: scaleX(0);
    transition: transform var(--transition-slow);
}

.pillar-card:hover::before {
    transform: scaleX(1);
}

.pillar-card:hover {
    transform: translateY(-8px);
    border-color: var(--floki-purple);
    box-shadow: var(--shadow-purple);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-purple);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.pillar-icon-maestro {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 12px;
    filter: none;
}

.pillar-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--floki-white);
}

.pillar-description {
    color: #c0c0c0;
    line-height: 1.7;
}

/* ========================================
   BENTO GRID - PLATAFORMA fCOLLAB
   ======================================== */
.solutions-section {
    padding: 8rem 0;
    background: var(--floki-black);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

/* Layout Bento Grid Responsivo */
.bento-item {
    background: var(--floki-gray-medium);
    border: 1px solid var(--floki-gray-border);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
    cursor: pointer;
    opacity: 1;
}

.bento-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-purple);
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
}

.bento-item:hover::after {
    opacity: 0.05;
}

.bento-item:hover {
    border-color: var(--floki-purple);
    box-shadow: var(--shadow-purple);
    transform: translateY(-4px);
}

/* Tamanhos do Bento Grid */
.bento-large {
    grid-column: span 8;
}

.bento-medium {
    grid-column: span 6;
}

.bento-small {
    grid-column: span 4;
}

@media (max-width: 1024px) {

    .bento-large,
    .bento-medium {
        grid-column: span 6;
    }

    .bento-small {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {

    .bento-large,
    .bento-medium,
    .bento-small {
        grid-column: span 12;
    }
}

.bento-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.bento-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-purple);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: var(--shadow-purple);
}

.bento-icon-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: invert(1) brightness(2);
}

.bento-icon-maestro {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    filter: none;
    object-fit: contain;
}

.bento-badge {
    padding: 0.375rem 1rem;
    background: var(--floki-purple);
    color: var(--floki-white);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.bento-badge-ai {
    background: linear-gradient(135deg, #7F17D3, #c026d3);
    box-shadow: 0 0 12px rgba(192, 38, 211, 0.5);
    animation: badge-glow 2.5s ease-in-out infinite;
}

@keyframes badge-glow {
    0%, 100% { box-shadow: 0 0 8px rgba(192, 38, 211, 0.4); }
    50%       { box-shadow: 0 0 18px rgba(192, 38, 211, 0.8); }
}

.bento-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--floki-white);
}

.bento-description {
    color: #c0c0c0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.bento-features {
    list-style: none;
    padding: 0;
}

.bento-features li {
    padding: 0.5rem 0;
    color: #c0c0c0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bento-features li::before {
    content: '✓';
    color: var(--floki-purple-on-dark);
    font-weight: bold;
    font-size: 1.25rem;
}

.bento-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--floki-purple-on-dark);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: gap var(--transition-fast);
}

.bento-link:hover {
    gap: 1rem;
}

/* ========================================
   PROJETOS - PORTFÓLIO
   ======================================== */
.projects-section {
    padding: 8rem 0;
    background: var(--floki-gray-dark);
    min-height: 80vh;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    opacity: 1 !important;
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

.project-card {
    background: var(--floki-gray-medium);
    border: 1px solid var(--floki-gray-border);
    border-radius: 24px;
    overflow: hidden;
    transition: all var(--transition-normal);
    cursor: pointer;
    opacity: 1 !important;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: var(--floki-purple);
    box-shadow: var(--shadow-purple);
}

.project-image {
    width: 100%;
    height: 300px;
    background: var(--floki-gray-light);
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: var(--floki-purple);
    color: var(--floki-white);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.project-content {
    padding: 2rem;
}

.project-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--floki-white);
}

.project-description {
    color: #c0c0c0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    padding: 0.375rem 0.875rem;
    background: var(--floki-gray-dark);
    border: 1px solid rgba(192, 132, 252, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--floki-purple-on-dark);
}

/* ========================================
   CONTATO - FORMULÁRIO MODERNO
   ======================================== */
.contact-section {
    padding: 8rem 0;
    background: var(--floki-black);
    position: relative;
    min-height: 80vh;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #e0e0e0;
    font-weight: 600;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--floki-gray-medium);
    border: 1px solid var(--floki-gray-border);
    border-radius: 12px;
    color: var(--floki-white);
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--floki-purple);
    box-shadow: 0 0 0 3px var(--floki-purple-glow);
}

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

.form-button {
    width: 100%;
    padding: 1.25rem;
    background: var(--gradient-purple);
    color: var(--floki-white);
    border: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-purple);
}

.form-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-purple-intense);
}

/* WhatsApp Sticky Button */
@keyframes whatsappPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
    }
}

.whatsapp-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: all var(--transition-normal);
    cursor: pointer;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-button:hover {
    animation: none;
    transform: scale(1.15);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.8);
}

/* ========================================
   UTILITÁRIOS
   ======================================== */
.text-purple {
    color: var(--floki-purple) !important;
}

.bg-purple {
    background: var(--floki-purple) !important;
}

.gradient-text {
    background: linear-gradient(135deg, var(--floki-white) 0%, var(--floki-purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Scroll Reveal Animation Classes */
.reveal {
    opacity: 1;
    transform: translateY(0);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    transition: all 1.2s ease;
}

/* Estilos de Loading */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid var(--floki-gray-border);
    border-radius: 50%;
    border-top-color: var(--floki-purple);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.feature-card {
    padding: 2rem;
    text-align: center;
    border-radius: 1rem;
    background: var(--light-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

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

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

.landing-tech {
    padding: 5rem 0;
    background: var(--light-color);
}

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

.tech-item {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
}

.tech-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.tech-item p {
    color: var(--secondary-color);
    margin-top: 1rem;
}

.landing-cta {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.landing-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.landing-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

.landing-cta .btn:hover {
    background: var(--light-color);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    background-color: white;
    box-shadow: var(--shadow);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.navbar-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.navbar-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.navbar-user {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.btn-logout {
    background-color: var(--danger-color);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: background-color 0.3s;
}

.btn-logout:hover {
    background-color: #dc2626;
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 2rem 0;
}

/* Alerts Container */
.flash-messages-container {
    position: fixed;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    z-index: 2000;
    pointer-events: none;
}

.flash-messages-container .alert {
    pointer-events: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.alert-danger {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

.alert-warning {
    background-color: #fef3c7;
    color: #92400e;
    border: 1px solid #f59e0b;
}

.alert-info {
    background-color: #dbeafe;
    color: #1e40af;
    border: 1px solid #3b82f6;
}

.alert-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: inherit;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.alert-close:hover {
    opacity: 1;
}

/* Auth Container */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

.auth-card {
    background: black;
    padding: 2.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 450px;
}

.auth-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

.auth-subtitle {
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 2rem;
}

/* Forms */
.auth-form,
.form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.9rem;
}

.form-control {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.form-check {
    flex-direction: row;
    align-items: center;
}

.form-check-input {
    width: auto;
    margin-right: 0.5rem;
}

.form-check-label {
    font-weight: normal;
    margin: 0;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background-color: #475569;
}

.btn-block {
    width: 100%;
}

/* Auth Footer */
.auth-footer {
    margin-top: 1.5rem;
    text-align: center;
    color: var(--secondary-color);
}

.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 3rem 0;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--secondary-color);
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.card-text {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

/* Info Section */
.info-section {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
    margin-top: 2rem;
}

.info-section h2 {
    font-size: 1.75rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

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

.info-item {
    padding: 1rem;
    background: var(--light-color);
    border-radius: 0.5rem;
}

.info-item strong {
    color: var(--dark-color);
    display: block;
    margin-bottom: 0.25rem;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.badge-success {
    background-color: #d1fae5;
    color: #065f46;
}

/* Dashboard */
.page-header {
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.page-header p {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.stat-label {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

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

.dashboard-section {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
}

.dashboard-section h2 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-color);
    border-radius: 0.5rem;
}

.activity-icon {
    font-size: 1.5rem;
}

.activity-details {
    flex: 1;
}

.activity-text {
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.activity-time {
    color: var(--secondary-color);
    font-size: 0.875rem;
}

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--light-color);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark-color);
}

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

.action-icon {
    font-size: 1.25rem;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .navbar-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .landing-title {
        font-size: 2.5rem;
    }

    .landing-subtitle {
        font-size: 1.25rem;
    }

    .landing-hero {
        padding: 4rem 0;
    }

    .landing-features,
    .landing-tech,
    .landing-cta {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .auth-card {
        padding: 1.5rem;
    }

    .cards-grid,
    .info-grid,
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
}

.social-proof-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
    opacity: 1;
}

.stat-card {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    background: rgba(127, 23, 211, 0.1);
    border: 1px solid rgba(127, 23, 211, 0.3);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.stat-number {
    position: relative;
    z-index: 10;
    font-size: 3.5rem;
    font-weight: 800;
    color: #b68eff;
    margin-bottom: 0.5rem;
}

.social-proof-section .stat-label,
.stats-grid .stat-label {
    font-size: 1rem;
    color: #c0c0c0 !important;
    font-weight: 500;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    line-height: 1.4;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    opacity: 1;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(127, 23, 211, 0.3);
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

/* Logos de empresa como avatar — retangular, fundo escuro */
.testimonial-avatar-logo {
    width: 80px;
    height: 52px;
    border-radius: 8px;
    object-fit: contain;
    object-position: center;
    background: rgba(255,255,255,0.06);
    padding: 4px 6px;
}

/* AGCO: SVG sem fundo — fundo branco suave para legibilidade */
.testimonial-avatar-agco {
    background: rgba(255,255,255,0.12);
}

.testimonial-avatar-maestro {
    border-radius: 10px;
    object-fit: contain;
    background: #4a1070;
    padding: 4px;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.clients-logos {
    margin-top: 5rem;
    text-align: center;
}

.clients-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2.5rem;
    font-weight: 600;
}

.logos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    align-items: center;
}

.client-logo-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-width: 130px;
    min-height: 72px;
}

.client-logo-card:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(127, 23, 211, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(127, 23, 211, 0.2);
}

/* Logos que já têm fundo colorido próprio (STIHL, Tramontina, Grefortec) */
.logo-card-colored {
    padding: 0;
    overflow: hidden;
    background: transparent;
    border: none;
}

.logo-card-colored .client-logo-img {
    height: 72px;
    width: auto;
    max-width: 200px;
    border-radius: 12px;
    opacity: 0.75;
    filter: none;
    transition: all 0.3s ease;
}

.logo-card-colored:hover .client-logo-img {
    opacity: 1;
}

/* Logo AGCO e outros sem classe especial */
.client-logo-card .client-logo-img {
    height: 40px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    opacity: 0.75;
    transition: opacity 0.3s ease;
}

.client-logo-card:hover .client-logo-img {
    opacity: 1;
}

.client-logo-card:hover .logo-dark {
    opacity: 1;
}

/* Logo Serall (fundo branco — exibe dentro de pílula branca) */
.client-logo-img.logo-on-white {
    height: 52px;
    width: auto;
    max-width: 130px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 6px 10px;
    opacity: 0.8;
    filter: none;
    transition: all 0.3s ease;
}

/* Logo Sachet (mais largo) */
.client-logo-img.logo-sachet {
    max-width: 160px;
    height: 44px;
}

.client-logo-card:hover .logo-on-white {
    opacity: 1;
    background: white;
}

.process-section {
    padding: 120px 0;
    background: #000000;
}

.process-timeline {
    max-width: 900px;
    margin: 4rem auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #7F17D3 0%, rgba(127, 23, 211, 0.3) 100%);
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.process-number {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #7F17D3 0%, #5c0f9d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 8px 24px rgba(127, 23, 211, 0.4);
    position: relative;
    z-index: 10;
}

.process-content {
    position: relative;
    z-index: 10;
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.process-title {
    position: relative;
    z-index: 10;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.process-description {
    position: relative;
    z-index: 10;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.process-list {
    list-style: none;
    padding: 0;
}

.process-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 10;
}

.process-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--floki-purple-on-dark);
    font-weight: bold;
}

.process-cta {
    text-align: center;
    margin-top: 4rem;
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(127, 23, 211, 0.7);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(127, 23, 211, 0);
    }
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 9999;
    text-decoration: none;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

@media (max-width: 1100px) and (min-width: 769px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin: 2rem 0;
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.875rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline::before {
        left: 20px;
    }

    .process-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .process-step {
        gap: 1rem;
    }

    .logos-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        justify-items: center;
        align-items: center;
    }

    .client-logo-card,
    .logo-card-colored {
        width: 100%;
        min-width: unset;
        justify-content: center;
    }

    .logo-card-colored .client-logo-img,
    .client-logo-card .client-logo-img {
        max-width: 100%;
        height: 48px;
    }

    .whatsapp-button {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-incentive {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(127, 23, 211, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(127, 23, 211, 0.2);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.form-message {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-weight: 500;
}

.form-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid #10b981;
    color: #10b981;
}

.form-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    color: #ef4444;
}

.trust-section {
    padding: 80px 0;
    background: rgba(127, 23, 211, 0.05);
}

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

.trust-badge {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}

.trust-content {
    flex: 1;
}

.trust-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.trust-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Navbar */
.navbar {
    background-color: white;
    box-shadow: var(--shadow);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.navbar-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.navbar-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.navbar-user {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.btn-logout {
    background-color: var(--danger-color);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: background-color 0.3s;
}

.btn-logout:hover {
    background-color: #dc2626;
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 2rem 0;
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.alert-danger {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

.alert-warning {
    background-color: #fef3c7;
    color: #92400e;
    border: 1px solid #f59e0b;
}

.alert-info {
    background-color: #dbeafe;
    color: #1e40af;
    border: 1px solid #3b82f6;
}

.alert-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: inherit;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.alert-close:hover {
    opacity: 1;
}

/* Auth Container */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

.auth-card {
    background: white;
    padding: 2.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 450px;
}

.auth-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

.auth-subtitle {
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 2rem;
}

/* Forms */
.auth-form,
.form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.9rem;
}

.form-control {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.form-check {
    flex-direction: row;
    align-items: center;
}

.form-check-input {
    width: auto;
    margin-right: 0.5rem;
}

.form-check-label {
    font-weight: normal;
    margin: 0;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background-color: #475569;
}

.btn-block {
    width: 100%;
}

/* Auth Footer */
.auth-footer {
    margin-top: 1.5rem;
    text-align: center;
    color: var(--secondary-color);
}

.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 3rem 0;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--secondary-color);
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.card-text {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

/* Info Section */
.info-section {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
    margin-top: 2rem;
}

.info-section h2 {
    font-size: 1.75rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

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

.info-item {
    padding: 1rem;
    background: var(--light-color);
    border-radius: 0.5rem;
}

.info-item strong {
    color: var(--dark-color);
    display: block;
    margin-bottom: 0.25rem;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.badge-success {
    background-color: #d1fae5;
    color: #065f46;
}

/* Dashboard */
.page-header {
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.page-header p {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.stat-label {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

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

.dashboard-section {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
}

.dashboard-section h2 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-color);
    border-radius: 0.5rem;
}

.activity-icon {
    font-size: 1.5rem;
}

.activity-details {
    flex: 1;
}

.activity-text {
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.activity-time {
    color: var(--secondary-color);
    font-size: 0.875rem;
}

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--light-color);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark-color);
}

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

.action-icon {
    font-size: 1.25rem;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .navbar-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .auth-card {
        padding: 1.5rem;
    }

    .cards-grid,
    .info-grid,
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
}