/* ============================================
   VARIÁVEIS - DIRECIONAL IMÓVEIS
   ============================================ */
:root {
    /* Cores Principais */
    --primary-blue: #002A5C;
    --secondary-blue: #004B8D;
    --accent-red: #E31C23;
    --accent-hover: #C4141A;
    
    /* Cores de Texto */
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6c6c6c;
    --text-muted: #999999;
    
    /* Cores de Fundo */
    --white: #FFFFFF;
    --bg-light: #f8f9fa;
    --bg-light-2: #e9ecef;
    --bg-dark: #1a1a1a;
    
    /* Cores de Status */
    --success: #28a745;
    --warning: #ffc107;
    --gold: #FFD700;
    
    /* Tipografia */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
    
    /* Bordas */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;
    
    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Espaçamentos */
    --header-height: 80px;
    --container-max: 1400px;
    --container-padding: 2rem;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

ul {
    list-style: none;
}

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

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

button {
    cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

/* ============================================
   HEADER PREMIUM
   ============================================ */
#mainHeader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition-normal);
    background: transparent;
}

#mainHeader.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 0.75rem 0;
}

.header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
    transition: var(--transition-normal);
    position: relative;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: opacity var(--transition-normal), 
                visibility var(--transition-normal);
    display: block;
}

.logo-default {
    opacity: 1;
    visibility: visible;
}

.logo-scrolled {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

#mainHeader.scrolled .logo-default {
    opacity: 0;
    visibility: hidden;
}

#mainHeader.scrolled .logo-scrolled {
    opacity: 1;
    visibility: visible;
    position: static;
    transform: none;
}

#mainHeader.scrolled .logo {
    color: var(--primary-blue);
}

.logo-icon {
    font-size: 1.75rem;
    color: var(--accent-red);
}

.logo span {
    font-weight: 400;
    color: var(--accent-red);
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
}

#mainHeader.scrolled .nav-link {
    color: var(--text-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: var(--transition-normal);
}

.nav-link:hover {
    color: var(--white);
}

#mainHeader.scrolled .nav-link:hover {
    color: var(--primary-blue);
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-cta-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--accent-red);
    color: var(--white);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: var(--transition-normal);
}

.btn-cta-header:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(227, 28, 35, 0.35);
}

.btn-cta-header i {
    font-size: 1.1rem;
}

/* Menu Toggle Mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0.5rem;
    background: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-normal);
}

#mainHeader.scrolled .menu-toggle span {
    background: var(--text-dark);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: var(--white);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--bg-light-2);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav-logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-blue);
}

.mobile-nav-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 50%;
    color: var(--text-dark);
    font-size: 1.25rem;
}

.mobile-nav-list {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    overflow-y: auto;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 1.25rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.mobile-nav-link:hover {
    background: var(--bg-light);
    color: var(--primary-blue);
    padding-left: 1.5rem;
}

.mobile-nav-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--bg-light-2);
}

.mobile-nav-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
}

.mobile-nav-phone i {
    font-size: 1.25rem;
}

/* ============================================
   HERO SECTION - REDESIGN PREMIUM
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: calc(var(--header-height) + 3rem) var(--container-padding) 3rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 42, 92, 0.88) 0%, 
        rgba(0, 42, 92, 0.82) 50%, 
        rgba(0, 75, 141, 0.85) 100%
    );
    z-index: 0;
}

/* Elementos decorativos animados */
.hero-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.hero-decoration-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    background: var(--white);
    animation-delay: 0s;
}

.hero-decoration-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -80px;
    background: var(--accent-red);
    animation-delay: 2s;
}

.hero-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text {
    animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.25rem;
    background: linear-gradient(135deg, rgba(227, 28, 35, 0.15) 0%, rgba(227, 28, 35, 0.08) 100%);
    color: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.75rem;
    border: 1px solid rgba(227, 28, 35, 0.4);
    letter-spacing: 0.3px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    font-size: 1.1rem;
    color: var(--accent-red);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    max-width: 540px;
    line-height: 1.8;
    letter-spacing: 0.3px;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--accent-red);
    letter-spacing: -0.5px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero-trust {
    margin-bottom: 2.5rem;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.5rem;
    background: rgba(40, 167, 69, 0.12);
    border-radius: var(--radius-full);
    color: var(--success);
    border: 1px solid rgba(40, 167, 69, 0.25);
    backdrop-filter: blur(10px);
}

