 .home {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 20px;
     position: fixed;
     top: 0;
     width: 100%;
     z-index: 1000;
     background-color: #fff;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
 }

 .logos {
     display: flex;
     gap: 35px;
     align-items: center;
 }

 .logo1 {
     margin-top: 0;
     margin-left: 0;
 }

 .logo2 {
     margin-top: 0;
 }

 .logo1 img,
 .logo2 img {
     width: 100%;
     height: 100%;
 }

 .navbar {
     display: flex;
     justify-content: center;
     align-items: center;
     width: 100%;
     margin-top: 2%;
     margin-bottom: -1%;
     left: -7%;
 }

 .navigation {
     width: 70%;
     height: 78px;
     background: #691B32;
     opacity: 85%;
     position: relative;
     display: flex;
     justify-content: center;
     align-items: center;
     border-radius: 50px;
     margin-left: 6em;
     margin-top: -3em;
 }

 .navigation ul {
     display: flex;
     width: 585px;
     padding: -17em;
     justify-content: space-between;
     align-items: center;
     text-align: center;
     margin-top: 2em;

 }

 .navigation ul li {
     position: relative;
     list-style: none;
     width: -2vw;
     height: 70px;
     z-index: 1;
 }

 .navigation ul li a {
     position: relative;
     display: flex;
     justify-content: center;
     align-items: center;
     flex-direction: column;
     width: 100%;
     text-align: center;
     font-weight: 500;
     font-size: 1.5em;
 }

 .navigation ul li a .text {
     position: absolute;
     color: white;
     font-weight: 400;
     letter-spacing: 0.05em;
     transition: 0.5s;
     transform: translateY(20px);
     font-size: .8em;
     margin-top: 1em;

 }

 .list.active {
     background-color: white;
     border-radius: 100%;
     padding: 8%;
     margin-top: -3%;
     border-width: 5px;
     border-style: solid;
     border-color: #691B32;
 }

 .list.active .text {
     color: #691B32 !important;
     margin-top: -2em !important;
     opacity: 1;
     font-size: .6em;
     font-weight: 700;

 }

 .list {
     font-size: clamp(10px, 0.5vw + 0.3rem, 15px);

 }

 /* SUB-MENU */

 .navbar .sub-menu-hacemos {
     display: none;
 }

 .sub-menu-hacemos {
     display: none;
     position: absolute;
     background-color: #f9f9f9;
     /* Fondo del submenú */
     box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
     /* Sombra para destacar */
     padding: 10px 0;
     margin-top: 5px;
     list-style: none;
     border-radius: 5%;
     width: 250px !important;
 }

 .navbar .sub-menu-hacemos ul {
     width: 20%;
 }

 .sub-menu-hacemos li {
     padding: 8px 20px;
 }

 .sub-menu-hacemos li a {
     color: black;
     text-decoration: none;
     display: block;
 }

 .sub-menu-hacemos li a:hover {
     background-color: #691B32;
     color: white;
 }

 /* Mostrar el submenú al pasar el mouse */
 .list:hover .sub-menu-hacemos {
     display: block;
 }

 /* Estilo para mantener la lista principal */
 .list {
     position: relative;
     display: inline-block;
 }

 /* SUB-MENU */