* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat"
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    height: 100vh;
}

/* SCROLL */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #00aa53;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #008c45;
}

/* HEADER */

header {
    display: flex;
    justify-content: center;
    height: 100px;
    background-color: white;
    border-top: #ffdf00 3px solid;
    box-shadow: 2px 2px 10px 1px rgb(0 0 0 / 0.2);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease, opacity 0.3s ease;
}

.header-scrolled {
    opacity: 0.8;
}

.header-scrolled:hover {
    opacity: 1;
}

.container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    width: 215px;
}

.logo img {
    height: 120px;
    width: auto;
    transition: all 0.3s ease;
    margin: 0;
}

.logo img:hover {
    transform: scale(1.1);
}

.menu {
    display: flex;
    align-items: center;
    margin: 0 auto;
}

nav ul,
nav li {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul {
    display: flex;
}

nav a {
    display: block;
    padding: 15px;
    text-decoration: none;
    color: #017539;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgb(0 0 0 / 0.2);
}

nav a:hover {
    color: #00aa53;
    transform: scale(1.05);
    border-bottom: 1px solid white;
}

header .button {
    background-color: #ffdf00;
    color: #1a3449;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    margin-right: 20px;
}

header .button:hover {
    background-color: #fff000;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.nav-button {
    display: flex;
    align-items: center;
    margin: 0;
}

.menuMobile {
    display: none;
    width: 40px;
    height: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
    margin-right: 20px;
}

.mm_line {
    height: 3px;
    background-color: #39aae1
}

/* HERO */

.hero {
    padding-top: 100px;
    background-image: url('/assets/images/bg.svg');
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
}

.banner img {
    width: 100%;
    z-index: -1000;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero .left-side {
    padding: 100px 0;
    margin-left: 10rem;
    padding-right: 50px;
}

.hero .right-side {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
}

.hero-logo img {
    height: auto;
    max-height: 250px;
    transition: all 0.3s ease;
    z-index: 2;
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    width: 150%;
    font-size: 72px;
    line-height: 1;
    color: #013218;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero h2 {
    font-size: 40px;
    line-height: 1;
    color: #fff000;
    font-weight: 600;
    text-shadow: 2px 2px 4px #000000;
}

.hero p {
    color: #013218;
    font-size: 18px;
    line-height: 1.6;
    margin: 30px 0;
    max-width: 600px;
}

.stripes {
    position: absolute;
    z-index: -10000;
    height: 100vh;
    width: 500px;
    display: flex;
    gap: 2.5rem;
    transform: rotate(25deg);
    top: -25%;
    right: 3rem;
}

.stripe-1 {
    height: 130%;
    width: 250px;
    background-color: white;
    background-size: cover;
    background-position: 10%;
    margin-top: 10rem;
    transition: all 0.3s ease;
}

.stripe-2 {
    height: 150%;
    width: 250px;
    background-color: white;
    background-size: cover;
    background-position: 35%;
    transition: all 0.3s ease;
}

.stripe-1:hover,
.stripe-2:hover {
    transform: scale(1.01);
}


.hero-logo img:hover {
    transform: scale(1.05);
}

/* ABOUT */

.about .container {
    height: 100vh;
    display: flex;
    justify-content: center;
}

.about-title {
    text-align: center;
    position: absolute;
}

.about-title p {
    font-size: 16px;
    color: #767676;
}

.about-title h1 {
    color: #00aa53;
    font-size: 40px;
}

.about-content {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about .left-side {
    height: 100%;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about .right-side {
    height: 100%;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 10%;
}

.about-img {
    width: 600px;
    height: 400px;
    position: relative;
    padding-left: 10%;
}

.about-img img {
    width: 350px;
    height: 350px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.about-img .img1,
.about-img .img2 {
    position: absolute;
    z-index: 1;
    transition: all 0.5s ease;
}

.about-img .img2 {
    bottom: -125px;
    right: 10%;
    height: auto;
}

.about-img:hover .img1,
.about-img:hover .img2 {
    filter: brightness(0.7);
}

.about-img .img1:hover,
.about-img .img2:hover {
    filter: brightness(1);
    transform: scale(1.1);
    z-index: 2;
}

.about-desc {
    padding-top: 10%;
}

.about-desc h3 {
    color: #00aa53;
    font-size: 23px;
}

.about-desc p {
    font-size: 16px;
    color: #767676;
}


/* SERVICES */

.services .container {
    height: 100vh;
    display: flex;
    justify-content: center;
}

.services-title {
    width: auto;
    text-align: center;
    position: absolute;
}

.services-title p {
    font-size: 16px;
    color: #767676;
}

.services-title h1 {
    color: #00aa53;
    font-size: 40px;
}

.cards-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.card {
    width: 300px;
    height: 400px;
    padding: 40px;
    background-color: white;
    border-radius: 20px;
    border: 3px solid #f7f7f7;
    transition: all 0.3s ease;
}

.card-icon img {
    width: 75px;
}

.card-title {
    color: #00aa53;
    width: 80%
}

.card-title {
    padding-top: 10px;
    font-size: 12px;
    font-weight: 400;
}

.card-desc {
    color: #767676;
    padding-top: 10px;
    width: 100%;
}

.card-desc p {
    font-size: 13px;
}

.card:hover {
    background-color: #f1f1f1;
}

/* GALLERY */

.gallery {
    padding-top: 50px;
    padding-bottom: 50px;
}

.gallery .container {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.gallery-title {
    width: auto;
    text-align: center;
}

.gallery-title p {
    font-size: 16px;
    color: #767676;
}

.gallery-title h1 {
    color: #00aa53;
    font-size: 40px;
}

.carousel-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    align-items: flex-start;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-slide {
    flex-shrink: 0;
    width: 600px;
    height: 400px;
    object-fit: cover;
    object-position: center;
    scroll-snap-align: center;
    display: block;
}

.video-slide {
    background-color: #000;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.carousel-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.carousel-button.prev {
    left: 10px;
}

.carousel-button.next {
    right: 10px;
}

/* LOCAL */

.local .container {
    display: flex;
    height: auto;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.local-img {
    width: 75px;
    display: flex;
    padding-bottom: 20px;
}

.local-img img {
    width: 75px;
}

.local-text {
    height: auto;
    width: 75%;
    text-align: center;
}

.local-text h1 {
    font-size: 21px;
    color: #00aa53;
    font-weight: 500;
}

.local .br-line {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 1px;
    padding-top: 50px;
}

.map,
.map iframe {
    padding-top: 25px;
    width: 100%;
}

/* INFOS */

.infos .container {
    height: 100vh;
    display: flex;
    justify-content: center;
}

.infos-title {
    width: auto;
    text-align: center;
    position: absolute;
}

.infos-title p {
    font-size: 16px;
    color: #767676;
}

.infos-title h1 {
    color: #00aa53;
    font-size: 40px;
}

.infos .cards-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.infos .card {
    width: 300px;
    height: 400px;
    padding: 40px;
    background-color: white;
    border-radius: 20px;
    border: 3px solid #f7f7f7;
    transition: all 0.3s ease;
}

.infos .card-icon img {
    width: 75px;
}

.infos .card-title {
    color: #00aa53;
    width: 80%
}

.infos .card-title {
    padding-top: 10px;
    font-size: 12px;
    font-weight: 400;
}

.infos .card-desc {
    color: #767676;
    padding-top: 10px;
    width: 100%;
}

.infos .card-desc p {
    font-size: 13px;
}

.infos .card:hover {
    background-color: #f1f1f1;
}

/* CONTACT SECTION */
.contact-info-section {
    padding: 50px 20px;
    text-align: center;
}

.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-details h2 {
    font-size: 40px;
    color: #00aa53;
    margin-bottom: 20px;
}

.contact-details p {
    font-size: 16px;
    color: #767676;
    max-width: 600px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.info-item img {
    width: 30px;
    margin-right: 15px;
}

.info-item a {
    color: #008c45;
    font-size: 18px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #00aa53;
}

.whatsapp-btn-section {
    display: flex;
    justify-content: center;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #25d366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.whatsapp-button img {
    height: 30px;
    width: auto;
}

/* FOOTER */

footer {
    background-color: #ffdf00;
    color: #ffffff;
    padding: 40px 20px 20px;
}

footer .container {
    display: flex;
    max-width: 1140px;
    margin: 0 auto;
    justify-content: center;
    align-content: center;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo img {
    width: 100px;
    margin-bottom: 20px;
}

.footer-regulations {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.footer-regulations p {
    font-size: 14px;
    color: #00aa53;
    text-align: center;
}

.footer-regulations-logos {
    display: flex;
}

.footer-regulations-logos img {
    width: 50px;
    padding-top: 20px;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #00aa53;
}

.footer-bottom a {
    color: #013218;
    text-decoration: none;
    transition: all 0.3 ease;
}

.footer-bottom a:hover {
    color: #fff;
    transform: scale(1.1);
}

/* ELEMENTS */

.br-line {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 1px;
    padding-bottom: 50px;
}

.line {
    width: 75%;
    height: inherit;
    background-color: #b1b1b145;
}

/* WHATSAPP CONTACT */

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    z-index: 9999;
}

.whatsapp-btn .btn img {
    height: 70px;
}

.whatsapp-btn .title {
    padding: 5px;
    opacity: 0.5;
    background-color: #ffdf00;
    border-radius: 10px;
    animation: blink 0.8s infinite alternate;
    box-shadow: 2px 2px 10px 1px rgb(0 0 0 / 0.2);
}

.whatsapp-btn .title p {
    font-size: 13px;
    color: #013218;
}

@keyframes blink {
    from {
        opacity: 0.5;
    }

    to {
        opacity: 1;
    }
}

.floating-form {
    display: none;
    position: fixed;
    z-index: 1000000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.form-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: fadeIn 0.5s ease-out;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #008c45;
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover {
    color: #013218;
}

.form-content h2 {
    color: #00aa53;
    margin-bottom: 20px;
    text-align: center;
}

.form-content label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: 500;
}

.form-content input,
.form-content textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-content input:hover,
.form-content input:focus,
.form-content textarea:hover,
.form-content textarea:focus {
    border-color: #00aa53;
    outline: none;
}

.form-content button {
    width: 100%;
    background-color: #00aa53;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-content button:hover {
    background-color: #008c45;
    border-color: #00aa53;
    outline: none;
}

.form-content select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: white;
    font-size: 16px;
    color: #333;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.form-content select:hover,
.form-content select:focus {
    border-color: #00aa53;
    outline: none;
}

.form-content select option {
    color: #013218;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (min-width: 769px) and (max-width: 1140px) {

    /* HEADER */
    header {
        height: 80px;
    }

    .logo img {
        height: 100px;
    }

    .menu {
        margin: 0;
    }

    nav a {
        padding: 10px;
        font-size: 14px;
    }

    .nav-button {
        margin-left: 20px;
    }

    header .button {
        padding: 8px 12px;
        font-size: 12px;
        white-space: nowrap;
    }

    /* HERO */

    .hero h1 {
        font-size: 60px;
    }

    .hero h2 {
        font-size: 30px;
    }

    .hero p {
        font-size: 16px;
        line-height: 1.5;
    }

    .hero .left-side {
        padding: 50px 0;
        margin-left: 5rem;
    }

    .hero-logo,
    .hero-logo img {
        display: none;
    }

    .stripes {
        display: none;
    }

    /* ABOUT */
    .about .container {
        height: auto;
        padding-top: 50px;
        padding-bottom: 50px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-title {
        position: static;
        margin-bottom: 40px;
    }

    .about-title h1 {
        font-size: 32px;
    }

    .about-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .about .left-side,
    .about .right-side {
        width: 100%;
        height: auto;
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about .left-side {
        margin-bottom: 40px;
    }

    .about-img {
        width: 100%;
        height: auto;
        position: static;
        padding: 0;
        display: flex;
        flex-direction: column;
        /* Stacks images vertically */
        align-items: center;
    }

    .about-img img {
        width: 90%;
        max-width: 500px;
        height: auto;
        margin-bottom: 20px;
        position: static;
    }

    .about-img .img1,
    .about-img .img2 {
        position: static;
    }

    .about-desc {
        text-align: center;
        width: 100%;
        max-width: 900px;
        padding: 0 20px;
        margin: 0 auto;
    }

    .about-desc h3 {
        padding: 20px;
        font-size: 21px;
    }

    .about-desc p {
        font-size: 15px;
    }

    /* SERVICES */

    .services .container {
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .services-title {
        width: auto;
        text-align: center;
        position: static;
        margin-bottom: 40px;
    }

    .services-title p {
        font-size: 16px;
        color: #767676;
    }

    .services-title h1 {
        color: #00aa53;
        font-size: 40px;
    }

    .cards-container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 50px;
    }

    .card {
        width: 300px;
        height: 400px;
        padding: 40px;
        background-color: white;
        border-radius: 20px;
        border: 3px solid #f7f7f7;
        transition: all 0.3s ease;
    }

    .card-icon {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .card-icon img {
        width: 75px;
    }

    .card-title {
        color: #00aa53;
        width: 100%;
        text-align: center;
    }

    .card-title h1 {
        padding-top: 10px;
        font-size: 21px;
        font-weight: 600;
    }

    .card-desc {
        color: #767676;
        padding-top: 10px;
        width: 100%;
        text-align: center;
    }

    .card-desc p {
        font-size: 13px;
    }

    .card:hover {
        background-color: #f1f1f1;
    }

    /* GALLERY */

    .carousel-container {
        max-width: 500px;
    }

    .carousel-slide {
        width: 500px;
        height: 350px;
    }

    /* LOCAL */

    .local-text {
        width: 90%;
    }

    .local-text h1 {
        font-size: 24px;
    }

    .map,
    .map iframe {
        width: 100%;
    }

    /* INFOS */

    .infos .container {
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .infos-title {
        width: auto;
        text-align: center;
        position: static;
        margin-bottom: 40px;
    }

    .infos-title p {
        font-size: 16px;
        color: #767676;
    }

    .infos-title h1 {
        color: #00aa53;
        font-size: 40px;
    }

    .infos .cards-container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 50px;
    }

    .infos .card {
        width: 300px;
        height: 400px;
        padding: 40px;
        background-color: white;
        border-radius: 20px;
        border: 3px solid #f7f7f7;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .infos .card-icon {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .infos .card-icon img {
        width: 75px;
    }

    .infos .card-title {
        color: #00aa53;
        width: 80%;
        padding-top: 10px;
        font-size: 12px;
        font-weight: 400;
    }

    .infos .card-desc {
        color: #767676;
        padding-top: 10px;
        width: 100%;
    }

    .infos .card-desc p {
        font-size: 13px;
    }

    .infos .card:hover {
        background-color: #f1f1f1;
    }

    .contact-details h2 {
        font-size: 32px;
    }

    .contact-details p {
        font-size: 15px;
    }

    .info-item img {
        width: 25px;
    }

    .info-item a {
        font-size: 16px;
    }

    .whatsapp-button {
        font-size: 16px;
        padding: 12px 25px;
    }

    .whatsapp-button img {
        height: 25px;
    }
}


@media (min-width: 426px) and (max-width: 768px) {
    header {
        width: 100vw;
    }

    header .container {
        width: 100%;
        display: flex;
        /* Transforma o container em um flexbox */
        justify-content: space-between;
        /* Alinha o logo à esquerda e o menu à direita */
        align-items: center;
        /* Centraliza verticalmente os itens */
    }

    .nav-button {
        display: none;
    }

    .menu {
        margin: 0;
    }

    .menuMobile {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        cursor: pointer;
        z-index: 1001;
        margin-left: auto;
        margin-right: 20px;
    }

    .mm_line {
        height: 3px;
        background-color: #008c45;
        transition: all 0.3s ease;
        border-radius: 3px;
    }

    .menu nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        position: fixed;
        top: 100px;
        right: 0;
        background-color: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .menu nav ul.show-menu {
        display: flex;
        animation: fadeInDown 0.5s ease-in-out;
    }

    .menu nav li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .menu nav a {
        padding: 15px 0;
    }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* HERO */

    .stripes {
        display: none;
    }

    .hero .container {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
        width: 100%;
        height: 100vh;
        padding-top: 100px;
    }

    .hero .left-side {
        padding: 0 20px;
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .hero .right-side {
        display: none;
    }

    .hero-logo,
    .hero-logo img {
        display: none;
    }

    .hero h1 {
        width: auto;
        font-size: 45px;
        line-height: 1.1;
        color: #013218;
        margin-bottom: 15px;
        text-transform: uppercase;
    }

    .hero h2 {
        font-size: 28px;
        line-height: 1.1;
        color: #fff000;
        font-weight: 600;
    }

    .hero p {
        color: #013218;
        font-size: 16px;
        line-height: 1.2;
        margin: 20px 0;
        max-width: 100%;
    }

    /* ABOUT */

    .about .container {
        height: auto;
        padding-bottom: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-title {
        position: static;
        margin-bottom: 20px;
        text-align: center;
    }

    .about-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .about .left-side,
    .about .right-side {
        width: 100%;
        height: auto;
        padding: 0 20px;
    }

    .about .left-side {
        margin-bottom: 40px;
    }

    .about-img {
        width: 100%;
        height: auto;
        position: static;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-img img {
        width: 100%;
        max-width: 500px;
        height: auto;
        margin-bottom: 20px;
    }

    .about-img .img1,
    .about-img .img2 {
        position: static;
    }

    .about-img .img2 {
        bottom: auto;
        right: auto;
    }

    .about-img:hover .img1,
    .about-img:hover .img2 {
        filter: none;
    }

    .about-img .img1:hover,
    .about-img .img2:hover {
        filter: brightness(1);
        transform: none;
        z-index: 2;
    }

    .about-desc {
        text-align: center;
        width: 100%;
        max-width: 900px;
        padding: 0 20px;
        margin: 0 auto;
    }

    .about-desc h3 {
        font-size: 28px;
        padding-bottom: 10px;
    }

    .about-desc p {
        font-size: 16px;
        line-height: 1.5;
    }

    .about-title h1 {
        font-size: 32px;
    }

    /* SERVICES */

    .services .container {
        height: auto;
        padding-top: 75px;
        padding-bottom: 50px;
        flex-direction: column;
        align-items: center;
    }

    .services-title {
        position: static;
        margin-bottom: 40px;
    }

    .services-title p {
        font-size: 14px;
    }

    .services-title h1 {
        font-size: 32px;
    }

    .cards-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        width: 100%;
    }

    .card {
        width: 300px;
        height: 400px;
        padding: 40px;
        background-color: white;
        border-radius: 20px;
        border: 3px solid #f7f7f7;
        transition: all 0.3s ease;
        margin: 10px 0;
    }

    .card-icon {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .card-icon img {
        width: 60px;
    }

    .card-title {
        width: 100%;
        font-size: 12px;
        padding-top: 15px;
        text-align: center;
    }

    .card-desc {
        width: 100%;
        text-align: center;
    }

    .card-desc p {
        font-size: 14px;
        line-height: 1.5;
    }

    /* INFOS */

    .infos .container {
        height: auto;
        padding-top: 75px;
        padding-bottom: 50px;
        flex-direction: column;
        align-items: center;
    }

    .infos-title {
        position: static;
        margin-bottom: 40px;
    }

    .infos-title p {
        font-size: 14px;
    }

    .infos-title h1 {
        font-size: 32px;
    }

    .infos .cards-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        width: 100%;
    }

    .infos .card {
        width: 300px;
        height: 400px;
        padding: 40px;
        margin: 10px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .infos .card-icon {
        width: 100%;
        display: flex;
        justify-content: center;
        padding-bottom: 10px;
    }

    .infos .card-icon img {
        width: 75px;
    }

    .card-title {
        width: 100%;
        font-size: 12px;
        padding-top: 15px;
        text-align: center;
    }

    .infos .card-desc {
        width: 100%;
        padding-top: 10px;
        text-align: center;
    }

    .infos .card-desc p {
        font-size: 14px;
        line-height: 1.5;
    }

    /* GALLERY */

    .gallery {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .gallery .container {
        padding: 0 20px;
    }

    .gallery-title {
        text-align: center;
    }

    .gallery-title p {
        font-size: 14px;
        color: #767676;
    }

    .gallery-title h1 {
        color: #00aa53;
        font-size: 32px;
    }

    .carousel-container {
        max-width: 100%;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .carousel-track {
        align-items: center;
    }

    .carousel-slide {
        width: 100%;
        height: 300px;
        scroll-snap-align: center;
    }

    .carousel-button {
        font-size: 20px;
        padding: 8px 12px;
    }

    /* LOCAL */

    .local-text h1 {
        font-size: 18px;
        color: #00aa53;
        font-weight: 500;
    }
}

@media (max-width: 426px) {

    header {
        width: 100vw;
    }

    header .container {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-button {
        display: none;
    }

    .menu {
        margin: 0;
    }

    .menuMobile {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        cursor: pointer;
        z-index: 1001;
        margin-left: auto;
        margin-right: 20px;
    }

    .mm_line {
        height: 3px;
        background-color: #008c45;
        transition: all 0.3s ease;
        border-radius: 3px;
    }

    .menu nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        position: fixed;
        top: 100px;
        right: 0;
        background-color: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .menu nav ul.show-menu {
        display: flex;
        animation: fadeInDown 0.5s ease-in-out;
    }

    .menu nav li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .menu nav a {
        padding: 15px 0;
    }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* HERO */
    .stripes {
        display: none;
    }

    .hero {
        background-position: 15%;
    }

    .hero .container {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
        width: 100%;
        height: 100%;
    }

    .hero .left-side {
        padding: 0 20px;
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-top: -100px;
    }

    .hero .right-side {
        display: none;
    }

    .hero-logo,
    .hero-logo img {
        display: none;
    }

    .hero h1 {
        width: auto;
        font-size: 36px;
        line-height: 1.1;
        color: #013218;
        margin-bottom: 15px;
        text-transform: uppercase;
    }

    .hero h2 {
        font-size: 21px;
        line-height: 1.1;
        color: #fff000;
        font-weight: 600;
    }

    .hero p {
        color: #013218;
        font-size: 14px;
        line-height: 1.5;
        margin: 20px 0;
        max-width: 100%;
    }

    /* ABOUT */
    .about .container {
        height: auto;
        padding-bottom: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-title {
        position: static;
        margin-bottom: 20px;
        text-align: center;
    }

    .about-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .about .left-side,
    .about .right-side {
        width: 100%;
        height: auto;
        padding: 0 20px;
    }

    .about .left-side {
        margin-bottom: 40px;
    }

    .about-img {
        width: 100%;
        height: auto;
        position: static;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-img img {
        width: 100%;
        max-width: 400px;
        height: auto;
        margin-bottom: 20px;
    }

    .about-img .img1,
    .about-img .img2 {
        position: static;
    }

    .about-img .img2 {
        bottom: auto;
        right: auto;
    }

    .about-desc {
        text-align: center;
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
        margin: 0 auto;
    }

    .about-desc h3 {
        font-size: 24px;
        padding-bottom: 10px;
    }

    .about-desc p {
        font-size: 14px;
        line-height: 1.5;
    }

    .about-title h1 {
        font-size: 28px;
    }

    /* SERVICES */
    .services .container {
        height: auto;
        padding-top: 50px;
        padding-bottom: 50px;
        flex-direction: column;
        align-items: center;
    }

    .services-title {
        position: static;
        margin-bottom: 40px;
    }

    .services-title p {
        font-size: 14px;
    }

    .services-title h1 {
        font-size: 28px;
    }

    .cards-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        width: 100%;
    }

    .card {
        width: 90%;
        height: auto;
        padding: 20px;
        margin: 10px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .card-icon {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .card-icon img {
        width: 50px;
    }

    .card-title h1 {
        width: 100%;
        font-size: 18px;
        padding-top: 15px;
        text-align: center;
    }

    .card-desc {
        width: 100%;
        text-align: center;
    }

    .card-desc p {
        font-size: 12px;
        line-height: 1.5;
    }

    /* INFOS */

    .infos .container {
        height: auto;
        padding-top: 50px;
        padding-bottom: 50px;
        flex-direction: column;
        align-items: center;
    }

    .infos-title {
        position: static;
        margin-bottom: 40px;
    }

    .infos-title p {
        font-size: 14px;
    }

    .infos-title h1 {
        font-size: 28px;
    }

    .infos .cards-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        width: 100%;
    }

    .infos .card {
        width: 90%;
        height: auto;
        padding: 20px;
        margin: 10px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .infos .card-icon {
        width: 100%;
        display: flex;
        justify-content: center;
        padding-bottom: 10px;
    }

    .infos .card-icon img {
        width: 50px;
    }

    .infos .card-title {
        width: 100%;
        font-size: 18px;
        padding-top: 15px;
        text-align: center;
    }

    .infos .card-desc {
        width: 100%;
        padding-top: 10px;
        text-align: center;
    }

    .infos .card-desc p {
        font-size: 12px;
        line-height: 1.5;
    }

    /* GALLERY */

    .gallery {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .gallery .container {
        padding: 0 10px;
    }

    .gallery-title {
        text-align: center;
    }

    .gallery-title p {
        font-size: 12px;
    }

    .gallery-title h1 {
        font-size: 24px;
    }

    .carousel-container {
        max-width: 100%;
    }

    .carousel-slide {
        width: 100%;
        height: 250px;
    }

    .carousel-button {
        font-size: 16px;
        padding: 6px 10px;
    }

    /* LOCAL */
    .local .container {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .local-text h1 {
        font-size: 16px;
    }

    .local-text {
        width: 100%;
        padding: 0 10px;
    }

    .local .br-line {
        padding-top: 30px;
    }

    .map,
    .map iframe {
        width: 100%;
        height: 300px;
        padding: 0;
    }

    /* FOOTER */
    footer .container {
        flex-direction: column;
        gap: 20px;
    }
}