 /* Version CSS 2025-03-02 */
 @import url('https://fonts.googleapis.com/css2?family=Righteous&family=Work+Sans:wght@100;300;400;600;800&display=swap');

 * {
     box-sizing: border-box;
     font-family: 'Work Sans';
     margin: 0;
     padding: 0;
 }

 html {
     /* me permite deslizar cuando hago clic en los links del menu */
     scroll-behavior: smooth;
 }

 /* MENU */
 .contenedor-header {
     background: #1e2326;
     position: fixed;
     width: 100%;
     top: 0;
     left: 0;
     z-index: 99;
     padding: 10px 0;
 }

 .contenedor-header header {
     max-width: 1100px;
     margin: auto;
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 15px 20px;
 }

 .contenedor-header header .logo a {
     font-family: 'Righteous';
     font-size: 28px;
     color: #1CB698;
     text-decoration: none;
 }

 .contenedor-header header ul {
     display: flex;
     list-style: none;
 }

 .contenedor-header header nav ul li a {
     text-align: none;
     color: #fff;
     margin: 0 15px;
     padding: 3px;
     transition: .5s;
     text-decoration: none;
 }

 .contenedor-header header nav ul li a:hover {
     color: #1CB698;
 }

 /* El atributo .display esta en none, pero nos permite visualizar el icono de menu !!! */
 .nav-responsive {
     background-color: #1CB698;
     color: #fff;
     padding: 5px 10px;
     border-radius: 5px;
     cursor: pointer;
     display: none;
 }

 /* Estilo para el menú de navegación */
 nav#nav {
     width: 100%;
     display: flex;
     justify-content: center;
 }

 nav#nav ul {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     max-width: 1100px;
     padding: 5px 0;
 }

 nav#nav ul li {
     margin: 5px 10px;
     text-align: center;
 }

 /* Ajustes responsivos */
 @media screen and (max-width: 991px) {
     nav#nav ul {
         padding: 0;
     }

     nav#nav ul li {
         margin: 3px 8px;
     }

     nav#nav ul li a {
         font-size: 14px;
     }
 }

 /* Mantener el menú responsive para móviles */
 @media screen and (max-width: 700px) {
     nav#nav {
         display: none;
     }

     .nav-responsive {
         display: block;
     }

     nav.responsive {
         display: block;
         position: absolute;
         width: 100%;
         top: 75px;
         left: 0;
         background-color: #252A2E;
         padding: 10px 0;
         z-index: 99;
     }

     nav.responsive ul {
         display: block;
         text-align: center;
     }

     nav.responsive ul li {
         margin: 10px 0;
     }
 }

 /* SECCION I N I C I O */
 .inicio {
     background: linear-gradient(to top, rgba(30, 35, 38, .8), rgba(30, 35, 38, 1)),
         url(img/fondo-min.png);
     background-size: cover;
     height: 100vh;
     color: #fff;
     display: flex;
     align-items: center;
 }

 .inicio .contenido-banner {
     padding: 20px;
     background-color: #1e2326;
     max-width: 350px;
     margin: 80px auto 0 auto;
     text-align: center;
     border-radius: 40px;
 }

 .inicio .contenido-banner img {
     margin-top: 40px;
     border: 10px solid #1CB698;
     display: block;
     width: 80%;
     margin: auto;
     border-radius: 100%;
 }

 .inicio .contenido-banner h1 {
     margin-top: 40px;
     font-size: 42px;
     font-family: 'Righteous';
 }

 .inicio .contenido-banner h2 {
     font-size: 15px;
     font-weight: normal;
 }

 .inicio .contenido-banner .redes a {
     color: #fff;
     display: inline-block;
     text-decoration: none;
     border: 1px solid #fff;
     border-radius: 100%;
     width: 42px;
     height: 42px;
     line-height: 42px;
     margin: 40px 5px;
     font-size: 20px;
     transition: .3s;
 }

 .inicio .contenido-banner .redes a:hover {
     background-color: #1CB698;
 }

 /* SECCION S O B R E - M I */
 .sobremi {
     background-color: #1e2326;
     color: #fff;
     padding: 50px 20px;
 }

 .sobremi .contenido-seccion {
     max-width: 1100px;
     margin: auto;
 }

 .sobremi h2 {
     font-size: 48px;
     font-family: 'Righteous';
     text-align: center;
     padding: 20px 0;
 }

 .sobremi .contenido-seccion p {
     font: 18px;
     line-height: 22px;
     margin-bottom: 20px;
     text-align: justify;
 }

 .sobremi .contenido-seccion p span {
     color: #1CB698;
     font-weight: bold;
 }

 .sobremi .fila {
     display: flex;
 }

 .sobremi .fila .col {
     width: 50%;
 }

 .sobremi .fila .col h3 {
     font-size: 28px;
     font-family: 'Righteous';
     margin-bottom: 25px;
 }

 .sobremi .fila .col ul {
     list-style: none;
 }

 .sobremi .fila .col ul li {
     margin: 12px 0;
 }

 .sobremi .fila .col ul li strong {
     display: inline-block;
     color: #1CB698;
     width: 130px;
 }

 .sobremi .fila .col ul li span {
     background-color: #1CB698;
     padding: 3px;
     font-weight: bold;
     border-radius: 5px;
 }

 .sobremi .fila .col .contenedor-intereses {
     display: flex;
     flex-wrap: wrap;
 }

 .sobremi .fila .col .contenedor-intereses .interes {
     width: 100px;
     height: 100px;
     background-color: #252A2E;
     border-radius: 10px;
     margin: 0 15px 15px 0;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     transition: .3s;
 }

 .sobremi .fila .col .contenedor-intereses .interes:hover {
     background-color: #1CB698;
 }

 .sobremi .fila .col .contenedor-intereses .interes i {
     font-size: 30px;
     margin-bottom: 10px;
 }

 /* SECCION S K I L L S */
 .skills {
     background-color: #252A2E;
     color: #fff;
     padding: 50px 20px;
 }

 .skills .contenido-seccion {
     max-width: 1100px;
     margin: auto;
 }

 .skills h2 {
     font-size: 48px;
     font-family: 'Righteous';
     text-align: center;
     padding: 20px 0;
 }

 .skills .fila {
     display: flex;
 }

 .skills .fila .col {
     width: 50%;
     padding: 0 20px;
 }

 .skills .fila .col h3 {
     font-size: 28px;
     font-family: 'Righteous';
     margin-bottom: 25px;
 }

 .skills .skill>span {
     font-weight: bold;
     display: block;
     margin-bottom: 10px;
 }

 .skills .skill .barra-skill {
     height: 8px;
     width: 80%;
     background-color: #131517;
     position: relative;
     margin-bottom: 30px;
 }

 .skills .skill .progreso {
     background-color: #1CB698;
     position: absolute;
     top: 0;
     left: 0;
     height: 8px;
 }

 .skills .skill .barra-skill span {
     position: absolute;
     height: 40px;
     width: 40px;
     background-color: #1CB698;
     border-radius: 50px;
     line-height: 40px;
     text-align: center;
     top: -17px;
     right: -15px;
     font-size: 14px;
 }

 /* Estas clases se agregaran dinamicamente mediante javascript */
 .skills .skill .javascript {
     width: 0%;
     animation: 2s javascript forwards;
 }

 @keyframes javascript {
     0% {
         width: 0%;
     }

     100% {
         width: 90%;
     }
 }

 .skills .skill .htmlcss {
     width: 0%;
     animation: 2s htmlcss forwards;
 }

 @keyframes htmlcss {
     0% {
         width: 0%;
     }

     100% {
         width: 85%;
     }
 }

 .skills .skill .photoshop {
     width: 0%;
     animation: 2s photoshop forwards;
 }

 @keyframes photoshop {
     0% {
         width: 0%;
     }

     100% {
         width: 75%;
     }
 }

 .skills .skill .wordpress {
     width: 0%;
     animation: 2s wordpress forwards;
 }

 @keyframes wordpress {
     0% {
         width: 0%;
     }

     100% {
         width: 95%;
     }
 }

 .skills .skill .drupal {
     width: 0%;
     animation: 2s drupal forwards;
 }

 @keyframes drupal {
     0% {
         width: 0%;
     }

     100% {
         width: 55%;
     }
 }

 .skills .skill .comunicacion {
     width: 0%;
     animation: 2s comunicacion forwards;
 }

 @keyframes comunicacion {
     0% {
         width: 0%;
     }

     100% {
         width: 80%;
     }
 }

 .skills .skill .trabajo {
     width: 0%;
     animation: 2s trabajo forwards;
 }

 @keyframes trabajo {
     0% {
         width: 0%;
     }

     100% {
         width: 85%;
     }
 }

 .skills .skill .creatividad {
     width: 0%;
     animation: 2s creatividad forwards;
 }

 @keyframes creatividad {
     0% {
         width: 0%;
     }

     100% {
         width: 99%;
     }
 }

 .skills .skill .dedicacion {
     width: 0%;
     animation: 2s dedicacion forwards;
 }

 @keyframes dedicacion {
     0% {
         width: 0%;
     }

     100% {
         width: 87%;
     }
 }

 .skills .skill .proyect {
     width: 0%;
     animation: 2s proyect forwards;
 }

 @keyframes proyect {
     0% {
         width: 0%;
     }

     100% {
         width: 89%;
     }
 }

 /* SECCION CURRICULUM */
 .curriculum {
     background-color: #1e2326;
     color: #fff;
     padding: 50px 20px;
 }

 .curriculum .contenido-seccion {
     max-width: 1100px;
     margin: auto;
 }

 .curriculum h2 {
     font-size: 48px;
     font-family: 'Righteous';
     text-align: center;
     padding: 20px 0;
     /* Asegurar que el título siempre sea visible */
     color: #fff;
     /* Añadir color explícito */
     margin-bottom: 20px;
     margin-top: 80px;
 }

 .curriculum .fila {
     display: flex;
     justify-content: space-between;
 }

 .curriculum .fila .col {
     width: 49%;
     padding: 0 20px;
 }

 .curriculum .fila .col h3 {
     font-size: 28px;
     font-family: 'Righteous';
     margin-bottom: 25px;
 }

 .curriculum .fila .izquierda {
     border-right: 2px solid #252A2E;
 }

 .curriculum .fila .derecha {
     border-left: 2px solid #252A2E;
 }

 .curriculum .fila .item {
     padding: 25px;
     margin-bottom: 30px;
     background-color: #252A2E;
     position: relative;
 }

 .curriculum .fila .item h4 {
     font-size: 20px;
     margin-bottom: 10px;
 }

 .curriculum .fila .item .casa {
     color: #1CB698;
     font-size: 22px;
     font-weight: bold;
     display: block;
 }

 .curriculum .fila .item .fecha {
     display: block;
     color: #1CB698;
     margin-bottom: 10px;
 }

 .curriculum .fila .item p {
     line-height: 24px;
     text-align: justify;
 }

 .curriculum .fila .izq {
     border-right: 2px solid #1CB698;
     margin-right: 20px;
 }

 .curriculum .fila .der {
     border-left: 2px solid #1CB698;
     margin-left: 20px;
 }

 .curriculum .fila .item .conectori {
     height: 2px;
     background-color: #1CB698;
     width: 47px;
     position: absolute;
     top: 50%;
     right: -47px;
     z-index: 5;
 }

 .curriculum .fila .item .conectori .circuloi {
     display: block;
     height: 10px;
     width: 10px;
     border-radius: 50%;
     background-color: #1CB698;
     float: right;
     position: relative;
     bottom: 4px;
 }

 .curriculum .fila .item .conectord {
     height: 2px;
     background-color: #1CB698;
     width: 47px;
     position: absolute;
     top: 50%;
     left: -47px;
     z-index: 5;
 }

 .curriculum .fila .item .conectord .circulod {
     display: block;
     height: 10px;
     width: 10px;
     border-radius: 50%;
     background-color: #1CB698;
     float: left;
     position: relative;
     bottom: 4px;
 }

 .curriculum button {
     cursor: pointer;
     background-color: transparent;
     border: 2px solid #fff;
     width: fit-content;
     display: block;
     margin: 20px auto;
     padding: 10px 22px;
     font-size: 16px;
     color: #fff;
     position: relative;
     z-index: 10;
 }

 .curriculum button .overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 0;
     height: 100%;
     background-color: #1CB698;
     z-index: -1;
     transition: 1s;
 }

 .curriculum button:hover .overlay {
     width: 100%;
 }

 /* SECCION PORTFOLIO */
 .portfolio {
     background-color: #252A2E;
     color: #fff;
     padding: 50px 20px;
 }

 .portfolio .contenido-seccion {
     max-width: 1100px;
     margin: auto;
 }

 .portfolio h2 {
     font-size: 48px;
     font-family: 'Righteous';
     text-align: center;
     padding: 20px 0;
 }

 .portfolio .galeria {
     display: flex;
     flex-wrap: wrap;
     justify-content: space-around;
 }

 .portfolio .galeria .proyecto {
     position: relative;
     max-width: 340px;
     height: fit-content;
     margin: 10px;
     cursor: pointer;
 }

 .portfolio .galeria .proyecto img {
     width: 100%;
     display: block;
 }

 .portfolio .galeria .proyecto .overlay {
     position: absolute;
     top: 0;
     width: 100%;
     height: 100%;
     text-align: center;
     background: linear-gradient(rgba(28, 182, 152, .8), rgba(28, 182, 152, .8));
     display: flex;
     flex-direction: column;
     justify-content: center;
     transition: 1s;
     font-size: 18px;
     letter-spacing: 3px;
     opacity: 0;
 }

 .portfolio .galeria .proyecto .overlay h3 {
     margin-bottom: 20px;
     transition: 1s;
 }

 .portfolio .galeria .proyecto .overlay:hover {
     opacity: 1;
 }

 .portfolio .galeria .proyecto .overlay:hover h3 {
     margin-bottom: 0px;
 }

 /* SECCION CONTACTO */
 .contacto {
     background-image: url(img/contact_bg.png);
     background-color: #1e2326;
     color: #fff;
     padding: 50px 0;
     background-size: cover;
     background-position: center;
 }

 .contacto .contenido-seccion {
     max-width: 1100px;
     margin: auto;
 }

 .contacto h2 {
     font-size: 48px;
     font-family: 'Righteous', sans-serif;
     text-align: center;
     padding: 20px 0;
 }

 .contacto .fila {
     display: flex;
     gap: 20px;
 }

 .contacto .col {
     flex: 1;
     position: relative;
 }

 /* Imagen del mapa */
 .contacto .col-mapa img {
     width: 100%;
     height: auto;
     display: block;
 }

 /* Caja de información sobre el mapa */
 .contacto .col-mapa .info {
     position: absolute;
     top: 50%;
     left: 5%;
     transform: translateY(-50%);
     background-color: rgba(37, 42, 46, 0.8);
     padding: 15px;
     width: 200px;
     font-size: 14px;
     color: #fff;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
     border-radius: 5px;
 }

 .contacto .col-mapa .info ul {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .contacto .col-mapa .info ul li {
     margin-bottom: 8px;
     display: flex;
     align-items: center;
     font-size: 14px;
 }

 .contacto .col-mapa .info ul li i {
     color: #1CB698;
     margin-right: 8px;
     font-size: 16px;
 }

 /* Formulario */
 .contacto .col-form {
     background-color: rgba(37, 42, 46, 0.85);
     padding: 20px;
     border-radius: 8px;
     box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
 }

 .contacto .col-form form {
     display: flex;
     flex-direction: column;
     gap: 15px;
 }

 .contacto .col-form input,
 .contacto .col-form textarea {
     width: 100%;
     padding: 12px;
     background-color: rgba(0, 0, 0, 0.3);
     color: #fff;
     font-size: 16px;
     border: 1px solid #1CB698;
     border-radius: 4px;
     outline: none;
     transition: all 0.3s ease;
 }

 .contacto .col-form input:focus,
 .contacto .col-form textarea:focus {
     border-color: #1CB698;
     box-shadow: 0 0 10px rgba(28, 182, 152, 0.7),
         0 0 20px rgba(28, 182, 152, 0.5),
         0 0 30px rgba(28, 182, 152, 0.3), inset 0 0 8px rgba(28, 182, 152, 0.5);
 }

 .contacto .col-form textarea {
     resize: none;
     height: 150px;
 }

 .contacto button {
     background-color: #1CB698;
     color: #fff;
     border: none;
     padding: 12px 20px;
     cursor: pointer;
     font-size: 16px;
     font-weight: bold;
     text-transform: uppercase;
     position: relative;
     overflow: hidden;
     border-radius: 4px;
     transition: background-color 0.3s ease;
 }

 .contacto button:hover {
     background-color: #17a085;
 }

 .contacto button i {
     margin-left: 8px;
 }

 .contacto button .overlay {
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background-color: rgba(255, 255, 255, 0.4);
     /* Aumentada la opacidad a 0.4 */
     transition: left 0.6s cubic-bezier(0.22, 1, 0.36, 1);
     /* Transición más suave con efecto de aceleración */
     z-index: 1;
     /* Asegura que el overlay esté por encima */
 }

 .contacto button:hover .overlay {
     left: 0;
     box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.6);
 }

 .contacto button span {
     position: relative;
     z-index: 2;
     /* Asegura que el texto esté por encima del overlay */
 }

 /* Responsive */
 @media (max-width: 768px) {
     .contacto .fila {
         flex-direction: column;
     }

     .contacto .col-mapa .info {
         width: 150px;
         font-size: 12px;
         padding: 10px;
     }

     .contacto .col-mapa .info ul li {
         font-size: 12px;
     }
 }

 /* SECCION footer o pie de pagina */
 footer {
     background-color: #252A2E;
     color: #fff;
     padding: 50px 0 30px 0;
     text-align: center;
     position: relative;
     width: 100%;
 }

 footer p {
     color: #fff;
     margin: 15px 0 10px 0;
     font-size: 1rem;
     font-weight: 300;
 }

 footer .redes {
     margin-bottom: 20px;
 }

 footer .redes a {
     color: #fff;
     display: inline-block;
     text-decoration: none;
     border: 1px solid #fff;
     border-radius: 100%;
     width: 42px;
     height: 42px;
     line-height: 42px;
     margin: 40px 5px;
     font-size: 20px;
     transition: .3s;
 }

 footer .arriba {
     display: block;
     width: 50px;
     height: 50px;
     background-color: #1CB698;
     color: #fff;
     position: absolute;
     left: 50%;
     transform: translateX(-50%);
     top: -25px;
     border-radius: 50%;
     line-height: 50px;
     font-size: 18px;
 }

 /* SECCION THANKS.HTML */
 .thanks {
     background-image: url(img/contact_bg.png);
     background-color: #1e2326;
     color: #fff;
     padding: 150px 0;
 }

 .thanks .contenido-seccion {
     max-width: 1100px;
     margin: auto;
 }

 .thanks h2 {
     font-size: 48px;
     font-family: 'Righteous';
     text-align: center;
     padding: 20px 0;
 }

 .thanks .contenido-seccion p {
     font: 22px;
     line-height: 22px;
     margin-bottom: 20px;
     text-align: center;
 }

 .thank .contenido-seccion p span {
     color: #1CB698;
     font-weight: bold;
 }

 .thanks button {
     cursor: pointer;
     background-color: transparent;
     border: 2px solid #fff;
     width: fit-content;
     display: block;
     margin: 20px auto;
     padding: 10px 22px;
     font-size: 16px;
     color: #fff;
     position: relative;
     z-index: 10;
     text-decoration: none;
 }

 .thanks button .overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 0;
     height: 100%;
     background-color: #1CB698;
     z-index: -1;
     transition: 1s;
 }

 .thanks button:hover .overlay {
     width: 100%;
 }

 /* SECCION RESPONSIVE */
 @media screen and (max-width:980px) {
     nav {
         display: none;
     }

     .nav-responsive {
         display: block;
     }

     nav.responsive {
         display: block;
         position: absolute;
         right: 0;
         top: 75px;
         background-color: #252A2E;
         width: 180px;
     }

     nav.responsive ul {
         display: block !important;
     }

     nav.responsive ul li {
         border-bottom: 1px solid #fff;
         padding: 10px 0;
     }
 }

 @media screen and (max-width:700px) {
     .sobremi .fila {
         display: block;
     }

     .sobremi .fila .col {
         width: fit-content;
     }

     .skills .fila {
         display: block;
     }

     .skills .fila .col {
         width: 100%;
     }

     .skills .fila .col .barra-skill {
         width: 100%;
     }

     .curriculum .fila {
         display: block;
     }

     .curriculum .fila .col {
         width: 90%;
     }

     .curriculum .fila .derecha {
         margin-left: 20px;
     }

     .portfolio .galeria {
         display: block;
         width: 100%;
     }

     .portfolio .galeria .proyecto {
         max-width: 100%;
     }

     .portfolio .galeria .proyecto img {
         width: 100%;
     }

     .contacto .fila {
         display: block;
     }

     .contacto .fila .col {
         width: 100%;
     }
 }

 /* SECCION - LA NUEVA SECCIÓN DE PROYECTOS */
 .proyectos {
     background-color: #252A2E;
     /* Cambiado a gris claro #e0e0e0*/
     color: #fff;
     padding: 50px 20px;
 }

 .proyectos .contenido-seccion {
     max-width: 1100px;
     margin: auto;
 }

 .proyectos h2 {
     font-size: 48px;
     font-family: 'Righteous';
     text-align: center;
     padding: 20px 0;
 }

 .proyectos .fila {
     display: flex;
     justify-content: space-around;
     flex-wrap: wrap;
 }

 .proyectos .proyecto-card {
     width: 300px;
     background-color: #fff;
     /* Cambiado a blanco para contrastar con el fondo gris */
     border-radius: 10px;
     margin: 20px;
     padding: 20px;
     text-align: center;
     transition: all 0.3s ease;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
 }

 .proyectos .proyecto-card:hover {
     box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
     transform: translateY(-10px);
 }

 .proyectos .proyecto-card img {
     width: 100%;
     height: 180px;
     object-fit: cover;
     /* Esto hace que la imagen cubra todo el espacio asignado */
     border-radius: 8px;
     margin-bottom: 15px;
 }

 .proyectos .proyecto-card h3 {
     font-size: 22px;
     margin-bottom: 10px;
     color: #1e2326;
 }

 .proyectos .proyecto-card p {
     color: #555;
     line-height: 1.4;
     margin-bottom: 20px;
 }

 .proyectos .boton-proyecto {
     display: inline-block;
     cursor: pointer;
     background-color: transparent;
     border: 2px solid #1CB698;
     border-radius: 5px;
     color: #1e2326;
     padding: 10px 22px;
     font-size: 16px;
     position: relative;
     overflow: hidden;
     transition: all 0.3s ease;
     text-decoration: none;
 }

 .proyectos .boton-proyecto:hover {
     background-color: #1CB698;
     color: #fff;
 }

 .proyectos .boton-proyecto .overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 0;
     height: 100%;
     background-color: #1CB698;
     z-index: -1;
     transition: 1s;
 }

 .proyectos .boton-proyecto:hover .overlay {
     width: 100%;
 }

 .proyectos .contenedor-boton {
     display: flex;
     justify-content: center;
     margin: 30px 0;
 }

 .proyectos .boton {
     display: inline-block;
     text-align: center;
     text-decoration: none;
     margin: 0 auto;
 }

 .proyectos .boton button {
     cursor: pointer;
     background-color: #1CB698;
     border: 2px solid #1CB698;
     border-radius: 5px;
     color: #fff;
     padding: 10px 22px;
     font-size: 16px;
     position: relative;
     overflow: hidden;
     transition: all 0.3s ease;
     font-family: inherit;
     /* Heredar la fuente del padre */
     display: inline-flex;
     align-items: center;
     justify-content: center;
 }

 .proyectos .boton button i {
     margin-left: 10px;
 }

 .proyectos .boton button:hover {
     background-color: transparent;
     color: #1CB698;
 }

 .proyectos .boton .overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 0;
     height: 100%;
     background-color: #1CB698;
     z-index: -1;
     transition: 1s;
 }

 .proyectos .boton button:hover .overlay {
     width: 100%;
 }

 /* Para asegurar que las imágenes se adapten correctamente en diferentes dispositivos */
 @media screen and (max-width: 768px) {
     .proyectos .proyecto-card {
         width: calc(100% - 40px);
         max-width: 400px;
     }

     .proyectos .proyecto-card img {
         height: 200px;
         /* Un poco más alto en pantallas pequeñas */
     }
 }
