body {
    background: #f5f5f5;
}

/* MENU */
header {
    background: #0a66c2;
    padding: 10px 0;
}

nav {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    color: white;
    font-size: 24px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* HERO */
.hero {
    background: url('../img/bg.jpg') center/cover no-repeat;
    height: 300px;
    display: flex;
    align-items: center;
    padding-left: 50px;
}

.hero-text {
    max-width: 500px;
}

.hero-text h2 {
    font-size: 32px;
    color: #0a66c2;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #0a66c2;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

/* CURRÍCULO */
.profile {
    text-align: center;
    padding: 30px;
    background: white;
}

.profile img {
    width: 150px;
    border-radius: 50%;
}

.section {
    width: 80%;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
}

.item {
    margin-bottom: 20px;
}

.item h4 {
    margin: 0;
    color: #0a66c2;
}

.item span {
    font-size: 14px;
    color: gray;
}

/* PORTFÓLIO */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 8px;
}

.text-justify {
    text-align: justify !important;
}