.trust-badge i {
    font-size: 1.3rem;
}

.trust-badge span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Botão Principal */
.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.05rem 2.25rem;
    background: var(--white);
    color: var(--primary-blue);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    transition: all var(--transition-normal);
    box-shadow: 0 10px 35px rgba(255, 255, 255, 0.2);
    border: 2px solid var(--white);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.btn-hero:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.95);
}

.btn-hero:active {
    transform: translateY(-1px);
}

.btn-hero i {
    font-size: 1.2rem;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-hero:hover i {
    transform: translateY(5px);
}

/* ============================================
   HERO FORM - CARD PREMIUM
   ============================================ */
.hero-form-section {
    animation: slideInRight 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}

.hero-form-card {
    background: rgba(255, 255, 255, 0.97);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
}

.form-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-direction: column;
}

.form-card-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: var(--radius-lg);
    font-size: 1.75rem;
    color: var(--white);
}

.form-card-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
}

.form-card-header h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin: 0;
}

.form-card-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.75rem;
    line-height: 1.6;
}

.btn-whatsapp-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.75rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-normal);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    text-decoration: none;
    width: 100%;
    margin-bottom: 1.5rem;
}

.btn-whatsapp-form:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
}

.whatsapp-form-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.form-card-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--text-light), transparent);
    margin: 1.5rem 0;
}

.form-card-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}

.form-card-phone i {
    font-size: 1.1rem;
}

.form-card-note {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
    letter-spacing: 0.3px;
}

/* Animações */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-30px);
    }
}

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

/* ============================================
   HERO RESPONSIVO
   ============================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .hero-decoration-1 {
        width: 280px;
        height: 280px;
        top: -80px;
        right: -80px;
    }

    .hero-decoration-2 {
        width: 220px;
        height: 220px;
        bottom: -30px;
        left: -60px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: calc(var(--header-height) + 2rem) var(--container-padding) 2.5rem;
    }

    .hero-text {
        animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
    }

    .hero-form-section {
        animation: slideInRight 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1.25rem;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
    }

    .hero-description {
        font-size: 1.05rem;
        margin-bottom: 1.75rem;
    }

    .hero-stats {
        gap: 2rem;
        margin-bottom: 1.75rem;
    }

    .stat-number {
        font-size: clamp(1.75rem, 3vw, 2rem);
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .hero-form-card {
        padding: 2rem;
    }

    .form-card-header h3 {
        font-size: 1.25rem;
    }

    .form-card-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .btn-whatsapp-form {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .hero-decoration-1 {
        width: 200px;
        height: 200px;
        top: -60px;
        right: -60px;
        opacity: 0.06;
    }

    .hero-decoration-2 {
        width: 150px;
        height: 150px;
        bottom: -30px;
        left: -40px;
        opacity: 0.06;
    }

    .form-card-phone {
        font-size: 0.9rem;
    }

    .form-card-note {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: calc(var(--header-height) + 1.5rem) 1rem 2rem;
        min-height: auto;
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.85rem;
        margin-bottom: 1rem;
    }

    .hero-stats {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .hero-trust {
        margin-bottom: 1.5rem;
    }

    .trust-badge {
        padding: 0.6rem 1rem;
    }

    .trust-badge i {
        font-size: 1.1rem;
    }

    .trust-badge span {
        font-size: 0.85rem;
    }

    .btn-hero {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .hero-form-card {
        padding: 1.5rem;
    }

    .form-card-header h3 {
        font-size: 1.1rem;
    }

    .form-card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .form-card-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
    }

    .btn-whatsapp-form {
        padding: 0.8rem 1.25rem;
        font-size: 0.9rem;
    }

    .form-card-divider {
        margin: 1.25rem 0;
    }

    .form-card-phone {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .form-card-note {
        font-size: 0.7rem;
    }

    .hero-decoration-1,
    .hero-decoration-2 {
        opacity: 0.04;
    }
}

/* ============================================
   MINI FORM - FLUTUANTE
   ============================================ */
.mini-form-container {
    position: relative;
}

