body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

header {
    background-color: #003e85;
}

.menu {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    position: relative;
    min-height: 120px; /* Ensures the header has enough height for all elements */
}

.logo {
    margin-right: 30px;
}

.logo img {
    height: 120px;
    vertical-align: middle; /* Aligns the image vertically */
}

.menu-items {
    list-style: none;
    display: flex;
    align-items: center; /* Centers all items vertically */
    margin: 0;
    padding: 0;
}

.menu-items li {
    margin-left: 20px;
    display: flex;
    align-items: center; /* Ensures each li item is vertically centered */
}

.menu-items a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    position: relative;
    padding: 10px;
    transition: color 0.3s;
    display: flex;
    align-items: center; /* Aligns text vertically */
}

.menu-items a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: white;
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out;
}

.menu-items a:hover::before {
    visibility: visible;
    transform: scaleX(1);
}

.menu-items a:hover {
    color: #FFD700;
}

/* Updated styles for phone item */
.phone-item {
    margin-left: 20px;
    display: flex;
    align-items: center;
}

.phone-number {
    color: #f1bc28;
    font-size: 24px;
    font-weight: bold;
    padding: 10px;
    display: inline-flex;
    align-items: center;
    height: auto; /* Removed fixed height to prevent stretching */
    line-height: normal; /* Adjusted to normal for better alignment */
}
.phone-item a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.fab.fa-whatsapp {
    color: #25D366; /* WhatsApp green */
    margin-right: 5px;
    font-size: 74px;
}

/* Titulo da galeria */
.info-section {
    background-color: #F5F5F5;
    padding: 40px 20px;
    text-align: center;
    margin: 20px 0;
}

.info-title {
    font-size: 28px;
    font-weight: bold;
    color: #0654A3;
    margin-bottom: 15px;
}

.info-description {
    font-size: 16px;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}

/* Styles for the image gallery */
.image-gallery {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.image-item {
    position: relative;
    margin: 0 10px;
    width: 300px;
    height: auto;
}

.image-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-item:hover .image-overlay {
    opacity: 1;
}

.overlay-text {
    font-size: 18px;
    text-align: center;
    padding: 10px;
}

footer {
    background-color: #262627;
    color: #B0B0B0;
    font-family: 'Roboto', sans-serif;
    padding: 20px 0;
    text-align: center;
}

.footer-top {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    margin-right: 30px;
    color: #f1bc28;
}

.footer-nav {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.footer-nav li {
    margin: 0 15px;
}

.footer-nav a {
    color: #B0B0B0;
    text-decoration: none;
    font-size: 14px;
}

.footer-nav a:hover {
    color: #FFFFFF;
}

.footer-social a {
    margin: 0 10px;
    color: #B0B0B0;
    font-size: 20px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #FFFFFF;
}

.footer-bottom {
    border-top: 1px solid #f1bc28;
    padding-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: #B0B0B0;
    text-decoration: none;
    font-size: 12px;
    margin: 0 5px;
}

.footer-links a:hover {
    color: #FFFFFF;
}

.footer-text {
    font-size: 12px;
    margin: 10px 0;
}

.footer-language {
    font-size: 12px;
}