.custom-shape-yellow {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px; 
    height: 300px; 
    background-color: #FFD700; 
    border-bottom-left-radius: 100%;
    z-index: 0;
    transform: rotate(-30deg) translate(50px, -50px); 
    filter: blur(50px); 
}
.custom-shape-gray-circle {
    position: absolute;
    top: 20%;
    right: 25%;
    width: 100px;
    height: 100px;
    background-color: #E0E0E0;
    border-radius: 50%;
    z-index: 1;
}
.custom-shape-striped {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 100px;
    background-image: linear-gradient(45deg, #1A202C 25%, transparent 25%, transparent 75%, #1A202C 75%, #1A202C),
                      linear-gradient(45deg, #1A202C 25%, transparent 25%, transparent 75%, #1A202C 75%, #1A202C);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    z-index: 0;
    transform: rotate(-10deg) translate(50px, 50px);
}

.road-texture {
    background-image: url('https://via.placeholder.com/150x100/333333/808080?text=Road');
    background-size: cover;
    background-position: center;
}

.arrow-button {
    background-color: rgba(0,0,0,0.5);
    color: white;
    padding: 1rem;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}
.road-texture {
    background-image: url('https://via.placeholder.com/150x100/333333/808080?text=Road');
    background-size: cover;
    background-position: center;
}
.arrow-button {
    background-color: rgba(0,0,0,0.5);
    color: white;
    padding: 1rem;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

      
.service-tab.active {
    background-color: #EFF6FF; 
    color: #1D4ED8; 
    border-bottom-width: 2px;
    border-color: #2563EB; 
}

.content-fade-out {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.content-fade-in {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.mapa-contenedor {
  position: relative; 
  overflow: hidden;    
  width: 100%;        
  aspect-ratio: 16 / 9; 
}

.mapa-contenedor iframe {
  position: absolute; 
  top: 0;
  left: 0;
  width: 100%;        
  height: 100%;       
  border: 0;         
}