/* ========================================
   AKOYA COLINA - Landing Page Styles
   CS Franco - 2025
   ======================================== */

/* ========== VARIABLES ========== */
:root {
    /* Colors */
    --color-bg: #0a0a0a;
    --color-bg-dark: #0c0c0c;
    --color-accent: #ebc1b8;
    --color-accent-rgb: 235, 193, 184;
    --color-white: #ffffff;
    --color-gray-light: #737373;
    --color-gray: #4e4e4e;
    --color-gray-dark: #neutral-500;
    
    /* Typography */
    --font-heading: 'Diaspora', serif;
    --font-body: 'No5', sans-serif;
    
    /* Spacing */
    --container-width: 1300px;
    --section-padding: 310px;
    --gap-sm: 8px;
    --gap-md: 16px;
    --gap-lg: 24px;
    --gap-xl: 48px;
    --gap-2xl: 72px;
    
    /* Border Radius */
    --radius-sm: 9px;
    --radius-md: 20px;
    --radius-lg: 32px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    background-color: var(--color-bg);
    color: var(--color-white);
    line-height: 1.7;
    letter-spacing: 0.32px;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
}

ul, ol {
    list-style: none;
}

input, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* ========== UTILITY CLASSES ========== */
.text-accent {
    color: var(--color-accent);
}

.hidden {
    display: none !important;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--gap-lg);
}

/* Mobile Utilities */
.is-mobile .no-scroll {
    overflow: hidden;
}

/* Scrollbar Hide for horizontal scroll */
.scroll-x {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.scroll-x::-webkit-scrollbar {
    display: none;
}

/* Touch action for carousels */
.touch-pan-x {
    touch-action: pan-x;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: normal;
    line-height: 1.1;
}

strong {
    font-weight: 800;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 24px;
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.28px;
    line-height: 1.7;
    transition: var(--transition-medium);
    overflow: hidden;
}

.btn--primary {
    background-color: var(--color-bg-dark);
    color: var(--color-white);
}

.btn--primary:hover {
    background-color: #1a1a1a;
}

.btn--secondary {
    background-color: rgba(var(--color-accent-rgb), 0.29);
    color: var(--color-white);
}

.btn--secondary:hover {
    background-color: rgba(var(--color-accent-rgb), 0.4);
}

.btn--full {
    width: 100%;
}

.btn--compact {
    font-size: 14px;
    padding: 10px 18px;
    white-space: nowrap;
}

.btn__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: var(--radius-sm);
}

.btn__icon--dark {
    background-color: var(--color-bg-dark);
    padding: 5px 6px;
}

.btn__icon img {
    width: 100%;
    height: auto;
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 80px var(--section-padding);
    transition: var(--transition-medium);
}

.header--scrolled {
    padding: 20px var(--section-padding);
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1920px;
    margin: 0 auto;
}

.header__logo img {
    width: 108px;
    height: auto;
}

.header__menu-btn {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 24px;
}

.header__menu-text {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--color-white);
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding: 0 var(--section-padding);
    padding-bottom: 100px;
}

.hero__video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255,255,255,0.8) 80.908%, rgba(115,115,115,1) 98.193%);
    mix-blend-mode: multiply;
}

.hero__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(12,12,12,0) 23.486%, #0a0a0a 88.623%);
}

.hero__content {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    gap: var(--gap-xl);
}

.hero__text {
    max-width: 687px;
}

.hero__title {
    font-size: 66.439px;
    color: var(--color-accent);
    text-transform: uppercase;
    margin-bottom: 36px;
    letter-spacing: normal;
}

.hero__title-space {
    letter-spacing: -4.96px;
}

.hero__subtitle {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 0.48px;
    color: var(--color-white);
}

.hero__form {
    background-color: rgba(var(--color-accent-rgb), 0.29);
    padding: 30px;
    border-radius: var(--radius-md);
    width: 380px;
    display: flex;
    flex-direction: column;
    gap: 35px;
    box-shadow: 0px 2.621px 31.453px 0px rgba(0,0,0,0.05);
}

.form__group {
    position: relative;
}

.form__group input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding: 0 0 18px 0;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.32px;
    line-height: 1.4;
    outline: none;
    transition: var(--transition-fast);
}

.form__group input::placeholder {
    color: var(--color-white);
}

.form__group input:focus {
    border-bottom-color: var(--color-accent);
}

.hero__form .btn {
    margin-top: 10px;
}

/* ========== INFO BAR ========== */
.info-bar {
    position: relative;
    z-index: 100;
    border-top: 1px solid rgba(255,255,255,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 25px 0;
}

.info-bar__container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 72px;
    max-width: 1920px;
    margin: 0 auto;
}

.info-bar__item {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 4.48px;
    text-align: center;
}

.info-bar__item--highlight {
    font-weight: 700;
}

.info-bar__divider {
    width: 1px;
    height: 14px;
    background-color: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

/* ========== DIFERENCIAIS ========== */
.diferenciais {
    padding: 100px var(--section-padding);
    background: var(--color-bg);
    position: relative;
}

.diferenciais__container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 100px;
}

.diferenciais__content {
    display: flex;
    gap: 208px;
    margin-bottom: 132px;
}

.diferenciais__text {
    max-width: 462px;
}

.diferenciais__title {
    font-size: 44px;
    color: var(--color-accent);
    letter-spacing: 1.32px;
    margin-bottom: 40px;
}

.diferenciais__subtitle {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 68px;
}

.diferenciais__description {
    margin-bottom: 68px;
}

.diferenciais__description p {
    margin-bottom: 16px;
}

.diferenciais__image {
    width: 530px;
    height: 480px;
    overflow: hidden;
}

