/* ========================================================
   DAL RI NEGÓCIOS IMOBILIÁRIOS - Landing Pages Exclusivas
   Identidade Visual: Kanit, #000, #353535, #fff
   ======================================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Kanit', sans-serif;
    font-weight: 300;
    color: #353535;
    background-color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul, ol {
    list-style: none;
}

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

button, input, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

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

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

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

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

.animate-fadeIn {
    animation: fadeIn 1s ease forwards;
}

.animate-delay-1 { animation-delay: 0.15s; }
.animate-delay-2 { animation-delay: 0.3s; }
.animate-delay-3 { animation-delay: 0.45s; }
.animate-delay-4 { animation-delay: 0.6s; }

/* === HEADER === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 0;
    transition: all 0.4s ease;
    background: transparent;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.6rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: block;
    width: 180px;
}

.logo img {
    width: 100%;
    height: auto;
    display: block;
}



.header-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.header-badge::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: rgba(255,255,255,0.5);
}

/* === HERO === */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

.hero:hover .hero-image img {
    transform: scale(1.03);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.4) 40%,
        rgba(0, 0, 0, 0.15) 70%,
        rgba(0, 0, 0, 0.3) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 4rem;
    color: #fff;
}

.hero-exclusivo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-exclusivo svg {
    width: 14px;
    height: 14px;
    fill: #fff;
}

.hero-tipo {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 200;
    opacity: 0.8;
    margin-bottom: 0.3rem;
    animation: fadeInUp 0.8s ease 0.1s forwards;
    opacity: 0;
}

.hero-titulo {
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-titulo span {
    font-weight: 200;
}

.hero-localizacao {
    font-size: clamp(0.85rem, 2vw, 1rem);
    font-weight: 300;
    opacity: 0.7;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.hero-localizacao svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    flex-shrink: 0;
}

.hero-preco {
    font-size: clamp(1.5rem, 4vw, 2.4rem);
    font-weight: 500;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-preco small {
    font-size: 0.5em;
    font-weight: 200;
    opacity: 0.6;
    display: block;
    margin-bottom: 0.2rem;
}

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: float 2s ease-in-out infinite;
}

.hero-scroll-line {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

/* === INFO BAR === */
.info-bar {
    background: #000;
    color: #fff;
    padding: 0;
    position: relative;
    z-index: 10;
}

.info-bar-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0;
}

.info-item {
    text-align: center;
    padding: 1.8rem 1rem;
    border-right: 1px solid rgba(255,255,255,0.08);
    transition: background 0.3s ease;
}

.info-item:last-child {
    border-right: none;
}

.info-item:hover {
    background: rgba(255,255,255,0.05);
}

.info-item-icon {
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: center;
}

.info-item-icon svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.5;
    opacity: 0.6;
}

.info-item-value {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.1rem;
}

.info-item-label {
    font-size: 0.7rem;
    font-weight: 300;
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* === SECTIONS === */
.section {
    padding: 5rem 0;
}

.section-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 0.5rem;
}

.section-heading {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
    color: #000;
    margin-bottom: 2rem;
    line-height: 1.3;
}

/* === DESCRIÇÃO === */
.descricao {
    background: #fff;
}

.descricao-text {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 2.1;
    color: #333;
    max-width: 900px;
    white-space: pre-line;
    background: #fafafa;
    padding: 3rem 3.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 15px 35px rgba(0,0,0,0.02);
    position: relative;
    margin-top: 1.5rem;
}

.descricao-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3rem;
    bottom: 3rem;
    width: 4px;
    background: #000;
    border-radius: 0 4px 4px 0;
}

.descricao-text strong {
    color: #000;
    font-weight: 500;
    background: linear-gradient(120deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.05) 100%);
    background-repeat: no-repeat;
    background-size: 100% 30%;
    background-position: 0 85%;
}

@media (max-width: 768px) {
    .descricao-text {
        padding: 1.5rem 1.5rem 1.5rem 2.5rem;
        font-size: 1rem;
        line-height: 1.9;
    }
    
    .descricao-text::before {
        top: 1.5rem;
        bottom: 1.5rem;
        width: 3px;
    }
}

/* === GALERIA === */
.galeria {
    background: #fff;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.galeria-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.galeria-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.galeria-item:hover img {
    transform: scale(1.06);
}

.galeria-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.3s ease;
}

.galeria-item:hover::after {
    background: rgba(0,0,0,0.15);
}

.galeria-item.galeria-more::after {
    content: attr(data-more);
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1px;
    z-index: 2;
    transition: background 0.3s ease;
}

.galeria-item.galeria-more:hover::after {
    background: rgba(0,0,0,0.4);
}

/* === LIGHTBOX === */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.95);
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.2);
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.lightbox-counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    font-weight: 300;
}

/* === FORMULÁRIO === */
.formulario {
    background: #000;
    color: #fff;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.formulario::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
    pointer-events: none;
}

