/* Serviços Section */
.services-section {
    padding: 40px;
    background-color: #f4f4f4;
    box-shadow: 0 7px 5px rgba(0, 0, 0, 0.3) inset;
    border-bottom: 5px solid rgb(0, 5, 105);
}

.services-section h2 {
    text-align: center;
    color: rgb(0, 5, 105);
    margin-bottom: 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.service-location {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-location:hover {
    transform: translateY(-10px);
}

.service-location img {
    width: 120px;
    margin-bottom: 10px;
}

.service-location h3 {
    color: rgb(0, 5, 105);
    margin-bottom: 10px;
    font-size: 20px;
}

.service-location ul {
    list-style-type: none;
    padding-left: 0;
}

.service-location ul li {
    font-size: 14px;
    color: #555;
    margin: 5px 0;
}

/*<----------------------------------------------------------------------------------------------->*/

/* Divider Section */
.divider-section {
    padding: 30px 20px;
    background-color: #fff;
    text-align: center;
    border-top: 5px solid rgb(0, 5, 105);
    box-shadow: 0 7px 5px rgba(0, 0, 0, 0.3) inset;
}

.divider-section h2 {
    color: rgb(0, 5, 105);
    font-size: 28px;
    margin-bottom: 0;
}

/*<----------------------------------------------------------------------------------------------->*/

/* Institutions Section */
.institutions-section {
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
    background-color: #ffffff;
}

.institution-card {
    background-color: #f4f4f4;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    text-align: center;
}

.institution-card:hover {
    transform: translateY(-10px);
}

.institution-card img {
    width: 120px;
    height: auto;
    margin-bottom: 10px;
}

.institution-card h3 {
    color: rgb(0, 5, 105);
    margin-bottom: 5px;
    font-size: 20px;
}

.institution-card h4 {
    color: #666;
    margin-bottom: 10px;
    font-size: 16px;
}

.institution-card p {
    color: #555;
    font-size: 14px;
    margin: 5px 0;
}