.diferenciais__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.diferenciais__features {
    display: flex;
    flex-direction: column;
    gap: 69px;
    max-width: 1101px;
}

.diferenciais__features-row {
    display: flex;
    gap: 136px;
}

.feature {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature:nth-child(1) { max-width: 154px; }
.feature:nth-child(2) { max-width: 244px; }
.feature:nth-child(3) { max-width: 144px; }
.feature:nth-child(4) { max-width: 151px; }

.diferenciais__features-row:last-child .feature:nth-child(1) { max-width: 157px; }
.diferenciais__features-row:last-child .feature:nth-child(2) { max-width: 244px; }
.diferenciais__features-row:last-child .feature:nth-child(3) { max-width: 430px; }

.feature__icon {
    width: 20px;
    height: 20px;
}

.feature__icon img {
    width: 100%;
    height: auto;
}

.feature__text {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
}

/* ========== FACHADA ========== */
.fachada {
    height: 560px;
    overflow: hidden;
}

.fachada__image {
    width: 100%;
    height: 100%;
}

.fachada__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ========== LOCALIZAÇÃO ========== */
.localizacao {
    padding: 100px var(--section-padding);
}

.localizacao__container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.localizacao__header {
    display: flex;
    gap: 158px;
    margin-bottom: 145px;
}

.localizacao__titles {
    max-width: 518px;
}

.localizacao__title {
    font-size: 46px;
    letter-spacing: 2.3px;
    margin-bottom: 45px;
}

.localizacao__title span {
    display: block;
}

.localizacao__title span:first-child {
    color: var(--color-white);
}

.localizacao__description {
    max-width: 314px;
    font-size: 16px;
    line-height: 1.8;
}

.localizacao__description p {
    margin-bottom: 16px;
}

.localizacao__map {
    width: 100%;
    height: 560px;
    margin-bottom: 32px;
    overflow: hidden;
}

.localizacao__map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.localizacao__categories {
    display: flex;
    gap: var(--gap-xl);
    flex-wrap: wrap;
}

.category-btn {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--color-gray-light);
    line-height: 1.7;
    transition: var(--transition-fast);
}

.category-btn:hover,
.category-btn.active {
    color: var(--color-accent);
}

/* ========== LOCATION TOOLTIP ========== */

.category-wrapper {
    position: relative;
}

.location-tooltip {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    z-index: 10000;
    background-color: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 12px 16px;
    min-width: 200px;
    max-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
    pointer-events: none;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.category-wrapper:hover .location-tooltip,
.category-wrapper.active .location-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    visibility: visible;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s;
    pointer-events: auto;
}

.location-tooltip:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    visibility: visible;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s;
}

.location-tooltip__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.location-tooltip__item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 300;
    color: var(--color-white);
    line-height: 1.4;
}

.location-tooltip__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    background-color: rgba(var(--color-accent-rgb), 0.15);
    color: var(--color-accent);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 600;
    flex-shrink: 0;
    border: 1px solid rgba(var(--color-accent-rgb), 0.3);
}

.location-tooltip__name {
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    letter-spacing: 0.1px;
    white-space: normal;
}

@media (max-width: 767px) {
    .location-tooltip {
        min-width: 180px;
        max-width: 240px;
        padding: 10px 14px;
        top: calc(100% + 8px);
    }
    
    .location-tooltip__item {
        font-size: 12px;
        gap: 8px;
    }
    
    .location-tooltip__number {
        width: 18px;
        height: 18px;
        min-width: 18px;
        min-height: 18px;
        font-size: 10px;
    }
    
    .location-tooltip__list {
        gap: 8px;
    }
    
    /* No mobile, tooltip aparece abaixo do botão */
    .category-wrapper.active .location-tooltip {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
        visibility: visible;
        pointer-events: auto;
    }
}

/* ========== APARTAMENTOS ========== */
.apartamentos {
    padding-bottom: 100px;
}

.apartamentos__hero {
    position: relative;
    height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 291px;
    margin-bottom: 135px;
}

.apartamentos__hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.2;
}

.apartamentos__hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.apartamentos__hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    gap: 248px;
    align-items: flex-end;
}

.apartamentos__title {
    font-size: 46px;
    letter-spacing: 1.84px;
    max-width: 459px;
}

.apartamentos__title span {
    display: inline;
}

.apartamentos__subtitle {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
    line-height: 1.2;
    max-width: 232px;
}

.apartamentos__content {
    display: flex;
    gap: 123px;
    padding: 0 475px;
    margin-bottom: 135px;
}

.apartamentos__info {
    max-width: 457px;
}

.apartamentos__description {
    margin-bottom: 85px;
}

.apartamentos__description p {
    margin-bottom: 16px;
}

.apartamentos__tabs {
    display: flex;
    flex-direction: column;
    gap: 46px;
    margin-bottom: 85px;
}

.tab-btn {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--color-gray-light);
    text-align: left;
    transition: var(--transition-fast);
}

.tab-btn:hover,
.tab-btn.active {
    color: var(--color-accent);
}

.apartamentos__specs {
    flex: 1;
    border-left: 1px solid rgba(255,255,255,0.2);
    padding-left: 123px;
}

.specs-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.specs-list li {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
}

.apartamentos__carousel {
    padding: 0 var(--section-padding);
    margin-bottom: 135px;
}

.carousel {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.carousel__item {
    width: 310px;
    height: 560px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.carousel__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(10,10,10,0.7);
    transition: var(--transition-medium);
    z-index: 5;
}

.carousel__item:hover .carousel__overlay {
    background-color: transparent;
}

.carousel__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.carousel__item:hover img {
    transform: scale(1.02);
}

.carousel__label {
    position: absolute;
    bottom: 24px;
    left: 24px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    z-index: 10;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-medium);
}

