@charset "utf-8";
body {
	font-family: Space Grotesk;
	margin: 0;
	color: #333;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 60px;
    background: white;
}

.nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.nav a:hover {
    color: #b71c1c;
}

/* HERO */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px;
    background: #f5f5f5;
}

.hero-text {
    width: 50%;
}

.hero-text h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero-text p {
    margin-bottom: 25px;
    line-height: 1.6;
}

.hero-img img {
    width: 450px;
}

.btn-principal {
    background: #b71c1c;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
}

.btn-principal:hover {
    background: #8e0000;
}

/* PRINCIPIOS */
.principios {
    padding: 60px;
    text-align: center;
}

.cards {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.card {
    width: 30%;
    background: #fafafa;
    padding: 20px;
    border-radius: 10px;
}

.card img {
    width: 60px;
    margin-bottom: 15px;
}

.btn-secundario {
    background: #e0e0e0;
    border: none;
    padding: 8px 18px;
    border-radius: 20px;
    cursor: pointer;
}

.btn-secundario:hover {
    background: #ccc;
}

/* FOOTER */
.footer {
    background: #111;
    color: white;
    padding: 25px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
}