@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    font-family: 'Outfit', sans-serif;
    background: #111111;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;

    width: 100%;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 11%;

    background: linear-gradient(to right,
            rgba(17, 17, 17, 0.0),
            rgba(35, 35, 42, 0.1));
}


.header-logo img {
    width: 145px;
    display: block;
}

.header-nav {
    height: 100%;
    display: flex;
    align-items: center;
}

.header-nav a {
    position: relative;
    height: 100%;
    min-width: 140px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Outfit', sans-serif;
}

.header-nav a.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 24px;
    right: 24px;
    height: 3px;
    background: #a6ff00;
}

.page {
    position: relative;
    width: 100%;
    overflow-x: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hero {
    position: relative;
    min-height: 720px;
    display: flex;
    background: #111111 !important;
    overflow: visible;
}

.hero-lines {
    position: absolute;
    top: 0;
    left: 0;

    width: clamp(320px, 40vw, 790px);
    height: clamp(420px, 90vh, 790px);

    background:
        linear-gradient(90deg,
            rgba(17, 17, 17, 0) 82%,
            rgba(17, 17, 17, 0.55) 94%,
            #111111 100%),
        url("../assets/linhas.png?v=2") left top no-repeat;

    background-size: cover, cover;
    background-position: left top;

    z-index: 3;
    pointer-events: none;
}


.hero-content {
    position: relative;
    z-index: 5;
    width: 45%;
    padding: 200px 0 80px 11%;
    display: flex;
    flex-direction: column;
}

.logo {
    width: 145px;
    margin-bottom: 115px;
}

.hero-text h1 {
    font-size: 75px;
    line-height: 1;
    font-weight: 600;
    margin-bottom: 14px;
}

.hero-text h2 {
    font-size: 40px;
    line-height: 1.08;
    color: #a6ff00;
    font-weight: 600;
    margin-bottom: 34px;
}

.hero-text p {
    max-width: 600px;
    font-size: 24px;
    line-height: 1.45;
    color: #f2f2f2;
    margin-bottom: 28px;
}

.hero-text strong {
    color: #fff;
    font-weight: 800;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3% 15% 3% 15%;
    background: #a6ff00;
    color: #000;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    border-radius: 6px;
    box-shadow: 0 0 22px rgba(166, 255, 0, 0.65);
    font-family: 'Outfit', sans-serif;
}

.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 90%;

    background:
        linear-gradient(90deg,
            #111111 0%,
            rgba(17, 17, 17, 0.95) 5%,
            rgba(17, 17, 17, 0.75) 14%,
            rgba(17, 17, 17, 0.35) 28%,
            rgba(17, 17, 17, 0) 45%),
        url("../assets/hero.png?v=2") center right / cover no-repeat;

    z-index: 4;
}

.filters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 20px 20px;
    z-index: 99;
}

.filter-btn {
    min-width: 200px;
    height: 50px;
    border: none;
    border-bottom: 4px solid transparent;
    background: #5b5b5b;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: 0.25s ease;

    border-radius: 6px 6px 0 0;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
}

.filter-btn.active {
    border-bottom-color: #a6ff00;
    background: #6a6a6a;
}

.gallery {
    width: min(1700px, calc(100% - 40px));
    margin: 0 auto;
    padding: 26px 0 90px;

    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gallery-layout {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gallery-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.gallery-card {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #111;
    border-radius: 3px;
    cursor: pointer;

    transform: translateY(0) scale(1);
    transition:
        transform 1.25s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.75s ease,
        box-shadow 1.25s cubic-bezier(0.16, 1, 0.3, 1);

    will-change: transform;
}

.gallery-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: initial;
}

/* Camada de brilho suave */
.gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.16),
            rgba(255, 255, 255, 0.02) 38%,
            rgba(0, 0, 0, 0.18));

    opacity: 0;
    transition: opacity 0.45s ease;
}

.gallery-card:hover {
    transform: scale(1.03) !important;
    filter: brightness(1.1) saturate(1.08);
    box-shadow:
        0 26px 55px rgba(0, 0, 0, 0.58),
        0 0 22px rgba(166, 255, 0, 0.12);

    z-index: 5;
}

