 /* ESTILOS PARA LA SECCIÓN DEL MAPA */
 .mapa-section {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     padding: 80px 20px;
 }

 .mapa-container {
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 40px;
     align-items: center;
 }

 .mapa-info {
     padding: 30px;
 }

 .mapa-info h2 {
     font-size: 23px;
     color: #2d4f95;
     margin: 0;
     line-height: 1.1;
     font-family: 'Inter', 'Helvetica Neue', sans-serif;
     position: relative;

 }

 .mapa-info h2:after {
     content: '';
     position: absolute;
     bottom: -10px;
     left: 0;
     width: 60px;
     height: 4px;
     background: #02499b;
     border-radius: 20px;
 }

 .mapa-info p {
     color: #555;
     line-height: 1.6;
     margin-bottom: 25px;
     font-size: 1.1rem;
 }

 .info-destacada {
     background: white;
     padding: 25px;
     border-radius: 10px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
     margin-top: 30px;
 }

 .info-item {
     display: flex;
     align-items: flex-start;
     margin-bottom: 20px;
 }

 .info-item:last-child {
     margin-bottom: 0;
 }

 .info-icon {
     color: white;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-right: 15px;
     flex-shrink: 0;
 }

 .info-content h4 {
     margin: 0 0 5px 0;
     color: #02499b;
     font-size: 1.1rem;
 }

 .info-content p {
     margin: 0;
     color: #7f8c8d;
     font-size: 1rem;
 }

 .mapa-embed {
     height: 500px;
     border-radius: 15px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
     position: relative;
 }

 .mapa-embed iframe {
     width: 100%;
     height: 100%;
     border: none;
     filter: grayscale(10%) contrast(95%);
     transition: filter 0.3s ease;
 }

 .mapa-embed iframe:hover {
     filter: grayscale(0%) contrast(100%);
 }

 .boton-direcciones {
     display: inline-block;
     background: #02499b;
     color: white;
     padding: 12px 25px;
     border-radius: 50px;
     text-decoration: none;
     font-weight: 600;
     margin-top: 15px;
     transition: all 0.3s ease;
     box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
 }

 .boton-direcciones:hover {
     background: #23407a;
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
 }

 /* Responsive */
 @media (max-width: 968px) {
     .mapa-container {
         grid-template-columns: 1fr;
         gap: 30px;
     }

     .mapa-info {
         order: 2;
         padding: 20px 0;
     }

     .mapa-embed {
         order: 1;
         height: 400px;
     }
 }

 @media (max-width: 576px) {
     .mapa-section {
         padding: 60px 15px;
     }

     .mapa-info h2 {
         font-size: 2rem;
     }

     .mapa-embed {
         height: 300px;
     }
 }