/*
Theme Name: Onnova Estúdio Criativo
Theme URI: https://onnova.netlify.app/
Description: Tema personalizado baseado no site Onnova Estúdio Criativo.
Author: Manus AI
Version: 1.0
Text Domain: onnova
*/

:root {
    --background: 0 0% 95.3%;
    --foreground: 0 0% 0%;
    --primary: 0 0% 0%;
    --primary-foreground: 0 0% 100%;
    --secondary: 0 0% 34.1%;
    --secondary-foreground: 0 0% 100%;
    --muted: 0 0% 90%;
    --muted-foreground: 0 0% 34.1%;
    --accent: 0 0% 90%;
    --accent-foreground: 0 0% 0%;
    --border: 0 0% 85%;
    --radius: 0.5rem;
    --folder-color: #70a1ff;
    --folder-back-color: #4785ff;
}

body {
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    font-family: 'Inter', sans-serif;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

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

header {
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    background: rgba(243, 243, 243, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 0.75rem 2rem;
    border-radius: 100px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.nav-links a {
    margin: 0 1rem;
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #000;
}

.btn-contact {
    background: #000;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
}

.hero {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
    color: white;
}

.hero h1 {
    font-size: 4rem;
    max-width: 800px;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    color: #aaa;
    max-width: 600px;
    margin-bottom: 2rem;
}

.btn-primary {
    background: white;
    color: black;
    padding: 1rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    margin: 0 0.5rem;
}

.btn-secondary {
    border: 1px solid white;
    color: white;
    padding: 1rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    margin: 0 0.5rem;
}

section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid hsl(var(--border));
}
