/* ========================================
   OUTOFFTHEBOX - COMPONENTS
   Componentes reutilizáveis do sistema
   ======================================== */

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(10, 10, 15, 0.85), rgba(10, 10, 15, 0.75)), 
                url('../assets/pessoa-trabalhando-html-no-computador.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-subtitle {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: var(--spacing-xxl);
    opacity: 0.9;
    max-width: 800px;
    line-height: 1.4;
    font-weight: 600;
}

/* ========================================
   BOTÕES
   ======================================== */
.hero-cta {
    display: flex;
    flex-direction: row;
    gap: var(--spacing-lg);
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border: none;
    color: var(--light);
    padding: 1.2rem 3rem;
    font-weight: 700;
    border-radius: var(--border-radius-full);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow);
}

.btn-hero-secondary {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--light);
    padding: 1.2rem 3rem;
    font-weight: 700;
    border-radius: var(--border-radius-full);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 102, 255, 0.4);
    color: var(--light);
}

.btn-hero-secondary:hover {
    background: var(--accent);
    transform: translateY(-3px);
    color: var(--dark);
}

/* ========================================
   BOTÃO WHATSAPP
   ======================================== */
.btn-whatsapp {
    background: linear-gradient(45deg, #25D366, #128C7E) !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3) !important;
}

.btn-whatsapp:hover {
    background: linear-gradient(45deg, #128C7E, #25D366) !important;
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4) !important;
    color: var(--light) !important;
}

/* ========================================
   CARDS CYBER
   ======================================== */
.cyber-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--spacing-lg);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.cyber-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
}

.cyber-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    color: var(--accent);
}

.card-title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.card-subtitle {
    font-size: var(--font-size-base);
    opacity: 0.7;
    margin-bottom: var(--spacing-md);
}

/* ========================================
   BADGES DE SERVIÇO
   ======================================== */
.service-badge {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    padding: 0.5rem 1rem;
    border-radius: var(--spacing-lg);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-badge.popular {
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    color: var(--light);
}

.service-badge.new {
    background: linear-gradient(45deg, var(--primary), var(--purple));
    color: var(--light);
}

/* ========================================
   NAVEGAÇÃO
   ======================================== */
.navbar {
    background: rgba(10, 10, 15, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: var(--font-size-2xl);
    color: var(--light) !important;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar-brand img {
    height: 80px;
    margin-right: var(--spacing-sm);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link {
    color: var(--light) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
}

.social-links a:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-3px);
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
    background: rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--light);
    opacity: 0.8;
}

/* ========================================
   ELEMENTOS DE FORMULÁRIO (MANTIDOS PARA COMPATIBILIDADE)
   ======================================== */
.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--light);
    border-radius: var(--border-radius-md);
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent);
    box-shadow: 0 0 0 0.2rem rgba(255, 133, 0, 0.25);
    color: var(--light);
}

.form-control::placeholder {
    color: rgba(248, 249, 255, 0.6);
}

.form-label {
    color: var(--light);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* ========================================
   RESPONSIVIDADE DOS COMPONENTES
   ======================================== */
@media (max-width: 768px) {
    .hero {
        text-align: center;
        padding: var(--spacing-lg) 0;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: var(--spacing-xl);
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
    }
    
    .btn-hero-primary, 
    .btn-hero-secondary {
        width: 100%;
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: var(--font-size-base);
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .navbar-brand img {
        height: 60px;
    }
}
