/* EMERGÊNCIA: CSS MINIMALISTA PARA GARANTIR VISIBILIDADE */

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

html {
    font-size: 16px;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background: #000000 !important;
    color: #ffffff !important;
    line-height: 1.6;
    min-height: 100vh;
}

/* GARANTIR QUE TODO CONTEÚDO SEJA VISÍVEL */
h1, h2, h3, h4, h5, h6 {
    color: #ffffff !important;
    font-weight: 700;
    margin-bottom: 1rem;
    visibility: visible !important;
    opacity: 1 !important;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }

p, span, div, section, article {
    color: #ffffff !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.text-primary,
.text-primary * {
    color: #c7ef63 !important;
}

strong {
    color: #c7ef63 !important;
    font-weight: 700;
}

a {
    color: #dd3d93 !important;
    text-decoration: none;
}

a:hover {
    color: #f767d3 !important;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    visibility: visible !important;
    opacity: 1 !important;
}

/* NAVEGAÇÃO */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(10px);
    z-index: 9999 !important;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(199, 239, 99, 0.2);
}

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

.nav-logo img {
    height: 55px !important;
    width: auto;
    filter: brightness(1.05);
}

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

.nav-link {
    color: #ffffff !important;
    padding: 0.5rem 1rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #c7ef63 !important;
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 50px;
    text-align: center;
    position: relative;
    z-index: 10 !important;
}

.hero-content {
    max-width: 900px;
    visibility: visible !important;
    opacity: 1 !important;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem) !important;
    color: #ffffff !important;
    margin-bottom: 1.5rem !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem) !important;
    color: #d1d1d1 !important;
    margin-bottom: 2rem !important;
    line-height: 1.6 !important;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* BOTÕES */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
}

.btn-primary {
    background: #c7ef63 !important;
    color: #000000 !important;
    border-color: #c7ef63 !important;
}

.btn-primary:hover {
    background: #acf85d !important;
    transform: translateY(-2px);
}

.btn-outline-pink {
    background: transparent !important;
    color: #f767d3 !important;
    border: 2px solid #dd3d93 !important;
}

.btn-outline-pink:hover {
    background: #dd3d93 !important;
    color: #ffffff !important;
}

/* SEÇÕES */
.section {
    padding: 80px 20px;
    position: relative;
    z-index: 10 !important;
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 3rem) !important;
    color: #ffffff !important;
    margin-bottom: 1rem !important;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #d1d1d1 !important;
    max-width: 700px;
    margin: 0 auto;
}

/* CARDS */
.solution-card,
.team-member,
.timeline-item {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(199, 239, 99, 0.2) !important;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
}

.solution-card:hover,
.team-member:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(221, 61, 147, 0.5) !important;
    transform: translateY(-5px);
}

.solution-card h3,
.team-member h3 {
    color: #c7ef63 !important;
    margin-bottom: 1rem;
}

.solution-card p,
.team-member p {
    color: #d1d1d1 !important;
}

/* FOOTER */
.footer {
    background: #000000 !important;
    border-top: 1px solid rgba(199, 239, 99, 0.2);
    padding: 3rem 0 1rem;
    z-index: 10 !important;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: #d1d1d1 !important;
}

.footer-link {
    color: #d1d1d1 !important;
}

.footer-link:hover {
    color: #c7ef63 !important;
}

/* BACKGROUND */
.global-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -999 !important;
    pointer-events: none;
}

body::before {
    z-index: -999 !important;
}

/* MOBILE */
@media (max-width: 768px) {
    .hero {
        padding: 120px 20px 50px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .section {
        padding: 60px 20px;
    }
}
