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

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--text-main);
            background-color: var(--bg-body);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', Georgia, serif;
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.2;
        }

        a { text-decoration: none; color: inherit; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
        ul { list-style: none; }
        img { max-width: 100%; }

        .container {
            width: 100%;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* ═══ ANIMAÇÕES ═══ */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeInLeft {
            from { opacity: 0; transform: translateX(-30px); }
            to { opacity: 1; transform: translateX(0); }
        }
        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(30px); }
            to { opacity: 1; transform: translateX(0); }
        }
        @keyframes scaleIn {
            from { opacity: 0; transform: scale(0.95); }
            to { opacity: 1; transform: scale(1); }
        }
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }
        @keyframes shimmer {
            0% { background-position: -200% 0; }
            100% { background-position: 200% 0; }
        }
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        @keyframes pulse-glow {
            0%, 100% { box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.4); }
            50% { box-shadow: 0 0 0 15px rgba(var(--primary-rgb), 0); }
        }

        .animate-up { animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both; }
        .animate-left { animation: fadeInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) both; }
        .animate-right { animation: fadeInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) both; }
        .animate-scale { animation: scaleIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) both; }
        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }

        /* ═══ BOTÕES ═══ */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, var(--secondary-color), var(--primary));
            color: #fff !important;
            padding: 0.85rem 2rem;
            border: none;
            border-radius: 100px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            box-shadow: var(--shadow-primary);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        .btn-primary::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, transparent, rgba(255,255,255,0.2));
            opacity: 0;
            transition: opacity 0.3s;
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px -8px rgba(var(--primary-rgb), 0.45);
        }
        .btn-primary:hover::before { opacity: 1; }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: transparent;
            color: #fff;
            padding: 0.85rem 2rem;
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 100px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s;
            backdrop-filter: blur(4px);
        }
        .btn-outline:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.6);
            transform: translateY(-2px);
        }

        .btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--bg-soft);
            color: var(--text-dark);
            padding: 0.7rem 1.5rem;
            border: none;
            border-radius: 100px;
            font-weight: 600;
            font-size: 0.875rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        .btn-ghost:hover {
            background: var(--primary);
            color: #fff;
            transform: translateY(-2px);
        }

        /* ═══ BADGE ═══ */
        .badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            padding: 0.45rem 1rem;
            border-radius: 100px;
            backdrop-filter: blur(8px);
        }
        .badge-primary {
            background: rgba(var(--primary-rgb), 0.15);
            color: var(--primary);
        }
        .badge-white {
            background: rgba(255,255,255,0.2);
            color: #fff;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
        }
        .badge-accent {
            background: linear-gradient(135deg, var(--secondary-color), var(--primary));
            color: #fff;
        }

        /* ═══ SEÇÃO LABEL ═══ */
        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 1.25rem;
        }
        .section-label::before {
            content: '';
            width: 28px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary-color));
            border-radius: 10px;
        }

        /* ═══ HEADER / NAVBAR ═══ */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 9999;
            padding: 1.25rem 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .site-header.scrolled {
            background: rgba(255,255,255,0.92);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            box-shadow: 0 1px 40px rgba(0,0,0,0.06);
            padding: 0.75rem 0;
        }
        .site-header .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .site-header .logo img {
            max-height: 48px;
            width: auto;
            transition: all 0.3s;
        }
        .site-header .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            font-weight: 800;
            background: linear-gradient(135deg, #fff, rgba(255,255,255,0.7));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .site-header.scrolled .logo-text {
            background: linear-gradient(135deg, var(--secondary-color), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }
        .nav-menu a {
            padding: 0.5rem 1.1rem;
            font-size: 0.9rem;
            font-weight: 500;
            color: rgba(255,255,255,0.85);
            border-radius: 100px;
            transition: all 0.3s;
        }
        .nav-menu a:hover {
            color: #fff;
            background: rgba(255,255,255,0.12);
        }
        .site-header.scrolled .nav-menu a {
            color: var(--text-main);
        }
        .site-header.scrolled .nav-menu a:hover {
            color: var(--primary);
            background: rgba(var(--primary-rgb), 0.08);
        }
        .nav-menu a.active {
            color: #fff;
            background: rgba(255,255,255,0.2);
            font-weight: 700;
        }
        .site-header.scrolled .nav-menu a.active {
            color: var(--primary);
            background: rgba(var(--primary-rgb), 0.1);
        }

        .nav-contact-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: rgba(255,255,255,0.08);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,0.2);
            padding: 0.6rem 1.25rem;
            border-radius: 100px;
            color: #fff;
            font-size: 0.9rem;
            font-weight: 700;
            transition: all 0.3s;
        }
        .nav-contact-btn i {
            width: 32px;
            height: 32px;
            background: #25d366;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
        }
        .nav-contact-btn:hover {
            background: #fff;
            color: var(--primary);
            border-color: #fff;
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        .site-header.scrolled .nav-contact-btn {
            background: var(--bg-soft);
            color: var(--text-dark);
            border-color: var(--border-light);
        }
        .site-header.scrolled .nav-contact-btn:hover {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }

        /* Menu Mobile */
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .site-header.scrolled .mobile-toggle { color: var(--text-dark); }

        @media (max-width: 768px) {
            .nav-menu {
                display: flex;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: linear-gradient(135deg, var(--secondary-color) 0%, #0a0f1e 100%);
                backdrop-filter: blur(15px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 2rem;
                z-index: 9999;
                opacity: 0;
                visibility: hidden;
                transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
                transform: translateY(-20px);
            }
            .nav-menu.mobile-open {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }
            .nav-menu a {
                font-size: 1.5rem;
                color: #fff !important;
                background: none !important;
                width: auto;
                text-align: center;
            }
            .nav-menu a:hover {
                transform: scale(1.1);
                color: var(--primary) !important;
            }
            .nav-contact-btn { display: none !important; }
            .mobile-toggle { 
                display: block; 
                position: relative;
                z-index: 10000;
            }
            body.menu-open { overflow: hidden; }
        }

        /* ═══ FOOTER PREMIUM ═══ */
        .site-footer {
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary) 100%);
            color: #fff;
            padding: 6rem 0 0;
            margin-top: 6rem;
            position: relative;
            overflow: hidden;
        }
        .site-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
        }
        .footer-top {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 4rem;
            padding-bottom: 4rem;
        }
        .footer-about p {
            color: var(--text-light);
            font-size: 0.9rem;
            line-height: 1.7;
            margin-top: 1.5rem;
        }
        .footer-col h5 {
            color: #fff;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            letter-spacing: 0.03em;
        }
        .footer-col ul li { margin-bottom: 0.85rem; }
        .footer-col ul li a {
            color: var(--text-light);
            font-size: 0.875rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s;
        }
        .footer-col ul li a:hover {
            color: #fff;
            transform: translateX(4px);
        }
        .footer-social {
            display: flex;
            gap: 0.75rem;
            margin-top: 1.5rem;
        }
        .footer-social a {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-size: 1rem;
            transition: all 0.3s;
        }
        .footer-social a:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
            transform: translateY(-3px);
            box-shadow: var(--shadow-primary);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.06);
            padding: 2rem 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text-light);
            font-size: 0.825rem;
        }

        @media (max-width: 768px) {
            .footer-top { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
            .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
            .footer-col h5::after { left: 50%; transform: translateX(-50%); }
            .footer-social { justify-content: center; }
            .footer-col ul li a { justify-content: center; }
            .whatsapp-float, .scroll-top-btn { display: none !important; }
        }

        /* ═══ INTERNAL PAGES HERO ═══ */
        .internal-page-header {
            padding: 12rem 0 7rem;
            background-color: var(--secondary-color);
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        .internal-page-header::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(165deg, rgba(var(--primary-rgb), 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
            z-index: 1;
        }
        .internal-header-content { position: relative; z-index: 2; }
        .internal-header-content h1 { color: #fff; font-size: clamp(2.5rem, 5vw, 3.5rem); margin-bottom: 1rem; }
        .internal-header-content p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

        /* ═══ ABOUT PAGE ═══ */
        .about-main-section { padding: 8rem 0; }
        .about-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
        .about-text-content h2 { font-size: 2.75rem; margin-bottom: 2rem; line-height: 1.2; }
        .about-text-content .description { color: var(--text-main); font-size: 1.1rem; line-height: 1.9; }
        
        .values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; margin-top: 4rem; }
        .value-card { 
            background: var(--bg-body); padding: 4rem 3rem; border-radius: var(--radius-lg); 
            border: 1px solid var(--border-light); transition: all 0.4s; text-align: center;
        }
        .value-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); background: #fff; }
        .value-icon-box { 
            width: 72px; height: 72px; border-radius: 20px; display: flex; align-items: center; 
            justify-content: center; font-size: 1.75rem; margin: 0 auto 2rem;
        }

        /* ═══ CONTACT PAGE ═══ */
        .contact-page-section { padding: 5rem 0 8rem; }
        .contact-page-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; }
        .contact-info-card { 
            display: flex; align-items: center; gap: 1.5rem; padding: 1.5rem; 
            background: var(--bg-card); border-radius: var(--radius-lg); 
            border: 1px solid var(--border-light); box-shadow: var(--shadow-sm); transition: all 0.3s; 
        }
        .contact-info-card:hover { transform: translateX(10px); border-color: var(--primary); box-shadow: var(--shadow-md); }
        .contact-info-icon { 
            width: 56px; height: 56px; border-radius: 16px; display: flex; 
            align-items: center; justify-content: center; font-size: 1.25rem; color: #fff; flex-shrink: 0; 
        }
        
        .contact-form-container { 
            background: var(--bg-card); border-radius: var(--radius-xl); padding: 3.5rem; 
            box-shadow: var(--shadow-lg); border: 1px solid var(--border-light); 
        }
        .contact-form-container .form-group { margin-bottom: 1.5rem; }
        .contact-form-container label { display: block; font-weight: 700; font-size: 0.85rem; margin-bottom: 0.6rem; color: var(--text-dark); text-transform: uppercase; letter-spacing: 0.05em; }
        .contact-form-container .form-control { 
            width: 100%; padding: 1rem 1.25rem; background: var(--bg-soft); 
            border: 2px solid transparent; border-radius: 1rem; 
            font-size: 1rem; color: var(--text-dark); transition: all 0.3s;
        }
        .contact-form-container .form-control:focus { background: #fff; border-color: var(--primary); outline: none; box-shadow: var(--shadow-md); }
        
        .contact-map-container { margin-top: -3rem; position: relative; z-index: 1; height: 500px; width: 100%; border-radius: var(--radius-xl) var(--radius-xl) 0 0; overflow: hidden; box-shadow: var(--shadow-xl); }

        /* ═══ SCROLL TO TOP ═══ */
        .scroll-top-btn {
            position: fixed;
            bottom: 3rem;
            right: 3rem;
            z-index: 9998;
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            color: var(--text-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.15rem;
            cursor: pointer;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
        }
        .scroll-top-btn.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .scroll-top-btn:hover {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: var(--shadow-primary);
        }

        /* ═══ PAGE LIST & DETAIL ═══ */
        .page-list-section { padding: 4rem 0 6rem; }
        .page-list-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 2rem; }
        .page-card { 
            background: var(--bg-card); border-radius: var(--radius-lg); padding: 2.5rem; 
            box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); 
            transition: all 0.4s; display: flex; flex-direction: column; 
        }
        .page-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(var(--primary-rgb), 0.15); }
        .page-icon-box { 
            width: 52px; height: 52px; border-radius: 14px; background: rgba(var(--primary-rgb), 0.1); 
            display: flex; align-items: center; justify-content: center; font-size: 1.25rem; 
            color: var(--primary); margin-bottom: 1.5rem; 
        }
        .page-card-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }
        .page-card-excerpt { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; margin-bottom: 2rem; flex: 1; }
        .page-card-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--primary); font-weight: 700; font-size: 0.9rem; width: fit-content; }
        
        .page-detail-section { padding: 4rem 0 6rem; }
        .page-detail-box { 
            background: var(--bg-card); border-radius: var(--radius-xl); padding: 4rem; 
            box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); 
        }
        .page-body { font-size: 1.1rem; line-height: 1.85; color: var(--text-main); }
        .page-body h2, .page-body h3 { margin: 2rem 0 1rem; color: var(--text-dark); }
        .page-body p { margin-bottom: 1.5rem; }
        .page-body img { border-radius: var(--radius-lg); margin: 2rem 0; box-shadow: var(--shadow-md); max-width: 100%; }
        .page-body ul, .page-body ol { padding-left: 1.5rem; margin-bottom: 1.5rem; }
        .page-body li { margin-bottom: 0.5rem; }
        
        @media (max-width: 768px) {
            .page-detail-box { padding: 2rem; }
        }

        /* ═══ FAQ PAGE ═══ */
        .faq-page-section { padding: 4rem 0 6rem; }
        .faq-container { max-width: 850px; margin: 0 auto; display: grid; gap: 1rem; }
        .faq-item-card {
            background: var(--bg-card); border-radius: var(--radius);
            border: 1px solid var(--border-light); overflow: hidden;
            box-shadow: var(--shadow-xs); transition: all 0.3s;
        }
        .faq-item-card:hover { box-shadow: var(--shadow-sm); }
        .faq-item-card.active { border-color: rgba(var(--primary-rgb), 0.2); box-shadow: var(--shadow-sm); }
        .faq-btn {
            width: 100%; padding: 1.5rem 2rem; background: none; border: none;
            text-align: left; display: flex; justify-content: space-between; align-items: center;
            cursor: pointer; gap: 1rem;
        }
        .faq-btn span { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--text-dark); }
        .faq-icon-box {
            width: 36px; height: 36px; border-radius: 50%; background: var(--bg-soft);
            display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.4s;
        }
        .faq-icon-box i { color: var(--primary); font-size: 0.8rem; transition: transform 0.3s; }
        .faq-item-card.active .faq-icon-box { background: rgba(var(--primary-rgb), 0.1); transform: rotate(45deg); }
        .faq-answer-wrapper { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
        .faq-answer-inner { padding: 0 2rem 1.5rem; }
        .faq-answer-text { padding-top: 0.5rem; border-top: 1px solid var(--border-light); color: var(--text-main); line-height: 1.75; font-size: 0.95rem; }
        .faq-answer-text p { margin-top: 1rem; }
        
        .faq-empty { text-align: center; padding: 5rem 0; }
        .faq-empty i { font-size: 3.5rem; color: var(--border); margin-bottom: 1.5rem; display: block; }
        .faq-empty h3 { color: var(--text-light); font-family: 'Plus Jakarta Sans', sans-serif; }
        
        .faq-cta-card {
            text-align: center; margin-top: 4rem; padding: 3rem; background: var(--bg-card);
            border-radius: var(--radius-xl); border: 1px solid var(--border-light); box-shadow: var(--shadow-sm);
        }
        .faq-cta-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.25rem; margin-bottom: 0.75rem; }
        .faq-cta-card p { color: var(--text-light); margin-bottom: 2rem; }

        /* ═══ BLOG DETAIL PAGE ═══ */
        .blog-featured-image-section { margin-top: -3rem; margin-bottom: 3rem; position: relative; z-index: 5; }
        .blog-featured-image-box { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); aspect-ratio: 16/7; background: var(--bg-card); }
        .blog-featured-image-box img { width: 100%; height: 100%; object-fit: cover; }
        .blog-article-section { padding: 0 0 6rem; }
        .blog-content-container { max-width: 800px; margin: 0 auto; }
        .blog-body { font-size: 1.1rem; line-height: 1.9; color: var(--text-main); }
        .blog-body h2, .blog-body h3 { margin: 2.5rem 0 1.25rem; color: var(--text-dark); }
        .blog-body p { margin-bottom: 1.5rem; }
        .blog-body img { border-radius: var(--radius-lg); margin: 2rem 0; box-shadow: var(--shadow-md); max-width: 100%; }
        .blog-body blockquote { 
            border-left: 4px solid var(--primary); padding: 1.5rem 2rem; margin: 2.5rem 0; 
            background: var(--bg-soft); border-radius: 0 var(--radius-lg) var(--radius-lg) 0; 
            font-style: italic; color: var(--text-dark); font-size: 1.15rem;
        }
        .blog-body ul, .blog-body ol { margin-bottom: 1.5rem; padding-left: 1.5rem; }
        .blog-body li { margin-bottom: 0.5rem; }
        .blog-share-bar { 
            margin-top: 4rem; padding-top: 2.5rem; border-top: 1px solid var(--border-light); 
            display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; 
        }
        .blog-share-label { font-weight: 700; color: var(--text-dark); font-size: 0.95rem; }
        .blog-share-links { display: flex; gap: 0.75rem; }
        .share-btn { 
            width: 44px; height: 44px; border-radius: 12px; background: var(--bg-soft); 
            display: flex; align-items: center; justify-content: center; color: var(--text-light); transition: all 0.3s; 
        }
        .share-btn:hover { background: var(--primary); color: #fff; transform: translateY(-3px); box-shadow: var(--shadow-sm); }
        .share-btn.btn-facebook:hover { background: #1877f2; }
        .share-btn.btn-twitter:hover { background: #1da1f2; }
        .share-btn.btn-whatsapp:hover { background: #25d366; }

        /* ═══ CAPTIVE PROPERTY CARDS & CATALOG ═══ */
        .catalog-section { padding: 4rem 0 6rem; }
        .catalog-layout { display: grid; grid-template-columns: 320px 1fr; gap: 3rem; }
        .blog-layout { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; }
        
        .filter-sidebar { 
            background: var(--bg-card); border-radius: var(--radius-lg); padding: 2rem; 
            box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); 
            height: fit-content; position: sticky; top: 100px;
        }
        .filter-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 2rem; display: flex; align-items: center; gap: 0.5rem; }
        .filter-group { margin-bottom: 1.75rem; }
        .filter-label { display: block; font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-light); margin-bottom: 0.6rem; }
        .filter-control { 
            width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--border); 
            border-radius: 0.75rem; outline: none; font-size: 0.9rem; 
            background: var(--bg-soft); color: var(--text-dark); transition: all 0.3s;
        }
        .filter-control:focus { border-color: var(--primary); background: #fff; }
        
        .rooms-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; }
        .room-btn { 
            padding: 0.6rem; border: 1px solid var(--border); background: var(--bg-soft); 
            color: var(--text-main); border-radius: 0.5rem; cursor: pointer; 
            font-weight: 700; font-size: 0.85rem; transition: all 0.2s; 
        }
        .room-btn.active { border-color: var(--primary); background: rgba(var(--primary-rgb), 0.1); color: var(--primary); }
        .room-btn:hover:not(.active) { border-color: var(--border-light); background: #fff; }
        
        .catalog-results-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
        .catalog-results-header p { font-size: 0.95rem; color: var(--text-light); }
        .sort-select { 
            padding: 0.6rem 1.25rem; border: 1px solid var(--border); border-radius: 100px; 
            font-size: 0.85rem; font-weight: 500; outline: none; cursor: pointer; 
            background: var(--bg-card); transition: all 0.3s;
        }
        .sort-select:focus { border-color: var(--primary); }
        
        .property-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem; }
        .property-card { 
            background: var(--bg-card); border-radius: var(--radius-lg); overflow: hidden; 
            box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); 
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .property-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
        .property-image-box { height: 220px; overflow: hidden; position: relative; }
        .property-image-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
        .property-card:hover .property-image-box img { transform: scale(1.06); }
        .property-content { padding: 1.5rem; }
        .property-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.4rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--text-dark); }
        .property-location { color: var(--text-light); font-size: 0.825rem; margin-bottom: 1rem; }
        
        .property-stats { display: flex; gap: 1rem; margin-bottom: 1.25rem; }
        .property-stat-item { 
            font-size: 0.8rem; color: var(--text-light); background: var(--bg-soft); 
            padding: 0.35rem 0.65rem; border-radius: 6px; display: inline-flex; align-items: center; gap: 0.4rem; 
        }
        
        .property-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 1rem; border-top: 1px solid var(--border-light); }
        .property-price { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 800; color: var(--primary); }

        /* Property Detail Page */
        .property-header { padding: 10rem 0 4rem; background-color: var(--secondary-color); position: relative; overflow: hidden; }
        .property-header-info { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 2rem; }
        .property-header-title { color: #fff; font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 0.75rem; }
        .property-header-meta { color: rgba(255,255,255,0.65); font-size: 1.05rem; }
        .property-header-price-label { display: block; color: rgba(255,255,255,0.5); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
        .property-header-price { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800; color: #fff; }

        .property-gallery-grid { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: repeat(2, 250px); gap: 1rem; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
        .property-gallery-grid.grid-0, .property-gallery-grid.grid-1 { grid-template-columns: 1fr; grid-template-rows: 600px; }
        .property-gallery-grid.grid-2 { grid-template-columns: 1.6fr 1fr; grid-template-rows: 500px; }
        .property-gallery-grid.grid-2 .property-gallery-main { grid-row: span 1; }
        
        .property-gallery-main { grid-row: span 2; overflow: hidden; position: relative; }
        .property-gallery-item { overflow: hidden; position: relative; cursor: pointer; }
        .property-gallery-more { position: absolute; inset: 0; background: rgba(0,0,0,0.5); backdrop-filter: blur(3px); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 1.5rem; transition: background 0.3s; }
        .property-gallery-more:hover { background: rgba(0,0,0,0.4); }

        .property-details-layout { display: grid; grid-template-columns: 1fr 400px; gap: 4rem; align-items: start; }
        .property-features-bar { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1rem; margin-bottom: 3rem; background: var(--bg-card); padding: 2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); }
        .property-feature-box { text-align: center; }
        .property-feature-icon { width: 48px; height: 48px; border-radius: 14px; background: rgba(var(--primary-rgb), 0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 0.75rem; color: var(--primary); font-size: 1.1rem; }
        .property-feature-value { font-size: 1.25rem; font-weight: 800; color: var(--text-dark); display: block; }
        .property-feature-label { font-size: 0.75rem; color: var(--text-light); text-transform: uppercase; font-weight: 600; letter-spacing: 0.05em; }

        .property-section-title { font-size: 1.75rem; margin-bottom: 1.5rem; color: var(--text-dark); }
        .property-description { color: var(--text-main); font-size: 1.05rem; line-height: 1.85; margin-bottom: 3rem; }
        .property-amenities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 0.75rem; margin-bottom: 3rem; }
        .property-amenity-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.85rem 1rem; background: var(--bg-soft); border-radius: 0.75rem; font-weight: 500; font-size: 0.9rem; color: var(--text-dark); border: 1px solid var(--border-light); }

        .property-sidebar-widget { background: var(--bg-card); border-radius: var(--radius-xl); padding: 2.5rem; box-shadow: var(--shadow-md); border: 1px solid var(--border-light); position: sticky; top: 100px; }
        .property-broker-info { text-align: center; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border-light); }
        .property-rental-widget { margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border-light); }
        .property-contact-form .form-control { width: 100%; padding: 0.85rem 1rem; border: 1px solid var(--border); border-radius: 0.75rem; outline: none; font-size: 0.9rem; background: var(--bg-soft); transition: all 0.3s; margin-bottom: 1rem; }
        .property-contact-form .form-control:focus { border-color: var(--primary); background: #fff; }

        @media (max-width: 992px) {
            .catalog-layout, .property-details-layout, .blog-layout { grid-template-columns: 1fr; }
            .filter-sidebar, .property-sidebar-widget { position: static; }
        }
        @media (max-width: 768px) {
            .property-gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
            .property-gallery-main { grid-row: span 1; }
        }

        /* ═══ SELL PROPERTY FORM ═══ */
        .sell-property-section { padding: 4rem 0 6rem; }
        .sell-property-container { max-width: 1000px; margin: 0 auto; }
        .form-stepper { display: flex; justify-content: center; gap: 1rem; margin-bottom: 3.5rem; flex-wrap: wrap; }
        .form-step { display: flex; align-items: center; gap: 0.75rem; }
        .form-step-number { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 800; }
        .form-step-number.active { background: linear-gradient(135deg, var(--primary), var(--secondary-color)); color: #fff; }
        .form-step-number.inactive { background: var(--bg-soft); color: var(--text-light); border: 2px solid var(--border); }
        .form-step-title { font-weight: 600; font-size: 0.85rem; }
        .form-step-title.active { color: var(--text-dark); }
        .form-step-title.inactive { color: var(--text-light); }
        .form-step-divider { width: 40px; height: 2px; background: var(--border); align-self: center; }
        
        .form-card { background: var(--bg-card); border-radius: var(--radius-xl); padding: 3rem; box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); margin-bottom: 2rem; }
        .form-card-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 2.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border-light); }
        .form-card-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
        .form-card-icon.primary { background: rgba(var(--primary-rgb), 0.1); color: var(--primary); }
        .form-card-icon.success { background: rgba(16, 185, 129, 0.1); color: var(--success); }
        .form-card-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.25rem; font-weight: 700; margin: 0; color: var(--text-dark); }
        .form-card-subtitle { color: var(--text-light); font-size: 0.825rem; margin: 0; }

        @media (max-width: 768px) {
            .form-stepper { flex-direction: column; align-items: flex-start; }
            .form-step-divider { display: none; }
            .form-card { padding: 1.5rem; }
        }

        /* ═══ MULTI USAGE ═══ */
        .section-padding { padding: 6rem 0; }
        .section-padding-lg { padding: 8rem 0; }

        .section-header-flex {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 3.5rem;
        }
        @media (max-width: 768px) {
            .section-header-flex { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
        }

        /* Hero Premium */
        .hero-premium {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            background-color: var(--secondary-color);
        }
        .hero-premium .container { position: relative; z-index: 2; padding-top: 6rem; padding-bottom: 6rem; }
        .hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
        
        .hero-decorative-circle {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            z-index: 1;
        }
        .hero-decorative-1 { top: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(var(--primary-rgb), 0.15) 0%, transparent 70%); }
        .hero-decorative-2 { bottom: -100px; left: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(var(--primary-rgb), 0.1) 0%, transparent 70%); }

        .hero-title { font-size: clamp(2.5rem, 5vw, 4rem); color: #fff; margin-bottom: 1.75rem; line-height: 1.1; }
        .hero-title span { background: linear-gradient(135deg, var(--accent), var(--accent-warm)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .hero-subtitle { font-size: 1.15rem; color: rgba(255,255,255,0.75); margin-bottom: 2.5rem; max-width: 500px; line-height: 1.7; }
        .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
        
        .hero-stats-row { display: flex; gap: 3rem; margin-top: 4rem; padding-top: 3rem; border-top: 1px solid rgba(255,255,255,0.1); }
        .hero-stat-item span:first-child { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 800; color: #fff; display: block; }
        .hero-stat-item span:last-child { color: rgba(255,255,255,0.6); font-size: 0.85rem; font-weight: 500; }

        /* Search Card Glass */
        .search-card-premium {
            background: rgba(255,255,255,0.08);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: var(--radius-xl);
            padding: 2.5rem;
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }
        .search-card-title { color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.25rem; font-weight: 700; margin-bottom: 2rem; }
        .search-card-title i { color: var(--accent); margin-right: 0.5rem; }
        
        .search-field { margin-bottom: 1.25rem; }
        .search-field label { display: block; color: rgba(255,255,255,0.6); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
        .search-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.25rem; }
        .search-input { 
            width: 100%; 
            padding: 0.85rem 1rem; 
            background: rgba(255,255,255,0.08); 
            border: 1px solid rgba(255,255,255,0.15); 
            border-radius: 0.75rem; 
            color: #fff; 
            font-size: 0.95rem; 
            outline: none; 
            transition: all 0.3s;
        }
        .search-input:focus { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.3); }
        .search-input::placeholder { color: rgba(255,255,255,0.6) !important; }
        .search-input option { color: #333; }
        .btn-search-submit { width: 100%; justify-content: center; padding: 1.15rem !important; font-size: 1.1rem !important; }
        .badge-hero { margin-bottom: 1.5rem; background: rgba(255,255,255,0.15) !important; backdrop-filter: blur(5px); }
        .btn-hero { font-size: 1.05rem !important; padding: 1rem 2.5rem !important; }

        .wave-bottom { position: absolute; bottom: -2px; left: 0; right: 0; z-index: 5; }
        .wave-bottom svg { display: block; width: 100%; height: 80px; }

        /* ═══ CONTACT SECTION ═══ */
        .contact-section { background: var(--bg-card); position: relative; overflow: hidden; padding: 100px 0; }
        .contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: flex-start; }
        .contact-info-list { display: grid; gap: 2rem; margin-top: 3rem; }
        .contact-info-item { display: flex; gap: 1.25rem; align-items: center; }
        .contact-icon-box { 
            width: 56px; height: 56px; border-radius: 16px; 
            background: rgba(var(--primary-rgb), 0.1); 
            display: flex; align-items: center; justify-content: center; 
            color: var(--primary); font-size: 1.25rem; flex-shrink: 0; 
        }
        .contact-info-content h5 { font-size: 1.15rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.25rem; }
        .contact-info-content p { color: var(--text-main); font-weight: 500; font-size: 1rem; }
        
        .contact-map-wrapper { 
            margin-top: 3rem; width: 100%; height: 350px; 
            border-radius: var(--radius-lg); overflow: hidden; 
            box-shadow: var(--shadow-md); border: 1px solid var(--border); 
        }
        
        .contact-form-card { 
            padding: 3rem; background: var(--bg-soft); 
            border-radius: var(--radius-xl); border: 1px solid var(--border-light); 
            box-shadow: var(--shadow-lg); 
        }
        .contact-form .form-group { margin-bottom: 1.5rem; }
        .contact-form label { display: block; font-size: 0.85rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.6rem; text-transform: uppercase; letter-spacing: 0.05em; }
        .contact-form .form-control { 
            width: 100%; padding: 1rem 1.25rem; background: #fff; 
            border: 2px solid transparent; border-radius: 1rem; 
            font-size: 1rem; color: var(--text-dark); transition: all 0.3s;
            box-shadow: var(--shadow-sm); 
        }
        .contact-form .form-control:focus { border-color: var(--primary); outline: none; box-shadow: var(--shadow-md); }
        
        /* ═══ BLOG SECTION ═══ */
        .blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 2.5rem; }
        .blog-card {
            background: var(--bg-soft); border-radius: var(--radius-lg); overflow: hidden;
            box-shadow: var(--shadow-sm); transition: all 0.4s;
        }
        .blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
        .blog-card-image-box { height: 220px; overflow: hidden; position: relative; }
        .blog-card-image-box img { width: 100%; height: 100%; object-fit: cover; }
        .blog-card-date { position: absolute; bottom: 1rem; left: 1rem; z-index: 2; }
        .blog-card-content { padding: 2rem; }
        .blog-card-title { font-size: 1.25rem; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; margin-bottom: 1rem; }
        .blog-card-title a { color: var(--text-dark); transition: color 0.3s; }
        .blog-card-title a:hover { color: var(--primary); }
        .blog-card-excerpt { 
            color: var(--text-main); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; 
            display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
        }
        .blog-card-link { color: var(--primary); font-weight: 700; display: flex; align-items: center; gap: 0.5rem; font-size: 0.95rem; transition: gap 0.3s; }
        .blog-card-link:hover { gap: 0.75rem; }

        .section-white { background: var(--bg-card) !important; }

        /* ═══ TESTIMONIAL SECTION ═══ */
        .testimonial-section { position: relative; overflow: hidden; }
        .testimonial-decorative-bg { 
            position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; 
            border-radius: 50%; background: radial-gradient(circle, rgba(var(--primary-rgb), 0.05) 0%, transparent 70%); 
        }
        .container-relative { position: relative; z-index: 2; }
        .section-header-center { text-align: center; margin-bottom: 4rem; }
        .section-header-center .section-label { justify-content: center; }
        
        .testimonial-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem; }
        .testimonial-card {
            background: var(--bg-card); padding: 2.5rem; border-radius: var(--radius-xl);
            box-shadow: var(--shadow-sm); position: relative; transition: all 0.4s;
        }
        .testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
        .testimonial-quote-icon { 
            position: absolute; top: 1.5rem; right: 2rem; font-size: 3rem; 
            color: var(--primary); opacity: 0.1; font-family: serif; 
        }
        .testimonial-stars { display: flex; gap: 0.25rem; color: var(--accent); margin-bottom: 1.5rem; }
        .testimonial-text { color: var(--text-main); font-size: 1rem; line-height: 1.8; margin-bottom: 2rem; font-style: italic; }
        
        .testimonial-author { display: flex; align-items: center; gap: 1rem; padding-top: 1.5rem; border-top: 1px solid var(--border-light); }
        .testimonial-avatar { width: 50px; height: 50px; border-radius: 50%; overflow: hidden; background: var(--bg-soft); border: 2px solid #fff; box-shadow: var(--shadow-xs); }
        .testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
        .testimonial-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.1rem; }
        .testimonial-tag { color: var(--text-light); font-size: 0.825rem; font-weight: 500; }

        /* ═══ CTA SECTION ═══ */
        .cta-section-premium { position: relative; padding: 100px 0; text-align: center; overflow: hidden; color: #fff; }
        .cta-title { font-size: 3rem !important; margin-bottom: 1.5rem !important; max-width: 700px; margin-left: auto; margin-right: auto; font-weight: 800; color: #fff; }
        .cta-subtitle { font-size: 1.15rem; color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 3rem; line-height: 1.8; }
        .cta-actions { justify-content: center !important; }
        .btn-cta-white { background: #fff !important; color: var(--secondary) !important; box-shadow: var(--shadow-lg); border: none; }
        .btn-cta-white:hover { background: #f8fafc !important; transform: translateY(-3px); box-shadow: var(--shadow-xl); }

        @media (max-width: 768px) {
            .cta-title { font-size: 2rem !important; }
            .cta-actions { flex-direction: column; }
        }

        @media (max-width: 992px) {
            .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
            .contact-section { padding: 60px 0; }
        }

        /* ═══ NEIGHBORHOOD SECTION (BAIRROS) ═══ */
        .neighborhood-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
        .neighborhood-card {
            position: relative; height: 200px; border-radius: var(--radius-lg); overflow: hidden;
            display: flex; align-items: flex-end; padding: 2rem; box-shadow: var(--shadow-sm); transition: all 0.4s;
        }
        .neighborhood-card::after { 
            content: ''; position: absolute; inset: 0; 
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%); 
            transition: opacity 0.3s; z-index: 1;
        }
        .neighborhood-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
        .neighborhood-card:hover::after { opacity: 0.9; }
        
        .neighborhood-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
        .neighborhood-content { position: relative; z-index: 2; }
        .neighborhood-title { color: #fff; font-size: 1.25rem; font-weight: 700; margin-bottom: 0.25rem; }
        .neighborhood-link { color: rgba(255,255,255,0.7); font-size: 0.85rem; font-weight: 500; display: flex; align-items: center; gap: 0.5rem; }
        .neighborhood-link i { font-size: 0.7rem; }

        .section-soft { background: var(--bg-soft) !important; }

        /* ═══ ABOUT SECTION (BENEFICIOS) ═══ */
        .about-section { background: var(--bg-card); }
        .about-title { margin-bottom: 1.75rem !important; line-height: 1.15; }
        .about-subtitle { color: var(--text-main); font-size: 1.1rem; line-height: 1.8; margin-bottom: 2rem; }
        .about-feature-text { font-weight: 600; font-size: 0.9rem; color: var(--text-dark); }
        .decorative-dots { 
            position: absolute; top: -1.5rem; left: -1.5rem; width: 80px; height: 80px; 
            background: radial-gradient(circle, var(--accent) 2px, transparent 2px); 
            background-size: 12px 12px; opacity: 0.4; z-index: -1; 
        }
        .text-primary { color: var(--primary) !important; }

        /* ═══ UTILITIES & MISC ═══ */
        .section-title-large { font-size: 2.75rem; font-weight: 800; color: var(--text-dark); margin-bottom: 1rem; }
        .badge-property { position: absolute; top: 1rem; left: 1rem; padding: 0.5rem 1rem; font-weight: 700; }
        .btn-property-details { padding: 0.5rem 1.25rem !important; font-size: 0.9rem !important; }
        .empty-state-box { grid-column: 1 / -1; text-align: center; padding: 5rem 0; }
        .empty-state-box i { font-size: 3rem; color: var(--border); margin-bottom: 1.5rem; display: block; }
        .empty-state-box h3 { color: var(--text-light); font-family: 'Plus Jakarta Sans', sans-serif; }

        /* Property Card Premium */
        .property-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(380px, 1fr)); gap: 2rem; }
        
        .property-card-premium {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }
        .property-card-premium:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(var(--primary-rgb), 0.15); }
        
        .property-image-box { height: 260px; overflow: hidden; position: relative; }
        .property-image-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
        .property-card-premium:hover .property-image-box img { transform: scale(1.08); }
        .property-image-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%); pointer-events: none; }
        
        .property-photo-count { position: absolute; bottom: 1rem; right: 1rem; background: rgba(0,0,0,0.5); backdrop-filter: blur(8px); color: #fff; padding: 0.3rem 0.75rem; border-radius: 100px; font-size: 0.75rem; font-weight: 600; }
        
        .property-content { padding: 1.75rem; }
        .property-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--text-dark); }
        .property-location { color: var(--text-light); font-size: 0.85rem; display: flex; align-items: center; gap: 0.35rem; margin-bottom: 1.25rem; }
        
        .property-stats-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
        .property-stat-badge { display: flex; align-items: center; gap: 0.4rem; font-size: 0.825rem; color: var(--text-light); background: var(--bg-soft); padding: 0.4rem 0.8rem; border-radius: 8px; }
        .property-stat-badge i { color: var(--primary); font-size: 0.9rem; }
        
        .property-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 1.25rem; border-top: 1px solid var(--border-light); }
        .property-price-label { font-size: 0.7rem; color: var(--text-light); text-transform: uppercase; font-weight: 600; letter-spacing: 0.05em; }
        .property-price-value { display: block; font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 800; color: var(--primary); }

        /* About Section */
        .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
        .about-image-wrapper { position: relative; }
        .about-image-wrapper img { width: 100%; border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); aspect-ratio: 4/3; object-fit: cover; }
        
        .about-experience-card {
            position: absolute;
            bottom: -2rem;
            right: -2rem;
            background: linear-gradient(135deg, var(--secondary-color), var(--primary));
            color: #fff;
            padding: 2rem;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-primary);
            max-width: 200px;
            animation: float 6s ease-in-out infinite;
        }
        .about-experience-card span { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 800; line-height: 1; display: block; }
        
        .about-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 2.5rem; }
        .about-feature-item { display: flex; align-items: center; gap: 1rem; }
        .about-feature-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(var(--primary-rgb), 0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
        .about-feature-icon i { color: var(--primary); font-size: 0.9rem; }

        /* CTA Section */
        .cta-section-premium {
            padding: 8rem 0;
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary) 100%);
            background-size: 200% 200%;
            animation: gradientShift 8s ease infinite;
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        .cta-pattern { position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E"); pointer-events: none; }
        
        @media (max-width: 991px) {
            .hero-grid, .about-grid { grid-template-columns: 1fr; gap: 3rem; }
            .hero-stats-row { gap: 1.5rem; justify-content: space-between; }
            .about-experience-card { position: static; margin-top: 2rem; max-width: 100%; text-align: center; }
        }

        /* ═══ PAGINATION ═══ */
        .pagination-container { display: flex; justify-content: center; margin-top: 4rem; width: 100%; }
        .pagination-list { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; padding: 0; margin: 0; justify-content: center; }
        .page-numbers { 
            width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; 
            border-radius: 12px; background: var(--bg-card); color: var(--text-dark); 
            font-weight: 700; transition: all 0.3s; border: 1px solid var(--border-light); 
        }
        .page-numbers:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-2px); }
        .page-numbers.current { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: var(--shadow-sm); pointer-events: none; }

        /* ═══ IMOVEL DETALHE ═══ */
        .header-badges { display: flex; gap: 0.75rem; margin-bottom: 1.5rem; }
        .badge-accent-gradient { background: var(--primary); color: #fff; padding: 0.5rem 1rem; border-radius: 50px; font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; }
        .badge-blur { background: rgba(255,255,255,0.2); color: #fff; padding: 0.5rem 1rem; border-radius: 50px; font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; backdrop-filter: blur(5px); }
        
        .property-header-title-modern { color: #fff; font-size: clamp(2.5rem, 5vw, 3.5rem); margin-bottom: 1rem; text-shadow: 0 2px 10px rgba(0,0,0,0.3); font-family: 'Playfair Display', serif; }
        .property-header-meta-modern { color: rgba(255,255,255,0.9); font-size: 1.1rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
        .property-header-meta-modern .meta-item i { color: var(--primary); margin-right: 0.5rem; }
        
        .property-header-price-box {
            text-align: right; 
            background: rgba(255,255,255,0.1); 
            backdrop-filter: blur(15px); 
            padding: 1.5rem 2.5rem; 
            border-radius: 24px; 
            border: 1px solid rgba(255,255,255,0.2);
            box-shadow: var(--shadow-lg);
        }
        @media (max-width: 768px) {
            .property-header-price-box { text-align: left; width: 100%; margin-top: 2rem; }
            .property-header { padding: 10rem 0 4rem; margin-top: -80px; }
        }
        .property-header-price-box .price-label { display: block; color: rgba(255,255,255,0.7); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.25rem; }
        .property-header-price-box .price-value { color: #fff; font-size: 2.5rem; font-weight: 800; display: block; }

        /* Sidebar Fixes */
        .property-sidebar-widget { padding: 0 !important; overflow: hidden; background: transparent !important; border: none !important; box-shadow: none !important; }
        .sidebar-widget-item { background: #fff; padding: 2.5rem; border-radius: 24px; box-shadow: var(--shadow-md); border: 1px solid var(--border-light); margin-bottom: 2rem; }
        
        .sidebar-widget-title { font-size: 1.25rem; font-weight: 800; margin-bottom: 1.25rem; color: var(--text-dark); position: relative; padding-bottom: 0.75rem; }
        .sidebar-widget-title::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 3px; background: var(--primary); border-radius: 10px; }
        .sidebar-widget-subtitle { color: var(--text-light); font-size: 0.85rem; margin-bottom: 1.75rem; line-height: 1.6; }
        
        .sidebar-label { display: block; font-size: 0.75rem; font-weight: 700; color: var(--text-dark); text-transform: uppercase; margin-bottom: 0.6rem; letter-spacing: 0.5px; }
        .rental-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
        .rental-summary-box { display: none; background: var(--bg-soft); padding: 1.5rem; border-radius: 1rem; margin-bottom: 1.5rem; border: 1px solid var(--border-light); }
        .summary-line { display: flex; justify-content: space-between; font-size: 0.9rem; margin-bottom: 0.75rem; color: var(--text-main); }
        .summary-total { display: flex; justify-content: space-between; font-size: 1.25rem; font-weight: 800; color: var(--primary); padding-top: 0.75rem; border-top: 1px solid var(--border-light); }
        
        .form-row-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 0; }
        .form-row-grid .form-group { margin-bottom: 1.25rem; }
        .btn-submit-tour { margin-top: 0.5rem; width: 100% !important; }
        .form-group { margin-bottom: 1.25rem; }
        .booking-fields { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border-light); }
        .booking-fields h5 { font-size: 0.95rem; font-weight: 700; margin-bottom: 1.25rem; color: var(--text-dark); }
        
        .form-divider { position: relative; text-align: center; margin: 1.5rem 0; }
        .form-divider::before { content: ''; position: absolute; left: 0; top: 50%; width: 100%; height: 1px; background: var(--border); z-index: 1; }
        .form-divider span { position: relative; background: #fff; padding: 0 1rem; color: var(--text-light); font-size: 0.75rem; font-weight: 700; z-index: 2; text-transform: uppercase; }
        
        .btn-whatsapp-modern { 
            display: flex; justify-content: center; align-items: center; min-height: 54px; 
            background: #25d366; color: #fff; border-radius: 12px; font-weight: 700; text-decoration: none;
            transition: all 0.3s; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2); border: none;
        }
        .btn-whatsapp-modern:hover { background: #128c7e; color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3); }

        .form-control-modern { 
            width: 100%; padding: 1rem 1.25rem; background: var(--bg-soft); border: 2px solid transparent; 
            border-radius: 12px; font-size: 0.95rem; color: var(--text-dark); transition: all 0.3s; 
        }
        .form-control-modern:focus { border-color: var(--primary); background: #fff; box-shadow: var(--shadow-sm); outline: none; }
        
        .blog-featured-card { display: flex; gap: 1.25rem; text-decoration: none; margin-bottom: 1.5rem; transition: all 0.3s; align-items: flex-start; }
        .blog-featured-card:hover { transform: translateX(8px); }
        .blog-featured-thumb { width: 90px; height: 70px; flex-shrink: 0; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); }
        .blog-featured-thumb img { width: 100%; height: 100%; object-fit: cover; }
        .blog-featured-content h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.4rem; line-height: 1.4; transition: color 0.3s; }
        .blog-featured-content .blog-date { font-size: 0.8rem; color: var(--text-light); }
        .blog-featured-card:hover h4 { color: var(--primary); }

        /* Gallery */
        .property-gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); cursor: zoom-in; }
        .property-gallery-item:hover img, .property-gallery-main:hover img { transform: scale(1.05); }
        
        /* Flatpickr Customization */
        .flatpickr-calendar { box-shadow: var(--shadow-xl) !important; border-radius: 20px !important; border: 1px solid var(--border-light) !important; padding: 15px; }
        .flatpickr-day.selected { background: var(--primary) !important; border-color: var(--primary) !important; box-shadow: var(--shadow-primary) !important; }
        
        .btn-primary.w-100 { display: flex; justify-content: center; align-items: center; min-height: 54px; }

/* ═══════════════════════════════════════════
   MODERN FORM STYLES (MULTI-STEP & FLOATING)
   ═══════════════════════════════════════════ */
.form-floating-outline input,
.form-floating-outline select,
.form-floating-outline textarea {
    border-radius: 12px !important;
    border: 1px solid var(--border) !important;
    background: var(--bg-soft) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    padding-top: 1.625rem !important;
    padding-bottom: 0.625rem !important;
    height: auto !important;
    min-height: 58px !important;
    font-size: 0.95rem !important;
}

.form-floating-outline input:focus,
.form-floating-outline select:focus,
.form-floating-outline textarea:focus {
    border-color: var(--primary) !important;
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1) !important;
    outline: none !important;
}

