:root {
    --primary: #f8e4e4;
    --primary-dark: #e9cfcf;
    --secondary: #f4f1ea;
    --accent: #e67e22;
    --text: #333;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --card-bg: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: var(--secondary);
}

/* HEADER */
.header {
    background: var(--white);
    padding: 10px 5%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
}

.navbar {
    display: flex;
    gap: 25px;
}

.navbar a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
}

.navbar a:hover {
    color: var(--accent);
}

/* CONTATO */
.contact-section {
    background: var(--primary);
    text-align: center;
    padding: 60px 20px;
}

.cta-button {
    margin-top: 20px;
    display: inline-block;
    padding: 15px 30px;
    background: var(--accent);
    color: white;
    border-radius: 50px;
    text-decoration: none;
}

/* FOOTER */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-media img {
    width: 40px;
}