body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

.contacto-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.main-titleOfice {
    text-align: center;
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.main-titleOfice::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #224eff;
}

.info-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

.office-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.office-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.office-image:hover img {
    transform: scale(1.03);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.info-item h3 {
    color: #2c3e50;
    margin: 0 0 0.3rem 0;
    font-size: 1.2rem;
}

.info-item p {
    color: #7f8c8d;
    margin: 0;
}

.info-item a {
    color: #007BFF; 
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #007BFF; 
    text-decoration: underline;
}

.static-map-link {
    display: block;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.static-map-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.static-map-link:hover .static-map-image {
    transform: scale(1.03);
}

.static-map-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(9, 3, 101, 0.7);
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: bold;
    transition: all 0.3s ease;
}

.static-map-link:hover .map-overlay {
    background: #0d47a1;
}

@media (max-width: 768px) {
    .info-container {
        grid-template-columns: 1fr;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    #google-map {
        height: 300px;
    }
}