.gallery-card:hover::after {
    opacity: 1;
}

.gallery-card:active {
    transform: translateY(-3px) scale(1.04);
    transition-duration: 0.18s;
}

.gallery-item.hide {
    display: none !important;
}

.gallery.hide,
.films-gallery.hide,
.tour-gallery.hide {
    display: none !important;
}

.gallery-item.showing {
    animation: fadeInUp 0.45s ease;
}

.internas-mosaic {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.internas-row-3 {
    align-items: start;
}

.internas-left-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.internas-left-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.internas-left-bottom .mosaic-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mosaic-row {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    align-items: start;
}

.mosaic-row.inner {
    grid-template-columns: repeat(2, 1fr);
}

.mosaic-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.span-2 {
    grid-column: span 2;
}

/* Linha com cards alinhados pela mesma altura */
.row-align {
    align-items: stretch;
}

/* Todos os elementos diretos da linha ocupam a mesma altura */
.row-align>.gallery-card,
.row-align>.mosaic-stack,
.row-align>.internas-left-group {
    height: 100%;
}

/* Cards dentro da linha precisam preencher a altura */
.row-align .gallery-card {
    height: 100%;
}

/* A imagem se adapta ao tamanho do card */
.row-align .gallery-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.films-gallery {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto -150px auto;
    padding: 40px 0 90px;
}

.films-gallery.hide {
    display: none;
}

.film-carousel {
    position: relative;
    width: 100%;
    margin-bottom: 90px;
}

.film-pages {
    overflow: hidden;
    width: 100%;
}

.film-pages-track {
    display: flex;
    width: 100%;
    transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.film-page {
    min-width: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-shrink: 0;
}

.film-page.single {
    width: 100%;
    justify-content: center;
}

/* Botão de play */
.film-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 5;
    pointer-events: none;

    transition: opacity 0.35s ease, transform 0.35s ease;
}

.film-play img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.film-card:hover .film-play {
    transform: translate(-50%, -50%) scale(1.08);
}

.film-card.preview-active .film-play,
.film-card.preview-loading .film-play,
.film-card.video-active .film-play {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.85);
}

.film-card {
    position: relative;
    width: 100%;
    max-width: none;
    aspect-ratio: 9 / 16;

    overflow: hidden;
    cursor: pointer;
    background: #111;
    border-bottom: 3px solid #a6ff00;

    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Filmes horizontais iguais ao Veja Mais */
.film-card.wide {
    width: 100%;
    max-width: none;
    aspect-ratio: 16 / 9;
}

/* Garante que o card horizontal ocupe toda a página do carrossel */
.film-page.single .film-card.wide {
    width: 100%;
    max-width: none;
}

/* Mantém o vídeo do Veja Mais com o mesmo comportamento */
.see-more-films .film-card.wide {
    width: 100%;
    max-width: none;
    aspect-ratio: 16 / 9;
}

.film-card img,
.film-card video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border: none;
}

/* Quando o vídeo abrir, ele continua preenchendo o mesmo espaço do card */
.film-card.video-active video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
    opacity: 1 !important;
}

.film-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.15),
            rgba(0, 0, 0, 0.65));
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.25s ease;
}

/* Remove o gradiente durante o preview e durante o vídeo clicado */
.film-card.preview-active::after,
.film-card.preview-loading::after,
.film-card.video-active::after {
    opacity: 0;
}

.film-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 22px;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.film-info span {
    display: block;
    font-size: 13px;
    font-weight: 800;
}

.film-info small {
    display: block;
    margin-top: 3px;
    font-size: 11px;
    font-weight: 300;
}

.film-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;

    width: 38px;
    height: 38px;

    border: none;
    background: transparent;
    color: #fff;

    font-size: 28px;
    cursor: pointer;

    transition: transform 0.18s ease;
}

.film-arrow-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    pointer-events: none;
}

.film-arrow:hover {
    transform: translateY(-50%) scale(1.08);
}

.film-arrow:active {
    transform: translateY(-50%) scale(0.94);
}

.film-arrow.prev {
    left: -60px;
}

.film-arrow.next {
    right: -60px;
}

.film-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.film-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.4;
}

.film-dot.active {
    background: #a6ff00;
    opacity: 1;
}

