/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    color: #2c3e50;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background-color: #2c3e50;
    color: #fff;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.hero h2 {
    font-size: 1.2rem;
    font-weight: 400;
    color: #ecf0f1;
    margin-bottom: 5px;
}

.hero p {
    font-size: 1rem;
    opacity: 0.8;
}

.profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    margin-bottom: 20px;
    background-color: #ddd;
}

/* Sections */
.section {
    background: #fff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.section-title {
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* Job Cards */
.job-card {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.job-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.job-card h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.company {
    display: block;
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Grid Layout for Education/Courses */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .grid-2-col {
        grid-template-columns: 1fr 1fr;
    }
}

.list-group {
    list-style: none;
}

.list-group li {
    margin-bottom: 15px;
}

/* Skills */
.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tag {
    background-color: #e1f0fa;
    color: #2980b9;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: default;
}

.skill-tag:hover {
    background-color: #3498db;
    color: #fff;
    transform: translateY(-2px);
}

footer {
    text-align: center;
    padding: 40px 0;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.btn-agency {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: background-color 0.3s;
}

.btn-agency:hover {
    background-color: #2980b9;
}