/*
Theme Name: BSCON Construtora
Description: Tema customizado para BSCON Construtora e Incorporadora
Version: 1.0
Author: BSCON
*/

* {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-style: normal;
}

:root {
    /* CORES */
    --primary-color: #f5821d;
    --primary-hover: #E67A35;
    --purple-primary: #3c1b5a;
    --orange-accent: #ff9447;
    --purple-dark: #2D1B4E;
    --dark-gray: #363737;
    --darker-gray: #2A2A2A;

    /* TYPOGRAPHY VARIABLES BASED ON SEO TABLE */
    --h1-desktop: 2.5rem;
    /* 40px - dentro da faixa 36-48px */
    --h1-mobile: 2rem;
    /* 32px - dentro da faixa 28-32px */
    --h2-desktop: 2rem;
    /* 32px - dentro da faixa 28-32px */
    --h2-mobile: 1.6rem;
    /* 25.6px - dentro da faixa 22-26px */
    --h3-desktop: 1.6rem;
    /* 25.6px - dentro da faixa 22-26px */
    --h3-mobile: 1.3rem;
    /* 20.8px - dentro da faixa 18-22px */
    --subtitle-desktop: 1.125rem;
    /* 18px - dentro da faixa 16-18px */
    --subtitle-mobile: 1rem;
    /* 16px - dentro da faixa 14-16px */
    --paragraph-desktop: 1rem;
    /* 16px - dentro da faixa 15-16px */
    --paragraph-mobile: 0.9rem;
    /* 14.4px - dentro da faixa 13-14px */

    /* Line heights according to SEO table */
    --line-height-h1: 1.2;
    --line-height-h2: 1.3;
    --line-height-h3: 1.3;
    --line-height-subtitle: 1.4;
    --line-height-paragraph: 1.6;
}

@font-face {
    font-family: 'Nexa XBold';
    src: url('./assets/fonts/Nexa-XBold.woff2') format('woff2'),
        url('./assets/fonts/Nexa-XBold.woff') format('woff');
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nexa Bold';
    src: url('./assets/fonts/Nexa-Bold.woff2') format('woff2'),
        url('./assets/fonts/Nexa-Bold.woff') format('woff');
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nexa Regular';
    src: url('./assets/fonts/Nexa-Regular.woff2') format('woff2'),
        url('./assets/fonts/Nexa-Regular.woff') format('woff');
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BebasNeue Book';
    src: url('./assets/fonts/BebasNeueBook.woff2') format('woff2'),
        url('./assets/fonts/BebasNeueBook.woff') format('woff');
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'NexaBlack Italic';
    src: url('./assets/fonts/NexaBlackItalic.woff2') format('woff2'),
        url('./assets/fonts/NexaBlackItalic.woff') format('woff');
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nexa Black';
    src: url('./assets/fonts/NexaBlack.woff2') format('woff2'),
        url('./assets/fonts/NexaBlack.woff') format('woff');
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aeonik Regular';
    src: url('./assets/fonts/Aeonik-Regular.woff2') format('woff2'),
        url('./assets/fonts/Aeonik-Regular.woff') format('woff');
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bebas Kai';
    src: url('./assets/fonts/Bebas-Kai.woff2') format('woff2'),
        url('./assets/fonts/Aeonik-Regular.woff') format('woff');
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nexa Light Italic';
    src: url('./assets/fonts/Nexa-LightItalic.woff2') format('woff2'),
        url('./assets/fonts/Nexa-LightItalic.woff') format('woff');
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nexa Bold Italic';
    src: url('./assets/fonts/Nexa-BoldItalic.woff2') format('woff2'),
        url('./assets/fonts/Nexa-BoldItalic.woff') format('woff');
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nexa Extra Bold';
    src: url('./assets/fonts/Nexa-ExtraBold.woff2') format('woff2'),
        url('./assets/fonts/Nexa-ExtraBold.woff') format('woff');
    font-style: normal;
    font-display: swap;
}

body {
    background-color: #363737;
    color: #ffffff;
    font-size: var(--paragraph-desktop);
    line-height: var(--line-height-paragraph);
    overflow-x: hidden;
    width: 100%;
}

/* Títulos globais seguindo hierarquia SEO */
h1 {
    font-size: var(--h1-desktop);
    line-height: var(--line-height-h1);
    font-weight: 800;
}

h2 {
    font-size: var(--h2-desktop);
    line-height: var(--line-height-h2);
    font-weight: 700;
}

h3 {
    font-size: var(--h3-desktop);
    line-height: var(--line-height-h3);
    font-weight: 600;
}

.subtitle {
    font-size: var(--subtitle-desktop);
    line-height: var(--line-height-subtitle);
}

/* Navbar */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 19px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

#navbar.scrolled {
    background-color: #363737;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding: 10px 5%;
}

/* Logo */
#navbar .logo {
    display: flex;
    align-items: center;
}

#navbar .logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

#navbar .logo img {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

#navbar .logo {
    font-size: var(--h3-desktop);
    color: #ffffff;
    margin: 0;
}

#navbar .logo span {
    color: var(--primary-color);
}

/* Menu Desktop */
#navbar ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

#navbar ul li a {
    text-decoration: none;
    color: #ffffff;
    font-family: 'Nexa XBold';
    font-size: var(--paragraph-desktop);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

#navbar ul li a:hover {
    color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.1);
}

/* Hamburger */
#navbar .hamburger {
    display: none;
    cursor: pointer;
}

#navbar .hamburger .line {
    width: 25px;
    height: 2px;
    background-color: #ffffff;
    display: block;
    margin: 6px auto;
    transition: all 0.3s ease-in-out;
}

#navbar .hamburger-active {
    transform: rotate(45deg);
}

#navbar .hamburger-active .line:nth-child(2) {
    opacity: 0;
}

#navbar .hamburger-active .line:nth-child(1) {
    transform: translateY(8px);
}

#navbar .hamburger-active .line:nth-child(3) {
    transform: translateY(-8px) rotate(90deg);
}

/* Menu Mobile */
.menubar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 250px;
    height: 100vh;
    padding: 80px 20px;
    background: rgba(26, 26, 26, 0.95);
    transition: all 0.5s ease-in;
    z-index: 999;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
}

.menubar.active {
    left: 0;
}

.menubar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menubar ul li {
    margin-bottom: 20px;
}

.menubar ul li a {
    display: block;
    text-decoration: none;
    color: #ffffff;
    font-size: var(--h3-mobile);
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.menubar ul li a:hover {
    color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.11)), url("./assets/images/herobackground.webp");
    background-size: cover;
    background-position: center;

    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Contraste redondo no fundo - LADO ESQUERDO */
.hero-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 81%;
    height: 160%;
    background: #ffffff25;
    opacity: 0.9;
    border-radius: 50%;
    z-index: 1;
}

/* Contêiner principal do hero */
.hero-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    z-index: 2;
}

/* Quadrado FIXO no lado esquerdo */
.contrast-square {
    position: absolute;
    left: -5rem;
    top: 31rem;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0000004f;
    z-index: 3;
}

.retangulo {
    width: 500px;
    height: 500px;
    clip-path: polygon(15% 15%, 50% 50%, 85% 85%, 15% 85%);
    background-color: #ffffff36;
}

/* Textos posicionados LIVREMENTE sobre o quadrado */
.hero-text-content {
    position: absolute;
    left: 20%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    /* Acima do quadrado */
}

.hero-main-title {
    font-family: 'BebasNeue Book';
    font-size: 3rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: var(--line-height-h1);
    padding-top: 1.5rem;
}

.hero-text-content img {
    max-height: 99px;

}

/* Conteúdo do lado DIREITO (seta + texto) */
.hero-right-content {
    position: absolute;
    right: 5%;
    top: 80%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.hero-right-content .scroll-text {
    color: #ffffff;
    font-family: 'BebasNeue Book';
    font-size: 3rem;
    font-weight: 400;
    font-style: normal;
    line-height: var(--line-height-subtitle);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Scroll indicator customizado */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: end;
    animation: bounce 2s infinite;
}

.scroll-indicator .fa-chevron-down {
    color: var(--primary-color);
    font-size: 3rem;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* About Section PAGE HOME */
.bscon-section {
    padding: 0;
    overflow: hidden;
    position: relative;
}

.purple-container {
    background-color: var(--purple-primary);
    border-radius: 80px;
    padding: 60px 40px 280px;
    margin: 0 auto;
    max-width: 78%;
    position: relative;
    z-index: 1;
}

.purple-container::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 0;
    right: 0;
    height: 160px;
    background: linear-gradient(to bottom, var(--purple-primary), var(--dark-gray), transparent);
    border-radius: 0 0 40px 40px;
    pointer-events: none;
}


.header-content {
    text-align: center;
    color: white;
    margin-bottom: 40px;
}

.quality-badge {
    font-size: 1.5rem;
    font-family: 'Nexa Regular';
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.main-title,
.subtitle,
.orange-badge p {
    font-family: 'Nexa Xbold';
}

.main-title {
    font-size: 4rem;
    font-weight: 500;
    margin: 10px 0;
}

.header-content img {
    max-height: 75px;
}

.subtitle {
    font-size: 2.5rem;
    font-weight: 400;
    margin-top: 10px;
}

.orange-badge {
    background-color: var(--orange-accent);
    color: white;
    padding: 18px 75px;
    border-radius: 25px;
    display: inline-block;
    margin-top: 20px;
}

.orange-badge p {
    margin: 0;
    font-size: 20px;
    line-height: 1.4;
    font-weight: lighter;
}

.orange-badge strong {
    font-family: 'Nexa Xbold';
    font-weight: bold;
}

.content-overlay {
    position: relative;
    margin-top: -20rem;
    z-index: 2;
}

.building-image-container {
    position: relative;
    width: 95%;
    overflow: visible;
}

.building-image {
    width: 100%;
    height: auto;
    display: block;
}

.sessionTextsVideos {
    margin-top: -2rem;
}

.text-content {
    color: white;
    padding: 20px;
    width: 75%;
}

.highlight-text {
    color: var(--orange-accent);
    font-weight: 700;
}

.summary-text,
.mission-text,
.highlight-text {
    font-family: 'NexaBlack Italic';
    font-size: 20px;
}

.summary-text {
    font-weight: 100;
    line-height: 1.8;

}

.mission-text {
    font-weight: 600;
    padding-top: 2rem;
}

.video-container {
    width: 84%;
    margin-top: 10px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 245px;
    background-color: #0f0f0f;
}

/* Estilo do vídeo */
.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Esconde controles nativos */
.video-wrapper video::-webkit-media-controls {
    display: none !important;
}

/* Overlay central de play */
.video-center-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    transition: opacity 0.3s ease;
    z-index: 20;
}

.video-center-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    background: var(--orange-accent);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 2.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.video-play-btn:hover {
    transform: scale(1.1);
    background: #ff7a2f;
}

/* Controles inferiores */
.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4), transparent);
    padding: 12px 15px 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 30;
}

.video-wrapper:hover .video-controls {
    opacity: 1;
}

.video-controls.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Linha de controles - alinhamento lado a lado */
.controls-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 5px;
}