.formulario-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.formulario-info h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.formulario-info p {
    font-size: 0.95rem;
    font-weight: 300;
    opacity: 0.6;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.formulario-garantias {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.formulario-garantia {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
    font-weight: 300;
    opacity: 0.7;
}

.formulario-garantia svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
    opacity: 0.5;
}

.form-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-card-title {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.3rem;
}

.form-card-subtitle {
    font-size: 0.8rem;
    font-weight: 300;
    opacity: 0.5;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.5;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    font-weight: 300;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: rgba(255,255,255,0.3);
}

.form-input:focus {
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.05);
}

.form-input.error {
    border-color: #ff4444;
}

.form-error-msg {
    font-size: 0.75rem;
    color: #ff6b6b;
    margin-top: 0.3rem;
    display: none;
}

.form-input.error + .form-error-msg {
    display: block;
}

.form-submit {
    width: 100%;
    padding: 1.1rem;
    background: #fff;
    color: #000;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    position: relative;
    overflow: hidden;
}

.form-submit:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.15);
}

.form-submit:active {
    transform: translateY(0);
}

.form-lgpd {
    font-size: 0.7rem;
    font-weight: 300;
    opacity: 0.35;
    margin-top: 1rem;
    line-height: 1.5;
    text-align: center;
}

/* === SUCESSO MODAL === */
.modal-sucesso {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.modal-sucesso.active {
    display: flex;
}

.modal-sucesso-content {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 420px;
    width: 100%;
    animation: fadeInUp 0.5s ease;
}

.modal-sucesso-icon {
    width: 60px;
    height: 60px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.modal-sucesso-icon svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5;
}

.modal-sucesso h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 0.5rem;
}

.modal-sucesso p {
    font-size: 0.9rem;
    font-weight: 300;
    color: #777;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.modal-sucesso-btn {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background: #000;
    color: #fff;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.modal-sucesso-btn:hover {
    background: #353535;
}

/* === WHATSAPP FLUTUANTE === */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    animation: none;
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 400;
    white-space: nowrap;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #fff;
}