.carousel__item:hover .carousel__label {
    opacity: 1;
    transform: translateY(0);
}

.apartamentos__features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap-2xl) 60px;
    padding: 0 375px;
}

.apt-feature {
    display: flex;
    flex-direction: column;
    gap: var(--gap-lg);
}

.apt-feature__icon {
    width: 16px;
    height: auto;
}

.apt-feature__icon img {
    width: 100%;
    height: auto;
}

.apt-feature p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
}

/* ========== PLANTAS ========== */
.plantas {
    padding: 100px 0;
}

.plantas__header {
    display: flex;
    gap: 133px;
    margin-bottom: 100px;
    padding-left: 0;
}

.plantas__header-image {
    width: 970px;
    height: 560px;
    opacity: 0.2;
    overflow: hidden;
}

.plantas__header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.plantas__header-content {
    padding-top: 170px;
}

.plantas__title {
    font-size: 46px;
    letter-spacing: 2.3px;
    margin-bottom: 46px;
}

.plantas__title span {
    display: block;
}

.plantas__subtitle {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
}

.plantas__content {
    display: flex;
    gap: 143px;
    padding: 0 377px;
    margin-bottom: 82px;
}

.plantas__image {
    width: 541px;
    height: 641px;
}

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

.plantas__options {
    display: flex;
    flex-direction: column;
    gap: 106px;
    padding-top: 43px;
}

.plantas__tabs {
    display: flex;
    flex-direction: column;
    gap: 46px;
}

.planta-btn {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--color-gray-light);
    text-align: left;
    transition: var(--transition-fast);
}

.planta-btn:hover,
.planta-btn.active {
    color: var(--color-white);
}

.planta-btn.active .text-accent,
.planta-btn:hover .text-accent {
    color: var(--color-accent);
}

/* Plantas Gallery - Full Slider */
.plantas__gallery-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.plantas__gallery {
    display: flex;
    gap: 20px;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 0 calc(50% - 485px);
}

.gallery-slide {
    width: 970px;
    height: 560px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
}

.gallery-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(10,10,10,0.7);
    z-index: 5;
    transition: var(--transition-slow);
}

.gallery-slide.active::before {
    background-color: transparent;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-slide__label {
    position: absolute;
    top: 24px;
    left: 24px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    z-index: 10;
    opacity: 0;
    transform: translateY(-10px);
    transition: var(--transition-slow);
}

.gallery-slide.active .gallery-slide__label {
    opacity: 1;
    transform: translateY(0);
}

/* ========== ÁREAS EXTERNAS ========== */
.areas-externas {
    padding: 100px var(--section-padding);
}

.areas-externas__header {
    display: flex;
    gap: 198px;
    margin-bottom: 80px;
}

.areas-externas__title {
    font-size: 46px;
    letter-spacing: 0.92px;
    max-width: 410px;
}

.areas-externas__title span {
    display: block;
}

.areas-externas__description {
    max-width: 362px;
}

.areas-externas__subtitle {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
    line-height: 1.5;
    margin-bottom: 90px;
}

.areas-externas__description p {
    margin-bottom: 16px;
}

.areas-externas__gallery {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ext-gallery__row {
    display: flex;
    gap: 32px;
}

.ext-gallery__item {
    overflow: hidden;
    position: relative;
}

.ext-gallery__item.scroll-reveal .ext-gallery__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(10,10,10,0.7);
    z-index: 5;
    transition: opacity 0.8s ease, background-color 0.8s ease;
}

.ext-gallery__item.scroll-reveal.revealed .ext-gallery__overlay {
    background-color: transparent;
}

.ext-gallery__label {
    position: absolute;
    top: 24px;
    left: 24px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    z-index: 10;
    opacity: 0;
    transform: translateY(-10px);
    transition: var(--transition-slow);
}

.ext-gallery__item.scroll-reveal.revealed .ext-gallery__label {
    opacity: 1;
    transform: translateY(0);
}

.ext-gallery__item--large {
    width: 884px;
    height: 352px;
}

.ext-gallery__item--wide {
    flex: 1;
    height: 424px;
}

.ext-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.ext-gallery__item.scroll-reveal.revealed img {
    transform: scale(1);
}

/* ========== SKY LOUNGE ========== */
.sky-lounge {
    padding-bottom: 80px;
}

.sky-lounge__hero {
    position: relative;
    height: 603px;
}

.sky-lounge__hero-image {
    position: absolute;
    inset: 0;
}

.sky-lounge__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sky-lounge__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(12,12,12,0) 0%, #0a0a0a 74.922%);
}

.sky-lounge__title {
    position: absolute;
    left: var(--section-padding);
    top: 96px;
    font-size: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1;
    z-index: 10;
}

/* Sky Lounge Tabs - Plantas com Lightbox */
.sky-lounge__tabs {
    display: flex;
    gap: 54px;
    justify-content: center;
    margin-bottom: 80px;
    padding: 0 var(--section-padding);
}

.sky-tab {
    width: 592px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.sky-tab__image-wrapper {
    position: relative;
    width: 100%;
    height: 418px;
    overflow: hidden;
}

.sky-tab__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.sky-tab__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(10,10,10,0.5);
    transition: var(--transition-medium);
}

.sky-tab:hover .sky-tab__overlay {
    background-color: transparent;
}

.sky-tab:hover .sky-tab__image-wrapper img {
    transform: scale(1.02);
}

.sky-tab__label {
    display: block;
    margin-top: 16px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--color-white);
    text-align: left;
}

.sky-tab__label .cor-1 {
    color: var(--color-accent);
}