/* Botão play (esquerda) */
.play-pause-btn {
    width: 36px;
    height: 36px;
    background: var(--orange-accent);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.play-pause-btn:hover {
    background: #ff7a2f;
    transform: scale(1.05);
}

/* Tempo do vídeo (centro) */
.video-time-display {
    color: white;
    font-family: 'Nexa XBold', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    white-space: nowrap;
    margin: 0 15px;
    flex-grow: 1;
    text-align: center;
}

/* Botão tela cheia (direita) */
.fullscreen-btn {
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    opacity: 0.8;
    border-radius: 4px;
}

.fullscreen-btn:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

/* Ícone de compressão quando em tela cheia */
.video-wrapper.fullscreen .fullscreen-btn i::before {
    content: "\f066";
    /* Ícone de compressão do FontAwesome */
}

/* Barra de progresso */
.progress-container {
    width: 100%;
    height: 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 3px 0;
}

.progress-bar {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 1.5px;
    position: relative;
    transition: height 0.2s;
}

.progress-container:hover .progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.35);
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--orange-accent);
    border-radius: 1.5px;
    width: 0%;
    transition: width 0.1s linear;
}

.progress-thumb {
    position: absolute;
    top: 50%;
    left: 0%;
    width: 12px;
    height: 12px;
    background: var(--orange-accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
}

.progress-container:hover .progress-thumb {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Estado quando o vídeo está tocando */
.video-wrapper.playing .play-pause-btn i::before {
    content: "\f04c";
    /* ícone de pause do FontAwesome */
}

/* Efeito de clique nos botões */
.play-pause-btn:active,
.video-play-btn:active,
.fullscreen-btn:active {
    transform: scale(0.95);
}

.cta-button {
    background-color: var(--orange-accent);
    color: white;
    padding: 08px 37px;
    border-radius: 10px;
    font-size: 18px;
    font-family: 'NexaBlack Italic';
    font-weight: 400;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    right: -20px;
    top: 80%;
    text-decoration: none;
    transform: translateY(-50%);
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.048);
    z-index: 10;
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-50%) scale(1.05);
    background-color: #ff7a2f;
    box-shadow: 5px 5px 18px rgba(0, 0, 0, 0.5);
    right: -15px;
    /* Move um pouco mais para dentro no hover */
}

/* page hero sessão cards empreendimentos */
.projects-section {
    padding: 80px 0;
}

/* Cards Container */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Card Individual */
.project-card {
    background: #222323;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.055);
    transition: transform 0.3s ease;
    position: relative;
}

/* Slider de Imagens */
.card-slider {
    position: relative;
    width: 100%;
    height: 360px;
    overflow: hidden;
}

.slider-images {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.slider-image {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Controles do Slider */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 10;
}

.slider-btn {
    background: transparent;
    border: none;
    color: #f5821d;
    width: 45px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.slider-btn:hover {
    background: transparent;
    transform: scale(1.1);
}

.slider-btn i {
    font-size: 40px;
}

/* Indicadores de Slides */
.slider-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

/* Conteúdo do Card */
.card-content {
    padding: 25px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-subtitle {
    color: #ffff;
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.card-title,
.card-subtitle,
.card-description,
.feature-badge span {
    font-family: 'Nexa Regular';
}

.card-title {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 6px;
    font-weight: 700;
    letter-spacing: 1px;
}

.card-title-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.card-description {
    color: #fff;
    font-size: 17px;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.card-divider {
    width: 330px;
    height: 3px;
    background: var(--primary-color);
    margin: 15px auto;
    border-radius: 2px;
}

/* Ícones de Características */
.card-features {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-badge {
    background: #505050;
    padding: 10px 17px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
    min-width: 75px;
}

.feature-badge:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.feature-badge img {
    width: 33px;
    height: 33px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(58%) sepia(89%) saturate(2476%) hue-rotate(360deg) brightness(101%) contrast(98%);
}

.feature-badge:hover img {
    filter: brightness(0) saturate(100%) invert(68%) sepia(76%) saturate(1752%) hue-rotate(342deg) brightness(103%) contrast(101%);
}

.feature-badge span {
    color: #ffffff;
    font-size: 14px;
    text-align: center;
    padding: 5px 5px;
    line-height: 1.2;
}

/*page home cards noticias */
.news-section {
    padding: 80px 0;
    background-color: #363737;
    z-index: 2;
    /* Acima da seção de contato (z-index: 1) */
}

.news-card-wrapper,
.news-card,
.news-card-content {
    position: relative;
    z-index: 3;
    /* Acima da logo (z-index: 1) */
}

.underline {
    width: 120px;
    height: 4px;
    background: #f5821d;
    margin: 0 auto;
    border-radius: 2px;
}

/* WRAPPER DO CARD (novo) */
.news-card-wrapper {
    position: relative;
    height: 100%;
    padding-bottom: 40px;
    /* Espaço para o botão */
}

/* Cards de Notícias - Desktop */
.news-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.068);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.news-card-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    border-radius: 20px 20px 0 0;
}

.news-card-content {
    padding: 30px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.news-card-title {
    font-size: 1.5rem;
    font-family: 'Nexa Black';
    font-weight: 700;
    color: #2f2f2f;
    margin-bottom: 15px;
    line-height: 1.3;
    min-height: 50px;
}

.news-card-text {
    font-size: 1rem;
    font-family: 'Nexa Regular';
    color: #2f2f2f;
    line-height: 1.6;
    margin-bottom: 0;
    flex-grow: 1;
}

/* WRAPPER DO BOTÃO (novo) */
.news-card-btn-wrapper {
    position: absolute;
    bottom: 2.5rem;
    left: 0;
    width: 53%;
    display: flex;
    justify-content: center;
    z-index: 20;
}

/* Botão que flutua sobre o card */
.news-card-btn {
    background-color: #ec8a28;
    color: #2f2f2f;
    padding: 06px 20px;
    border-radius: 29px;
    font-size: 17px;
    font-family: 'Nexa Black', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    width: fit-content;
    letter-spacing: 1px;

    /* Efeitos visuais */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.055);
    transform: translateY(15px);
    /* Posiciona metade para fora */
}

.news-card-btn:hover {
    transform: translateY(10px);
    /* Sobe um pouco no hover */
    background-color: #ff7a2f;
    color: white;
}

.news-card-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.news-card-btn:hover i {
    transform: translateX(3px);
}

/* final das páginas contato vendas */
.contato-vendas-section {
    background-image: linear-gradient(to top, #2b1343, #241239, #1d112f, #180f26, #130b1c, #140e1b, #15111a, #161419, #1e1c20, #262528, #2e2d30, #373638);
    min-height: 120vh;
    position: relative;
    overflow: visible;
    width: 100%;
    margin-top: -80px;
    /* Mantém para página inicial */
    padding-top: 80px;
    z-index: 1;
}

/* final da página about */
.contato-vendas-sectionAbout {
    background-image: linear-gradient(to top, #2b1343, #251239, #1f112f, #190f25, #140b1b, #100a17, #0b0812, #07060b, #07060a, #070709, #070708, #070707);
    min-height: 120vh;
    position: relative;
    overflow: visible;
    width: 100%;
    margin-top: 0;
    /* Ajuste este valor */
    padding-top: 5px;
    /* Ajuste este valor também */
    z-index: 1;
}

/* Para outras páginas (opcional) */
.page:not(.home-page):not(.quem-somos-page) .contato-vendas-section {
    margin-top: 0;
}

.contato-vendas-content {
    position: relative;
    z-index: 3;
    /* Acima da logo, mantém os textos visíveis */
    padding: 120px 0 80px;
    /* Padding aumentado no topo */
}

/* Títulos */
.contato-vendas-title {
    font-family: 'Nexa Black';
    color: #ff9147;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contato-vendas-subtitle {
    font-family: 'Nexa Black';
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* Caixa de contato */
.contact-box {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 35px 25px;
    margin-bottom: 50px;
    max-width: 520px;
    /* Largura reduzida */
    width: 100%;
    z-index: 4;
    /* Garante que fique acima de tudo */
    position: relative;
    /* Necessário para z-index funcionar */
}

.contact-box h3 {
    font-family: 'Nexa Black';
    color: #353535;
    font-size: 28px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 25px;
    text-transform: uppercase;
    line-height: 1.2;
}

/* Botões */
.btn-custom {
    width: 100%;
    padding: 15px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    margin-bottom: 15px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.btn-custom:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-vendas,
.btn-apartamentos {
    font-family: 'Nexa Black';
    font-size: 18px;
    background-color: #f5821d;
    color: #343434;
}

.btn-vendas:hover {
    background-color: #e67d35;
    box-shadow: 0 5px 15px rgba(255, 145, 71, 0.3);
    color: #ffffff;
}

.btn-apartamentos:hover {
    background-color: #bd6a33;
    box-shadow: 0 5px 15px rgba(212, 122, 61, 0.3);
    color: #ffffff;
}

/* Informações de contato */
.contact-info {
    margin-top: 30px;
    position: relative;
    z-index: 4;
    /* Garante que fique acima da logo */
}

.contact-item {
    display: flex;
    align-items: center;
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 18.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 4;
    /* Garante que fique acima da logo */
}

.contact-item:hover {
    color: #ff9147;
    transform: translateX(5px);
}

.contact-item span {
    font-family: 'Nexa Bold';
}

a.contact-item {
    cursor: pointer;
}

/* Ícones dentro de círculos */
.contact-item i {
    color: #2b1343;
    background-color: #ff9147;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-item:hover i {
    background-color: #ffffff;
    color: #ff9147;
    transform: scale(1.1);
}

.logo-decorativa {
    position: absolute;
    right: 0;
    top: -32rem;
    /* Começa acima da seção */
    width: 33rem;
    /* Aumentado significativamente */
    height: auto;
    opacity: 0.90;
    z-index: 1;
    /* BAIXO - abaixo dos cards de notícias */
    pointer-events: none;
    /* Não interfere com cliques */
}

.logo-decorativaAbout {
    position: absolute;
    right: 0;
    top: -20rem;
    /* Começa acima da seção */
    width: 33rem;
    /* Aumentado significativamente */
    height: auto;
    opacity: 0.90;
    z-index: 1;
    /* BAIXO - abaixo dos cards de notícias */
    pointer-events: none;
    /* Não interfere com cliques */
}

.logo-decorativaInga {
    position: absolute;
    right: 0;
    top: -13rem; /* Valor diferente da home (-32rem) */
    width: 33rem;
    height: auto;
    opacity: 0.90;
    z-index: 1;
    pointer-events: none;
}

.logo-decorativa img,
.logo-decorativaAbout img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 3000px;
    /* Altura máxima grande */
}

/* PAGE QUEM SOMOS */
/* Seção Sobre */
.sobre-section {
    position: relative;
    min-height: 160vh;
    background:
        /* Gradiente principal */
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0.685) 0%,
            rgba(0, 0, 0, 0.699) 40%,
            rgba(29, 29, 29, 0.3) 60%,
            rgba(29, 29, 29, 0.1) 80%,
            transparent 90%),
        url('./assets/images/backgroundpageabout.webp') center/cover no-repeat;
    padding: 10px 0;
    overflow: hidden;
}

/* Transição suave que se dissolve como o info-card */
.sobre-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 800px;
    /* Área muito maior para transição mais suave */
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(29, 29, 29, 0.05) 15%,
            rgba(29, 29, 29, 0.15) 30%,
            rgba(29, 29, 29, 0.3) 45%,
            rgba(29, 29, 29, 0.5) 60%,
            rgba(29, 29, 29, 0.7) 75%,
            rgba(7, 6, 7, 0.85) 90%,
            rgba(7, 6, 7, 1) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Ajuste para o conteúdo ficar acima */
.sobre-section .content-wrapper {
    position: relative;
    z-index: 2;
}

/* Logo de fundo no canto esquerdo */
.background-logo {
    position: absolute;
    left: -100px;
    top: 59%;
    transform: translateY(-50%);
    width: 500px;
    height: auto;
    opacity: 0.80;
    z-index: 1;
    pointer-events: none;
}

.background-logo img {
    width: 100%;
    height: auto;
    filter: brightness(0.5);
}

/* Título "Qualidade de verdade" centralizado */
.quality-title {
    text-align: center;
    margin-top: 10rem;
}

.quality-title h2 {
    font-family: 'Aeonik Regular';
    font-size: 2.5rem;
    font-weight: 400;
    color: white;
    margin-bottom: 0.5rem;
}

.decorative-line {
    width: 125px;
    height: 3px;
    margin-left: 14.5rem;
    background: var(--primary-color);
}

/* Seção de descrição com Quem Somos */
.description-section {
    margin-bottom: -1rem;
}

.quem-somos-title {
    font-family: 'Aeonik Regular';
    font-size: 5rem;
    color: var(--primary-color);
    line-height: 0.9;
    margin-bottom: 0;
}

.quem-somos-title span {
    font-family: 'Aeonik Regular';
    font-size: 4rem;
    display: block;
    color: white;
}

.description-text {
    font-family: 'Aeonik Regular';
    font-size: 18px;
    line-height: 1.8;
    color: white;
    width: 99% !important;
}

.company-name {
    font-family: 'Aeonik Regular';
    color: #db812d;
    font-weight: 700;
}

/* Card com gradiente escuro */
.info-card {
    background: linear-gradient(to bottom, rgba(29, 29, 29, 0) 20%, rgba(7, 6, 7, 1));
    border-radius: 20px;
    position: relative;
    overflow: visible;
    width: 110%;
}

.info-card-content {
    min-height: 230px;
}

/* Coluna esquerda - 50% do card */
.card-left-section {
    position: relative;
    height: 100%;
    min-height: 230px;

}

.logo-container {
    position: absolute;
    left: -15px;
    top: 70%;
    transform: translateY(-50%);
    z-index: 2;
}

.logo-container img {
    width: 350px;
    height: auto;
    display: block;
}

/* Coluna direita - 50% do card */
.card-right-section {
    padding: 7rem 3rem 3rem 1rem;
}

.mission-title {
    font-family: 'Bebas Kai', sans-serif;
    font-size: 4.3rem;
    color: #db812d;
    margin-bottom: 0;
    font-weight: 300;
    line-height: 0.9;
    letter-spacing: 0.02em;
}

.mission-subtitle {
    font-family: 'Bebas NeueBook', sans-serif;
    font-size: 1.5rem;
    color: #db812d;
    margin-bottom: 1.2rem;
    line-height: 1;
    letter-spacing: 0.05em;
}

.mission-description {
    font-family: 'Aeonik Regular';
    font-size: 1.5rem;
    line-height: 1.4;
    color: white;
    font-weight: 300;
}

/* Cards de Valores */
.values-section {
    margin-top: 6rem;
}

.value-card {
    background: #000000;
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    padding: 10px 10px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(245, 130, 29, 0.3);
    border-color: var(--orange-accent);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(58%) sepia(89%) saturate(2476%) hue-rotate(360deg) brightness(101%) contrast(98%);
}

.value-card:hover .value-icon img {
    filter: brightness(0) saturate(100%) invert(68%) sepia(76%) saturate(1752%) hue-rotate(342deg) brightness(103%) contrast(101%);
}

.value-title {
    font-family: 'Nexa Bold', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== BACKGROUNDS ESPECÍFICOS PARA CADA PÁGINA ===== */

/* Para Recanto do Ingá */
.bg-hero-inga {
    background-image: url('./assets/images/HeroBackgroundInga.webp') !important;
}

/* Para Moradas dos Ipês */
.bg-hero-ipes {
    background-image: url('./assets/images/ipesCasa/HeroBackgroundIpes.webp') !important;
}

/* Para Stage Residence */
.bg-hero-aya {
    background-image: url('./assets/images/ayaEdificio/HeroBackgroundAya.webp') !important;
}

/* page edificio ingá */
/* ===== HERO RECANTO DO INGÁ ===== */
.inga-hero-section {
    min-height: 125vh;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.inga-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.274), transparent);
    z-index: 1;
}

.inga-hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 25%; /* Altura do gradiente no topo */
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 30%,
        rgba(0, 0, 0, 0.3) 60%,
        rgba(0, 0, 0, 0.1) 85%,
        transparent 100%);
    z-index: 1;
    pointer-events: none; /* Não interfere com cliques */
}

.inga-hero-logo {
    position: absolute;
    top: 68%;
    left: -5%;
    transform: translateY(-50%);
    width: 400px;
    height: auto;
    opacity: 0.3;
    z-index: 1;
}

.inga-hero-content {
    padding-bottom: 150px;
    z-index: 2;
    position: relative;
    margin-top: -25vh;
}

.inga-hero-title {
    font-size: 5.3rem;
    font-weight: 500;
    line-height: 0.9;
    color: var(--primary-color);
}

.hero-title-destaque {
    font-size: 4rem;
    font-family: 'BebasNeue Book';
    color: #fff;
}

.inga-hero-desc{
    font-family: 'BebasNeue Book';
    font-weight: 300;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: -10px;
}

/* ===== FLOATING INFO CARD RECANTO DO INGÁ ===== */
.inga-info-card {
    background: #171616;
    backdrop-filter: blur(10px);
    border-top-left-radius: 2.5rem;
    border-bottom-left-radius: 2.5rem;
    border-bottom-right-radius: 3rem;
    border-top-right-radius: 3rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    max-width: 950px;
    width: 90%;
    z-index: 10;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.4);
    display: flex; /* Garante flex em desktop */
}

.inga-info-card-img-wrapper {
    height: 100%;
    min-height: 300px;
    flex: 0 0 50%; /* Ocupa 50% em desktop */
}

.inga-info-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inga-info-card-content {
    padding: 2.5rem;
    flex: 0 0 50%; /* Ocupa 50% em desktop */
}

.textcardInga strong {
    font-size: 19px;
    font-family: 'NexaBlack Italic';
    font-weight: 600;
    color: #ffffff;
}

.textcardInga {
    font-size: 19px;
    font-family: 'NexaBlack Italic';
    color: #f0f0f0;
}

.inga-info-highlight {
    font-family: 'Nexa Xbold';
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
    
}

/* ===== AMENITIES SECTION ===== */
.amenities-section {
    background-color: #f5821d;
    padding: 5rem 0;
}

.amenity-slider-container {
    position: relative;
    margin-bottom: 2rem;
}

.amenity-slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 3rem;
}

