* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #f8f9fb;
    color: #333;
    overflow-x: hidden;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, .08);
}

.nav {
    max-width: 1400px;
    margin: auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: #5b1e68;
}

.logo span {
    color: #67d300;
}

nav a {
    margin-left: 30px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(38, 0, 55, .45), rgba(18, 0, 30, .80));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 950px;
    padding: 30px;
}

.hero-badge {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 40px;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(10px);
    margin-bottom: 30px;
    font-size: 14px;
}

.hero h1 {
    font-size: 4.2rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: auto auto 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

.btn-primary {
    background: #67d300;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-secondary {
    border: 2px solid white;
    color: white;
}

section {
    padding: 100px 10%;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: #5b1e68;
    margin-bottom: 60px;
}

.sobre {
    max-width: 1000px;
    margin: auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.9;
}

.numeros {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.numero {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.numero h2 {
    color: #67d300;
    font-size: 3rem;
}

.servicos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    transition: .3s;
}

.card:hover {
    transform: translateY(-8px);
}

.card h3 {
    color: #5b1e68;
    margin-bottom: 15px;
}

.card p {
    line-height: 1.8;
}

/* Área de serviços específicos */
.services-section { background: #f1f2f5; padding: 110px 10%; }
.services-header { max-width: 1250px; margin: 0 auto 55px; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr); gap: 70px; align-items: end; }
.section-kicker { display: block; color: #67d300; font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
.services-header .section-title { margin: 0; text-align: left; font-size: clamp(2.1rem, 4vw, 3.3rem); line-height: 1.12; }
.services-header > p { color: #64616a; line-height: 1.85; font-size: 1.04rem; margin: 0 0 4px; }
.services-grid { max-width: 1250px; margin: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { background: #fff; min-height: 380px; padding: 30px; border: 1px solid rgba(91, 30, 104, .08); border-radius: 14px; box-shadow: 0 8px 25px rgba(37, 25, 43, .045); display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-6px); border-color: rgba(103, 211, 0, .65); box-shadow: 0 16px 34px rgba(37, 25, 43, .1); }
.service-card-featured { background: #5b1e68; color: #fff; }
.service-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 34px; }
.service-number { color: #67d300; font-size: .85rem; font-weight: 800; letter-spacing: .08em; }
.service-tag { color: #77727d; background: #f1f2f5; border-radius: 30px; padding: 7px 11px; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.service-card-featured .service-tag { color: #eee7f0; background: rgba(255,255,255,.12); }
.service-card h3 { color: #5b1e68; font-size: 1.42rem; margin-bottom: 14px; }
.service-card-featured h3 { color: #fff; }
.service-card p { color: #66626c; line-height: 1.7; font-size: .94rem; margin-bottom: 19px; }
.service-card-featured p { color: rgba(255,255,255,.82); }
.service-card ul { list-style: none; padding: 0; margin: 0 0 24px; }
.service-card li { color: #55515b; font-size: .81rem; line-height: 1.5; padding: 7px 0 7px 19px; border-top: 1px solid #ececf0; position: relative; }
.service-card li::before { content: '✓'; color: #67d300; font-weight: 800; position: absolute; left: 0; }
.service-card-featured li { color: rgba(255,255,255,.82); border-color: rgba(255,255,255,.15); }
.service-card a { color: #5b1e68; font-size: .86rem; font-weight: 800; text-decoration: none; margin-top: auto; }
.service-card a span, .services-cta span { color: #67d300; font-size: 1.15rem; margin-left: 5px; }
.service-card-featured a { color: #fff; }
.services-bottom { max-width: 1250px; margin: 35px auto 0; padding: 25px 0 0; border-top: 1px solid rgba(91,30,104,.15); display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.services-bottom p { color: #64616a; line-height: 1.6; font-size: .93rem; margin: 0; }
.services-bottom strong { color: #5b1e68; }
.services-cta { flex: 0 0 auto; color: #5b1e68; border: 1px solid #5b1e68; border-radius: 7px; padding: 13px 18px; text-decoration: none; font-size: .83rem; font-weight: 800; }

.cta {
    background: #5b1e68;
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta p {
    margin-bottom: 40px;
    font-size: 1.1rem;
}

form {
    max-width: 700px;
    margin: auto;
    display: grid;
    gap: 15px;
}

input, textarea {
    padding: 18px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
}

button {
    padding: 18px;
    background: #67d300;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
}

footer {
    background: #1f1f1f;
    color: white;
    text-align: center;
    padding: 40px;
}

@media(max-width: 900px) {
    .hero h1 { font-size: 2.7rem; }
    .hero p { font-size: 1rem; }
    .numeros { grid-template-columns: 1fr 1fr; }
    .services-header { grid-template-columns: 1fr; gap: 22px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .services-bottom { align-items: flex-start; flex-direction: column; }
    nav { display: none; }
}

@media(max-width: 600px) {
    .numeros { grid-template-columns: 1fr; }
    .services-section { padding: 75px 7%; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 340px; }
}
