
        /* General */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #bafae0;
    color: #333;
}

/* Header */
.header {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}
.header__title {
    font-size: 3rem;
    filter: drop-shadow(3px 1px 1px rgb(255, 255, 255));
    color: #06bd92;
}
.header__subtitle {
    font-size: 2rem;
    filter: drop-shadow(3px 1px 1px rgb(142, 140, 140));
}

/* Navegación */
.nav__list {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
}
.nav__item {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.9);
}
.nav__link {
    display: block;
    padding: 10px 15px;
    background-color: #06bd92;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

/* Secciones */
.section__title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
}

/* Sobre mí */
.about {
    padding: 40px;
    text-align: center;
}

/* Proyectos */
.projects {
    text-align: center;
    padding: 40px;
}
.project {
    background: #fff;
    padding: 20px;
    margin: 20px auto;
    width: 80%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    max-width: 600px;
}
.project__title {
    font-size: 1.8rem;
    font-weight: bold;
}
.project__description {
    font-size: 1rem;
}
.project__image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

/* Habilidades */
.skills {
    text-align: center;
    padding: 40px;
}
.skills__list {
    list-style: none;
    padding: 0;
}
.skills__item {
    background: #06bd92;
    display: inline-block;
    padding: 10px;
    color: #fff;
    margin: 5px;
    border-radius: 5px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
}

/* Sección de Contacto */
.contact {
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    padding: 40px;
    min-height: 300px; /* Ajusta según necesites */
    max-height: auto;
}

/* Contenedor de elementos de contacto */
.contact__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Espacio entre elementos */
    width: 100%;
}

/* Cada elemento de contacto tiene la misma altura */
.contact__item {
    background: #ffffff;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    color: #000;
    text-align: center;
    flex: 1; /* Hace que todos tengan el mismo tamaño */
    min-width: 250px; /* Ajusta según la responsividad */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Hace que todos tengan el mismo tamaño basado en el más grande */
.contact__container .contact__item {
    height: auto; /* Se adapta al contenido */
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
}

/* Responsividad */
@media (max-width: 768px) {
    .header__title { font-size: 2rem; }
    .section__title { font-size: 1.8rem; }
    .project { width: 90%; }
}