.amenity-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.amenity-slide {
    min-width: 100%;
    height: 400px;
    position: relative;
}

.amenity-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.amenity-overlay {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: rgba(31, 31, 31, 0.95);
    padding: 1.5rem 2rem;
    border-top-right-radius: 2rem;
    border-bottom-right-radius: 2rem;
    max-width: 40%;
    z-index: 2;
    display: flex; /* Adiciona flexbox */
    align-items: center; /* Centraliza verticalmente */
    gap: 1rem; /* Espaço entre ícone e texto */
}

.amenity-overlay h4 {
    font-family: 'Nexa Bold';
    font-size: 1.3rem;
    color: #ffffff;
    margin: 0;
    font-weight: 600;
    line-height: 1.3;
}

.amenity-icon {
    width: 45px !important; /* Tamanho desejado */
    height: 45px !important; /* Tamanho desejado */
    flex-shrink: 0;
    object-fit: contain !important; /* Mantém proporção, não distorce */
    object-position: center;
    display: block;
}


.amenity-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: flex-end; /* Alterado de space-between para flex-end */
    padding: 0 1rem;
    z-index: 5;
    pointer-events: none;
}

.amenity-btn {
    background: transparent !important; /* Remove o fundo */
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 0; /* Remove o círculo */
    color: #f5821d;
    font-size: 6rem; /* Aumenta o tamanho da seta */
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Adiciona sombra para contraste */
}

/* ===== GALLERY CAROUSEL ===== */
.gallery-section {
     padding: 3rem 0;
    background-color: var(--dark-gray);
    z-index: 10;
    overflow: hidden; /* Adicionado para evitar scroll horizontal */
}

.gallery-title {
    font-family: 'Nexa Black';
    color: var(--primary-color);
    margin-bottom: 4rem;
    letter-spacing: 3px;
    font-size: 2.5rem;
    font-weight: 700;
}

.carousel-container {
     position: relative;
    margin: 0 auto 5rem;
    max-width: 1400px; /* Limitar largura máxima */
    width: 100%;
    overflow: hidden; /* Importante para conter os slides */
}

.carousel-wrapper {
    overflow: visible;
    border-radius: 2rem;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0 10%;
    flex-shrink: 0; /* Garante que não reduza */
}

.carousel-main-img {
    width: 70%;
    height: 550px;
    object-fit: cover;
    border-radius: 1.5rem;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 3;
}

.carousel-preview {
    position: absolute;
    width: 25%;
    max-width: 300px;
    height: 550px;
    object-fit: cover;
    border-radius: 1rem;
    opacity: 0.6;
    filter: brightness(0.5);
    transition: all 0.3s ease;
    z-index: 1;
    display: block;
}

.carousel-preview:first-child {
    left: 10%;
}

.carousel-preview:last-child {
    right: 10%;
}

.carousel-preview:hover {
    opacity: 0.8;
    filter: brightness(0.7);
}

.carousel-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background:transparent !important;;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 0;
    color: #f5821d;
    font-size: 6.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--brand-orange);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 10%;
}

.carousel-btn.next {
    right: 10%;
}

/* page stage residence */
/* ===== HERO STAGE RESIDENCE ===== */
.stage-hero-section {
    min-height: 170vh;
    display: flex;
    align-items: center;
    position: relative;
    background-image: 
         linear-gradient(to bottom,
            transparent 60%,
            rgba(29, 29, 29, 0.05) 65%,
            rgba(29, 29, 29, 0.15) 70%,
            rgba(29, 29, 29, 0.3) 75%,
            rgba(29, 29, 29, 0.5) 80%,
            rgba(29, 29, 29, 0.7) 85%,
            rgba(7, 6, 7, 0.85) 90%,
            rgba(7, 6, 7, 1) 100%),
        url('./assets/images/stageEdificio/HeroBackgroundStage.webp'); /* Adicione sua imagem aqui */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding-top: 80px;
    overflow: hidden;
}

/* Gradientes laterais similares ao Inga */
.stage-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.021), transparent);
    z-index: 1;
}

