* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    color: #222;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* HEADER */
.header {
    background: #FFFFFF;
    border-bottom: 1px solid #eee;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 200px;
}

/* NAV */
.nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
}

/* HERO */
.hero {
    background-color: #000000;
    padding: 60px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.4rem;
    color: #ffffff;
}

/* SECTIONS */
.section {
    padding: 60px 0;
}

.bg-light {
    background-image: url("consultoria empresarial.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section h2 {
    margin-bottom: 20px;
}

/* SERVICES */
.services-list {
    list-style: none;
}

.services-list li {
    padding: 10px 0;
	text-align: center;
}

/* FOOTER */
.footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}