.form-floating-outline label { 
    padding-left: 1.25rem !important;
    color: var(--text-light) !important;
    transition: all 0.2s ease !important;
}

.form-floating-outline input:focus ~ label,
.form-floating-outline input:not(:placeholder-shown) ~ label,
.form-floating-outline select:focus ~ label,
.form-floating-outline select:not([value=""]) ~ label {
    transform: scale(0.85) translateY(-0.85rem) translateX(0.15rem) !important;
    color: var(--primary) !important;
    background-color: transparent !important;
}

.select2-container--default .select2-selection--single {
    border-radius: 12px !important;
    border: 1px solid var(--border) !important;
    height: 58px !important;
    background: var(--bg-soft) !important;
    display: flex !important;
    align-items: center !important;
}

/* Crispy Tabs Styling - Segmented Control Look */
.nav-tabs {
    border: none !important;
    background: var(--bg-soft);
    padding: 5px;
    border-radius: 14px;
    display: inline-flex !important;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 4px;
}

.nav-tabs .nav-link {
    border: none !important;
    color: var(--text-light) !important;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.65rem 1.25rem !important;
    border-radius: 10px !important;
    transition: all 0.25s;
    background: transparent !important;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.nav-tabs .nav-link:hover {
    color: var(--primary) !important;
    background: rgba(var(--primary-rgb), 0.05) !important;
}

.nav-tabs .nav-link.active {
    background: #fff !important;
    color: var(--primary) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Stepper Panes Visibility */
.form-step-pane {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.5s ease;
}

.form-step-pane.active {
    display: block !important;
    opacity: 1;
    transform: translateY(0);
}

.form-step-number.active {
    background: var(--primary) !important;
    color: #fff !important;
    box-shadow: var(--shadow-primary) !important;
    transform: scale(1.1);
}

.form-step-title.active {
    color: var(--text-dark) !important;
    font-weight: 800 !important;
}

/* Fix for floating labels on Select and Textarea */
.form-floating-outline select ~ label,
.form-floating-outline textarea ~ label {
    background-color: transparent !important;
    pointer-events: none;
}

/* Ensure labels don't overlap with text in select when focused */
.form-floating-outline select:focus ~ label,
.form-floating-outline select:not([value=""]) ~ label {
    background-color: #fff !important; /* Semi-opaque background to cover border line */
    padding: 0 6px !important;
    margin-left: 0.75rem !important;
}

/* Premium Checkbox Grid (Options) */
.form-checkbox-align > div {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    padding: 1rem 0;
}

.form-checkbox-align .form-check {
    background: var(--bg-soft);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 1rem 1rem 1rem 3rem !important;
    margin: 0 !important;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    position: relative;
}

.form-checkbox-align .form-check:hover {
    border-color: var(--primary);
    background: rgba(var(--primary-rgb), 0.05);
}

.form-checkbox-align .form-check-input {
    display: none !important; /* Hide native checkbox to use chip design */
}

.form-checkbox-align .form-check {
    padding: 0 !important;
    margin: 0;
    min-height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-checkbox-align .form-check-label {
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0.5rem 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.form-checkbox-align .form-check-label i {
    margin-right: 0.5rem;
    font-size: 1rem;
    color: rgba(var(--primary-rgb), 0.6);
    transition: all 0.3s ease;
}

.form-checkbox-align .form-check:has(.form-check-input:checked) .form-check-label i {
    color: var(--primary);
    transform: scale(1.1);
}

.form-checkbox-align .form-check:has(.form-check-input:checked) {
    border-color: var(--primary) !important;
    background: rgba(var(--primary-rgb), 0.08) !important;
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.15);
}

.form-checkbox-align .form-check:has(.form-check-input:checked) .form-check-label {
    color: var(--primary) !important;
    font-weight: 700 !important;
}

.form-checkbox-align .form-check:active {
    transform: scale(0.98);
}

.form-checkbox-align .form-check:has(.form-check-input:checked) .form-check-label {
    color: var(--primary);
    font-weight: 700;
}

/* Hide navigation arrows if the library fails to position them */
.select2-container--default .select2-selection--single {
    display: none !important;
}

/* ═══════════════════════════════════════════
   ESTILIZAÇÃO DE SELECTS NATIVOS (PREMIUM)
   - Escopado para não afetar menu/rodapé -
   ═══════════════════════════════════════════ */
#form-venda-imovel .form-select {
    height: 58px !important;
    border: 1.5px solid var(--border) !important;
    border-radius: 12px !important;
    padding-top: 1.625rem !important;
    padding-bottom: 0.625rem !important;
    font-size: 1rem !important;
    transition: all 0.2s ease !important;
    background-color: #fff !important;
}

#form-venda-imovel .form-select:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1) !important;
}

/* ═══════════════════════════════════════════
   AJUSTE DE LABELS (SELECTS FLUTUANTES)
   ═══════════════════════════════════════════ */
#form-venda-imovel .form-floating > .form-select ~ label {
    padding: 0 0.5rem !important; /* Remove preenchimentos laterais excessivos */
    transform: scale(0.85) translateY(0.45rem) translateX(0.15rem) !important; /* "Senta" o label na borda */
    background-color: #fff !important;
    height: auto !important;
    top: 0 !important;
    margin-top: 0 !important;
    opacity: 1 !important;
    color: var(--primary) !important;
    z-index: 5 !important;
}

#form-venda-imovel .form-floating > .form-select {
    padding-top: 1.625rem !important;
}

/* Ocultar elementos Select2 residuais APENAS no formulário se necessário */
#form-venda-imovel .select2-container--default .select2-selection--single,
#form-venda-imovel select.select2 {
    display: none !important;
}


#form-venda-imovel .form-floating > .form-control:not(:placeholder-shown) ~ label::after,
#form-venda-imovel .form-floating > .form-select ~ label::after,
#form-venda-imovel .form-floating > select.form-select ~ label {
    background-color: transparent !important;
}