.stage-hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 25%;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 30%,
        rgba(0, 0, 0, 0.3) 60%,
        rgba(0, 0, 0, 0.1) 85%,
        transparent 100%);
    z-index: 1;
    pointer-events: none;
}

/* Logo de fundo */
.stage-hero-logo {
    position: absolute;
    top: 50%;
    left: -15%;
    transform: translateY(-50%);
    width: 550px;
    height: auto;
    opacity: 0.35;
    z-index: 1;
}

/* Conteúdo do hero */
.stage-hero-content {
    z-index: 2;
    position: relative;
   margin-top: -28rem; 
}

/* Título principal */
.stage-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 8rem;
    color: var(--primary-color);
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 1px;
}

.stage-hero-title span {
     display: block;
     margin-top: -2rem;
    font-size: 4.5rem;
    font-family: 'BebasNeue Book' ;
    color: var(--primary-color);
}

/* Subtítulo/localização */

.stage-location {
     font-family: 'Nexa Light Italic';
    font-size: 1.2rem;
    color: #ffff;
    line-height: 1.2;
}

/* ===== FLOATING INFO CARD STAGE RESIDENCE ===== */
.stage-info-card {
    background: #0d0c0e;
    backdrop-filter: blur(10px);
    border-radius: 3rem;
    overflow: hidden;
    position: absolute;
    bottom: 22%;
    left: 50%;
    transform: translateX(-50%);
    max-width: 800px;
    width: 90%;
    z-index: 10;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.4);
    text-align: center;
    padding: 1.5rem;
}

.stage-info-card-content {
    padding: 0;
}

/* Textos do card */
.stage-text-highlight, .stage-text-desc {
    font-family: 'Nexa Bold Italic';
    font-size: 1.4rem;
    color: #ffffff;
    line-height: 1.4;
}

.stage-wait-text {
    font-family: 'Nexa Extra Bold';
    font-size: 3rem;
    color: var(--primary-color);
    display: block;
    letter-spacing: 2px;
    margin-top: -1.5rem;
}

/* Footer */
footer {
    background: #2b1343;
    padding: 40px 0;
    text-align: center;
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 5;
    /* Acima de tudo */
}

.footer-logo {
    max-width: 250px;
    height: auto;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   MEDIA QUERIES 
   ============================================ */

@media (max-width: 1728px) {
    .contrast-square {
        top: 36rem;
    }

    .hero-text-content {
        top: 55%;
    }
}

/* Menu para telas menores de desktop */
@media (max-width: 1366px) {

    /* Ajustes no Navbar */
    #navbar {
        padding: 15px 3%;
    }

    #navbar.scrolled {
        padding: 8px 3%;
    }

    /* Reduzir espaçamento entre itens do menu */
    #navbar ul li a {
        padding: 8px 12px;
        font-size: 0.93rem;
    }

    /* Ajustar logo */
    #navbar .logo img {
        height: 35px;
    }

    .logo-text {
        font-size: 1.8rem;
    }

    /* page home contato venda sessão */
    .contato-vendas-content {
        margin-left: -2.9rem;
    }

    .logo-decorativa,
    .logo-decorativaAbout {
        top: -37rem;
        width: 35rem;
    }

    .logo-decorativaInga {
        top: -30rem;
        width: 32rem;
    }

    /*PAGE ABOUT */
    .sobre-section {
        min-height: 130vh;
    }

    .quality-title {
        margin-top: 8rem;
    }

    .decorative-line {
        margin-left: auto;
        margin-right: auto;
    }

    .quem-somos-title {
        font-size: 4.5rem;
    }

    .quem-somos-title span {
        font-size: 3.5rem;
    }

    .info-card {
        max-width: 850px;
        margin: 0 auto;
    }

    .logo-container img {
        width: 320px;
    }

    .mission-title {
        font-size: 4rem;
    }

    .card-right-section {
        padding: 6rem 2rem 3rem 1rem;
    }

    .values-section {
        max-width: 1050px;
        margin: 5rem auto 0;
    }

    /* page ed ingá*/
    .inga-hero-section {
        min-height: 120vh;
    }
    
    .inga-hero-logo {
        width: 350px;
        left: -4%;
    }
    
    .inga-hero-title {
        font-size: 4.8rem;
    }
    
    .hero-title-destaque {
        font-size: 3.5rem;
    }
    
    .amenity-slide {
        height: 380px;
    }
    
    .carousel-main-img {
        height: 500px;
    }
    
    .carousel-preview {
        height: 500px;
    }

    /*stage residence page */
    
    .stage-hero-logo {
        width: 500px;
        left: -15%;
    }
    
    .stage-hero-content {
        margin-top: -28rem;
    }
    
    .stage-hero-title {
        font-size: 7rem;
    }
    
    .stage-hero-title span {
        font-size: 4rem;
        margin-top: -1.8rem;
    }
    
    .stage-info-card {
        max-width: 750px;
        bottom: 30%;
    }
    
    .stage-text-highlight, .stage-text-desc {
        font-size: 1.3rem;
    }
    
    .stage-wait-text {
        font-size: 2.8rem;
    }
}

@media (max-width: 1200px) {

    /* Ajustes mais agressivos no menu */
    #navbar ul li a {
        padding: 8px 10px;
        font-size: 0.9rem;
    }

    .logo-text {
        font-size: 1.7rem;
    }

    /* Hero ajustes para notebook */
    .contrast-square {
        left: -4rem;
        width: 580px;
        height: 580px;
    }

    .retangulo {
        width: 520px;
        height: 520px;
    }

    .hero-text-content {
        left: 22%;
        top: 50%;
    }

    .hero-main-title {
        font-size: 2.5rem;
    }

    .hero-text-content img {
        max-height: 83px;
    }

    .hero-right-content .scroll-text {
        font-size: 2.5rem;
    }

    .scroll-indicator .fa-chevron-down {
        font-size: 2.5rem;
    }

    /* sessão cards page home */
    .projects-grid {
        gap: 35px;
        max-width: 1100px;
    }

    .card-slider {
        height: 320px;
    }

    .card-title {
        font-size: 28px;
    }

    .card-subtitle {
        font-size: 22px;
    }

    .card-divider {
        width: 300px;
    }

    /* page home contato venda sessão */
    .contato-vendas-content {
        margin-left: -0.98rem;
    }

    .logo-decorativa,
    .logo-decorativaAbout {
        top: -37rem;
        width: 34rem;
    }

    .logo-decorativaInga {
        top: -28rem;
        width: 30rem;
    }

    .contato-vendas-title {
        font-size: 2.8rem;
    }

    .contato-vendas-subtitle {
        font-size: 1.4rem;
    }

    /* PAGE ABOUT*/
    .sobre-section {
        min-height: 120vh;
    }

    .quality-title {
        margin-top: 7rem;
    }

    .quality-title h2 {
        font-size: 2.2rem;
    }

    .quem-somos-title {
        font-size: 4rem;
    }

    .quem-somos-title span {
        font-size: 3rem;
    }

    .description-text {
        font-size: 17px;
        line-height: 1.7;
    }

    .info-card {
        max-width: 800px;
    }

    .logo-container img {
        width: 300px;
    }

    .mission-title {
        font-size: 3.5rem;
    }

    .mission-subtitle {
        font-size: 1.3rem;
    }

    .mission-description {
        font-size: 1.3rem;
    }

    .card-right-section {
        padding: 5rem 2rem 3rem 1rem;
    }

    /*page ed ingá */
    .carousel-container {
        max-width: 900px;
    }
    
    .carousel-main-img {
        width: 85%;
        height: 400px;
    }
    
    .carousel-preview {
        width: 15%;
        height: 400px;
        opacity: 0.4;
    }
    
    .carousel-btn {
        font-size: 5rem;
        width: 40px;
        height: 40px;
    }
    
    .gallery-title {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }

    /* page stage residence */
    .stage-hero-section {
        min-height: 140vh;
    }
    
    .stage-hero-logo {
        width: 420px;
        left: -10%;
    }
    
    .stage-hero-content {
        margin-top: -22rem;
    }
    
    .stage-hero-title {
        font-size: 6rem;
    }
    
    .stage-hero-title span {
        font-size: 3.5rem;
        margin-top: -1.5rem;
    }
    
    .stage-info-card {
        max-width: 700px;
        bottom: 18%;
    }
    
    .stage-text-highlight, .stage-text-desc {
        font-size: 1.2rem;
    }
    
    .stage-wait-text {
        font-size: 2.5rem;
    }
}

@media (max-width: 1100px) {

    /* Menu ainda mais compacto */
    #navbar ul li a {
        padding: 8px 8px;
        font-size: 0.85rem;
    }

    .logo-text {
        font-size: 1.6rem;
    }

    /* Ajustar hero */
    .contrast-square {
        left: -3rem;
        width: 580px;
        height: 580px;
    }

    .retangulo {
        width: 480px;
        height: 480px;
    }

    .hero-text-content {
        left: 22%;
    }

    .hero-main-title {
        font-size: 2.2rem;
    }

    .hero-text-content img {
        max-height: 75px;
    }

    .hero-right-content {
        right: 3%;
    }

    .hero-right-content .scroll-text {
        font-size: 2.2rem;
    }

    /* page home contato venda sessão */
    .logo-decorativa {
        top: -45rem;
        width: 34rem;
    }

    .logo-decorativaAbout {
         top: -18rem;
        width: 28rem;
    }

    .contato-vendas-title {
        font-size: 2.5rem;
    }

    .contato-vendas-subtitle {
        font-size: 1.3rem;
    }

    /*page stage residence */
    .stage-hero-logo {
        width: 410px;
        left: -15%;
    }
    
    .stage-hero-content {
        margin-top: -18rem;
    }
    
    .stage-hero-title {
        font-size: 5.5rem;
    }
    
    .stage-hero-title span {
        font-size: 3.2rem;
        margin-top: -1.2rem;
    }
    
    .stage-info-card {
        max-width: 650px;
        bottom: 16%;
    }
    
    .stage-text-highlight, .stage-text-desc {
        font-size: 1.1rem;
    }
    
    .stage-wait-text {
        font-size: 2.3rem;
    }
}