.mini-form {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.mini-form-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.mini-form-header span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.mini-form-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.btn-whatsapp-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: #25D366;
    color: var(--white);
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-normal);
    margin-bottom: 1rem;
}

.btn-whatsapp-hero:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.mini-form-phone {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.mini-form-phone a {
    color: var(--primary-blue);
    font-weight: 500;
}

/* Form Container */
.form-container {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.form-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

.form-step.active {
    display: block;
}

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

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--bg-light-2);
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition-fast);
    background: var(--white);
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 42, 92, 0.1);
}

.form-control::placeholder {
    color: var(--text-muted);
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* Radio Group */
.radio-group {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.radio-option {
    flex: 1;
    min-width: calc(33.333% - 0.5rem);
}

.radio-option input {
    display: none;
}

.radio-option label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0.5rem;
    border: 2px solid var(--bg-light-2);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    background: var(--white);
    text-align: center;
}

.radio-option input:checked + label {
    border-color: var(--primary-blue);
    background: rgba(0, 42, 92, 0.05);
    color: var(--primary-blue);
}

.radio-option label:hover {
    border-color: var(--primary-blue);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-normal);
    width: 100%;
}

.btn-primary {
    background: var(--accent-red);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(227, 28, 35, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.microcopy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.microcopy i {
    font-size: 0.9rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    position: relative;
}

.scroll-mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    animation: scrollMouse 2s infinite;
}

/* ============================================
   SECTIONS COMMON
   ============================================ */
section {
    padding: 5rem var(--container-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(227, 28, 35, 0.1);
    color: var(--accent-red);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

/* ============================================
   BENEFITS SECTION - NOVO VISUAL
   ============================================ */
.benefits {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    padding: 6rem var(--container-padding);
    position: relative;
}

/* Tarja decorativa no topo */
.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-red), #ff6b6b, var(--accent-red));
}

.benefits .section-title {
    color: var(--white);
}

.benefits .section-tag {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-card {
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: var(--white);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-red);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.benefit-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.benefit-card h3 {
    font-size: 1.15rem;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   PROPERTIES CAROUSEL
   ============================================ */
.properties {
    background: var(--bg-light);
    overflow: hidden;
    padding-bottom: 6rem;
}

.carousel-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0 4rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: var(--transition-normal);
    z-index: 10;
    color: var(--primary-blue);
}

.carousel-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn i {
    font-size: 1.5rem;
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 1rem 0.5rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}
/* ============================================
   CAROUSEL DOTS - RESPONSIVO
   ============================================ */
.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 2.5rem;
    padding: 0 1rem;
    flex-wrap: wrap;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d0d0d0;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
    border: 2px solid transparent;
}

.carousel-dot:hover {
    background: var(--primary-blue);
    transform: scale(1.25);
    border-color: var(--secondary-blue);
}

.carousel-dot.active {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    width: 28px;
    border-radius: 5px;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(0, 42, 92, 0.3);
}

/* Desktop - Remover primeiro e último dot */
@media (min-width: 769px) {
    .carousel-dot:first-child,
    .carousel-dot:last-child {
        display: none;
    }
}

/* Tablet - dots menores */
@media (max-width: 768px) {
    .carousel-dots {
        gap: 6px;
        margin-top: 1.75rem;
        padding: 0 0.75rem;
    }
    
    .carousel-dot {
        width: 8px;
        height: 8px;
    }
    
    .carousel-dot:hover {
        transform: scale(1.2);
    }
    
    .carousel-dot.active {
        width: 22px;
    }
}

/* Mobile pequeno */
@media (max-width: 480px) {
    .carousel-dots {
        gap: 5px;
        margin-top: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .carousel-dot {
        width: 7px;
        height: 7px;
    }
    
    .carousel-dot:hover {
        transform: scale(1.15);
    }
    
    .carousel-dot.active {
        width: 18px;
        border-radius: 4px;
    }
}
/* ============================================
   PROPERTY CARD - REDESIGN PREMIUM
   ============================================ */
.property-card {
    flex: 0 0 320px;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    scroll-snap-align: start;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    height: auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.property-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

/* Image Container */
.property-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--bg-light);
    cursor: pointer;
    user-select: none;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.property-card:hover .property-image img {
    transform: scale(1.12);
}

.property-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.2) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
}