.film-card .preview-video {
    opacity: 0;
    transition: opacity 0.35s ease;
}

.film-card.preview-active .preview-video {
    opacity: 1;
}

.cta {
    width: 100%;
    min-height: 600px;

    background:
        linear-gradient(to bottom,
            rgba(17, 17, 17, 1) 0%,
            rgba(20, 20, 20, 0.75) 20%,
            rgba(39, 39, 39, 1) 100%);

    display: flex;
    align-items: flex-end;
}

.cta-inner {
    width: min(1225px, calc(100% - 40px));
    margin: 0 auto;

    padding: 0 0 160px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

.cta-text h2 {
    font-size: 40px;
    line-height: 1.08;
    font-weight: 500;
}

.cta-text h2 span {
    color: #a6ff00;
}

.cta-text p {
    margin-top: 32px;
    max-width: 680px;

    font-size: 24px;
    line-height: 1.55;
    font-weight: 300;
    color: #e5e5e5;
}

.cta-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    transform: translateY(2px);
}

.cta-action .btn-primary {
    width: 500px;
    height: 80px;
    font-weight: 500;
    font-size: 24px;
}

.cta-action small {
    font-size: 20px;
    font-weight: 300;
    color: #e5e5e5;
}

.site-footer {
    width: 100%;
    background: #181818;
}

.footer-inner {
    width: 100%;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5% !important;

    padding: 20px 100px;
    background: #000000;
}

.footer-logo img {
    width: 145px;
    display: block;
}

.footer-inner p {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-social a {
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
}

.see-more-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;

    margin-top: -110px;

    position: relative;
    z-index: 5;
}

.see-more-wrapper.hide {
    display: none;
}

.see-more-section+.see-more-wrapper {
    margin-top: -24px;
    margin-bottom: 90px;
}

.see-more-btn {
    width: 230px;
    height: 40px;
    border: none;
    border-radius: 10px;
    background: #262626;
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
    transition: 0.35s ease;
    z-index: 99;
}