@media (max-width: 1024px) {

    /* Esconder menu desktop, mostrar hamburger */
    #navbar ul {
        display: none;
    }

    #navbar .hamburger {
        display: block;
        position: absolute;
        right: 3%;
    }

    /* Ajustar layout da navbar para mobile */
    #navbar {
        justify-content: flex-start;
        padding-left: 3%;
    }

    /* Hero ajustes para tablets grandes */
    .contrast-square {
        left: -2rem;
        width: 500px;
        height: 500px;
        top: 39rem;
    }

    .retangulo {
        width: 440px;
        height: 440px;
    }

    .hero-text-content {
        top: 32rem;
        left: 25%;
        width: 60%;
    }

    .hero-main-title {
        font-size: 2rem;
    }

    .hero-text-content img {
        max-height: 65px;
    }

    .hero-right-content {
        right: 3%;
        top: 80%;
    }

    .hero-right-content .scroll-text {
        font-size: 1.9rem;
    }

    .scroll-indicator .fa-chevron-down {
        font-size: 2rem;
    }

    /*cards news */
    .news-section {
        padding: 60px 20px;
    }

    /* Ajuste para centralizar e dar largura adequada */
    .news-section .container {
        max-width: 1100px;
        margin: 0 auto;
    }

    .news-section .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin: 0 -15px;
    }

    .news-section .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 15px;
        display: flex;
        justify-content: center;
    }

    .news-card-wrapper {
        width: 100%;
        max-width: 450px;
        /* Largura fixa similar aos cards de empreendimentos */
        bottom: 4rem;
    }

    .news-card-image {
        height: 240px;
    }

    .news-card-content {
        padding: 25px 20px;
    }

    .news-card-title {
        font-size: 1.4rem;
        min-height: 55px;
        margin-bottom: 12px;
        text-align: center;
    }

    .news-card-text {
        font-size: 0.95rem;
        line-height: 1.5;
        text-align: center;
    }

    .news-card-btn-wrapper {
        width: 60%;
        bottom: 2.5rem;
        left: 50%;
        transform: translateX(-50%);
    }

    .news-card-btn {
        padding: 7px 22px;
        font-size: 16px;
        transform: translateY(18px);
    }

    .news-card-btn:hover {
        transform: translateY(13px);
    }

    /* page home contato venda sessão */
    .logo-decorativa,
    .logo-decorativaAbout {
        width: 33rem;
    }

     .logo-decorativaInga {
        top: -25rem;
        width: 28rem;
    }

    /*PAGE ABOUT */
    .value-title {
        font-size: 1rem;
    }

    /*page ed ingá */
    .carousel-container {
        max-width: 800px;
    }
    
    .carousel-main-img {
        width: 90%;
        height: 350px;
        border-radius: 1rem;
    }
    .carousel-preview {
        display: none !important; /* Esconde previews em tablet */
    }
    
    .carousel-btn {
        font-size: 4.5rem;
        width: 35px;
        height: 35px;
    }
    
    .gallery-title {
        font-size: 2rem;
    }
    
    .gallery-section {
        padding: 2.5rem 0;
    }

    /*page stage residence */
    .stage-hero-content {
        margin-top: -21rem;
    }
    
    .stage-hero-title {
        font-size: 5rem;
    }
    
    .stage-hero-title span {
        font-size: 3rem;
        margin-top: -1rem;
    }
    
    .stage-info-card {
        max-width: 600px;
        bottom: 20%;
        border-radius: 2.5rem;
    }
    
    .stage-text-highlight, .stage-text-desc {
        font-size: 1.1rem;
    }
    
    .stage-wait-text {
        font-size: 2.2rem;
    }

}

/* ============================================
   MEDIA QUERIES EXISTENTES ATUALIZADAS
   ============================================ */