.property-card:hover .property-overlay {
    opacity: 1;
}

/* Ícone de Galeria */
.gallery-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-blue);
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    z-index: 3;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.gallery-icon i {
    font-size: 2.2rem;
    font-weight: 400;
}

.gallery-icon span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.4px;
}

.property-card:hover .gallery-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Badge */
.property-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.property-badge.lancamento {
    background: rgba(0, 42, 92, 0.95);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.property-badge.pronto {
    background: rgba(40, 167, 69, 0.95);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.property-badge.em-obra {
    background: rgba(227, 28, 35, 0.95);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Content Section */
.property-content {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.property-header {
    flex-shrink: 0;
}

.property-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.4rem;
}

/* Location */
.property-location {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.4;
    flex-shrink: 0;
    margin: 0;
}

.property-location i {
    color: var(--accent-red);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Price Section */
.property-price-section {
    flex-shrink: 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--bg-light-2);
}

.property-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-red);
    letter-spacing: -0.5px;
    margin: 0;
}

.property-price-note {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Specs Grid */
.property-specs {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 1rem 0;
    gap: 0.75rem;
    flex-shrink: 0;
}

.spec-item {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.spec-item i {
    font-size: 1.3rem;
    color: var(--primary-blue);
}

.spec-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.spec-label {
    font-size: 0.7rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 600;
}

.spec-divider {
    width: 1px;
    height: 30px;
    background: var(--bg-light-2);
}

/* Actions */
.property-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--bg-light-2);
}

.property-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 0.75rem;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    border: none;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.property-action-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 42, 92, 0.3);
}

.property-action-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 42, 92, 0.45);
}

.property-action-primary i {
    font-size: 1rem;
}

.property-action-secondary {
    background: var(--white);
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.property-action-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: scale(1.05);
}

.property-action-secondary i {
    font-size: 1.1rem;
}

/* ============================================
   PROPERTY CAROUSEL - RESPONSIVO
   ============================================ */
@media (max-width: 1024px) {
    .property-card {
        flex: 0 0 300px;
    }
    
    .gallery-icon {
        padding: 1rem;
        gap: 0.4rem;
    }
    
    .gallery-icon i {
        font-size: 2rem;
    }
    
    .gallery-icon span {
        font-size: 0.9rem;
    }
    
    .property-name {
        font-size: 1.1rem;
    }
    
    .property-price {
        font-size: 1.5rem;
    }
    
    .spec-value {
        font-size: 0.9rem;
    }
    
    .property-action-btn {
        padding: 0.75rem 0.6rem;
        font-size: 0.75rem;
        gap: 0.35rem;
    }
}