/* Sky Lounge Gallery - Full Slider */
.sky-lounge__gallery-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-bottom: 80px;
}

.sky-lounge__gallery {
    display: flex;
    gap: 20px;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 0 calc(50% - 485px);
    cursor: grab;
}

.sky-lounge__gallery:active {
    cursor: grabbing;
}

.sky-gallery__item {
    width: 970px;
    height: 560px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.sky-gallery__item .sky-gallery__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(10,10,10,0.7);
    z-index: 5;
    transition: var(--transition-slow);
}

.sky-gallery__item.active .sky-gallery__overlay {
    background-color: transparent;
}

.sky-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sky-gallery__label {
    position: absolute;
    top: 24px;
    left: 24px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--color-white);
    z-index: 10;
    opacity: 0;
    transform: translateY(-10px);
    transition: var(--transition-slow);
}

.sky-gallery__item.active .sky-gallery__label {
    opacity: 1;
    transform: translateY(0);
}

.sky-gallery__cta {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    z-index: 10;
    opacity: 0;
    transition: var(--transition-slow);
}

.sky-gallery__item.active .sky-gallery__cta {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.btn--small {
    padding: 10px 18px;
    font-size: 12px;
}

/* ========== MANIFESTO ========== */
.manifesto {
    padding: 100px var(--section-padding);
}

.manifesto__container {
    display: flex;
    gap: 240px;
    max-width: 1200px;
    margin: 0 auto;
}

.manifesto__content {
    max-width: 496px;
}

.manifesto__title {
    font-size: 47.663px;
    color: var(--color-accent);
    text-transform: uppercase;
    margin-bottom: 56px;
}

.manifesto__text {
    margin-bottom: 56px;
}

.manifesto__text p {
    margin-bottom: 16px;
}

.manifesto__tagline {
    font-family: var(--font-heading);
    font-size: 22px;
    letter-spacing: 0.66px;
    margin-bottom: 56px;
}

.manifesto__pearl {
    position: relative;
    width: 506px;
    height: 813px;
}

.manifesto__pearl-bg {
    position: absolute;
    inset: 0;
    opacity: 0.5;
}

.manifesto__pearl-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 385px;
}

/* Pearl Glow Effect */
.pearl-glow {
    opacity: 0;
    filter: brightness(0.3);
    transition: opacity 1.5s ease, filter 1.5s ease, box-shadow 1.5s ease;
}

.pearl-glow.glowing {
    opacity: 1;
    filter: brightness(1);
    animation: pearlGlow 3s ease-in-out infinite alternate;
}

@keyframes pearlGlow {
    0% {
        filter: brightness(1) drop-shadow(0 0 20px rgba(235, 193, 184, 0.3));
    }
    100% {
        filter: brightness(1.1) drop-shadow(0 0 40px rgba(235, 193, 184, 0.6));
    }
}

/* ========== GALERIA ========== */
.galeria {
    padding: 100px 0;
}

.galeria__carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.galeria__carousel {
    overflow: hidden;
    margin-bottom: 48px;
}

.galeria__track {
    display: flex;
    gap: 20px;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: grab;
    padding: 0 calc(50% - 155px);
    align-items: center;
    min-height: 608px;
}

.galeria__track:active {
    cursor: grabbing;
}

.galeria__item {
    width: 310px;
    height: 496px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: height 0.5s ease;
}

.galeria__item.active {
    height: 560px;
}

.galeria__item-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(10,10,10,0.8);
    z-index: 5;
    transition: var(--transition-medium);
}

.galeria__item:hover .galeria__item-overlay,
.galeria__item.active .galeria__item-overlay {
    background-color: transparent;
}

.galeria__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.galeria__item:hover img {
    transform: scale(1.02);
}

.galeria__featured {
    position: relative;
    max-width: 1920px;
    height: 560px;
    margin: 0 auto;
    overflow: hidden;
}

.galeria__featured::before,
.galeria__featured::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 536px;
    z-index: 10;
}

