* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f4;
    text-align: center;
}

header {
    background: #004080;
    color: white;
    text-align: center;
    padding: 1em;
}
header h2 {
    font-size: 18px;
    margin-top: 5px;
    font-weight: normal;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.section {
    background: white;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    background: #004d40;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 25%;
    box-sizing: border-box;
    padding: 10px;
    text-align: center;
}

.carousel-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.carousel-buttons {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 55%;
    width: 97%;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.carousel-buttons button {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    pointer-events: all;
}

.carousel-buttons .prev {
    left: 10px;
}

.carousel-buttons .next {
    right: 10px;
}

.section {
    padding: 20px;
    position: relative;
}

#about-carousel {
    margin-top: 15px;
    /* Aumentei de 15px para 30px */
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.modal img {
    max-width: 90%;
    max-height: 90%;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.large-carousel .carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.large-carousel .carousel-item {
    min-width: 100%;
}
.large-carousel .carousel-item img {
    width: 100%;
    height: 500px; /* Aumentei a altura para melhor visibilidade */
    object-fit: cover;
}

footer {
    background: #004080;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 14px;
    position: relative;
    width: 100%;
}

@media (max-width: 600px) {

    .products,
    .gallery {
        flex-direction: column;
        align-items: center;
    }

    .carousel-item {
        min-width: 100%;
    }
}