@media (max-width: 768px) {
    .carousel-container {
        padding: 0 3rem;
    }
    
    .carousel-btn {
        width: 44px;
        height: 44px;
    }
    
    .carousel-btn i {
        font-size: 1.3rem;
    }
    
    .property-card {
        flex: 0 0 280px;
    }
    
    .property-image {
        height: 180px;
    }
    
    .gallery-icon {
        padding: 0.9rem;
        gap: 0.35rem;
    }
    
    .gallery-icon i {
        font-size: 1.8rem;
    }
    
    .gallery-icon span {
        font-size: 0.85rem;
    }
    
    .property-content {
        padding: 1.5rem;
        gap: 0.85rem;
    }
    
    .property-name {
        font-size: 1rem;
        min-height: 2.2rem;
    }
    
    .property-location {
        font-size: 0.8rem;
    }
    
    .property-price {
        font-size: 1.4rem;
    }
    
    .property-price-section {
        padding-bottom: 0.85rem;
    }
    
    .property-specs {
        padding: 0.8rem 0;
        gap: 0.5rem;
    }
    
    .spec-item i {
        font-size: 1.1rem;
    }
    
    .spec-value {
        font-size: 0.85rem;
    }
    
    .spec-label {
        font-size: 0.65rem;
    }
    
    .spec-divider {
        height: 25px;
    }
    
    .property-actions {
        gap: 0.6rem;
        padding-top: 0.85rem;
    }
    
    .property-action-btn {
        padding: 0.7rem 0.5rem;
        font-size: 0.7rem;
        gap: 0.35rem;
    }
    
    .property-action-btn i {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        padding: 0 2rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn i {
        font-size: 1.1rem;
    }
    
    .property-card {
        flex: 0 0 260px;
    }
    
    .property-image {
        height: 160px;
    }
    
    .gallery-icon {
        padding: 0.8rem;
        gap: 0.3rem;
    }
    
    .gallery-icon i {
        font-size: 1.6rem;
    }
    
    .gallery-icon span {
        font-size: 0.8rem;
    }
    
    .property-content {
        padding: 1.25rem;
        gap: 0.75rem;
    }
    
    .property-name {
        font-size: 0.95rem;
        min-height: 2rem;
    }
    
    .property-location {
        font-size: 0.75rem;
    }
    
    .property-price {
        font-size: 1.3rem;
    }
    
    .property-price-note {
        font-size: 0.7rem;
    }
    
    .property-price-section {
        padding-bottom: 0.75rem;
    }
    
    .property-specs {
        padding: 0.7rem 0;
        gap: 0.4rem;
    }
    
    .spec-item i {
        font-size: 1rem;
    }
    
    .spec-value {
        font-size: 0.8rem;
    }
    
    .spec-label {
        font-size: 0.6rem;
    }
    
    .spec-divider {
        height: 20px;
    }
    
    .property-actions {
        gap: 0.5rem;
        padding-top: 0.75rem;
    }
    
    .property-action-btn {
        padding: 0.65rem 0.4rem;
        font-size: 0.65rem;
        gap: 0.3rem;
        border-radius: var(--radius-sm);
    }
    
    .property-action-btn i {
        font-size: 0.8rem;
    }
}

/* ============================================
   TESTIMONIALS - NOVO VISUAL
   ============================================ */
.testimonials {
    background: var(--white);
    padding: 6rem var(--container-padding);
    position: relative;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}

/* Cards dos depoimentos */
.testimonial-card {
    background: linear-gradient(135deg, #f8f9fa 0%, var(--bg-light) 100%);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(227, 28, 35, 0.08);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(0, 42, 92, 0.12);
    border-color: rgba(227, 28, 35, 0.15);
}

/* Aspas decorativas */
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 4rem;
    color: rgba(227, 28, 35, 0.1);
    font-family: var(--font-heading);
    line-height: 1;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.75rem;
    flex-grow: 1;
    font-style: italic;
}

/* Autor com Avatar */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.author-avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 42, 92, 0.25);
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 0.95rem;
}

.author-location {
    color: var(--text-light);
    font-size: 0.8rem;
}

/* Ajuste no CTA Final para não ficar grudado */

/* ============================================
   CTA FINAL SECTION - NOVO VISUAL
   ============================================ */
.cta-final {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    padding: 7rem var(--container-padding);
    position: relative;
    overflow: hidden;
}

/* Elemento decorativo background */
.cta-final::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.cta-final::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(227, 28, 35, 0.08);
    border-radius: 50%;
    z-index: 1;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-content h2 {
    font-size: 2.75rem;
    color: var(--white);
    margin-bottom: 1.25rem;
    line-height: 1.2;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.cta-final .btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 2.75rem;
    background: var(--accent-red);
    color: var(--white);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--accent-red);
    box-shadow: 0 10px 30px rgba(227, 28, 35, 0.3);
}

.cta-final .btn:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(227, 28, 35, 0.45);
}

.btn-icon-svg {
    width: 1.5rem;
    height: 1.5rem;
    display: inline-block;
}
/* ============================================
   URGENCY SECTION
   ============================================ */
.urgency {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    padding: 4rem var(--container-padding);
}

.urgency-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.urgency-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}

.urgency-icon i {
    font-size: 2.5rem;
    color: var(--accent-red);
}

.urgency-text {
    flex: 1;
    min-width: 280px;
}

.urgency-text h2 {
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.urgency-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
}

.countdown {
    display: flex;
    gap: 1rem;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    min-width: 75px;
}

.time-number {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-red);
}

.time-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* ============================================
   MODAL
   ============================================ */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    padding: 1rem;
}

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

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    max-width: 90%;
    width: 850px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9) translateY(20px);
    transition: var(--transition-normal);
}

.modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
    color: var(--text-dark);
    font-size: 1.2rem;
}