.galeria__featured::before {
    left: 0;
    background: linear-gradient(to right, #0a0a0a 25.078%, rgba(12,12,12,0) 100%);
}

.galeria__featured::after {
    right: 0;
    background: linear-gradient(to left, #0a0a0a 25.078%, rgba(12,12,12,0) 100%);
}

.galeria__featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.galeria__featured-label {
    position: absolute;
    top: 24px;
    left: 334px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    z-index: 20;
    transition: opacity 0.3s ease;
}

/* ========== SOBRE ========== */
.sobre {
    padding: 100px var(--section-padding);
}

.sobre__container {
    display: flex;
    gap: 165px;
    max-width: 990px;
    margin: 0 auto;
}

.sobre__content {
    max-width: 404px;
}

.sobre__title {
    font-size: 46px;
    letter-spacing: 2.3px;
    margin-bottom: 56px;
}

.sobre__title span {
    display: block;
}

.sobre__text {
    margin-bottom: 130px;
    line-height: 1.8;
}

.sobre__text p {
    margin-bottom: 16px;
}

.sobre__divider {
    width: 1px;
    background-color: rgba(255,255,255,0.2);
    align-self: stretch;
}

.sobre__stats {
    display: flex;
    flex-direction: column;
    gap: 52px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat__pre {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
}

.stat__number {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 26px;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.52px;
    line-height: 100%;
}

.stat__number--small {
    font-size: 16px;
    letter-spacing: normal;
}

.stat__label {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
}

.stat__label .cor-1 {
    color: var(--color-accent);
}

/* ========== FOOTER ========== */
.footer {
    padding: 71px var(--section-padding) 78px;
}

.footer__container {
    max-width: var(--container-width);
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 71px;
}

.footer__top {
    display: flex;
    gap: 185px;
    margin-bottom: 71px;
}

.footer__logo img {
    width: 145px;
    height: auto;
}

.footer__contact {
    font-size: 16px;
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.32px;
}

.footer__contact p {
    margin-bottom: 16px;
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 24px;
    text-align: center;
}

.footer__bottom p {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-accent);
    letter-spacing: -0.32px;
    line-height: 0.9;
}

.footer__bottom a {
    color: var(--color-accent);
}

.footer__bottom a:hover {
    text-decoration: underline;
}

.footer__separator {
    margin: 0 16px;
}

.footer__copyright {
    font-size: 1rem;
    font-family: Arial, Helvetica, sans-serif;
}

/* ========== LIGHTBOX ========== */
.lightbox {
    position: fixed;
    inset: 0;
    background-color: rgba(10, 10, 10, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox__close {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: var(--transition-fast);
    z-index: 10001;
}

.lightbox__close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox__content {
    max-width: 90vw;
    max-height: 90vh;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox__content {
    transform: scale(1);
}

.lightbox__content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0 !important;
    transform: translateY(50px);
    transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animated {
    opacity: 1 !important;
    transform: translateY(0);
}

/* Staggered delays for multiple elements */
.animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }

.animate-on-scroll.delay-1 {
    transition-delay: 0.15s;
}

.animate-on-scroll.delay-2 {
    transition-delay: 0.3s;
}

.animate-on-scroll.delay-3 {
    transition-delay: 0.45s;
}

/* Ensure sections are visible */
section {
    opacity: 1 !important;
}

/* ========== RESPONSIVE ========== */

/* Large Desktop */
@media (max-width: 1600px) {
    :root {
        --section-padding: 150px;
    }
    
    .apartamentos__hero {
        padding: 0 200px;
    }
    
    .apartamentos__content {
        padding: 0 200px;
    }
    
    .apartamentos__features {
        padding: 0 200px;
    }
    
    .plantas__content {
        padding: 0 200px;
    }
}

/* Desktop */
@media (max-width: 1400px) {
    :root {
        --section-padding: 80px;
    }
    
    .hero__title {
        font-size: 50px;
    }
    
    .diferenciais__content {
        gap: 100px;
    }
    
    .diferenciais__features-row {
        gap: 60px;
        flex-wrap: wrap;
    }
    
    .localizacao__header {
        gap: 80px;
        flex-direction: column;
    }
    
    .apartamentos__hero {
        padding: 0 100px;
    }
    
    .apartamentos__hero-content {
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
    }
    
    .apartamentos__content {
        padding: 0 100px;
        flex-direction: column;
        gap: 60px;
    }
    
    .apartamentos__specs {
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.2);
        padding-left: 0;
        padding-top: 60px;
    }
    
    .apartamentos__features {
        padding: 0 100px;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .plantas__header {
        flex-direction: column;
        gap: 60px;
    }
    
    .plantas__header-image {
        width: 100%;
    }
    
    .plantas__header-content {
        padding: 0 100px;
    }
    
    .plantas__content {
        padding: 0 100px;
        flex-direction: column;
        gap: 60px;
    }
    
    .areas-externas__header {
        flex-direction: column;
        gap: 60px;
    }
    
    .manifesto__container {
        flex-direction: column;
        gap: 60px;
    }
    
    .manifesto__pearl {
        width: 100%;
        height: 500px;
    }
    
    .sobre__container {
        flex-direction: column;
        gap: 60px;
    }
    
    .sobre__divider {
        width: 100%;
        height: 1px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --section-padding: 40px;
    }
    
    .hero {
        padding-bottom: 60px;
    }
    
    .hero__content {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero__form {
        width: 100%;
        max-width: 400px;
    }
    
    .hero__title {
        font-size: 40px;
    }
    
    .info-bar__container {
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .info-bar__divider {
        display: none;
    }
    
    .diferenciais__content {
        flex-direction: column;
        gap: 60px;
    }
    
    .diferenciais__image {
        width: 100%;
        height: 400px;
    }
    
    .carousel {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 var(--section-padding);
    }
    
    .carousel__item {
        width: 280px;
        height: 450px;
    }
    
    .plantas__gallery {
        overflow-x: auto;
        padding: 0 var(--section-padding);
    }
    
    .gallery-item {
        width: 300px;
        height: 400px;
    }
    
    .sky-lounge__tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .sky-tab {
        width: 100%;
        max-width: 500px;
    }
    
    .sky-lounge__gallery {
        overflow-x: auto;
        padding: 0 var(--section-padding);
        justify-content: flex-start;
    }
    
    .sky-gallery__item {
        width: 300px;
        height: 400px;
    }
    
    .galeria__track {
        padding: 0 var(--section-padding);
    }
    
    .galeria__item {
        width: 250px;
        height: 400px;
    }
    
    .galeria__item.active {
        height: 450px;
    }
    
    .footer__top {
        flex-direction: column;
        gap: 40px;
    }
}

/* Small Tablet / Large Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 24px;
    }
    
    /* Header Mobile */
    .header {
        padding: 48px var(--section-padding);
    }
    
    .header--scrolled {
        padding: 16px var(--section-padding);
    }
    
    .header__logo img {
        width: 76px;
        height: 46px;
    }
    
    .header__menu-text {
        font-size: 14px;
    }
    
    /* Hero Mobile */
    .hero {
        min-height: auto;
        padding: 0;
        padding-top: 120px;
        align-items: flex-start;
        flex-direction: column;
    }
    
    .hero__video-wrapper {
        height: 808px;
    }
    
    .hero__content {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        padding: 0 var(--section-padding);
        padding-bottom: 0;
    }
    
    .hero__text {
        max-width: 100%;
        padding-top: 370px;
    }
    
    .hero__title {
        font-size: 49.358px;
        margin-bottom: 24px;
        width: 262px;
    }
    
    .hero__subtitle {
        font-size: 18.563px;
        letter-spacing: 0.37px;
        width: 268px;
    }
    
    .hero__form {
        position: relative;
        width: calc(100% - 48px);
        max-width: 364px;
        margin: 40px auto 0;
        padding: 29px;
        border-radius: 19px;
        gap: 33.5px;
    }
    
    .form__group input {
        font-size: 15.3px;
        padding-bottom: 15px;
    }
    
    .hero__form .btn {
        padding: 11.5px 78px;
        font-size: 13.4px;
        border-radius: 31px;
    }
    
    /* Info Bar Mobile */
    .info-bar {
        padding: 21px 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .info-bar__container {
        gap: 24px;
        padding: 0 var(--section-padding);
        justify-content: flex-start;
        flex-wrap: nowrap;
        min-width: max-content;
    }
    
    .info-bar__item {
        font-size: 14px;
        letter-spacing: 4.48px;
        white-space: nowrap;
    }
    
    .info-bar__divider {
        display: block;
        flex-shrink: 0;
    }
    
    /* Diferenciais Mobile */
    .diferenciais {
        padding: 80px var(--section-padding);
    }
    
    .diferenciais__container {
        margin: 0 auto;
        padding-left: 0;
    }
    
    .diferenciais__content {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 62px;
    }
    
    .diferenciais__text {
        max-width: 100%;
    }
    
    .diferenciais__title {
        font-size: 36px;
        letter-spacing: 1.08px;
        margin-bottom: 40px;
    }
    
    .diferenciais__subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .diferenciais__description {
        margin-bottom: 40px;
    }
    
    .diferenciais__description p {
        font-size: 15px;
        letter-spacing: 0.3px;
    }
    
    .diferenciais__image {
        width: calc(100% + 74px);
        height: 464px;
        margin-left: -50px;
        order: -1;
    }
    
    .diferenciais__features {
        gap: 64px;
    }
    
    .diferenciais__features-row {
        flex-direction: column;
        gap: 64px;
    }
    
    .feature {
        max-width: 307px !important;
        flex-direction: row;
        gap: 40px;
        align-items: flex-start;
    }
    
    .feature__icon {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }
    
    .feature__text {
        font-size: 14px;
        letter-spacing: 0.28px;
    }
    
    .btn {
        font-size: 12.6px;
        padding: 9px 22px;
        border-radius: 29px;
        gap: 8px;
    }
    
    .btn__icon {
        width: 16px;
        height: 16px;
    }
    
    /* Fachada Mobile */
    .fachada {
        height: 221px;
    }
    
    /* Localização Mobile */
    .localizacao {
        padding: 80px var(--section-padding);
    }
    
    .localizacao__header {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .localizacao__titles {
        max-width: 100%;
    }
    
    .localizacao__title {
        font-size: 36px;
        letter-spacing: 1.8px;
        margin-bottom: 40px;
    }
    
    .localizacao__description {
        max-width: 100%;
        font-size: 15px;
        letter-spacing: 0.3px;
    }
    
    .localizacao__map {
        height: 368px;
        margin-bottom: 24px;
        margin-left: calc(-1 * var(--section-padding));
        margin-right: calc(-1 * var(--section-padding));
        width: calc(100% + 2 * var(--section-padding));
    }
    
    .localizacao__categories {
        gap: 12px 24px;
        flex-wrap: wrap;
    }
    
    .category-btn {
        font-size: 10px;
    }
    
    .location-tooltip {
        min-width: 180px;
        max-width: 240px;
        padding: 10px 14px;
    }
    
    .location-tooltip__item {
        font-size: 12px;
        gap: 8px;
    }
    
    .location-tooltip__number {
        width: 18px;
        height: 18px;
        min-width: 18px;
        min-height: 18px;
        font-size: 10px;
    }
    
    .location-tooltip__list {
        gap: 8px;
    }
    
    /* Apartamentos Mobile */
    .apartamentos__hero {
        height: auto;
        padding: 60px var(--section-padding);
        margin-bottom: 60px;
    }
    
    .apartamentos__hero-content {
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
    }
    
    .apartamentos__title {
        font-size: 36px;
        letter-spacing: 1.44px;
        max-width: 252px;
    }
    
    .apartamentos__subtitle {
        font-size: 16px;
        max-width: 222px;
    }
    
    .apartamentos__content {
        padding: 0 var(--section-padding);
        flex-direction: column;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .apartamentos__info {
        max-width: 100%;
    }
    
    .apartamentos__description {
        margin-bottom: 40px;
    }
    
    .apartamentos__description p {
        font-size: 15px;
        letter-spacing: 0.3px;
    }
    
    .apartamentos__tabs {
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .tab-btn {
        font-size: 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .tab-btn::after {
        content: '';
        width: 15px;
        height: 6px;
        background: url('../icones/Frame 6.svg') no-repeat center;
        background-size: contain;
        transform: rotate(90deg);
        opacity: 0.5;
    }
    
    .tab-btn.active::after {
        opacity: 1;
    }
    
    .apartamentos__specs {
        display: none;
    }
    
    .apartamentos__carousel {
        padding: 0;
        margin-bottom: 60px;
    }
    
    .carousel {
        gap: 10px;
        padding: 0 var(--section-padding);
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }
    
    .carousel__item {
        width: 256px;
        height: 464px;
        flex-shrink: 0;
        scroll-snap-align: center;
    }
    
    .carousel__label {
        font-size: 9px;
        bottom: 15px;
        left: 15px;
    }
    
    .apartamentos__features {
        grid-template-columns: 1fr;
        gap: 64px;
        padding: 0 52px;
    }
    
    .apt-feature {
        flex-direction: row;
        gap: 33px;
        align-items: flex-start;
    }
    
    .apt-feature__icon {
        width: 23px;
        flex-shrink: 0;
    }
    
    .apt-feature p {
        font-size: 14px;
        letter-spacing: 0.28px;
    }
    
    /* Plantas Mobile */
    .plantas {
        padding: 80px 0;
    }
    
    .plantas__header {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .plantas__header-image {
        width: 100%;
        height: 464px;
        opacity: 0.2;
    }
    
    .plantas__header-content {
        padding: 0 var(--section-padding);
        padding-top: 0;
    }
    
    .plantas__title {
        font-size: 36px;
        letter-spacing: 1.8px;
        margin-bottom: 40px;
    }
    
    .plantas__subtitle {
        font-size: 16px;
    }
    
    .plantas__content {
        flex-direction: column;
        gap: 40px;
        padding: 0 var(--section-padding);
        margin-bottom: 60px;
    }
    
    .plantas__tabs {
        gap: 30px;
    }
    
    .planta-btn {
        font-size: 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .planta-btn::after {
        content: '';
        width: 15px;
        height: 6px;
        background: url('../icones/Frame 6.svg') no-repeat center;
        background-size: contain;
        transform: rotate(90deg);
        opacity: 0.5;
    }
    
    .planta-btn.active::after {
        opacity: 1;
    }
    
    .plantas__image {
        width: 100%;
        height: auto;
        max-height: 396px;
    }
    
    .plantas__options {
        gap: 60px;
        padding-top: 0;
    }
    
    .plantas__gallery {
        gap: 7px;
        padding: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .gallery-item {
        width: 346px;
        height: 200px;
        flex-shrink: 0;
    }
    
    .gallery-item__label {
        font-size: 10px;
        top: 16px;
        left: 16px;
    }
    
    /* Áreas Externas Mobile */
    .areas-externas {
        padding: 80px var(--section-padding);
    }
    
    .areas-externas__header {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .areas-externas__title {
        font-size: 36px;
        letter-spacing: 0.72px;
        max-width: 308px;
    }
    
    .areas-externas__description {
        max-width: 100%;
    }
    
    .areas-externas__subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .areas-externas__description p {
        font-size: 15px;
        letter-spacing: 0.3px;
    }
    
    .areas-externas__gallery {
        gap: 7px;
    }
    
    .ext-gallery__row {
        flex-direction: row;
        gap: 7px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin-left: calc(-1 * var(--section-padding));
        margin-right: calc(-1 * var(--section-padding));
        padding: 0 var(--section-padding);
    }
    
    .ext-gallery__item {
        flex-shrink: 0;
    }
    
    .ext-gallery__item--large {
        width: 346px;
        height: 200px;
    }
    
    .ext-gallery__item--wide {
        width: 346px;
        height: 200px;
        flex: none;
    }
    
    /* Sky Lounge Mobile */
    .sky-lounge__hero {
        height: 240px;
        margin-bottom: 40px;
    }
    
    .sky-lounge__title {
        font-size: 16px;
        top: 40px;
        left: 53px;
        letter-spacing: 0.8px;
    }
    
    .sky-lounge__tabs {
        flex-direction: column;
        gap: 10px;
        padding: 0 31px;
        margin-bottom: 40px;
    }
    
    .sky-tab {
        width: 100%;
        max-width: 346px;
        height: 244px;
        border-radius: 0;
    }
    
    .sky-tab__label {
        font-size: 14px;
        bottom: 8px;
        left: 22px;
    }
    
    .sky-lounge__gallery {
        gap: 7px;
        margin-bottom: 40px;
        padding: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .sky-gallery__item {
        width: 346px;
        height: 200px;
        flex-shrink: 0;
    }
    
    .sky-gallery__label {
        font-size: 10px;
        top: 16px;
        left: 16px;
    }
    
    /* Manifesto Mobile */
    .manifesto {
        padding: 80px var(--section-padding);
    }
    
    .manifesto__container {
        flex-direction: column;
        gap: 40px;
    }
    
    .manifesto__content {
        max-width: 100%;
    }
    
    .manifesto__title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .manifesto__text {
        margin-bottom: 40px;
    }
    
    .manifesto__text p {
        font-size: 15px;
        letter-spacing: 0.3px;
    }
    
    .manifesto__tagline {
        font-size: 20px;
        letter-spacing: 0.6px;
        margin-bottom: 40px;
    }
    
    .manifesto__pearl {
        width: 172px;
        height: 276px;
        margin: 0 auto;
    }
    
    .manifesto__pearl-main {
        width: 131px;
    }
    
    /* Galeria Mobile */
    .galeria {
        padding: 80px 0;
    }
    
    .galeria__carousel {
        margin-bottom: 32px;
    }
    
    .galeria__track {
        gap: 11px;
        padding: 0 var(--section-padding);
    }
    
    .galeria__item {
        width: 168px;
        height: 269px;
    }
    
    .galeria__item.active {
        height: 310px;
    }
    
    .galeria__featured {
        height: 203px;
    }
    
    .galeria__featured::before,
    .galeria__featured::after {
        width: 194px;
    }
    
    .galeria__featured-label {
        font-size: 10px;
        left: var(--section-padding);
        top: 16px;
    }
    
    /* Sobre Mobile */
    .sobre {
        padding: 80px var(--section-padding);
    }
    
    .sobre__container {
        flex-direction: column;
        gap: 60px;
    }
    
    .sobre__content {
        max-width: 100%;
    }
    
    .sobre__title {
        font-size: 36px;
        letter-spacing: 1.8px;
        margin-bottom: 40px;
    }
    
    .sobre__text {
        margin-bottom: 0;
    }
    
    .sobre__text p {
        font-size: 15px;
        letter-spacing: 0.3px;
    }
    
    .sobre__divider {
        display: none;
    }
    
    .sobre__stats {
        flex-direction: column;
        align-items: center;
        gap: 50px;
        padding: 0 24px;
        border-left: 1px solid rgba(255,255,255,0.2);
        border-right: 1px solid rgba(255,255,255,0.2);
    }
    
    .stat {
        align-items: center;
        text-align: center;
        gap: 14px;
    }
    
    .stat__number {
        font-size: 21.7px;
        letter-spacing: 0.43px;
    }
    
    .stat__label {
        font-size: 13.4px;
        letter-spacing: 0.27px;
    }
    
    .stat__pre {
        font-size: 13.4px;
        letter-spacing: 0.27px;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 80px var(--section-padding);
    }
    
    .footer__container {
        padding-top: 56px;
    }
    
    .footer__top {
        flex-direction: row;
        gap: 94px;
        margin-bottom: 56px;
        align-items: flex-start;
    }
    
    .footer__logo img {
        width: 111px;
        height: 68px;
    }
    
    .footer__contact {
        font-size: 14px;
        line-height: 1.5;
        letter-spacing: -0.28px;
    }
    
    .footer__bottom p {
        font-size: 12px;
        line-height: 1.5;
        letter-spacing: -0.24px;
    }
    
    .footer__separator {
        display: inline;
        margin: 0 8px;
    }
}

/* Tablet Responsive Adjustments */
@media (max-width: 1024px) {
    /* Plantas Gallery */
    .plantas__gallery {
        padding: 0 var(--section-padding);
    }
    
    .gallery-slide {
        width: 300px;
        height: 400px;
    }
    
    /* Sky Lounge */
    .sky-lounge__gallery {
        padding: 0 var(--section-padding);
    }
    
    .sky-gallery__item {
        width: 300px;
        height: 400px;
    }
    
    /* Galeria */
    .galeria__item {
        width: 200px;
        height: 320px;
    }
    
    .galeria__item.active {
        height: 360px;
    }
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    /* Carousel Apartamentos Mobile */
    .carousel__item {
        width: 256px;
        height: 464px;
    }
    
    .carousel__label {
        font-size: 9px;
        bottom: 15px;
        left: 15px;
    }
    
    /* Plantas Gallery Mobile */
    .plantas__gallery-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .plantas__gallery {
        padding: 0 var(--section-padding);
        gap: 7px;
    }
    
    .gallery-slide {
        width: 300px;
        height: 200px;
    }
    
    .gallery-slide__label {
        font-size: 10px;
        top: 16px;
        left: 16px;
    }
    
    /* Áreas Externas Mobile */
    .ext-gallery__item--large,
    .ext-gallery__item--wide {
        width: 300px;
        height: 180px;
    }
    
    .ext-gallery__label {
        font-size: 10px;
        top: 12px;
        left: 12px;
    }
    
    /* Sky Lounge Mobile */
    .sky-lounge__tabs {
        flex-direction: column;
        gap: 20px;
        padding: 0 var(--section-padding);
    }
    
    .sky-tab {
        width: 100%;
        max-width: 346px;
    }
    
    .sky-tab__image-wrapper {
        height: 244px;
    }
    
    .sky-tab__label {
        font-size: 12px;
        margin-top: 12px;
    }
    
    .sky-lounge__gallery-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .sky-lounge__gallery {
        padding: 0 var(--section-padding);
        gap: 7px;
    }
    
    .sky-gallery__item {
        width: 300px;
        height: 200px;
    }
    
    .sky-gallery__label {
        font-size: 10px;
        top: 12px;
        left: 12px;
    }
    
    .sky-gallery__cta {
        bottom: 12px;
    }
    
    .btn--small {
        padding: 8px 14px;
        font-size: 10px;
    }
    
    /* Manifesto Mobile */
    .manifesto__pearl {
        width: 172px;
        height: 276px;
    }
    
    .manifesto__pearl-main {
        width: 131px;
    }
    
    /* Galeria Mobile */
    .galeria__track {
        padding: 0 var(--section-padding);
        gap: 11px;
    }
    
    .galeria__item {
        width: 140px;
        height: 224px;
    }
    
    .galeria__item.active {
        height: 260px;
    }
    
    .galeria__featured {
        height: 203px;
    }
    
    .galeria__featured::before,
    .galeria__featured::after {
        width: 194px;
    }
    
    .galeria__featured-label {
        font-size: 10px;
        left: var(--section-padding);
        top: 16px;
    }
    
    /* Lightbox Mobile */
    .lightbox__close {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
    
    .lightbox__content {
        max-width: 95vw;
        padding: 0 10px;
    }
}

/* Mobile Portrait - 412px (Figma Mobile Design) */
@media (max-width: 480px) {
    :root {
        --section-padding: 24px;
    }
    
    .hero__title {
        font-size: 42px;
    }
    
    .hero__form {
        width: calc(100% - 48px);
    }
    
    .diferenciais__image {
        margin-left: -50px;
        width: calc(100% + 50px);
    }
    
    .feature {
        max-width: 100% !important;
    }
    
    .footer__top {
        flex-direction: column;
        gap: 40px;
    }
    
    /* Galeria items smaller */
    .galeria__item {
        width: 120px;
        height: 192px;
    }
    
    .galeria__item.active {
        height: 220px;
    }
}

