/* montserrat-300 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/montserrat-v29-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/montserrat-v29-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-800 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/montserrat-v29-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* roboto-300 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/roboto-v47-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* roboto-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v47-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* roboto-800 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/roboto-v47-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* Mobile-First Approach */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.5;
    font-family: 'Montserrat', 'Roboto', sans-serif;
}

h1,
h2,
h3,
h4 { 
    font-weight: 800;
    color: #000;
}

p {
    color: #000;
}

/* Navigation Styles */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 100vh;
    background: #fff;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-links.active {
    display: flex;
}

.nav-links a {
    padding: 1rem;
    font-family: 'Montserrat', 'Roboto', 'sans-serif';
    font-weight: 400;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #e67e22
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    margin-top: 60px;
    height: calc(100vh - 60px);
    position: relative;
    overflow: hidden;
}

.carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1 ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.cta-container {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    width: 90%;
    max-width: 600px;
}

.cta-button {
    padding: 30px 40px;
    border-radius: 20px;
    background: none;
    border: none;
    font-size: 22px;
    align-items: center;
    justify-content: center;
    color: #f1f1f1;
    box-shadow: inset 15px 15px 20px rgba(214, 211, 231, 0.1),
    inset -5px -5px 10px rgba(222, 222, 222, 0.5),
    10px 15px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s;
}

.cta-button::before {
    content: "";
    position: absolute;
    inset: 10px;
    box-shadow: inset 10px 10px 10px #fff;
    border-radius: 20px;
    filter: blur(20px);
}

.cta-button:hover {
    transform: translateY(-20px);
}

/*
.cta-button {
    padding: 1rem 2rem;
    background: #fff;
    color: #000;
    border: none;
    font-size: 1.1rem;
    font-family: 'Montserrat', 'Roboto', 'sans-serif';
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.5s ease, background 0.5s ease;
}

.cta-button:hover {
    background: #e67e22;
    color: #fff;
    transform: scale(1.05);
}
    */

/* About Section Styles */
.text-content {
    padding: 4rem 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    text-align: center;
    flex: 1;
}

.about-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-description {
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Gallery Section Styles */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10px;
}

.gallery-item:nth-child(3n+3) {
    grid-column: 1 / -1;
}

.gallery-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1;
    transition: transform 0.3s ease;
}

/* Footer Menu Styles */
.footer-section {
    position: relative;
    width: 100%;
    padding: 4rem 1.5rem;
    color: #fff;
    background-image: url(/imagens/ent-5.jpg);
    background-size: cover;
    background-position: center;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.9));
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    text-align: center;
}

.footer-title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color:#e67e22;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info p {
    color: #fff;
}

.contact-info a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color:#e67e22;
}

.google-map {
    border-radius: 8px;
    box-shadow: 0 4px 12px (0,0,0,0.2);
    margin-top: 1rem;
}

/* Footer */
footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 1rem;
}

footer a {
    text-decoration: none;
    color: grey;
}

footer p {
    color: #fff;
}

/* Desktop Styles */
@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }

    .nav-links {
        display: flex;
        flex-direction: row;
        position: static;
        background: none;
        box-shadow: none;
        height: fit-content ;
    }

    .nav-container {
        padding: 1rem 5%;
    }

    .cta-text {
        font-size: 2rem;
    }

    .cta-button {
        font-size: 1.2rem;
        padding: 1.2rem 2.5rem;
    }

    /* Gallery Section Styles */
    .gallery-section {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .gallery-container {
        max-width: 1000px;
        grid-template-columns: repeat(4, 1fr);
    }

    .gallery-item:nth-child(3n+3) {
        grid-column: auto;
    }

    .gallery-item:nth-child(6n+5),
    .gallery-item:nth-child(6n+6) {
        grid-column: span 2;
    }

    .gallery-item:hover .overlay {
        opacity: 1;
    }

    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .overlay i {
        width: 40px;
        height: 40px;
        color: #fff;
    }

    /* Footer Section Styles */
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-links {
        text-align: left;
    }

    .footer-nav,
    .contact-info {
        flex: 1;
        max-width: 300px;
    }

    .footer-section {
        background-attachment: fixed;
    }
}

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

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.modal-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    padding: 20px;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