.modal-close:hover {
    background: var(--accent-red);
    color: var(--white);
}

.modal-content h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-dark);
    padding: 4rem var(--container-padding) 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    max-width: 300px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition-normal);
}

.social-links a:hover {
    background: var(--accent-red);
    transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-red);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--accent-red);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--white);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scrollMouse {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

/* ============================================
   RESPONSIVIDADE COMPLETA
   ============================================ */

/* ========== DESKTOPS GRANDES (1400px+) ========== */
@media (max-width: 1500px) {
    .hero-content {
        max-width: 1200px;
        gap: 3rem;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .carousel-container {
        max-width: 1200px;
        padding: 0 3.5rem;
    }
}

/* ========== DESKTOPS (1200px) ========== */
@media (max-width: 1200px) {
    :root {
        --container-padding: 3rem;
    }

    .hero-content {
        grid-template-columns: 1fr 400px;
        gap: 3rem;
    }
    
    .hero-text h1 {
        font-size: 2.75rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 3rem;
    }
}

/* ========== TABLETS GRANDES (1024px) ========== */
@media (max-width: 1024px) {
    :root {
        --container-padding: 2.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 600px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .form-container {
        max-width: 500px;
        margin: 0 auto;
        padding: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links, .footer-contact {
        text-align: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
}

/* ========== TABLETS (768px) ========== */
@media (max-width: 768px) {
    :root {
        --container-padding: 1.5rem;
        --header-height: 70px;
    }

    #mainHeader {
        padding: 0.75rem 0;
    }
    
    .main-nav {
        display: none;
    }
    
    .btn-cta-header {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: calc(var(--header-height) + 1.5rem) var(--container-padding) 3rem;
        min-height: auto;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 1;
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefits {
        padding: 4rem var(--container-padding);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
    
    .carousel-container {
        padding: 0 1rem;
    }
    
    .carousel-btn {
        width: 42px;
        height: 42px;
    }
    
    .carousel-btn i {
        font-size: 1.25rem;
    }
    
    .carousel-prev {
        left: -5px;
    }
    
    .carousel-next {
        right: -5px;
    }
    
    .property-card {
        flex: 0 0 300px;
    }
    
    .testimonials {
        padding: 4rem var(--container-padding);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .urgency {
        padding: 3rem var(--container-padding);
    }
    
    .urgency-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .urgency-text {
        min-width: 100%;
    }
    
    .urgency-text h2 {
        font-size: 1.5rem;
    }
    
    .countdown {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cta-final {
        padding: 4rem var(--container-padding);
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .modal-content {
        width: 95%;
        padding: 1.5rem;
    }
    
    .footer {
        padding: 3rem var(--container-padding) 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* ========== SMARTPHONES GRANDES (576px) ========== */
@media (max-width: 576px) {
    :root {
        --container-padding: 1.25rem;
    }

    .hero {
        padding: calc(var(--header-height) + 1rem) var(--container-padding) 2.5rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }
    
    .hero-text h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .hero-text p {
        font-size: 0.95rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-item {
        min-width: 70px;
    }
    
    .stat-number {
        font-size: 1.35rem;
    }
    
    .form-container {
        padding: 1.25rem;
        border-radius: var(--radius-lg);
    }
    
    .form-header h3 {
        font-size: 1.25rem;
    }
    
    .form-header p {
        font-size: 0.85rem;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .radio-option {
        min-width: 100%;
    }
    
    .radio-option label {
        padding: 0.65rem 0.5rem;
        font-size: 0.85rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
    }
    
    .benefit-icon i {
        font-size: 1.5rem;
    }
    
    .carousel-container {
        padding: 0 0.75rem;
    }
    
    .property-card {
        flex: 0 0 270px;
    }
    
    .property-image {
        height: 180px;
    }
    
    .property-content {
        padding: 1.25rem;
    }
    
    .property-name {
        font-size: 1.1rem;
    }
    
    .property-price {
        font-size: 1.25rem;
    }
    
    .property-details {
        gap: 0.75rem;
    }
    
    .property-detail {
        font-size: 0.8rem;
    }
    
    .urgency-icon {
        width: 60px;
        height: 60px;
    }
    
    .urgency-icon i {
        font-size: 2rem;
    }
    
    .urgency-text h2 {
        font-size: 1.25rem;
    }
    
    .time-box {
        padding: 0.75rem 1rem;
        min-width: 65px;
    }
    
    .time-number {
        font-size: 1.35rem;
    }
    
    .time-label {
        font-size: 0.65rem;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .footer {
        padding: 2.5rem var(--container-padding) 1.5rem;
    }
    
    .footer h4 {
        font-size: 1rem;
    }
}

/* ========== SMARTPHONES PEQUENOS (400px) ========== */
@media (max-width: 400px) {
    :root {
        --container-padding: 1rem;
    }

    .logo {
        font-size: 1.25rem;
    }
    
    .logo-icon {
        font-size: 1.5rem;
    }
    
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .hero-stats {
        justify-content: space-between;
    }
    
    .stat-item {
        min-width: 60px;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .form-container {
        padding: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .property-card {
        flex: 0 0 240px;
    }
    
    .property-image {
        height: 160px;
    }
    
    .property-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .property-btn {
        width: 100%;
    }
    
    .urgency-text h2 {
        font-size: 1.1rem;
    }
    
    .countdown {
        gap: 0.5rem;
    }
    
    .time-box {
        padding: 0.5rem 0.75rem;
        min-width: 55px;
    }
    
    .time-number {
        font-size: 1.1rem;
    }
    
    .cta-content h2 {
        font-size: 1.4rem;
    }
    
    .cta-content p {
        font-size: 0.9rem;
    }
    
    .modal-content {
        padding: 1rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
}

/* ========== TOUCH DEVICES (Ajustes finos) ========== */
@media (hover: none) and (pointer: coarse) {
    .nav-link:hover::after {
        width: 0;
    }
    
    .benefit-card:hover {
        transform: none;
    }
    
    .property-card:hover {
        transform: none;
    }
    
    .property-card:hover .property-image img {
        transform: none;
    }
    
    .testimonial-card:hover {
        transform: none;
    }
    
    .btn-cta-header:active {
        transform: scale(0.98);
    }
    
    .carousel-btn:active {
        transform: translateY(-50%) scale(0.95);
    }
}

/* ========== LANDSCAPE MOBILE ========== */
@media (max-width: 900px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: calc(var(--header-height) + 1rem) var(--container-padding) 2rem;
    }
    
    .hero-content {
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 1.75rem;
    }
    
    .hero-stats {
        margin-bottom: 1rem;
    }
    
    .form-container {
        padding: 1.25rem;
    }
    
    section {
        padding: 3rem var(--container-padding);
    }
}

/* ========== REDUÇÃO DE MOVIMENTO ========== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scroll-indicator {
        animation: none;
    }
    
    .scroll-mouse::before {
        animation: none;
    }
}

/* ========== IMPRESSÃO ========== */
@media print {
    #mainHeader, 
    .menu-toggle, 
    .mobile-overlay, 
    .mobile-nav,
    .carousel-container,
    .urgency,
    .cta-final,
    .modal,
    .scroll-indicator {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        background: none !important;
        padding: 1rem;
    }
    
    .hero-text h1 {
        color: var(--text-dark);
    }
    
    .form-container {
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    body {
        background: white;
    }
}

/* Header Flutuante */
#mainHeader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: transform 0.3s ease, background 0.3s ease, padding 0.3s ease;
    background: transparent;
}

#mainHeader.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0;
}

/* ============================================
   GALLERY MODAL
   ============================================ */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 2rem;
}

.gallery-modal.active {
    opacity: 1;
    visibility: visible;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.gallery-content {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.gallery-modal.active .gallery-content {
    transform: scale(1);
}

.gallery-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    color: var(--white);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.gallery-close:hover {
    background: var(--accent-red);
    transform: rotate(90deg);
}

.gallery-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--bg-light-2);
}

.gallery-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.gallery-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.gallery-location i {
    color: var(--accent-red);
}

.gallery-slider {
    position: relative;
    overflow: hidden;
    background: #000;
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease;
}

.gallery-image {
    flex: 0 0 100%;
    height: 400px;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.gallery-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: var(--bg-light);
}

.gallery-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary-blue);
    font-size: 1.25rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.gallery-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.gallery-dots {
    display: flex;
    gap: 0.5rem;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background: var(--primary-blue);
    width: 30px;
    border-radius: 5px;
}

.gallery-thumbnails {
    display: flex;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    overflow-x: auto;
    background: var(--white);
}

.gallery-thumb {
    flex: 0 0 100px;
    height: 70px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-thumb.active {
    opacity: 1;
    border-color: var(--primary-blue);
}

.gallery-thumb:hover {
    opacity: 1;
}

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

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-modal {
        padding: 0;
    }
    
    .gallery-content {
        max-height: 100vh;
        border-radius: 0;
    }
    
    .gallery-image {
        height: 300px;
    }
    
    .gallery-header {
        padding: 1rem;
    }
    
    .gallery-header h3 {
        font-size: 1.25rem;
    }
    
    .gallery-thumbnails {
        padding: 0.75rem 1rem;
    }
    
    .gallery-thumb {
        flex: 0 0 80px;
        height: 55px;
    }
}

@media (max-width: 480px) {
    .gallery-image {
        height: 220px;
    }
    
    .gallery-nav {
        padding: 0.75rem 1rem;
    }
    
    .gallery-btn {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .property-badge {
        display: none;
    }
    
    .property-image {
        height: 180px;
    }
}

/* ============================================
   RESPONSIVIDADE MOBILE - HERO
   ============================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        max-width: 500px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.25rem;
    }
    
    .hero-text p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-trust {
        display: flex;
        justify-content: center;
    }
    
    .btn-hero {
        margin: 0 auto;
    }
    
    .mini-form-container {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: calc(var(--header-height) + 1rem) 1.5rem 3rem;
        min-height: auto;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 1.85rem;
        line-height: 1.3;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 1;
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .mini-form {
        padding: 1.5rem;
    }
    
    .mini-form-header span {
        font-size: 1rem;
    }
    
    .mini-form-subtitle {
        font-size: 0.85rem;
    }
    
    .btn-whatsapp-hero {
        padding: 0.875rem 1rem;
    }
    
    .btn-whatsapp-hero span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: calc(var(--header-height) + 0.75rem) 1rem 2rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }
    
    .hero-text h1 {
        font-size: 1.6rem;
    }
    
    .hero-text p {
        font-size: 0.95rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-item {
        min-width: 70px;
    }
    
    .stat-number {
        font-size: 1.35rem;
    }
    
    .trust-badge {
        padding: 0.5rem 1rem;
    }
    
    .trust-badge span {
        font-size: 0.85rem;
    }
    
    .btn-hero {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}
/* Logo com imagem */
.logo {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* Mobile */
@media (max-width: 768px) {
    .logo-img {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 42px;
    }
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
}

/* ============================================
   WHATSAPP FLUTUANTE - PROFISSIONAL
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2), 
                0 8px 25px rgba(37, 211, 102, 0.35);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 100;
    text-decoration: none;
    font-family: var(--font-heading);
    border: none;
    cursor: pointer;
    animation: slideInUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.15);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25), 
                0 12px 40px rgba(37, 211, 102, 0.45);
}

.whatsapp-float:active {
    transform: translateY(-2px) scale(1.08);
}

.whatsapp-float:focus {
    outline: 2px solid rgba(37, 211, 102, 0.5);
    outline-offset: 4px;
}

.whatsapp-icon {
    width: 56px;
    height: 56px;
    filter: brightness(0) invert(1);
    display: block;
}

.whatsapp-tooltip {
    position: absolute;
    bottom: calc(100% + 16px);
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    backdrop-filter: blur(10px);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 12px;
    width: 12px;
    height: 12px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 2px;
    transform: rotate(45deg);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 12px);
}

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

/* Responsivo Mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 80px;
        height: 80px;
    }
    
    .whatsapp-icon {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-tooltip {
        bottom: calc(100% + 12px);
        right: -10px;
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }
    
    .whatsapp-float:hover .whatsapp-tooltip {
        bottom: calc(100% + 10px);
    }
}

/* Suporte para telas pequenas */
@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
        width: 72px;
        height: 72px;
    }
    
    .whatsapp-icon {
        width: 44px;
        height: 44px;
    }
        right: 1rem;
        width: 52px;
        height: 52px;
    }
    
    .whatsapp-icon {
        width: 24px;
        height: 24px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}