body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #3f353c;
    line-height: 1.6;
    background-color: #f6f6f6; /* Suave fondo gris */
}

.container {
    width: 85%; /* Aumenta un poco el ancho */
    max-width: 1200px;
    margin: 0 auto;
}

.hero {
    background-image: url('tu-imagen-de-fondo.jpg'); /* Reemplaza con tu imagen */
    background-size: cover;
    background-position: center;
    color: #e7d5d5;
    text-align: center;
    padding: 180px 0; /* Aumenta el padding */
}

.hero-title {
    font-size: 3.5em; /* Aumenta el tamaño del título */
    margin-bottom: 15px;
    font-weight: 700;
    color: #FFA0A9;
}

.hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #FFA0A9;
}

.btn {
    display: inline-block;
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-weight: 600;
}

.btn--primary {
    background-color: #FFA0A9;
    color: #fff;
}

.btn-primary:hover {
    background-color: #FF8089;
    transform: translateY(-2px);
}

.section {
    padding: 80px 0; /* Aumenta el padding */
}

.section-title {
    font-size: 2.5em;
    margin-bottom: 40px;
    text-align: center;
    color: #3f353c;
}

.about-me .profile {
    display: flex;
    align-items: center;
    gap: 40px;
}

.profile-image {
    border-radius: 50%;
    width: 180px;
    height: 180px;
    object-fit: cover;
    box-shadow: 0 4px 8px #3f353c;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* Aumenta el minmax */
    gap: 30px;
    margin-top: 40px;
}

.project {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px #3f353c;
    transition: transform 0.2s ease;
}

.project:hover {
    transform: translateY(-5px);
}

.project-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #3f353c;
}

.skills-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.skills-list li {
    background-color: #e9e9e9;
    padding: 12px 20px;
    margin-bottom: 15px;
    border-radius: 6px;
    font-weight: 500;
}

.footer {
    background-color: #3f353c;
    color: #fff;
    text-align: center;
    padding: 40px 0;
}

.footer a {
    color: #FFA0A9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #FF8089;
}

.social-links {
    margin-top: 15px;
}

.social-links a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    font-size: 1.1em;
}

.social-logo {
    width: 24px; 
    height: 24px;
    margin-left: 5px; /* Espacio entre el texto y el logo */
}

/* Diseño Responsivo */
@media (max-width: 768px) {
    .about-me .profile {
        flex-direction: column;
        align-items: center;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }
}