/* === CTA FIXO MOBILE === */
.cta-fixo {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: #000;
    padding: 0.8rem 1.2rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.cta-fixo-inner {
    display: flex;
    gap: 0.6rem;
    max-width: 600px;
    margin: 0 auto;
}

.cta-fixo-btn {
    flex: 1;
    padding: 0.9rem;
    border-radius: 10px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-fixo-btn.primary {
    background: #fff;
    color: #000;
}

.cta-fixo-btn.whatsapp {
    background: #25D366;
    color: #fff;
}

.cta-fixo-btn svg {
    width: 18px;
    height: 18px;
}

.cta-fixo-btn.whatsapp svg {
    fill: #fff;
}

/* === FOOTER === */
.footer {
    background: #000;
    color: #fff;
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-logo img {
    width: 140px;
    height: auto;
    display: block;
}

.footer-info {
    text-align: right;
    font-size: 0.8rem;
    font-weight: 300;
    opacity: 0.5;
    line-height: 1.6;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin: 1.5rem 0 1rem;
}

.footer-bottom {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.7rem;
    font-weight: 300;
    opacity: 0.3;
    text-align: center;
    padding-top: 1rem;
}

/* === DESTAQUES / FEATURES === */
.destaques-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.destaque-card {
    padding: 1.8rem;
    border: 1px solid #eee;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.destaque-card:hover {
    border-color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.destaque-card-icon {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.destaque-card-icon svg {
    width: 20px;
    height: 20px;
    stroke: #353535;
    fill: none;
    stroke-width: 1.5;
}

.destaque-card h3 {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
    color: #000;
}

.destaque-card p {
    font-size: 0.82rem;
    font-weight: 300;
    color: #888;
    line-height: 1.5;
}

/* === DIFERENCIAIS DARK MODE === */
.section.diferenciais {
    background: #000;
    color: #fff;
}

.section.diferenciais .section-title {
    color: rgba(255, 255, 255, 0.4);
}

.section.diferenciais .section-heading {
    color: #fff;
}

.section.diferenciais .destaque-card {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

.section.diferenciais .destaque-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.section.diferenciais .destaque-card-icon {
    background: rgba(255, 255, 255, 0.1);
}

.section.diferenciais .destaque-card-icon svg {
    stroke: #fff;
}

.section.diferenciais .destaque-card h3 {
    color: #fff;
}

.section.diferenciais .destaque-card p {
    color: rgba(255, 255, 255, 0.6);
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .formulario-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .galeria-item:first-child {
        grid-column: span 2;
    }

    .hero {
        min-height: 500px;
        max-height: 700px;
    }

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

@media (max-width: 768px) {
    .hero {
        height: 85svh;
        min-height: 550px;
        max-height: none;
        background-color: #000;
        display: flex;
        align-items: flex-end;
    }

    .hero-image {
        position: absolute;
        inset: 0;
    }

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

    .hero-content {
        position: relative;
        padding-bottom: 6rem;
    }

    .header-badge {
        display: none;
    }

    .header-inner {
        justify-content: center;
    }

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

    .info-item {
        padding: 1.2rem 0.8rem;
    }

    .galeria-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4px;
    }

    .galeria-item:first-child {
        grid-column: span 2;
    }

    .section {
        padding: 3.5rem 0;
    }

    .form-card {
        padding: 1.8rem;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-info {
        text-align: center;
    }

    /* CTA Fixo e WhatsApp flutuante removidos daqui para manter o comportamento do desktop (WhatsApp visível e CTA oculto) */

    .hero-scroll {
        display: none;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .info-item-value {
        font-size: 1.1rem;
    }

    .info-item-label {
        font-size: 0.6rem;
    }

    .destaques-grid {
        grid-template-columns: 1fr;
    }
}

/* === BOTÃO DISPARADOR DO MENU === */
.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.menu-toggle {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: 'Kanit', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.menu-toggle-icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* === MENU DRAWER (PAINEL LATERAL SLIDE-IN) === */
.menu-drawer {
    position: fixed;
    inset: 0;
    z-index: 1100;
    visibility: hidden;
    transition: visibility 0.4s;
}

.menu-drawer.active {
    visibility: visible;
}

.menu-drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.menu-drawer.active .menu-drawer-backdrop {
    opacity: 1;
}

.menu-drawer-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 400px;
    background: #0d0d0d;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: #fff;
}

.menu-drawer.active .menu-drawer-content {
    transform: translateX(0);
}

.menu-drawer-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-drawer-header h3 {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.menu-drawer-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0.5rem;
    line-height: 1;
}

.menu-drawer-close:hover {
    color: #fff;
}

.menu-drawer-list {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.menu-drawer-list::-webkit-scrollbar {
    width: 6px;
}
.menu-drawer-list::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

/* === CARD DE IMÓVEL NO MENU === */
.menu-drawer-item {
    display: flex;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 0.8rem;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

.menu-drawer-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.menu-drawer-item.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    pointer-events: none;
}

.menu-drawer-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    background: #222;
}

.menu-drawer-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-drawer-info h4 {
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 0.2rem;
    line-height: 1.3;
}

.menu-drawer-info p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.4rem;
}

.menu-drawer-price {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
}

.menu-drawer-active-badge {
    display: inline-block;
    align-self: flex-start;
    background: #fff;
    color: #000;
    font-size: 0.6rem;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    margin-top: 0.3rem;
    letter-spacing: 0.5px;
}

/* === RESPONSIVO DO MENU === */
@media (max-width: 768px) {
    .menu-toggle {
        position: absolute;
        right: 1.2rem;
        top: 50%;
        transform: translateY(-50%);
        padding: 0.4rem 0.8rem;
    }
    
    .menu-toggle-text {
        display: none;
    }

    .menu-drawer-content {
        max-width: 320px;
    }
}

/* === ESTILOS DO PORTAL CENTRAL (INDEX.HTML) === */
.portal-hero {
    position: relative;
    padding: 10rem 0 6rem;
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.85)), url('../img/inicio.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.portal-hero-title {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.portal-hero-subtitle {
    font-size: 1.1rem;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* === FILTROS DE CATEGORIA === */
.filter-bar {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    padding: 3rem 0;
    flex-wrap: wrap;
    background: #fff;
}

.filter-btn {
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    color: #333;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-family: 'Kanit', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* === GRID DO PORTAL === */
.portal-grid-section {
    padding-bottom: 6rem;
    background: #fff;
}

.portal-grid-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

/* === CARDS DE IMÓVEIS NO PORTAL === */
.portal-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    overflow: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    display: flex;
    flex-direction: column;
}

.portal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: #000;
}

.portal-card-img-wrapper {
    display: block;
    position: relative;
    padding-top: 65%; /* Proporção de imagem widescreen */
    overflow: hidden;
    background: #eee;
}

.portal-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portal-card:hover .portal-card-img {
    transform: scale(1.05);
}

.portal-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    letter-spacing: 1px;
}

.portal-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.portal-card-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.5rem;
}

.portal-card-title {
    font-size: 1rem;
    font-weight: 400;
    color: #222;
    margin-bottom: 0.3rem;
    line-height: 1.4;
}

.portal-card-location {
    font-size: 0.78rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 1.2rem;
}

.portal-card-location svg {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.portal-card-specs {
    display: flex;
    gap: 1rem;
    padding: 0.8rem 0;
    border-top: 1px solid #f5f5f5;
    border-bottom: 1px solid #f5f5f5;
    margin-bottom: 1.2rem;
}

.portal-card-spec-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: #666;
}

.portal-card-spec-item svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: #888;
    stroke-width: 1.5;
}

.portal-card-btn {
    display: block;
    width: 100%;
    background: #000;
    color: #fff;
    border: none;
    padding: 0.9rem;
    border-radius: 8px;
    font-family: 'Kanit', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background 0.3s ease;
    margin-top: auto;
}

.portal-card-btn:hover {
    background: #333;
}

.portal-card.hidden {
    display: none;
}

/* Responsivo */
@media (max-width: 768px) {
    .portal-hero-title {
        font-size: 2.2rem;
    }
    
    .portal-hero-subtitle {
        font-size: 0.95rem;
        width: 85%;
    }
    
    .portal-grid-container {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
}

