* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --header: #f5f5f5;
    --primary: #531ea0;
    --dark-bg: #531ea0;
    --light-bg: #f5f5f5;
    --text-light: #fff;
    --text-dark: #222;
}

body {
    font-family: Arial, sans-serif;
    color: var(--text-dark);
    background: var(--light-bg);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* HEADER */
header {
    background: var(--header);
    padding: 1rem 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
}

.nav a {
    color: var(--text-light);
    margin-left: 1.5rem;
    text-decoration: none;
}

.nav .btn-primary {
    background: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

/* HERO */
.hero {
    position: relative;
    padding: 4rem 0;
    background: url('../img/fundo.jpg') center/cover no-repeat;
}

.hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    display: flex;
    align-items: center;
}

.hero-text {
    flex: 1;
    color: #fff;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-text p {
    margin-bottom: 1.5rem;
}

.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
}

/* SERVIÇOS */
.features {
    padding: 3rem 0;
    background: #fff;
}

.features h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    text-align: center;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 6px;
}

.feature-card img {
    height: 60px;
    margin-bottom: 1rem;
}


/* FOOTER */
footer {
    background: var(--dark-bg);
    color: #fff;
    padding: 2rem 0;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem;
}

.footer-col h3 {
    margin-bottom: 1rem;
}

.footer-col a {
    color: #fff;
    text-decoration: underline;
}

.footer-col p {
    margin-bottom: 3px;
}

.footer-copy {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

/* RESPONSIVO */
@media(max-width:768px) {
    .hero-content,
    .contact-form {
        flex-direction: column;
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 2rem;
    }
}