css

    { margin: 0; padding: 0; box-sizing: border-box; }

:root {
--primary: #0066ff;
--secondary: #00d4ff;
--dark: #0f1419;
--light: #f5f7fa;
--text: #1a1a1a;
--border: #e0e0e0;
}

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
color: var(--text);
background: #fff;
line-height: 1.6;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

/* NAVBAR */
.navbar {
background: white;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
position: sticky;
top: 0;
z-index: 100;
}

.navbar .container {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 20px;
}

.logo {
display: flex;
align-items: center;
gap: 10px;
font-size: 1.5rem;
font-weight: bold;
color: var(--primary);
cursor: pointer;
}

.logo i {
font-size: 1.8rem;
}

.nav-links {
display: flex;
list-style: none;
gap: 2rem;
}

.nav-links a {
text-decoration: none;
color: var(--text);
font-weight: 500;
transition: color 0.3s;
}

.nav-links a:hover {
color: var(--primary);
}

.hamburger {
display: none;
flex-direction: column;
cursor: pointer;
gap: 5px;
}

.hamburger span {
width: 25px;
height: 3px;
background: var(--text);
transition: 0.3s;
}

/* HERO SECTION */
.hero {
display: grid;
grid-template-columns: 1fr 1fr;
align-items: center;
gap: 4rem;
padding: 6rem 20px;
max-width: 1200px;
margin: 0 auto;
background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.hero-content h1 {
font-size: 3rem;
margin-bottom: 1rem;
color: var(--dark);
line-height: 1.2;
}

.hero-content p {
font-size: 1.1rem;
color: #666;
margin-bottom: 2rem;
}

.cta-btn {
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: white;
border: none;
padding: 1rem 2.5rem;
border-radius: 50px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: transform 0.3s, box-shadow 0.3s;
box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.cta-btn:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
}

.cta-btn:active {
transform: translateY(0);
}

.hero-image {
position: relative;
height: 400px;
}

.floating-card {
position: absolute;
width: 100px;
height: 100px;
background: white;
border-radius: 15px;
display: flex;
align-items: center;
justify-content: center;
font-size: 2.5rem;
color: var(--primary);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
animation: float 3s ease-in-out infinite;
}

.card-1 {
top: 20px;
left: 0;
animation-delay: 0s;
}

.card-2 {
top: 150px;
right: 0;
animation-delay: 0.5s;
}

.card-3 {
bottom: 20px;
left: 50px;
animation-delay: 1s;
}

@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-20px); }
}

/* SERVIÇOS */
.servicos {
padding: 6rem 0;
background: var(--light);
}

.servicos h2 {
text-align: center;
font-size: 2.5rem;
margin-bottom: 4rem;
color: var(--dark);
}

.servicos-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}

.servico-card {
background: white;
padding: 2rem;
border-radius: 10px;
text-align: center;
transition: transform 0.3s, box-shadow 0.3s;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.servico-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.icon-box {
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.8rem;
color: white;
margin: 0 auto 1rem;
}

.servico-card h3 {
font-size: 1.3rem;
margin-bottom: 1rem;
color: var(--dark);
}

.servico-card p {
color: #666;
}

/* SOBRE */
.sobre {
padding: 6rem 0;
}

.sobre-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}

.sobre h2 {
font-size: 2.5rem;
margin-bottom: 2rem;
color: var(--dark);
}

.benefits-list {
list-style: none;
}

.benefits-list li {
display: flex;
align-items: center;
gap: 1rem;
margin-bottom: 1.5rem;
font-size: 1.1rem;
}

.benefits-list i {
color: var(--primary);
font-size: 1.3rem;
}

.stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
}

.stat {
text-align: center;
padding: 2rem;
background: var(--light);
border-radius: 10px;
}

.stat h3 {
font-size: 2.5rem;
color: var(--primary);
margin-bottom: 0.5rem;
}

.stat p {
color: #666;
}

/* CONTATO */
.contato {
padding: 6rem 0;
background: var(--light);
}

.contato h2 {
text-align: center;
font-size: 2.5rem;
margin-bottom: 3rem;
color: var(--dark);
}

.contact-form {
max-width: 600px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
padding: 1rem;
border: 1px solid var(--border);
border-radius: 8px;
font-family: inherit;
font-size: 1rem;
transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
outline: none;
border-color: var(--primary);
box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

/* FOOTER */
.footer {
background: var(--dark);
color: white;
padding: 2rem 0;
text-align: center;
}

.footer .container {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 1rem;
}

.social-links {
display: flex;
gap: 1.5rem;
}

.social-links a {
color: white;
font-size: 1.3