/* Tablet (884px - 1023px) */
@media (max-width: 884px) and (max-width: 1023px) {
    .hero-section {
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.11)),
            url("./assets/images/herobackgroundTabletTeste.avif");
        background-attachment: scroll;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
        text-align: center;
    }

    .hero-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .hero-section::before {
        display: none;
    }

    .contrast-square {
        display: none;
    }

    /* Centralização do conteúdo de texto */
    .hero-text-content {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        transform: none;
        width: 80%;
        max-width: 600px;
        margin: 0 auto;
        padding: 30px 20px;
        text-align: center;
    }

    .hero-main-title {
        font-size: 2.3rem;
        line-height: 1.3;
        margin: 0 auto 1.5rem;
        max-width: 100%;
    }

    .hero-text-content img {
        max-height: 75px;
        margin: 0 auto;
        display: block;
    }

    /* Centralização do conteúdo da direita */
    .hero-right-content {
        position: relative;
        right: auto;
        left: auto;
        top: 10rem;
        transform: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 3rem auto 0;
        width: 100%;
    }

    .hero-right-content .scroll-text {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .scroll-indicator {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .scroll-indicator .fa-chevron-down {
        font-size: 2rem;
        animation: bounce 2s infinite;
    }

    .video-container {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        /* Centraliza horizontalmente */
        display: block;
    }

    .video-wrapper {
        height: 310px;
        margin: 0 auto;
        /* Garante centralização */
    }

    .video-play-btn {
        width: 65px;
        height: 65px;
        font-size: 1.8rem;
    }

    .video-controls {
        padding: 10px 12px 6px;
    }

    .play-pause-btn,
    .fullscreen-btn {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .video-time-display {
        font-size: 0.85rem;
        margin: 0 10px;
    }

    .progress-bar {
        height: 2.5px;
    }

    .progress-container:hover .progress-bar {
        height: 3px;
    }

    /* Company Info Section para Tablet 884px */
    .bscon-section {
        padding: 0 15px;
    }

    .purple-container {
        max-width: 90%;
        padding: 50px 30px 200px;
        border-radius: 60px;
    }

    .quality-badge {
        font-size: 1.3rem;
    }

    .main-title {
        font-size: 3rem;
    }

    .header-content img {
        max-height: 60px;
    }

    .subtitle {
        font-size: 2rem;
    }

    .orange-badge {
        padding: 15px 50px;
        margin-top: 15px;
    }

    .orange-badge p {
        font-size: 18px;
    }

    .content-overlay {
        margin-top: -15rem;
    }

    .sessionTextsVideos {
        margin-top: -5rem;
    }

    .text-content {
        width: 100%;
        padding: 10px;
        text-align: center;
    }

    .summary-text,
    .mission-text,
    .highlight-text {
        font-size: 18px;
    }

    .building-image-container {
        width: 90%;
        right: 1rem;
        margin-bottom: 40px;
    }

    .cta-button {
        position: relative;
        right: -18rem;
        top: -18rem;
        transform: none;
        margin: 20px auto 0;
        display: block;
        width: fit-content;
        padding: 10px 40px;
        font-size: 18px;
        border-radius: 10px;
    }

    .cta-button:hover {
        transform: translate(0, 0) scale(1);
        background-color: #ff7a2f;
        box-shadow: 5px 5px 18px rgba(0, 0, 0, 0.5);
        right: -17.8rem;
        /* Move um pouco mais para dentro no hover */
    }

    /*cards page home */
    .projects-grid {
        grid-template-columns: 1fr;
        max-width: 680px;
        gap: 30px;
        padding: 0 15px;
    }

    .card-slider {
        height: 490px;
    }

    .card-content {
        padding: 25px 20px;
    }

    .card-subtitle {
        font-size: 22px;
    }

    .card-title {
        font-size: 28px;
    }

    .card-description {
        font-size: 16px;
    }

    .card-divider {
        width: 250px;
    }

    .card-features {
        justify-content: center;
    }

    .slider-btn i {
        font-size: 35px;
    }

    /* cards news */
    .news-section {
        padding: 50px 15px;
    }

    .news-section .container {
        max-width: 100%;
    }

    .news-section .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .news-card-wrapper {
        max-width: 640px;
        /* Mesma largura dos cards de empreendimentos em tablet */
        margin: 0 auto;
        padding-bottom: 40px;
    }

    .news-card {
        border-radius: 25px;
        /* Mesmo dos cards de empreendimentos */
    }

    .news-card-image {
        height: 350px;
        border-radius: 25px;
    }

    .news-card-content {
        padding: 25px 22px;
        min-height: 250px;
    }

    .news-card-title {
        font-size: 1.3rem;
        min-height: 50px;
        text-align: center;
    }

    .news-card-text {
        font-size: 16px;
        text-align: center;
    }

    .news-card-btn-wrapper {
        width: 65%;
        bottom: 2.5rem;
    }

    .news-card-btn {
        padding: 6px 20px;
        font-size: 17px;
        transform: translateY(15px);
    }

    .news-card-btn:hover {
        transform: translateY(10px);
    }

    /* page home contato venda sessão */
    .contato-vendas-section,
    .contato-vendas-sectionAbout {
        min-height: 115vh;

    }

    .logo-decorativa,
    .logo-decorativaAbout {
        top: -10rem;
        opacity: 0.5;
    }

     .logo-decorativaInga {
        top: -15rem;
        width: 25rem;
        opacity: 0.6;
    }

    .contato-vendas-content {
        margin-left: 0;
        /* Remove a margem negativa */
        padding: 60px 0 40px;
        text-align: center;
        /* Centraliza todo o conteúdo */
    }

    .contato-vendas-title {
        font-size: 45px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        /* Melhor contraste */
    }

    .contato-vendas-subtitle {
        font-size: 1.3rem;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        margin-bottom: 35px;
    }

    .contact-box {
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
        /* Centraliza horizontalmente */
        padding: 30px 25px;
        background-color: rgba(255, 255, 255, 0.95);
        /* Leve transparência */
    }

    .contact-box h3 {
        font-size: 28px;
        padding-bottom: 5px;
    }

    .btn-vendas {
        font-size: 16px;
    }

    .contact-info {
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 25px;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Centraliza tudo dentro do contact-info */
    }

    /* ÍCONES CENTRALIZADOS EM CIMA DAS INFORMAÇÕES */
    .contact-item {
        justify-content: center;
        /* Centraliza horizontalmente */
        text-align: center;
        /* Centraliza texto */
        font-size: 17px;
        width: 100%;
        /* Ocupa toda a largura disponível */
        flex-direction: column;
        /* Coloca ícone em cima do texto */
        margin-bottom: 20px;
        /* Mais espaço entre os itens */
    }

    /* Ícone em cima do texto */
    .contact-item i {
        margin-right: 0;
        /* Remove margem direita */
        margin-bottom: 9px;
        /* Espaço entre ícone e texto */
        width: 45px;
        /* Ligeiramente maior para destaque */
        height: 45px;
        font-size: 1.3rem;
    }

    /* Texto do contato */
    .contact-item span {
        display: block;
        /* Faz o texto ficar em linha separada */
        width: 100%;
    }

    /* Centraliza conteúdo dentro do container */
    .row.align-items-center {
        justify-content: center;
    }

    .col-lg-6.col-md-8 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* PAGE ABOUT */
    .quality-title {
        margin-top: 4rem;
    }

    .quem-somos-title {
        font-size: 3rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .quem-somos-title span {
        font-size: 2.5rem;
    }

    /* ALTERAÇÃO: Centralizar a seção de descrição como mobile */
    .description-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 2rem;
    }

    .quem-somos-container {
        margin-bottom: 2rem;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .description-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .description-text {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 90% !important;
        max-width: 600px;
    }

    .info-card {
        width: 70%;
        max-width: 700px;
    }

    .logo-container {
        left: -6px;
    }

    .logo-container img {
        width: 225px;
    }

    .mission-title {
        font-size: 2.8rem;
        text-align: center;
    }

    .mission-subtitle {
        text-align: center;
    }

    .mission-description {
        font-size: 1.1rem;
        text-align: center;
    }

    .values-section {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        max-width: 550px;
        margin-left: auto;
        margin-right: auto;
    }

    .value-card {
        text-align: center;
    }

    /* page ed ingá */
    .inga-info-card {
        max-width: 85%;
        width: 85%;
        bottom: 4%;
    }
    
    .inga-info-card-img-wrapper {
        flex: 0 0 40%;
        min-height: 160px;
        max-height: 160px;
    }
    
    .inga-info-card-content {
        flex: 0 0 60%;
        padding: 1.2rem;
    }
    
    .textcardInga {
        font-size: 13px !important;
    }
    
    .textcardInga strong {
        font-size: 13px !important;
    }
    
    .inga-info-highlight {
        font-size: 12px !important;
    }

    /* stage residence page*/
    .stage-hero-section {
        min-height: 120vh;
    }
    
    .stage-hero-logo {
        width: 390px;
        left: -18%;
    }
    
    .stage-hero-content {
        margin-top: -26rem;
    }
    
    .stage-hero-title {
        font-size: 5rem;
    }
    
    .stage-hero-title span {
        font-size: 3rem;
        margin-top: -1rem;
    }
    
    .stage-info-card {
        max-width: 600px;
        bottom: 29%;
        border-radius: 2.5rem;
    }
    
    .stage-text-highlight, .stage-text-desc {
        font-size: 1.1rem;
    }
    
    .stage-wait-text {
        font-size: 2.2rem;
    }

}

/* Tablet (768px - 883px) */
@media (min-width: 768px) and (max-width: 883px) {
    .hero-section {
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.11)),
            url("./assets/images/herobackgroundTabletTeste.avif");
        background-attachment: scroll;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
        text-align: center;
    }

    .hero-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .hero-section::before {
        display: none;
    }

    .contrast-square {
        display: none;
    }

    /* Centralização do conteúdo de texto */
    .hero-text-content {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        transform: none;
        width: 85%;
        max-width: 550px;
        margin: 0 auto;
        padding: 25px 15px;
        text-align: center;
    }

    .hero-main-title {
        font-size: 2.1rem;
        line-height: 1.3;
        margin: 0 auto 1.5rem;
        max-width: 100%;
    }

    .hero-text-content img {
        max-height: 70px;
        margin: 0 auto;
        display: block;
    }

    /* Centralização do conteúdo da direita */
    .hero-right-content {
        position: relative;
        right: auto;
        left: auto;
        top: 8rem;
        transform: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 2.5rem auto 0;
        width: 100%;
    }

    .hero-right-content .scroll-text {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .scroll-indicator {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .scroll-indicator .fa-chevron-down {
        font-size: 1.8rem;
        animation: bounce 2s infinite;
    }

    .video-container {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        /* Centraliza horizontalmente */
        display: block;
    }

    .video-wrapper {
        height: 280px;
        margin: 0 auto;
        /* Garante centralização */
    }

    .video-play-btn {
        width: 60px;
        height: 60px;
        font-size: 1.7rem;
    }

    .video-controls {
        padding: 8px 10px 5px;
    }

    .play-pause-btn,
    .fullscreen-btn {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }

    .video-time-display {
        font-size: 0.8rem;
        margin: 0 8px;
    }

    .progress-bar {
        height: 2.5px;
    }

    .progress-container:hover .progress-bar {
        height: 3px;
    }

    /* Company Info Section para Tablet 768px-883px */
    .bscon-section {
        padding: 0 12px;
    }

    .purple-container {
        max-width: 92%;
        padding: 45px 25px 180px;
        border-radius: 55px;
    }

    .quality-badge {
        font-size: 1.2rem;
    }

    .main-title {
        font-size: 2.7rem;
    }

    .header-content img {
        max-height: 55px;
    }

    .subtitle {
        font-size: 1.8rem;
    }

    .orange-badge {
        padding: 13px 40px;
        margin-top: 15px;
    }

    .orange-badge p {
        font-size: 17px;
    }

    .content-overlay {
        margin-top: -14rem;
    }

    .sessionTextsVideos {
        margin-top: -4rem;
    }

    .text-content {
        width: 100%;
        padding: 8px;
        text-align: center;
    }

    .summary-text,
    .mission-text,
    .highlight-text {
        font-size: 17px;
    }

    .building-image-container {
        width: 87%;
        right: 1rem;
        margin-bottom: 35px;
    }

    .cta-button {
        position: relative;
        right: -18rem;
        top: -18rem;
        transform: none;
        margin: 20px auto 0;
        display: block;
        width: fit-content;
        padding: 10px 40px;
        font-size: 16px;
        border-radius: 10px;
    }

    .cta-button:hover {
        transform: translate(0, 0) scale(1);
        background-color: #ff7a2f;
        box-shadow: 5px 5px 18px rgba(0, 0, 0, 0.5);
        right: -17.8rem;
        /* Move um pouco mais para dentro no hover */
    }

    /* news cards page home*/
    .news-section {
        padding: 50px 15px;
    }

    .news-section .container {
        max-width: 100%;
    }

    .news-section .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .news-card-wrapper {
        max-width: 640px;
        /* Mesma largura dos cards de empreendimentos em tablet */
        margin: 0 auto;
        padding-bottom: 40px;
    }

    .news-card {
        border-radius: 25px;
        /* Mesmo dos cards de empreendimentos */
    }

    .news-card-image {
        height: 350px;
        border-radius: 25px;
    }

    .news-card-content {
        padding: 25px 60px;
    }

    .news-card-title {
        font-size: 1.3rem;
        min-height: 50px;
    }

    .news-card-text {
        font-size: 0.95rem;
    }

    .news-card-btn-wrapper {
        width: 65%;
        bottom: 2.5rem;
    }

    .news-card-btn {
        padding: 6px 20px;
        font-size: 15px;
        transform: translateY(15px);
    }

    .news-card-btn:hover {
        transform: translateY(10px);
    }

    /* page home contato venda sessão */
    /* page home contato venda sessão */
    .contato-vendas-section {
        min-height: 105vh;
        /* 10vh menor que 884px */
        margin-top: -8rem;
    }

    .logo-decorativa,
    .logo-decorativaAbout {
        top: -30rem;
        /* 1rem mais alto que 884px */
        opacity: 0.45;
        /* Ligeiramente mais transparente */
    }

     .logo-decorativaInga {
        top: -12rem;
        width: 22rem;
        opacity: 0.5;
    }

    .contato-vendas-content {
        padding: 55px 0 35px;
        /* 5px menor que 884px */
    }

    .contato-vendas-title {
        font-size: 40px;
        /* 5px menor que 884px */
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .contato-vendas-subtitle {
        font-size: 1.2rem;
        /* 0.1rem menor que 884px */
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        margin-bottom: 30px;
    }

    .contact-box {
        max-width: 360px;
        /* 20px menor que 884px */
        padding: 28px 22px;
        /* 2px menor que 884px */
        background-color: rgba(255, 255, 255, 0.95);
    }

    .contact-box h3 {
        font-size: 26px;
        /* 2px menor que 884px */
        padding-bottom: 5px;
    }

    .btn-vendas {
        font-size: 15px;
        /* 1px menor que 884px */
    }

    .btn-custom {
        padding: 14px;
        /* 1px menor que 884px */
        margin-bottom: 12px;
    }

    .contact-info {
        max-width: 360px;
        /* 20px menor que 884px */
        margin-left: auto;
        margin-right: auto;
        margin-top: 22px;
        /* 3px menor que 884px */
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* ÍCONES CENTRALIZADOS EM CIMA DAS INFORMAÇÕES */
    .contact-item {
        justify-content: center;
        text-align: center;
        font-size: 16px;
        /* 1px menor que 884px */
        width: 100%;
        flex-direction: column;
        margin-bottom: 18px;
        /* 2px menor que 884px */
    }

    /* Ícone em cima do texto */
    .contact-item i {
        margin-right: 0;
        margin-bottom: 8px;
        /* 1px menor que 884px */
        width: 42px;
        /* 3px menor que 884px */
        height: 42px;
        font-size: 1.2rem;
        /* 0.1rem menor que 884px */
    }

    /* Texto do contato */
    .contact-item span {
        display: block;
        width: 100%;
    }

    /* Centraliza conteúdo dentro do container */
    .row.align-items-center {
        justify-content: center;
    }

    .col-lg-6.col-md-8 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* PAGE ABOUT */
    .background-logo {
        width: 290px;
        left: -45px;
        top: 41rem;
        opacity: 0.5;
    }

    .quality-title {
        margin-top: 3.5rem;
    }

    .quality-title h2 {
        font-size: 1.8rem;
    }

    /* ALTERAÇÃO: Centralizar como mobile */
    .description-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 2rem;
    }

    .quem-somos-container {
        margin-bottom: 2rem;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .quem-somos-title {
        font-size: 2.8rem;
        text-align: center;
    }

    .quem-somos-title span {
        font-size: 2.3rem;
        text-align: center;
    }

    .description-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .description-text {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 90% !important;
        max-width: 600px;
    }

    .logo-container {
        top: 9rem;
    }

    .logo-container img {
        width: 200px;
    }

    .mission-title {
        padding-top: 1.5rem;
        font-size: 2.5rem;
        text-align: center;
    }

    .mission-subtitle {
        text-align: center;
    }

    .mission-description {
        font-size: 17px;
        text-align: center;
    }

    .card-right-section {
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .values-section {
        grid-template-columns: repeat(2, 1fr);
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .value-card:last-child {
        grid-column: span 2;
        max-width: 250px;
        margin: 0 auto;
    }

    .value-card {
        text-align: center;
    }

    .logo-decorativaAbout {
        top: -25rem;
        width: 60%;
    }

    /* page ed ingá*/
    .carousel-container {
        max-width: 650px;
    }
    
    .carousel-main-img {
        height: 280px;
    }
    
    .carousel-btn {
        font-size: 3.5rem;
    }
    
    .gallery-title {
        font-size: 1.6rem;
    }

    /* stage residence page */
    .stage-hero-section {
        min-height: 100vh;
        display: block;
        padding-top: 70px;
    }
    
    /* Remove gradiente lateral */
    .stage-hero-section::before {
        display: none;
    }
    
    /* Aumenta gradiente superior */
    .stage-hero-section::after {
        height: 40%;
        background: linear-gradient(to bottom, 
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.6) 30%,
            rgba(0, 0, 0, 0.4) 60%,
            rgba(0, 0, 0, 0.2) 85%,
            transparent 100%);
    }
    
    /* Logo mantém no canto esquerdo, mas menor */
    .stage-hero-logo {
        width: 380px;
        left: -19%;
        top: 45%;
        transform: translateY(-50%);
        opacity: 0.25;
    }
    
    /* Conteúdo empilhado verticalmente */
    .stage-hero-content {
        margin-top: 8rem;
        padding: 0 20px;
        text-align: center;
        position: relative;
        z-index: 2;
    }
    
    .stage-hero-title {
        font-size: 6rem;
        line-height: 0.9;
        margin-bottom: 1rem;
    }
    
    .stage-hero-title span {
        font-size: 3.9rem;
        margin-top: -0.5rem;
        display: block;
    }
    
    .stage-location {
        font-size: 1.3rem;
        line-height: 1.3;
        margin-bottom: 3rem;
    }
    
    /* Card vira bloco normal */
    .stage-info-card {
        position: relative;
        top: 5rem;
        left: auto;
        transform: none;
        margin: 0 auto 3rem;
        width: 90%;
        max-width: 550px;
        border-radius: 2rem;
        padding: 1.5rem;
    }
    
    .stage-text-highlight, .stage-text-desc {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .stage-text-highlight {
        margin-bottom: 1rem !important;
    }
    
    .stage-text-desc {
        margin-bottom: 1.5rem !important;
    }
    
    .stage-wait-text {
        font-size: 2rem;
        margin-top: 0;
        letter-spacing: 1px;
    }

}

/* Telas Muito Pequenas (até 480px) */
@media (max-width: 480px) {
    .hero-section {
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.11)),
            url("./assets/images/herobackgroundMobile.avif");
        background-attachment: scroll;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 85vh;
        text-align: center;
    }

    .hero-container {
        max-height: 85vh;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero-section::before {
        display: none;
    }

    .contrast-square {
        display: none;
    }

    /* Centralização do conteúdo de texto */
    .hero-text-content {
        position: relative;
        left: auto;
        right: auto;
        top: 2rem;
        transform: none;
        width: 90%;
        max-width: 400px;
        margin: 0 auto;
        padding: 20px;
        text-align: center;
    }

    .hero-main-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin: 0 auto 1rem;
    }

    .hero-text-content img {
        max-height: 54px;
        margin: 0 auto;
        display: block;
    }

    /* Centralização do conteúdo da direita */
    .hero-right-content {
        position: relative;
        right: auto;
        left: auto;
        top: 7rem;
        transform: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0rem auto 0;
        width: 100%;
    }

    .hero-right-content .scroll-text {
        font-size: 1.6rem;
        text-align: center;
        margin-bottom: 1rem;
    }

    .scroll-indicator {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .scroll-indicator .fa-chevron-down {
        font-size: 1.8rem;
        animation: bounce 2s infinite;
    }

    /* Company Info Section para Mobile */
    .bscon-section {
        padding: 0 10px;
    }

    .purple-container {
        max-width: 100%;
        padding: 30px 15px 150px;
        border-radius: 40px;
    }

    .purple-container::after {
        bottom: -50px;
        height: 100px;
        border-radius: 0 0 30px 30px;
    }

    .quality-badge {
        font-size: 1rem;
        letter-spacing: 0.5px;
        margin-bottom: 5px;
    }

    .main-title {
        font-size: 2rem;
        margin: 5px 0;
    }

    .header-content img {
        max-height: 40px;
    }

    .subtitle {
        font-size: 1.5rem;
        margin-top: 5px;
    }

    .orange-badge {
        padding: 10px 25px;
        border-radius: 15px;
        margin-top: 10px;
    }

    .orange-badge p {
        font-size: 14px;
        line-height: 1.2;
    }

    .orange-badge strong {
        font-size: 15px;
    }

    .content-overlay {
        margin-top: -10rem;
    }

    .row {
        flex-direction: column;
    }

    .col-lg-6 {
        width: 100%;
    }

    .sessionTextsVideos {
        margin-top: 0;
    }

    .text-content {
        width: 100%;
        padding: 15px 15px;
        text-align: center;
    }

    .summary-text,
    .mission-text,
    .highlight-text {
        font-size: 15px;
        line-height: 1.5;
    }

    .summary-text {
        margin-bottom: 15px;
    }

    .mission-text {
        padding-top: 1rem;
    }

    .video-container {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        /* Centraliza horizontalmente */
        display: block;
    }

    .video-wrapper {
        height: 155px;
        margin: 0 auto;
        /* Garante centralização */
    }

    .video-play-btn {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }

    .video-controls {
        padding: 6px 8px 4px;
    }

    .play-pause-btn,
    .fullscreen-btn {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .video-time-display {
        font-size: 0.75rem;
        margin: 0 8px;
    }

    .progress-bar {
        height: 2px;
    }

    .progress-container:hover .progress-bar {
        height: 3px;
    }

    .building-image-container {
        width: 100%;
        margin-bottom: -40px;
        right: 1rem;
    }

    .building-image {
        width: 88%;
    }

    .cta-button {
        position: relative;
        right: -6rem;
        top: -11rem;
        transform: none;
        margin: 20px auto 0;
        display: block;
        width: fit-content;
        padding: 08px 29px;
        font-size: 16px;
        border-radius: 10px;
    }

    .cta-button:hover {
        transform: translate(0, 0) scale(1);
        background-color: #ff7a2f;
        box-shadow: 5px 5px 18px rgba(0, 0, 0, 0.5);
        right: -5.8rem;
        /* Move um pouco mais para dentro no hover */
    }

    /* cards page home */
    .projects-grid {
        max-width: 750px;
    }

    .projects-section {
        padding: 50px 0;
    }

    .projects-grid {
        gap: 25px;
    }

    .card-slider {
        height: 250px;
    }

    .slider-btn {
        width: 38px;
        height: 45px;
    }

    .slider-btn i {
        font-size: 28px;
    }

    .card-content {
        padding: 20px 15px;
    }

    .card-subtitle {
        font-size: 18px;
    }

    .card-title {
        font-size: 24px;
    }

    .card-description {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .card-divider {
        width: 200px;
        margin: 12px auto;
    }

    .feature-badge {
        min-width: 70px;
        padding: 8px 12px;
    }

    .feature-badge img {
        width: 28px;
        height: 28px;
    }

    .feature-badge span {
        font-size: 12px;
    }

    /* cards news page home */
    .news-section .col-md-6 {
        margin-bottom: 5px;
    }

    .news-card-wrapper {
        max-width: 600px;
        /* Mesma largura dos cards de empreendimentos em tablet */
    }

    .news-card-title {
        font-size: 20px;
        min-height: 45px;
        margin-bottom: 10px;
    }

    .news-card-text {
        font-size: 15px;
        line-height: 1.4;
    }

    .news-card-btn-wrapper a {
        font-size: 15px;
    }

    /* page home contato venda sessão */
    .sobre-section {
        min-height: 130vh;
        /* Ajuste de altura para mobile */
        background:
            linear-gradient(to bottom,
                rgba(0, 0, 0, 0.685) 0%,
                rgba(0, 0, 0, 0.699) 40%,
                rgba(29, 29, 29, 0.3) 60%,
                rgba(29, 29, 29, 0.1) 80%,
                transparent 90%),
            /* Imagem específica para mobile pequeno */
            url('./assets/images/backgroundpageaboutMobile.webp') center/cover no-repeat;
    }

    .contato-vendas-section {
        margin-top: -11rem;
    }

    .logo-decorativa {
        top: -22rem;
        width: 26rem;
        opacity: 0.4;
    }

    .logo-decorativaAbout {
        top: -22rem;
        width: 23.5rem;
        opacity: 0.4;
    }

     .logo-decorativaInga {
        top: -10rem;
        width: 18rem;
        opacity: 0.4;
    }

    .contato-vendas-content {
        padding: 45px 15px 25px;
        /* 15px menor que 884px */
    }

    .contato-vendas-title {
        font-size: 32px;
        /* 13px menor que 884px */
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        line-height: 1.2;
    }

    .contato-vendas-subtitle {
        font-size: 1.1rem;
        /* 0.2rem menor que 884px */
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        margin-bottom: 25px;
        /* 10px menor que 884px */
        line-height: 1.3;
    }

    .contact-box {
        max-width: 320px;
        /* 60px menor que 884px */
        padding: 25px 20px;
        /* 5px menor que 884px */
        background-color: rgba(255, 255, 255, 0.95);
        margin-bottom: 30px;
        /* Proporcional */
    }

    .contact-box h3 {
        font-size: 24px;
        /* 4px menor que 884px */
        padding-bottom: 5px;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .btn-vendas {
        font-size: 16px;
        /* Mesmo que 884px mas com menos padding */
    }

    .btn-custom {
        padding: 14px;
        margin-bottom: 10px;
        font-size: 15px;
    }

    .contact-info {
        max-width: 320px;
        /* 60px menor que 884px */
        margin-left: auto;
        margin-right: auto;
        margin-top: 20px;
        /* 5px menor que 884px */
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* ÍCONES CENTRALIZADOS EM CIMA DAS INFORMAÇÕES */
    .contact-item {
        justify-content: center;
        text-align: center;
        font-size: 15px;
        /* 2px menor que 884px */
        width: 100%;
        flex-direction: column;
        margin-bottom: 16px;
        /* 4px menor que 884px */
    }

    /* Ícone em cima do texto */
    .contact-item i {
        margin-right: 0;
        margin-bottom: 7px;
        /* 2px menor que 884px */
        width: 40px;
        /* 5px menor que 884px */
        height: 40px;
        font-size: 1.1rem;
        /* 0.2rem menor que 884px */
    }

    /* Texto do contato */
    .contact-item span {
        display: block;
        width: 100%;
        word-break: break-word;
    }

    /* Centraliza conteúdo dentro do container */
    .row.align-items-center {
        justify-content: center;
    }

    .col-lg-6.col-md-8 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        max-width: 48%;
    }

    .sobre-section {
        padding: 40px 0;
    }

    .background-logo {
        width: 200px;
        left: -40px;
        top: 15rem;
        opacity: 0.4;
    }

    .quality-title {
        margin-top: 3rem;
    }

    .quality-title h2 {
        font-size: 1.6rem;
    }

    .decorative-line {
        width: 80px;
        height: 2px;
    }

    .quem-somos-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .quem-somos-title span {
        font-size: 2rem;
    }

    .description-text {
        font-size: 15px;
        line-height: 1.5;
    }

    .info-card {
        width: 90%;
        border-radius: 15px;
        margin: -2rem auto 1rem;
    }

    .info-card-content {
        min-height: 180px;
        flex-direction: column;
    }

    /* CORREÇÃO: Centralizar a logo */
    .card-left-section {
        min-height: 150px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* CORREÇÃO: Mudar de position: absolute para relative e centralizar */
    .logo-container {
        position: relative;
        left: 0 !important;
        top: 6.5rem !important;
        transform: none !important;
        margin: 0 auto;
        text-align: center;
        width: 100%;
    }

    .logo-container img {
        width: 180px;
        margin: 0 auto;
        display: inline-block;
    }

    .card-right-section {
        padding: 1.5rem 1rem;
        width: 100%;
        text-align: center;
    }

    .mission-title {
        font-size: 2.2rem;
    }

    .mission-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .mission-description {
        font-size: 1rem;
        line-height: 1.3;
        text-align: center;
    }

    .values-section {
        margin-top: 3rem;
        grid-template-columns: 1fr;
        max-width: 300px;
        gap: 1rem;
    }

    .value-card {
        padding: 15px 10px;
        margin-bottom: 1rem;
    }

    .value-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .value-icon img {
        width: 50px;
        height: 50px;
    }

    .value-title {
        font-size: 0.9rem;
    }

    /* page ed ingá*/
    .inga-hero-section {
        min-height: 80vh;
        background-position: center center;
        padding-bottom: 160px;
        position: relative;
    }
    
    .inga-hero-section::before {
        display: none;
    }
    
    .inga-hero-logo {
        width: 150px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0.15;
    }
    
    .inga-hero-content {
        padding-bottom: 10px;
        margin-top: 0;
        padding-top: 0vh;
        text-align: center;
    }
    
    .inga-hero-title {
        font-size: 2.9rem;
        text-align: center;
        line-height: 1;
        margin-bottom: 0.5rem;
    }
    
    .hero-title-destaque {
        font-size: 2.3rem;
    }
    
    .inga-hero-desc {
        font-size: 21px;
        text-align: center;
        margin-bottom: -3px;
    }
    
    /* CARD HERO - VERSÃO MOBILE COMPACTA SEM IMAGEM */
    .inga-info-card {
        display: flex !important;
        flex-direction: column;
        bottom: 3%;
        max-width: 85%; /* Reduzido significativamente */
        width: 85%; /* Reduzido significativamente */
        border-radius: 1rem;
        left: 50%;
        transform: translateX(-50%);
        margin: 0 auto;
        padding: 0; /* Remove padding do container */
        background: rgba(23, 22, 22, 0.95); /* Fundo semi-transparente */
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    /* ESCONDE A IMAGEM EM MOBILE */
    .inga-info-card-img-wrapper {
        display: none !important;
    }
    
    /* CONTEÚDO DO CARD - OCUPA 100% */
    .inga-info-card-content {
        padding: 1.2rem 1rem; /* Padding ajustado */
        text-align: center;
        width: 100%;
        flex: 1;
    }
    
    .textcardInga {
        font-size: 14px !important; /* Aumentado para melhor legibilidade */
        line-height: 1.4 !important;
        margin-bottom: 0.8rem !important;
        color: #f0f0f0;
        font-family: 'NexaBlack Italic';
    }
    
    .textcardInga strong {
        font-size: 14px !important;
        font-family: 'NexaBlack Italic';
        font-weight: 600;
        color: #ffffff;
    }
    
    .textcardInga br {
        display: inline; /* Mantém as quebras de linha */
    }
    
    .inga-info-highlight {
        font-size: 12px !important; /* Aumentado para melhor legibilidade */
        line-height: 1.3 !important;
        margin-bottom: 0 !important;
        color: var(--primary-color);
        font-family: 'Nexa Xbold';
        font-weight: 600;
    }
    
    .inga-info-highlight br {
        display: inline; /* Mantém as quebras de linha */
    }
    
    /* OUTROS AJUSTES PARA MOBILE */
    .amenities-section {
        padding: 2.5rem 0;
    }
    
    .amenity-slider-container {
        margin-bottom: 1.2rem;
    }
    
    .amenity-slider-wrapper {
        border-radius: 1.5rem;
    }
    
    .amenity-slide {
        height: 200px;
    }
    
    .amenity-overlay {
        max-width: 65%;
        padding: 0.5rem 0.7rem;
        border-radius: 0.8rem;
        gap: 0.5rem;
    }
    
    .amenity-overlay h4 {
        font-size: 0.7rem;
        line-height: 1.1;
    }
    
    .amenity-overlay h4 br {
        display: none;
    }
    
    .amenity-icon {
        width: 24px !important;
        height: 24px !important;
    }
    
    .amenity-btn {
        font-size: 3.5rem;
        width: 35px;
        height: 35px;
    }
    
    .gallery-section {
        padding: 1.5rem 0;
    }
    
    .gallery-title {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
        letter-spacing: 1.5px;
    }
    
    .carousel-container {
        margin-bottom: 2.5rem;
    }
    
    .carousel-slide {
        padding: 0 3%;
    }
    
    .carousel-main-img {
        width: 94%;
        height: 240px;
        border-radius: 1rem;
    }
    
    .carousel-preview {
        display: none !important;
    }
    
    .carousel-btn {
        font-size: 4rem;
        width: 35px;
        height: 35px;
    }
    
    .carousel-btn.prev {
        left: 1%;
    }
    
    .carousel-btn.next {
        right: 1%;
    }
    
    /* page stage residence */
    .stage-hero-section {
        min-height: 100vh;
        padding-top: 60px;
    }
    
    .stage-hero-section::after {
        height: 45%;
    }
    
    /* Logo ainda no canto esquerdo, mas menor */
    .stage-hero-logo {
        width: 200px;
        left: -10%;
        opacity: 0.2;
    }
    
    .stage-hero-content {
        padding: 0 15px;
        padding-top: 10rem;
    }
    
    .stage-hero-title {
        font-size: 3.8rem;
    }
    
    .stage-hero-title span {
        font-size: 2.2rem;
        margin-top: -0.3rem;
    }
    
    .stage-location {
        font-size: 15px;
        margin-bottom: 1rem;
    }
    
    .stage-info-card {
        width: 92%;
        border-radius: 1.5rem;
        padding: 1.25rem;
        margin-bottom: -2.9rem;
    }
    
    .stage-text-highlight, .stage-text-desc {
        font-size: 15px;
        line-height: 1.3;
    }
    
    .stage-wait-text {
        font-size: 22px;
    }
    
}

@media (max-width: 390px) {
    .hero-right-content {
        top: 2.5rem;
    }

    /* Ajustes Company Info para 360px */
    .purple-container {
        padding: 20px 8px 120px;
        border-radius: 25px;
    }

    .main-title {
        font-size: 1.6rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .orange-badge p {
        font-size: 12px;
    }

    .orange-badge strong {
        font-size: 13px;
    }

    .video-wrapper {
        height: 130px;
        margin: 0 auto;
        /* Garante centralização */
    }

    .cta-button {
        padding: 7px 22px;
        font-size: 13px;
        top: -09rem;
        right: -5rem;
    }

    .cta-button:hover {
        right: -4rem;
    }

    /* page home sessão contato vendas */
    .logo-decorativa,
    .logo-decorativaAbout {
        top: -18rem;
        /* 4rem mais alto que 884px */
        width: 23rem;
        opacity: 0.30;
        /* Mais transparente */
    }

    .contato-vendas-title {
        font-size: 28px;
        /* 17px menor que 884px */
    }

    .contato-vendas-subtitle {
        font-size: 1rem;
        /* 0.3rem menor que 884px */
        margin-bottom: 20px;
    }

    .contact-box {
        max-width: 280px;
        /* 100px menor que 884px */
        padding: 22px 18px;
        /* 8px menor que 884px */
    }

    .contact-box h3 {
        font-size: 22px;
        /* 6px menor que 884px */
        padding-bottom: 4px;
    }

    .btn-vendas {
        font-size: 14px;
        /* 2px menor que 884px */
    }

    .btn-custom {
        font-size: 14px;
        padding: 12px;
        margin-bottom: 8px;
    }

    .contact-info {
        max-width: 280px;
        /* 100px menor que 884px */
        margin-top: 18px;
        /* 7px menor que 884px */
    }

    .contact-item {
        font-size: 14px;
        /* 3px menor que 884px */
        margin-bottom: 14px;
        /* 6px menor que 884px */
    }

    .contact-item i {
        width: 38px;
        /* 7px menor que 884px */
        height: 38px;
        font-size: 1rem;
        /* 0.3rem menor que 884px */
        margin-bottom: 6px;
        /* 3px menor que 884px */
    }

    /* page ed ingá */
    .amenities-section {
        padding: 2rem 0;
    }
    
    .amenity-slide {
        height: 180px;
    }
    
    .amenity-overlay {
        max-width: 60%;
        padding: 0.4rem 0.6rem;
    }
    
    /* Padrão: 12px */
    .amenity-overlay h4 {
        font-size: 0.65rem;
    }
    
    .amenity-icon {
        width: 22px !important;
        height: 22px !important;
    }
    
    .amenity-btn {
        font-size: 3rem;
        width: 30px;
        height: 30px;
    }
    
    /* Padrão: 1.2rem */
    .gallery-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .carousel-main-img {
        height: 200px;
    }
    
    .carousel-btn {
        font-size: 3.5rem;
        width: 30px;
        height: 30px;
    }

    /* page stage residence */
    .stage-info-card {
        margin-bottom: -6rem;
    }
}

/* Telas Grandes (1920px+) */
@media (min-width: 1880px) {
    .hero-text-content {
        left: 15%;
    }

    .contrast-square {
        left: -8rem;
        width: 750px;
        height: 700px;
        top: 39rem;
    }

    .retangulo {
        width: 600px;
        height: 600px;
    }

    .hero-text-content {
        left: 23%;
        top: 53%;
    }

    .hero-main-title {
        font-size: 3rem;
    }

    .hero-right-content .scroll-text {
        font-size: 50px;
    }

    .purple-container {
        padding: 60px 40px 300px;
    }

    .content-overlay {
        margin-top: -23rem;
    }

    .sessionTextsVideos {
        margin-top: -13rem;
    }

    .video-wrapper {
        width: 100%;
        height: 330px;
    }

    .cta-button {
        top: 70%;
    }

    /* cards page home */
    .projects-grid {
        max-width: 1600px;
    }

    .card-slider {
        height: 460px;
    }

    /* page home contato venda sessão */
    .contato-vendas-content {
        margin-left: -11rem;
    }

    .logo-decorativa {
        top: -47rem;
        width: 48rem;
    }

    .logo-decorativaAbout {
        top: -23rem;
        width: 38rem;
    }

    /* PAGE ABOUT*/
    .sobre-section {
        min-height: 140vh;
    }

    .quality-title {
        margin-top: 12rem;
    }

    .quem-somos-title {
        font-size: 6rem;
    }

    .quem-somos-title span {
        font-size: 5rem;
    }

    .description-text {
        font-size: 20px;
    }

    .logo-container img {
        width: 350px;
    }

    .mission-title {
        font-size: 5rem;
    }

    .mission-description {
        font-size: 1.8rem;
    }

    .values-section {
        max-width: 2000px;
        margin: 8rem auto 0;
    }

    .value-card {
        padding: 20px 15px;
    }

    .value-icon {
        width: 80px;
        height: 80px;
    }

    .value-icon img {
        width: 80px;
        height: 80px;
    }

    .value-title {
        font-size: 1.4rem;
    }

    .inga-hero-section::after {
        height: 35%; /* Aumenta a altura do gradiente */
        background: linear-gradient(to bottom, 
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.6) 25%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.2) 75%,
            rgba(0, 0, 0, 0.1) 90%,
            transparent 100%);
    }
    
    /* Opcional: ajustar também o gradiente lateral */
    .inga-hero-section::before {
        width: 60%; /* Aumentar a largura do gradiente lateral */
        background: linear-gradient(to right, rgba(0, 0, 0, 0.4), transparent);
    }
}

/* Ajustes específicos para orientação landscape em mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .purple-container {
        padding: 25px 20px 120px;
    }

    .content-overlay {
        margin-top: -8rem;
    }

    .video-wrapper {
        height: 140px;
    }

    .text-content {
        padding: 5px 0;
    }

    .hero-section {
        min-height: 120vh;
    }

    .hero-container {
        height: 120vh;
    }

    .contato-vendas-section,
    .contato-vendas-sectionAbout {
        min-height: 130vh;
        /* Maior para landscape */
    }

    .logo-decorativa,
    .logo-decorativaAbout {
        top: -8rem;
    }

    .contato-vendas-content {
        padding: 35px 0 25px;
    }

    .contato-vendas-title {
        font-size: 32px;
    }

    /* Para landscape, mantém estrutura mas ajusta espaçamentos */
    .contact-item {
        margin-bottom: 12px;
    }

    .contact-item i {
        margin-bottom: 5px;
    }
}