﻿:root {
    --primary-color: #F37321; /* Laranja do tema */
    --primary-hover: #d95e10;
    --bg-dark: #0b0c10;
    --bg-section: #14161c;
    --bg-card: #1c1e26;
    --text-muted: #9ca3af;
    --text-light: #f3f4f6;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
}

/* Typography & Colors */
.text-primary { color: var(--primary-color) !important; }
.text-muted { color: var(--text-muted) !important; }
.bg-section { background-color: var(--bg-section); }
.bg-card { background-color: var(--bg-card); }

h1, h2, h3, h4, h5, h6 { font-weight: 700; }
.fs-sm { font-size: 0.85rem; }

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    padding: 10px 24px;
    font-weight: 600;
}
.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}
.btn-outline-light {
    padding: 10px 24px;
    font-weight: 600;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
}
.btn-outline-light:hover {
    background-color: #fff;
    color: var(--bg-dark);
}

/* Navbar */
.navbar {
    background-color: var(--bg-dark);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.navbar-brand { font-weight: 700; font-size: 1.4rem; letter-spacing: 1px;}
.navbar-brand span { color: var(--primary-color); }
.nav-link { color: var(--text-light) !important; font-size: 0.9rem; margin: 0 12px; font-weight: 400;}
.nav-link:hover { color: var(--primary-color) !important; }
.navbar .btn-primary { font-size: 0.9rem; padding: 10px 20px; border-radius: 30px; }

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 100px 0;
    background-color: var(--bg-dark);
    background-image: linear-gradient(180deg, var(--bg-dark) 70%, #0e1015 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-eyebrow {
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.hero h1 { 
    font-size: 3.4rem; 
    line-height: 1.15; 
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero p { 
    font-size: 1.05rem; 
    color: var(--text-muted); 
    max-width: 570px; 
    margin-bottom: 40px; 
    line-height: 1.6;
}

.hero img { 
    position: relative;
    top: -30px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}

.ghost-link {
    color: rgba(255, 255, 255, 0.2);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}
.ghost-link:hover {
    color: rgba(255, 255, 255, 0.5);
}

/* Stats Row in Hero */
.hero-stats-row {
    display: flex;
    gap: 60px;
}
.hero-stats-row h3 { 
    color: #fff; 
    font-size: 2rem; 
    margin-bottom: 2px; 
    letter-spacing: -0.5px;
}
.hero-stats-row p { 
    font-size: 0.85rem; 
    font-weight: 400; 
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Hero Right Card */
.hero-feature-card {
    background-color: #13151b; /* Tom escuro levemente destacado */
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 255, 255, 0.03);
    max-width: 500px;
    margin-left: auto;
}

.hero-card-graphic {
    background: linear-gradient(135deg, #422915 0%, #201712 100%);
    height: 220px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
}

.hc-circle {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: #a15d24; /* Laranja/marrom sólido */
    border-radius: 50%;
    top: 45px;
    left: 45px;
}

.hc-rect {
    position: absolute;
    width: 170px;
    height: 140px;
    background-color: rgba(255, 255, 255, 0.04);
    top: 60px;
    right: 25px;
    border-radius: 4px;
}

.hero-feature-card h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.hero-feature-card p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.hero-feature-card .card-footer-link {
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.85rem;
    text-decoration: none;
    display: block;
}

/* General Section padding */
section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.5rem; }
.section-header p { color: var(--text-muted); max-width: 600px; margin: 15px auto 0; }

/* Restante do CSS original mantido abaixo... */
.custom-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease;
}
.custom-card:hover { transform: translateY(-5px); border-color: rgba(243, 115, 33, 0.3); }
.icon-box {
    width: 50px; height: 50px;
    background-color: rgba(243, 115, 33, 0.1);
    color: var(--primary-color);
    display: flex; align-items: center; justify-content: center;
    border-radius: 10px;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Projetos */
.project-filter .btn {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    margin: 0 5px;
}
.project-filter .btn.active, .project-filter .btn:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}
.project-img {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}
.project-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s;
}
.project-img:hover img { transform: scale(1.05); }

/* Depoimentos */
.testimonial-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    position: relative;
}
.quote-icon {
    position: absolute; top: 20px; right: 20px;
    color: rgba(243, 115, 33, 0.1);
    font-size: 3rem;
}
.client-info { display: flex; align-items: center; margin-top: 20px; }
.client-avatar {
    width: 50px; height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: bold; margin-right: 15px;
}

/* Contato */
.form-control {
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 12px 15px;
}
.form-control:focus {
    background-color: rgba(255,255,255,0.1);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: none;
}
.contact-info-item { display: flex; margin-bottom: 25px; }
.contact-info-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 5px;
}

/* Footer */
footer { padding: 30px 0; border-top: 1px solid rgba(255,255,255,0.05); text-align: center; }