.see-more-btn strong {
    position: absolute;
    bottom: -44px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 53px;
    background: #262626;
    border-radius: 0 0 8px 8px;
    color: #a6ff00;
    font-size: 32px;
    font-weight: 300;
    line-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* quem gira é só a seta */
.see-more-btn strong .arrow-icon {
    display: inline-block;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.see-more-btn.opened strong .arrow-icon {
    transform: rotate(180deg);
}

.see-more-btn:hover {
    transform: translateY(-2px);
}

.see-more-section.hide {
    display: none !important;
}

.see-more-section {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto 26px;
    display: flex !important;
    flex-direction: column;
    gap: 90px;
    position: relative;
    z-index: 4;
    animation: seeMoreReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.see-more-item,
.see-more-films {
    opacity: 0;
    animation: seeMoreItemIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.see-more-item {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

.see-more-films {
    width: 100%;
    display: flex;
    justify-content: center;
}

@keyframes seeMoreReveal {
    from {
        opacity: 0;
        transform: translateY(42px);
        clip-path: inset(0 0 100% 0);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        clip-path: inset(0 0 0 0);
    }
}

@keyframes seeMoreItemIn {
    from {
        opacity: 0;
        transform: translateY(28px) scale(0.985);
        filter: blur(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.tour-gallery {
    width: min(1180px, calc(100% - 40px));
    margin: 125px auto 90px;
    display: flex;
    flex-direction: column;
    gap: 125px;
    position: relative;
    z-index: 4;
    animation: seeMoreReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.tour-gallery.hide {
    display: none !important;
}

.tour-frame {
    width: 100%;
    height: 100% !important;
    overflow: hidden;

    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.tour-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ========================= */
/* IFRAME TOUR - CARREGAMENTO MANUAL */
/* ========================= */

.tour-frame {
    position: relative;
    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

/* Imagem estática de cada tour */
.tour-frame.tour-archtech {
    background-image: url("../assets/galeria/tour/tour-archtech.png");
}

.tour-frame.tour-granlote {
    background-image: url("../assets/galeria/tour/tour-granlote.png");
}

.tour-frame.tour-jardim-fazendas {
    background-image: url("../assets/galeria/tour/tour-jardim-fazendas.png");
}

.tour-frame iframe {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.tour-click-layer {
    position: absolute;
    inset: 0;
    z-index: 2;

    border: none;

    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.18),
            rgba(0, 0, 0, 0.1));

    color: #fff;
    cursor: pointer;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;

    font-family: 'Outfit', sans-serif;
    text-align: center;

    transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        filter 0.35s ease;
}

.tour-click-layer:hover {
    filter: brightness(1.12);
}

.tour-play-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #a6ff00;
    color: #000;

    font-size: 28px;
    line-height: 1;
    padding-left: 4px;

    box-shadow: 0 0 24px rgba(166, 255, 0, 0.55);
}

.tour-play-text {
    font-size: 18px;
    font-weight: 500;
}

.tour-frame.tour-loaded .tour-click-layer {
    opacity: 0;
    pointer-events: none;
}

.gallery-card.card-showing {
    animation: cardFadeIn 0.65s ease both;
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        filter: blur(4px);
    }

    to {
        opacity: 1;
        filter: blur(0);
    }
}


.films-gallery.films-showing {
    animation: filmsFadeIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.film-carousel.film-carousel-showing {
    animation: filmCarouselIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes filmsFadeIn {
    from {
        opacity: 0;
        transform: translateY(24px);
        filter: blur(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes filmCarouselIn {
    from {
        opacity: 0;
        transform: translateY(32px) scale(0.985);
        filter: blur(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

/* ========================= */
/* POPUP DE IMAGEM - GALERIA */
/* ========================= */

.image-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;

    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(8px);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}

.image-popup.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.image-popup.closing {
    opacity: 0;
    visibility: visible;
    pointer-events: none;
}

.image-popup-content {
    width: 96vw;
    height: 94vh;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: scale(0.96) translateY(14px);
    opacity: 0;

    transition:
        transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.35s ease;
}

.image-popup.active .image-popup-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.image-popup.closing .image-popup-content {
    transform: scale(0.96) translateY(14px);
    opacity: 0;
}

.image-popup-content img {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: contain;

    border-radius: 8px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.65);
}

.see-more-plants-layout {
    width: 100%;
    display: grid;
    grid-template-columns: 1.28fr 1fr;
    gap: 12px;

    opacity: 0;
    animation: seeMoreItemIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.see-more-plants-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.see-more-plant-card {
    width: 100%;
    height: auto;
    border-radius: 3px;
}

.see-more-plant-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: top center;
}

/* ========================= */
/* ABA PLANTAS - LAYOUT ESTILO SEE-MORE */
/* ========================= */

.plantas-layout {
    width: min(1700px, 100%);
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Cada bloco horizontal da aba plantas */
.plantas-section {
    width: 100%;
    display: grid;
    gap: 12px;
    align-items: start;
}

/* BLOCO 1 */
.plantas-section-top {
    grid-template-columns: 1.28fr 1fr;
}

/* BLOCO 2 */
.plantas-section-middle {
    grid-template-columns: 1fr 0.765fr 0.90fr;
}

/* BLOCO 3 */
.plantas-section-bottom {
    grid-template-columns: 1.28fr 1fr;
}

/* Colunas independentes, igual ao see-more */
.plantas-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Cards */
.plantas-card {
    width: 100%;
    height: auto;
    border-radius: 3px;
    background: #111;
}

/* Imagem inteira, sem corte */
.plantas-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: top center;
}

/* Mantém o hover acima das outras imagens */
.plantas-layout .gallery-card:hover {
    z-index: 20;
}

/* ========================= */
/* MOBILE FINAL - ATÉ 520px */
/* ========================= */

@media (max-width: 520px) {

    html,
    body {
        width: 100%;
        min-height: 100%;
        overflow-x: hidden;
    }

    body {
        background: #111111;
    }

    .page {
        width: 100%;
        overflow-x: hidden;
    }

    /* ========================= */
    /* HEADER MOBILE */
    /* ========================= */

    .site-header {
        height: 32px;
        min-height: 32px;

        padding: 0 10px;

        flex-direction: row;
        align-items: center;
        justify-content: space-between;

        background: rgba(10, 10, 10, 0.55);
    }

    .header-logo img {
        width: 62px;
    }

    .header-nav {
        width: auto;
        height: 100%;

        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 0;
    }

    .header-nav a {
        min-width: auto;
        height: 100%;

        padding: 0 8px;

        font-size: 6px;
        font-weight: 400;
    }

    .header-nav a.active::after {
        left: 8px;
        right: 8px;
        height: 2px;
    }

    /* ========================= */
    /* HERO MOBILE */
    /* ========================= */

    .hero {
        min-height: 190px;
        height: 190px;

        padding-top: 32px;

        display: flex;
        flex-direction: row;

        overflow: hidden;
        background: #111111 !important;
    }

    .hero-lines {
        width: 48vw;
        height: 190px;
        background-size: cover, cover;
        background-position: left top;
        opacity: 0.7;
    }

    .hero-content {
        width: 52%;
        padding: 34px 0 18px 13px;

        position: relative;
        z-index: 6;
    }

    .hero-text h1 {
        font-size: 23px;
        line-height: 0.95;
        margin-bottom: 4px;
    }

    .hero-text h2 {
        font-size: 12px;
        line-height: 1.05;
        margin-bottom: 10px;
    }

    .hero-text p {
        max-width: 145px;

        font-size: 6.5px;
        line-height: 1.45;

        margin-bottom: 10px;
    }

    .btn-primary {
        width: 116px;
        height: 23px;

        padding: 0;

        font-size: 6px;
        border-radius: 3px;

        box-shadow: 0 0 10px rgba(166, 255, 0, 0.65);
    }

    .hero-image {
        width: 58%;
        height: 100%;

        top: 0;
        right: 0;

        background:
            linear-gradient(90deg,
                #111111 0%,
                rgba(17, 17, 17, 0.85) 8%,
                rgba(17, 17, 17, 0.45) 22%,
                rgba(17, 17, 17, 0) 42%),
            url("../assets/hero.png?v=2") center right / cover no-repeat;

        z-index: 4;
    }

    /* ========================= */
    /* MOBILE FINAL - ATÉ 520px */
    /* ========================= */

    @media (max-width: 520px) {

        html,
        body {
            width: 100%;
            min-height: 100%;
            overflow-x: hidden;
        }

        body {
            background: #111111;
        }

        .page {
            width: 100%;
            overflow-x: hidden;
        }

        /* ========================= */
        /* HEADER MOBILE */
        /* ========================= */

        .site-header {
            height: 32px;
            min-height: 32px;

            padding: 0 9px;

            flex-direction: row;
            align-items: center;
            justify-content: space-between;

            background: rgba(10, 10, 10, 0.55);
        }

        .header-logo img {
            width: 64px;
        }

        .header-nav {
            width: auto;
            height: 100%;

            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 0;
        }

        .header-nav a {
            min-width: auto;
            height: 100%;

            padding: 0 8px;

            font-size: 6px;
            font-weight: 400;
        }

        .header-nav a.active::after {
            left: 8px;
            right: 8px;
            height: 2px;
        }

        /* ========================= */
        /* HERO MOBILE */
        /* ========================= */

        .hero {
            min-height: 195px;
            height: 195px;

            padding-top: 32px;

            display: flex;
            flex-direction: row;

            overflow: hidden;
            background: #111111 !important;
        }

        .hero-lines {
            width: 48vw;
            height: 195px;

            background-size: cover, cover;
            background-position: left top;

            opacity: 0.65;
        }

        .hero-content {
            width: 54%;

            padding: 36px 0 18px 13px;

            position: relative;
            z-index: 6;
        }

        .hero-text h1 {
            font-size: 23px;
            line-height: 0.95;
            margin-bottom: 4px;
        }

        .hero-text h2 {
            font-size: 12px;
            line-height: 1.05;
            margin-bottom: 10px;
        }

        .hero-text p {
            max-width: 145px;

            font-size: 6.5px;
            line-height: 1.45;

            margin-bottom: 10px;
        }

        .hero-text strong {
            font-weight: 800;
        }

        .btn-primary {
            width: 118px;
            height: 23px;

            padding: 0;

            font-size: 6px;
            border-radius: 3px;

            box-shadow: 0 0 10px rgba(166, 255, 0, 0.65);
        }

        .hero-image {
            width: 60%;
            height: 100%;

            top: 0;
            right: 0;

            background:
                linear-gradient(90deg,
                    #111111 0%,
                    rgba(17, 17, 17, 0.9) 7%,
                    rgba(17, 17, 17, 0.48) 22%,
                    rgba(17, 17, 17, 0) 43%),
                url("../assets/hero.png?v=2") center right / cover no-repeat;

            z-index: 4;
        }

        /* ========================= */
        /* FILTROS MOBILE */
        /* ========================= */

        .filters {
            width: 100%;

            display: flex;
            justify-content: flex-start;
            align-items: center;

            gap: 13px;

            padding: 28px 8px 12px 8px;

            overflow-x: auto;
            scrollbar-width: none;
        }

        .filters::-webkit-scrollbar {
            display: none;
        }

        .filter-btn {
            min-width: 58px;
            height: 24px;

            flex-shrink: 0;

            font-size: 6px;
            font-weight: 300;

            border-radius: 3px 3px 0 0;
            border-bottom-width: 2px;
        }

        /* ========================= */
        /* GALERIA GERAL / EXTERNAS */
        /* ========================= */

        .gallery {
            width: calc(100% - 18px);

            margin: 0 auto;
            padding: 8px 0 56px;

            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        /*
      IMPORTANTE:
      Seu HTML da galeria já tem 4 .gallery-column.
      Então no mobile precisa continuar com 4 colunas.
      Se colocar 3, a quarta coluna cai para baixo e quebra tudo.
    */
        .gallery-layout {
            width: 100%;

            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 5px;
        }

        .gallery-column {
            display: flex;
            flex-direction: column;

            gap: 5px;
            min-width: 0;
        }

        .gallery-card {
            border-radius: 1px;
            overflow: hidden;
        }

        .gallery-card img {
            width: 100%;
            height: auto;

            display: block;
            object-fit: initial;
        }

        .gallery-card:hover {
            transform: none !important;
            filter: none;
            box-shadow: none;
        }

        .gallery-card::after {
            display: none;
        }

        .gallery-card:active {
            transform: none;
        }

        /* ========================= */
        /* INTERNAS MOBILE */
        /* ========================= */

        .internas-mosaic {
            width: 100%;

            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .mosaic-row {
            width: 100%;

            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 5px;
            align-items: start;
        }

        .mosaic-row.inner {
            grid-template-columns: repeat(2, 1fr);
        }

        .mosaic-stack,
        .internas-left-group,
        .internas-left-bottom {
            gap: 5px;
        }

        .internas-left-bottom {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
        }

        .span-2 {
            grid-column: span 2;
        }

        .row-align {
            align-items: stretch;
        }

        .row-align .gallery-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* ========================= */
        /* PLANTAS MOBILE */
        /* ========================= */

        .plantas-layout {
            width: 100%;

            margin: 0 auto;

            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .plantas-section,
        .plantas-section-top,
        .plantas-section-middle,
        .plantas-section-bottom {
            width: 100%;

            display: grid;
            grid-template-columns: 1fr;
            gap: 5px;
        }

        .plantas-column {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .plantas-card {
            width: 100%;
            height: auto;

            border-radius: 1px;
            background: #111;
        }

        .plantas-card img {
            width: 100%;
            height: auto;

            display: block;
            object-fit: contain;
            object-position: top center;
        }

        /* ========================= */
        /* BOTÃO VEJA MAIS MOBILE */
        /* ========================= */

        .see-more-wrapper {
            width: 100%;

            margin-top: -42px;
            margin-bottom: 64px;

            display: flex;
            justify-content: center;

            position: relative;
            z-index: 5;
        }

        .see-more-section+.see-more-wrapper {
            margin-top: -12px;
            margin-bottom: 42px;
        }

        .see-more-btn {
            width: 96px;
            height: 19px;

            border-radius: 4px;

            font-size: 6px;
        }

        .see-more-btn strong {
            width: 22px;
            height: 24px;

            bottom: -20px;

            font-size: 13px;
            line-height: 30px;

            border-radius: 0 0 4px 4px;
        }

        .see-more-section {
            width: calc(100% - 18px);

            margin: 0 auto 18px;

            gap: 38px;
        }

        .see-more-plants-layout {
            width: 100%;

            display: grid;
            grid-template-columns: 1fr;
            gap: 5px;
        }

        .see-more-plants-column {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .see-more-plant-card img {
            width: 100%;
            height: auto;

            object-fit: contain;
            object-position: top center;
        }

        /* ========================= */
        /* FILMES MOBILE */
        /* ========================= */

        .films-gallery {
            width: calc(100% - 18px);

            margin: 0 auto -40px auto;
            padding: 18px 0 42px;
        }

        .film-carousel {
            width: 100%;
            margin-bottom: 38px;
        }

        .film-pages {
            width: 100%;
            overflow: hidden;
        }

        .film-page {
            width: 100%;
            min-width: 100%;

            display: flex;
            flex-direction: column;
            align-items: center;

            gap: 8px;
        }

        .film-card {
            width: 100%;
            max-width: 150px;

            border-bottom-width: 2px;
        }

        .film-card.wide,
        .film-page.single .film-card.wide {
            width: 100%;
            max-width: 100%;

            aspect-ratio: 16 / 9;
        }

        .film-play {
            width: 20px;
            height: 20px;
        }

        .film-info {
            bottom: 9px;
        }

        .film-info span {
            font-size: 7px;
        }

        .film-info small {
            font-size: 5px;
        }

        .film-arrow {
            display: none;
        }

        .film-dots {
            margin-top: 8px;
            gap: 5px;
        }

        .film-dot {
            width: 5px;
            height: 5px;
        }

        /* ========================= */
        /* TOUR MOBILE */
        /* ========================= */

        .tour-gallery {
            width: calc(100% - 18px);

            margin: 20px auto 46px;

            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .tour-frame {
            width: 100%;
            height: auto !important;

            aspect-ratio: 16 / 9;

            border-radius: 3px;
        }

        .tour-play-icon {
            width: 42px;
            height: 42px;
            font-size: 16px;
        }

        .tour-play-text {
            font-size: 9px;
        }

        /* ========================= */
        /* CTA MOBILE */
        /* ========================= */

        .cta {
            min-height: 300px;

            margin-top: 20px;

            display: flex;
            align-items: center;

            background:
                linear-gradient(to bottom,
                    rgba(17, 17, 17, 1) 0%,
                    rgba(20, 20, 20, 0.82) 24%,
                    rgba(28, 28, 28, 1) 100%);
        }

        .cta-inner {
            width: calc(100% - 32px);

            margin: 0 auto;
            padding: 46px 0 44px;

            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;

            gap: 22px;

            text-align: center;
        }

        .cta-text h2 {
            font-size: 17px;
            line-height: 1.12;
            font-weight: 500;
        }

        .cta-text p {
            max-width: 270px;

            margin-top: 16px;

            font-size: 7px;
            line-height: 1.55;
        }

        .cta-action {
            align-items: center;
            gap: 10px;

            transform: none;
        }

        .cta-action .btn-primary {
            width: 210px;
            height: 28px;

            font-size: 7px;
        }

        .cta-action small {
            font-size: 6px;
        }

        /* ========================= */
        /* FOOTER MOBILE */
        /* ========================= */

        .site-footer {
            width: 100%;
            margin-top: 0;
        }

        .footer-inner {
            min-height: 36px;

            padding: 7px 8px;

            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;

            gap: 4px !important;

            overflow: hidden;
        }

        .footer-logo img {
            width: 54px;
        }

        .footer-inner p {
            font-size: 4.5px;
            line-height: 1.2;
            white-space: nowrap;
        }

        .footer-social {
            gap: 4px;
            flex-shrink: 0;
        }

        .footer-social img {
            width: 7px;
            height: 7px;
            display: block;
        }

        /* ========================= */
        /* POPUP MOBILE */
        /* ========================= */

        .image-popup {
            padding: 12px;
        }

        .image-popup-content {
            width: 96vw;
            height: 86vh;
        }

        .image-popup-content img {
            max-width: 96vw;
            max-height: 86vh;

            object-fit: contain;

            border-radius: 4px;
        }
    }
}