body {
    background-color: #f3f3f3;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar {

    display: flex;
    justify-content: space-between;
    padding: 20px;
    background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(63,94,251,1) 100%);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.company-title {

    font-size: 20px;
    padding-top: 1%;
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.menu-items a, .dropbtn {
    margin-right: 5vh;
    text-decoration: none;
    color: #fff;
    padding: 2vh 2vh;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.menu-items a:hover, .dropbtn:hover {
    background-color: rgba(255,255,255,0.2);
}

.dropbtn{
    background-color: #4c41aa;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: rgba(255,255,255,0.2);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.container {
    margin-top: 15vh; 
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.titulo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 40vh;
    height: auto;
}

.image-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.img1{
    margin-top: 15vh;
}
.img1, .img2 {
    max-width: 50vh;
    height: auto;
    border-radius: 5px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.texto {
    max-width: 800px;
    text-align: justify;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.texto ul {
    list-style-type: none;
    padding: 0;
    margin: 10px 0;
}

.texto ul li {
    margin-bottom: 5px;
}

.map {
    max-width: 100%;
    border-radius: 5px;
    overflow: hidden;
}

.footer {
    text-align: center;
    background-color: #333;
    color: #fff;
    padding: 20px;
}


