       :root {
         --primary-color: #0f172a;
         --accent-color: #0284c7;
         --accent-hover: #0369a1;
         --gold-accent: #d97706;
         --text-muted: #64748b;

         --primary-yellow: #017c26;
         --dark-navy: #252525;
         --dark-blue: #1c2530;
         --light-bg: #f8f9fa;
         --brand-color: #00a89e;
         --brand-hover: #008981;
         --input-border: #e0e0e0;
         --text-muted: #6c757d;

         --primary-: #0c2461;
         /* Deep Navy Blue */
         /* Warm Gold/Champagne */
         --text-light: #f8f9fa;
         --bg-light: #f1f2f6;
         --transition-smooth: all 0.3s ease-in-out;
       }


       form-select

       /* Estilo para cobrir toda a tela com o overlay  custom-input */
       #overlay2 {
         position: fixed;
         top: 0;
         left: 0;
         width: 100vw;
         height: 100vh;
         background-color: rgba(255, 255, 255);
         /* Fundo escuro semi-transparente */
         display: flex;
         justify-content: center;
         align-items: center;
         z-index: 99;
       }




       /* AREA MODAL O QUE FAZER AGORA*/
       .hero-section {
         position: relative;
         min-height: 100vh;
         background: radial-gradient(circle at center, #2a2a36 0%, #0f0f13 100%);
         color: #fff;
         display: flex;
         flex-direction: column;
         justify-content: center;
         align-items: center;
         padding: 20px;
       }

       /* Hero Text */
       .hero-content {
         text-align: center;
         width: 100%;
       }

       .hero-title {
         font-size: 3rem;
         font-weight: 700;
         letter-spacing: -0.5px;
         text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
       }

       .hero-subtitle {
         font-size: 1.15rem;
         font-weight: 300;
         opacity: 0.85;
       }

       /* Form Container */
       .search-container {
         background: rgba(255, 255, 255, 0.05);
         backdrop-filter: blur(16px);
         -webkit-backdrop-filter: blur(16px);
         border-radius: 35px;
         padding: 24px 28px;
         border: 1px solid rgba(255, 255, 255, 0.12);
         box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
       }

       /* DROPDOWN CUSTOMIZADO EM VUE (SUBSTITUTO DO SELECT) */
       .custom-dropdown-container {
         position: relative;
       }

       .custom-dropdown-btn {
         width: 100%;
         height: 52px;
         border-radius: 50px;
         border: 1px solid rgba(255, 255, 255, 0.2);
         background-color: #ffffff;
         color: #2b2b2b;
         font-size: 0.95rem;
         font-weight: 500;
         padding: 0 20px;
         display: flex;
         align-items: center;
         justify-content: space-between;
         cursor: pointer;
         box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.03);
         transition: all 0.25s ease;
         user-select: none;
       }

       .custom-dropdown-btn:hover {
         border-color: rgba(0, 120, 197, 0.5);
       }

       .custom-dropdown-btn.active {
         border-color: #009a2f;
         box-shadow: 0 0 0 4px rgba(0, 120, 197, 0.25);
       }

       .custom-dropdown-btn .arrow-icon {
         color: #009a2f;
         font-size: 0.8rem;
         transition: transform 0.3s ease;
       }

       .custom-dropdown-btn.active .arrow-icon {
         transform: rotate(180deg);
       }

       /* MENU DE OPÇÕES (LISTA FLUTUANTE) */
       .custom-options-list {
         position: absolute;
         top: 115%;
         left: 0;
         right: 0;
         background: #ffffff;
         border-radius: 20px;
         padding: 8px;
         margin: 0;
         list-style: none;
         box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
         border: 1px solid rgba(0, 0, 0, 0.08);
         z-index: 100;
         max-height: 220px;
         overflow-y: auto;
       }

       /* Scrollbar personalizada para as opções */
       .custom-options-list::-webkit-scrollbar {
         width: 6px;
       }

       .custom-options-list::-webkit-scrollbar-thumb {
         background: #e0e0e0;
         border-radius: 10px;
       }

       /* ITENS DA LISTA DE OPÇÕES */
       .custom-option-item {
         padding: 12px 16px;
         font-size: 0.95rem;
         font-weight: 500;
         color: #333;
         border-radius: 12px;
         cursor: pointer;
         transition: all 0.2s ease;
         display: flex;
         align-items: center;
         justify-content: space-between;
       }

       .custom-option-item:hover {
         background-color: rgba(0, 120, 197, 0.1);
         color: #009a2f;
         padding-left: 20px;
       }

       .custom-option-item.selected {
         background-color: #009a2f;
         color: #ffffff;
       }

       /* ANIMAÇÃO DE APARECIMENTO DAS OPÇÕES */
       .dropdown-fade-enter-active,
       .dropdown-fade-leave-active {
         transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
       }

       .dropdown-fade-enter,
       .dropdown-fade-leave-to {
         opacity: 0;
         transform: translateY(-10px) scale(0.98);
       }

       /* INPUTS DE TEXTO E BOTÕES */
       .custom-input {
         border-radius: 50px !important;
         border: 1px solid rgba(255, 255, 255, 0.2);
         height: 52px;
         width: 110px;
         font-size: 0.95rem;
         font-weight: 500;
         color: #2b2b2b;
         padding-left: 20px;
         padding-right: 20px;
         background-color: #ffffff;
         box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.03);
         transition: all 0.25s ease;
       }

       .custom-input:focus {
         border-color: #009a2f !important;
         box-shadow: 0 0 0 4px rgba(0, 120, 197, 0.25) !important;
         outline: none;
       }

       /* Botão Mostrar Tudo */
       .btn-clear-filters {
         background-color: #f1f5f9;
         color: #475569;
         border: 1px solid #cbd5e1;
         font-size: 0.85rem;
         font-weight: 600;
         padding: 6px 14px;
         border-radius: 6px;
         transition: all 0.2s ease;
       }

       .btn-clear-filters:hover {
         background-color: #e2e8f0;
         color: #0f172a;
       }



       .btn-orange {
         background: linear-gradient(135deg, #009a2f 0%, #014b17 100%);
         color: white;
         border-radius: 50px;
         height: 52px;
         font-weight: 600;
         font-size: 0.95rem;
         border: none;
         width: 100%;
         box-shadow: 0 4px 15px rgba(0, 120, 197, 0.35);
         transition: all 0.3s ease;
         display: inline-flex;
         align-items: center;
         justify-content: center;
       }

       .btn-orange:hover {
         background: linear-gradient(135deg, #3dff78 0%, #017c26 100%);
         color: white;
         transform: translateY(-2px);
         box-shadow: 0 7px 20px rgba(0, 120, 197, 0.5);
       }

       /* Campo Código */
       .search-code-wrapper {
         position: relative;
       }

       .search-code-wrapper .custom-input {
         padding-right: 48px;
       }

       .search-code-wrapper .search-icon {
         position: absolute;
         right: 12px;
         top: 50%;
         transform: translateY(-50%);
         color: #fff;
         background-color: #222;
         width: 32px;
         height: 32px;
         border-radius: 50%;
         display: flex;
         align-items: center;
         justify-content: center;
         font-size: 0.8rem;
         cursor: pointer;
         transition: all 0.2s ease;
       }

       .search-code-wrapper .search-icon:hover {
         background-color: #009a2f;
         transform: translateY(-50%) scale(1.08);
       }

       /* MODAL */
       .welcome-modal .modal-content {
         border-radius: 28px;
         border: 1px solid rgba(255, 255, 255, 0.1);
         box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
         background-color: #ffffff;
         overflow: hidden;
       }

       .welcome-modal .modal-header {
         border-bottom: none;
         padding: 32px 32px 10px 32px;
       }

       .welcome-modal .modal-body {
         padding: 10px 32px 36px 32px;
       }

       .welcome-modal .btn-modal-action {
         border-radius: 50px;
         padding: 14px 20px;
         font-weight: 600;
         font-size: 0.95rem;
         border: none;
         transition: all 0.3s ease;
         display: flex;
         align-items: center;
         justify-content: center;
         gap: 8px;
       }

       .btn-modal-vender {
         background-color: #212529;
         color: #ffffff;
         box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
       }

       .btn-modal-vender:hover {
         background-color: #000000;
         color: #ffffff;
         transform: translateY(-2px);
       }

       .btn-modal-comprar {
         background: linear-gradient(135deg, #009a2f 0%, #002e0e 100%);
         color: #ffffff;
         box-shadow: 0 4px 15px rgba(0, 120, 197, 0.35);
       }

       .btn-modal-comprar:hover {
         background: linear-gradient(135deg, #16f358 0%, #005319 100%);
         color: #ffffff;
         transform: translateY(-2px);
       }

       /* FIM AREA MODAL O QUE FAZER AGORA*/


       /* AREA ESCOLHER COMPRA OU VENDER*/


       /* Estilização Personalizada */
       .option-card {
         position: relative;
         border: none;
         border-radius: 12px;
         overflow: hidden;
         cursor: pointer;
         transition: transform 0.3s ease, box-shadow 0.3s ease;
         min-height: 280px;
       }

       /* Efeito ao passar o rato (Hover) */
       .option-card:hover {
         transform: translateY(-8px);
         box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2) !important;
       }

       /* Imagem de Fundo com Escurecimento Overlay */
       .card-bg {
         position: absolute;
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         background-size: cover;
         background-position: center;
         transition: transform 0.5s ease;
       }

       .option-card:hover .card-bg {
         transform: scale(1.05);
       }

       .card-overlay {
         position: absolute;
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
       }

       /* Botão "+" Central */
       .plus-badge {
         width: 50px;
         height: 50px;
         background-color: rgba(255, 255, 255, 0.25);
         backdrop-filter: blur(5px);
         border: 2px solid #ffffff;
         border-radius: 8px;
         display: flex;
         align-items: center;
         justify-content: center;
         color: #ffffff;
         font-size: 1.5rem;
         transition: background-color 0.3s ease, transform 0.3s ease;
       }

       .option-card:hover .plus-badge {
         background-color: #0078c5;
         /* Tom dourado elegante */
         border-color: #0078c5;
         transform: scale(1.1);
       }

       /* Títulos e Textos */
       .card-title-custom {
         color: #0078c5;
         font-weight: 700;
         letter-spacing: 1px;
         text-transform: uppercase;
         border-bottom: 2px solid #0078c5;
         display: inline-block;
         padding-bottom: 4px;
       }


       /* FIM AREA ESCOLHER COMPRA OU VENDER*/




       /* AREA VENDER OU COMPRA IMOVEL*/



       /*  glass-card
    #app {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1100px;
    } */



       .bg_solicitacao {
         background: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?auto=format&fit=crop&w=1920&q=80') no-repeat center center fixed;
         background-size: cover;
         display: flex;
         align-items: center;
         justify-content: center;
         padding: 15px 10px;
         margin: 0;
         position: relative;
       }

       .bg_solicitacao::before {
         content: '';
         position: absolute;
         top: 0;
         left: 0;
         width: 100%;
         height: 20%;
         background: rgba(0, 0, 0, 0.65);
         z-index: 1;
       }


       .brand-title {
         font-weight: 700;
         letter-spacing: 1px;
         font-size: 1.5rem;
       }

       .hero-heading {
         font-size: 2.2rem;
         font-weight: 700;
         line-height: 1.15;
         text-transform: uppercase;
         background: linear-gradient(120deg, #fff, #b4d9ff);
         -webkit-background-clip: text;
         -webkit-text-fill-color: transparent;
       }

       .solicita_dir {
         z-index: 999;
         margin-top: 80px;
       }

       .solicita_esq {
         z-index: 999;
         margin-top: 80px;
       }

       /* Container Glassmorphism Adaptado */
       .glass-card {
         background: var(--glass-bg);
         backdrop-filter: blur(25px) saturate(180%);
         -webkit-backdrop-filter: blur(25px) saturate(180%);
         border: 1px solid var(--glass-border);
         border-radius: 20px;
         padding: 20px;
         color: #fff;
         box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);

       }


       @media (max-width: 768px) {

         .solicita_esq {
           margin-top: 0px;
         }

       }

       @media (min-width: 768px) {

         .brand-title {
           font-size: 1.8rem;
         }

         .hero-heading {
           font-size: 2.8rem;
         }

         .glass-card {
           border-radius: 24px;
           padding: 35px;
         }
       }

       /* Form Controls */


       /* Caixa de Resumo Responsiva */
       .summary-box {
         background: rgba(0, 0, 0, 0.4);
         border-radius: 14px;
         padding: 14px;
         border: 1px solid rgba(255, 255, 255, 0.1);
         max-height: 250px;
         overflow-y: auto;
       }

       .summary-section-title {
         font-size: 0.75rem;
         color: var(--primary-color);
         text-transform: uppercase;
         font-weight: 700;
         margin-top: 8px;
         margin-bottom: 2px;
       }

       /* Animações de Transição */
       .slide-fade-enter-active {
         transition: all 0.25s ease-out;
       }

       .slide-fade-leave-active {
         transition: all 0.15s cubic-bezier(1.0, 0.5, 0.8, 1.0);
       }

       .slide-fade-enter {
         transform: translateX(15px);
         opacity: 0;
       }

       .slide-fade-leave-to {
         transform: translateX(-15px);
         opacity: 0;
       }



       /*FIM AREA VENDER OU COMPRA IMOVEL*/


       /*  SLIDER CASAS/*/

       .section-title {
         color: #0b1f28;
         font-weight: 800;
         font-size: 2rem;
       }

       .section-subtitle {
         color: #6c757d;
         font-size: 0.95rem;
       }

       /* Header do Slider */
       .slider-header {
         display: flex;
         justify-content: space-between;
         align-items: flex-end;
         margin-bottom: 20px;
       }

       /* Botões Prev / Next */
       .custom-nav-btns {
         display: flex;
         gap: 10px;
       }

       .custom-nav-btn {
         width: 42px;
         height: 42px;
         border-radius: 50%;
         background-color: #ffffff;
         border: 1px solid #e2e8f0;
         color: #4a5568;
         display: flex;
         align-items: center;
         justify-content: center;
         cursor: pointer;
         transition: all 0.3s ease;
         box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
         z-index: 10;
       }

       .custom-nav-btn:hover {
         background-color: #009a2f;
         color: #ffffff;
         border-color: #009a2f;
       }

       .custom-nav-btn.swiper-button-disabled {
         opacity: 0.5;
         cursor: not-allowed;
       }

       /* Container Swiper */
       .swiper {
         width: 100%;
         padding-top: 10px;
         padding-bottom: 50px;
       }

       /* Card Styling */
       .property-card {
         background: #fff;
         border-radius: 12px;
         overflow: hidden;
         box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
         border: 1px solid #eaeaea;
         display: flex;
         flex-direction: column;
         height: 100%;
         cursor: pointer;
       }

       .card-img-wrapper {
         position: relative;
         height: 220px;
         overflow: hidden;
       }

       /* Efeito Zoom In na Imagem */
       .card-img-wrapper img {
         width: 100%;
         height: 100%;
         object-fit: cover;
         transition: transform 0.5s ease-in-out;
       }

       .property-card:hover .card-img-wrapper img {
         transform: scale(1.1);
       }

       /* Badges */
       .agent-badge {
         position: absolute;
         bottom: 12px;
         left: 12px;
         display: flex;
         align-items: center;
         gap: 8px;
         color: #fff;
         font-weight: 600;
         font-size: 0.85rem;
         text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
         z-index: 2;
       }

       .agent-avatar {
         width: 36px;
         height: 36px;
         border-radius: 50%;
         border: 2px solid #fff;
         background: #4a5568;
         display: flex;
         align-items: center;
         justify-content: center;
         font-size: 1.1rem;
       }

       .status-badge {
         position: absolute;
         bottom: 5px;
         right: 15px;
         background: #ffffff;
         color: #009a2f;
         border: 1px solid #f3e5d8;
         border-radius: 20px;
         padding: 4px 14px;
         font-size: 0.75rem;
         font-weight: 700;
         box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
         z-index: 3;
       }

       .card-content {
         padding: 24px 16px 16px 16px;
         display: flex;
         flex-direction: column;
         flex-grow: 1;
       }

       .property-title {
         font-size: 1.1rem;
         font-weight: 700;
         color: #1a202c;
         margin-bottom: 2px;
         white-space: nowrap;
         overflow: hidden;
         text-overflow: ellipsis;
       }

       .property-location {
         font-size: 0.75rem;
         color: #a0aec0;
         margin-bottom: 10px;
       }

       .property-description {
         font-size: 0.8rem;
         color: #718096;
         display: -webkit-box;
         -webkit-line-clamp: 2;
         -webkit-box-orient: vertical;
         overflow: hidden;
         margin-bottom: 15px;
         min-height: 2.4em;
       }

       .property-specs {
         display: flex;
         gap: 12px;
         border-bottom: 1px solid #edf2f7;
         padding-bottom: 12px;
         margin-bottom: 12px;
       }

       .spec-item {
         display: flex;
         align-items: center;
         gap: 5px;
         font-size: 0.75rem;
         color: #718096;
       }

       .spec-icon {
         border: 1px solid #cbd5e0;
         border-radius: 50%;
         width: 24px;
         height: 24px;
         display: flex;
         align-items: center;
         justify-content: center;
         font-size: 0.65rem;
       }

       .card-footer-info {
         display: flex;
         justify-content: space-between;
         align-items: center;
         margin-top: auto;
       }

       .property-price {
         font-size: 1.25rem;
         font-weight: 700;
         color: #009a2f;
       }

       .property-code {
         font-size: 0.7rem;
         color: #a0aec0;
       }

       .swiper-pagination-bullet {
         background: #cbd5e0;
         opacity: 1;
       }

       .swiper-pagination-bullet-active {
         background: #a0aec0;
       }


       /* FIM SLIDER CASAS */


       .event-card {
         position: relative;
         border-radius: 12px;
         overflow: hidden;
         box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
         aspect-ratio: 1 / 1;
         /* Mantém o formato quadrado */

       }

       /* Imagem de fundo */
       .event-card-img {
         width: 100%;
         height: 100%;
         object-fit: cover;
         display: block;
       }

       /* Degradê/Sombra na parte inferior para legibilidade do texto */
       .event-card-overlay {
         position: absolute;
         inset: 0;
         background: linear-gradient(to top,
             rgba(0, 0, 0, 0.88) 0%,
             rgba(0, 0, 0, 0.65) 45%,
             rgba(0, 0, 0, 0.1) 80%,
             rgba(0, 0, 0, 0) 100%);
         display: flex;
         flex-direction: column;
         justify-content: flex-end;
         padding: 1.75rem;
         color: #ffffff;
       }

       /* Título principal */
       .event-title {
         font-weight: 800;
         font-size: 1.35rem;
         line-height: 1.25;
         letter-spacing: 0.5px;
         text-transform: uppercase;
         margin-bottom: 0.5rem;
         color: #009f2c;
       }

       /* Texto de descrição resumida */
       .event-description {
         font-size: 0.85rem;
         color: rgba(255, 255, 255, 0.7);
         line-height: 1.4;
         display: -webkit-box;
         -webkit-line-clamp: 3;
         /* Limita a 3 linhas com reticências (...) */
         -webkit-box-orient: vertical;
         overflow: hidden;
         margin-bottom: 0.75rem;
       }

       /* Detalhes de local e data */
       .event-meta {
         font-size: 0.9rem;
         font-weight: 600;
         display: flex;
         align-items: center;
         gap: 1.25rem;
         margin-bottom: 1.25rem;
       }

       .event-meta-item {
         display: flex;
         align-items: center;
         gap: 0.35rem;
       }

       .event-meta-item i {
         font-size: 1rem;
         color: #f3f3f3;
         /* Tom avermelhado para o ícone de localização */
       }

       .event-meta-item i.bi-calendar-event {
         color: #ffffff;
       }

       /* Botão de ação */
       .btn-saber-mais {
         background-color: #ffffff;
         color: #111111;
         font-weight: 800;
         font-size: 0.85rem;
         letter-spacing: 0.5px;
         padding: 0.5rem 1.25rem;
         border-radius: 20px;
         text-decoration: none;
         text-transform: uppercase;
         display: inline-block;
         width: fit-content;
         transition: all 0.2s ease-in-out;
       }

       .btn-saber-mais:hover {
         background-color: #e2e2e2;
         color: #000000;
         transform: translateY(-2px);
       }


       .service-list {
         margin: 0;
         padding-left: 0;
         list-style: none;
       }

       .service-list li {
         position: relative;
         padding-left: 20px;
         margin-bottom: 8px;
         color: #2d3748;
       }

       .service-list li::before {
         content: "▪";
         position: absolute;
         left: 0;
         color: #0078c5;
         font-size: 1.2rem;
         line-height: 1;
         top: -1px;
       }



       .bg-azul {
         background-color: #0078c5 !important;
       }

       .bg-verde {
         background-color: #009f2c !important;
       }




       /* MENU */



       /* Topbar Superior de Contato */
       .top-bar {
         background-color: #015b8b;
         font-size: 0.825rem;
         border-bottom: 1px solid rgba(255, 255, 255, 0.08);
         color: #f5f2f2;
       }

       /* Header e Navbar Principal */
       .main-header {
         background-color: rgba(245, 244, 244, 0.95);
         backdrop-filter: blur(12px);
         -webkit-backdrop-filter: blur(12px);
         border-bottom: 1px solid rgba(255, 255, 255, 0.08);
       }

       .brand-logo {
         font-weight: 800;
         font-size: 1.35rem;
         letter-spacing: -0.5px;
         color: #ffffff;
         text-decoration: none;
       }

       .brand-logo span {
         color: var(--accent-color);
       }

       /* Links do Desktop */
       .desktop-nav .nav-link {
         color: #cbd5e1;
         font-weight: 500;
         font-size: 0.95rem;
         padding: 0.5rem 1rem !important;
         transition: all 0.25s ease;
         position: relative;
       }

       .desktop-nav .nav-link:hover,
       .desktop-nav .nav-link.active {
         color: #ffffff;
       }

       .desktop-nav .nav-link::after {
         content: '';
         position: absolute;
         bottom: 0;
         left: 50%;
         width: 0;
         height: 2px;
         background-color: var(--accent-color);
         transition: all 0.25s ease;
         transform: translateX(-50%);
       }

       .desktop-nav .nav-link:hover::after,
       .desktop-nav .nav-link.active::after {
         width: 60%;
       }

       /* Dropdown Customizado */
       .dropdown-menu-dark-custom {
         background-color: #0f172a;
         border: 1px solid rgba(255, 255, 255, 0.1);
         box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
         border-radius: 0.75rem;
         padding: 0.5rem;
       }

       .dropdown-menu-dark-custom .dropdown-item {
         color: #cbd5e1;
         border-radius: 0.5rem;
         padding: 0.6rem 1rem;
         font-size: 0.9rem;
         transition: all 0.2s ease;
       }

       .dropdown-menu-dark-custom .dropdown-item:hover {
         background-color: rgba(255, 255, 255, 0.08);
         color: #ffffff;
       }

       /* Painel Lateral Mobile (Right Offcanvas) */
       .mobile-sidebar {
         position: fixed;
         top: 0;
         right: -340px;
         width: 340px;
         height: 100vh;
         background-color: #0f172a;
         z-index: 1055;
         transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
         box-shadow: -10px 0 30px rgba(0, 0, 0, 0.4);
       }

       .mobile-sidebar.open {
         transform: translateX(-340px);
       }

       .sidebar-overlay {
         position: fixed;
         top: 0;
         left: 0;
         width: 100vw;
         height: 100vh;
         background-color: rgba(15, 23, 42, 0.6);
         backdrop-filter: blur(4px);
         -webkit-backdrop-filter: blur(4px);
         z-index: 1050;
         opacity: 0;
         pointer-events: none;
         transition: opacity 0.3s ease;
       }

       .sidebar-overlay.visible {
         opacity: 1;
         pointer-events: auto;
       }

       /* Estilização dos Itens Mobile */
       .mobile-nav-link {
         color: #94a3b8;
         text-decoration: none;
         padding: 0.85rem 1rem;
         display: flex;
         align-items: center;
         justify-content: space-between;
         border-radius: 0.5rem;
         font-weight: 500;
         transition: all 0.2s ease;
       }

       .mobile-nav-link:hover,
       .mobile-nav-link.active {
         color: #ffffff;
         background-color: rgba(255, 255, 255, 0.06);
       }

       .mobile-sub-menu {
         background-color: rgba(0, 0, 0, 0.2);
         border-radius: 0.5rem;
         padding: 0.5rem;
         margin-top: 0.25rem;
       }

       .mobile-sub-link {
         color: #94a3b8;
         text-decoration: none;
         display: block;
         padding: 0.5rem 1rem 0.5rem 2.5rem;
         font-size: 0.875rem;
         border-radius: 0.375rem;
       }

       .mobile-sub-link:hover {
         color: #ffffff;
       }

       /* Badges */
       .badge-gold {
         background-color: rgba(217, 119, 6, 0.15);
         color: #f59e0b;
         border: 1px solid rgba(217, 119, 6, 0.3);
         font-size: 0.7rem;
         padding: 0.2em 0.6em;
       }

       .btn-announce {
         background-color: var(--accent-color);
         color: #ffffff;
         font-weight: 600;
         border-radius: 0.5rem;
         padding: 0.5rem 1.25rem;
         transition: all 0.2s ease;
         border: none;
       }

       .btn-announce:hover {
         background-color: var(--accent-hover);
         color: #ffffff;
         box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
       }


       /* FIM MENU */

       /* SOBRE NOS */




       .section-title {
         font-size: 2.5rem;
         color: var(--primary-color);
         margin-bottom: 1rem;
         position: relative;
         display: inline-block;
       }

       .section-title::after {
         content: '';
         display: block;
         width: 60px;
         height: 4px;
         background-color: var(--accent-color);
         margin: 10px auto 0;
         border-radius: 2px;
       }

       .btn-accent {
         background-color: var(--accent-color);
         color: var(--primary-color);
         font-weight: 600;
         padding: 12px 30px;
         border-radius: 50px;
         border: none;
         transition: var(--transition-smooth);
       }

       .btn-accent:hover {
         background-color: var(--primary-color);
         color: white;
         transform: translateY(-3px);
       }

       /* --- Header/Navbar --- */
       .navbar {
         background-color: white;
         box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
       }

       .navbar-brand {
         font-weight: 700;
         color: var(--primary-color) !important;
         font-size: 1.5rem;
       }

       .nav-link {
         color: var(--text-dark) !important;
         font-weight: 500;
         margin-left: 15px;
       }

       .nav-link.active {
         color: var(--accent-color) !important;
       }

       /* --- Hero Section --- */
       .hero-section {
         background: linear-gradient(rgba(12, 36, 97, 0.9), rgba(12, 36, 97, 0.9)),
           url('https://images.unsplash.com/photo-1560518883-ce09059ee716?q=80&w=1920&auto=format&fit=crop') no-repeat center center/cover;
         color: white;
         padding: 120px 0;
       }

       /* --- Counter Cards --- */
       .stat-card {
         border: none;
         border-radius: 15px;
         background: white;
         box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
         transition: var(--transition-smooth);
         overflow: hidden;
         position: relative;
       }

       .stat-card:hover {
         transform: translateY(-10px);
         box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
       }

       .stat-card::before {
         content: '';
         position: absolute;
         top: 0;
         left: 0;
         width: 100%;
         height: 4px;
         background-color: var(--accent-color);
       }

       .stat-number {
         font-size: 3.8rem;
         font-weight: 800;
         color: var(--primary-color);
         line-height: 1;
       }

       .stat-label {
         font-size: 0.8rem;
         font-weight: 500;
         color: #636e72;
         text-transform: uppercase;
         letter-spacing: 1px;
       }

       /* --- Timeline Section --- */
       .timeline-section {
         background-color: white;
       }

       .timeline {
         position: relative;
         padding: 50px 0;
       }

       .timeline::before {
         content: '';
         position: absolute;
         top: 0;
         bottom: 0;
         left: 50%;
         width: 4px;
         background: #dfe6e9;
         transform: translateX(-50%);
         border-radius: 2px;
       }

       .timeline-item {
         position: relative;
         margin-bottom: 60px;
       }

       .timeline-icon {
         position: absolute;
         left: 50%;
         top: 0;
         width: 60px;
         height: 60px;
         border-radius: 50%;
         background: var(--primary-color);
         color: white;
         display: flex;
         align-items: center;
         justify-content: center;
         transform: translateX(-50%);
         z-index: 2;
         font-size: 1.5rem;
         box-shadow: 0 0 0 8px rgba(12, 36, 97, 0.1);
         transition: var(--transition-smooth);
       }

       .timeline-item:hover .timeline-icon {
         background: var(--accent-color);
         box-shadow: 0 0 0 12px rgba(246, 185, 59, 0.2);
       }

       .timeline-content {
         width: 44%;
         padding: 30px;
         background: var(--bg-light);
         border-radius: 15px;
         box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
         position: relative;
       }

       .timeline-item:nth-child(even) .timeline-content {
         margin-left: auto;
       }

       /* Responsive Timeline */
       @media (max-width: 768px) {
         .timeline::before {
           left: 30px;
         }

         .timeline-icon {
           left: 30px;
           width: 50px;
           height: 50px;
         }

         .timeline-content {
           width: calc(100% - 80px);
           margin-left: 80px !important;
         }
       }

       /* --- Features Section --- */
       .features-section {
         background: linear-gradient(rgba(241, 242, 246, 0.95), rgba(241, 242, 246, 0.95)),
           url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?q=80&w=1920&auto=format&fit=crop') no-repeat center center/cover;
       }

       .feature-box {
         padding: 40px;
         border-radius: 15px;
         background: white;
         border: 1px solid #eee;
         height: 100%;
         transition: var(--transition-smooth);
         text-align: center;
       }

       .feature-box:hover {
         transform: scale(1.03);
         box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
         border-color: var(--accent-color);
       }

       .feature-icon-wrapper {
         width: 80px;
         height: 80px;
         border-radius: 50%;
         background: linear-gradient(135deg, rgba(246, 185, 59, 0.1), rgba(246, 185, 59, 0.2));
         color: var(--accent-color);
         display: flex;
         align-items: center;
         justify-content: center;
         font-size: 2.5rem;
         margin: 0 auto 25px;
         transition: var(--transition-smooth);
       }

       .feature-box:hover .feature-icon-wrapper {
         background: var(--primary-color);
         color: white;
       }

       /* FIM SOBRE NOS */

       /*  AREA DE SERVICOS*/


       /* Hero Section */
       .hero-section2 {
         background: linear-gradient(rgba(19, 26, 34, 0.55), rgba(19, 26, 34, 0.85)),
           url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=600&q=80') center/cover no-repeat;
         color: #fff;
         padding: 100px 0 80px;
       }

       .hero-subtitle {
         color: var(--primary-yellow);
         font-weight: 600;
         letter-spacing: 1px;
         text-transform: uppercase;
         font-size: 0.9rem;
       }

       .hero-title {
         font-size: 3rem;
         font-weight: 800;
         line-height: 1.2;
       }

       .btn-yellow {
         background-color: var(--primary-yellow);
         color: #000;
         font-weight: 700;
         border-radius: 0;
         padding: 12px 30px;
         border: none;
         transition: all 0.3s;
       }

       .btn-yellow:hover {
         background-color: #e0a000;
         color: #000;
       }

       .btn-outline-custom {
         border: 1px solid rgba(255, 255, 255, 0.4);
         color: #fff;
         font-weight: 600;
         border-radius: 0;
         padding: 12px 30px;
         transition: all 0.3s;
       }

       .btn-outline-custom:hover {
         background-color: #fff;
         color: var(--dark-navy);
       }

       /* Stats Bar Overlap */
       .stats-wrapper {
         margin-top: -80px;
         position: relative;
         z-index: 10;
       }

       .stats-left-box {
         background-color: var(--primary-yellow);
         padding: 40px;
         color: #000;
       }

       .stats-right-box {
         background-color: #fff;
         padding: 40px;
         box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
       }

       .btn-dark-custom {
         background-color: var(--dark-navy);
         color: #fff;
         border-radius: 0;
         padding: 10px 24px;
         font-weight: 600;
         border: none;
       }

       .btn-dark-custom:hover {
         background-color: #2c3846;
         color: #fff;
       }

       .stat-item {
         display: flex;
         align-items: center;
         gap: 15px;
       }

       .stat-icon {
         font-size: 2rem;
         color: var(--primary-yellow);
       }

       .stat-number {
         font-size: 1.8rem;
         font-weight: 800;
         line-height: 1;
         margin-bottom: 4px;
       }

       .stat-label {
         font-size: 0.85rem;
         color: #666;
         margin: 0;
       }

       /* Services Grid */
       .services-section {
         padding: 100px 0;
       }

       .section-subtitle {
         color: var(--primary-yellow);
         font-weight: 600;
         text-transform: uppercase;
         font-size: 0.85rem;
         display: block;
       }

       .section-title {
         font-size: 2.2rem;
         font-weight: 800;
         color: var(--dark-navy);
         margin-bottom: 50px;
       }

       .service-card {
         background: #fff;
         border: 1px solid #f0f0f0;
         transition: all 0.3s ease;
         height: 100%;
       }

       .service-card:hover {
         box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
         transform: translateY(-5px);
       }

       .service-img-wrapper {
         height: 200px;
         overflow: hidden;
         position: relative;
       }

       .service-img-wrapper img {
         width: 100%;
         height: 100%;
         object-fit: cover;
         transition: transform 0.5s ease;
       }

       .service-card:hover .service-img-wrapper img {
         transform: scale(1.05);
       }

       .service-content {
         padding: 25px;
       }

       .service-icon-title {
         display: flex;
         align-items: center;
         gap: 12px;
         margin-bottom: 12px;
       }

       .service-icon {
         font-size: 1.5rem;
         color: var(--primary-yellow);
       }

       .service-title {
         font-size: 1.15rem;
         font-weight: 700;
         margin: 0;
         color: var(--dark-navy);
       }

       .service-desc {
         font-size: 0.9rem;
         color: #666;
         line-height: 1.6;
         margin: 0;
       }

       /* Banner Bottom */
       .bottom-banner {
         display: flex;
         flex-wrap: wrap;
       }

       .banner-left {
         background: linear-gradient(rgba(19, 26, 34, 0.9), rgba(19, 26, 34, 0.9)),
           url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1000&q=80') center/cover;
         color: #fff;
         padding: 80px 60px;
       }

       .banner-right {
         background-color: var(--primary-yellow);
         color: #000;
         padding: 80px 60px;
       }

       .feature-item {
         display: flex;
         align-items: center;
         gap: 12px;
         font-weight: 700;
         margin-bottom: 20px;
       }

       .feature-icon {
         font-size: 1.2rem;
         background: rgba(0, 0, 0, 0.1);
         width: 40px;
         height: 40px;
         display: flex;
         align-items: center;
         justify-content: center;
         border-radius: 4px;
       }


       /* FIM AREA DE SERVICOS */


       /*  AREA DE IMOVEIS */





       .section-title {
         color: #0b1f28;
         font-weight: 800;
         font-size: 2rem;
       }

       .section-subtitle {
         color: #6c757d;
         font-size: 0.95rem;
       }

       /* Barra de Filtros Customizada */
       .filter-bar {
         background: #ffffff;
         border-radius: 10px;
         padding: 12px 20px;
         box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
         border: 1px solid #e2e8f0;
         display: flex;
         flex-wrap: wrap;
         align-items: center;
         justify-content: space-between;
         gap: 12px;
       }

       .filter-group {
         display: flex;
         flex-wrap: wrap;
         align-items: center;
         gap: 10px;
         flex-grow: 1;
       }

       .custom-select {
         border: none;
         background-color: transparent;
         color: #4a5568;
         font-size: 0.8rem;
         font-weight: 600;
         padding: 6px 12px;
         cursor: pointer;
         outline: none;
         border-radius: 6px;
         transition: background-color 0.2s ease;
       }

       .custom-select:hover,
       .custom-select:focus {
         background-color: #f8fafc;
         color: #0b1f28;
       }

       /* Alternador de Visualização (Grid vs Lista) */
       .view-toggle-btns {
         display: flex;
         align-items: center;
         gap: 8px;
         border-left: 1px solid #edf2f7;
         padding-left: 15px;
       }

       .view-btn {
         border: none;
         background: none;
         color: #a0aec0;
         font-size: 1.2rem;
         padding: 4px;
         cursor: pointer;
         transition: color 0.2s ease;
       }

       .view-btn:hover,
       .view-btn.active {
         color: #0d6efd;
       }

       /* Card Styling */
       .property-card {
         background: #fff;
         border-radius: 12px;
         overflow: hidden;
         box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
         border: 1px solid #eaeaea;
         display: flex;
         flex-direction: column;
         height: 100%;
         cursor: pointer;
         transition: transform 0.3s ease, box-shadow 0.3s ease;
       }

       .property-card:hover {
         transform: translateY(-5px);
         box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
       }

       .card-img-wrapper {
         position: relative;
         height: 220px;
         overflow: hidden;
       }

       .card-img-wrapper img {
         width: 100%;
         height: 100%;
         object-fit: cover;
         transition: transform 0.5s ease-in-out;
       }

       .property-card:hover .card-img-wrapper img {
         transform: scale(1.1);
       }

       /* Estilo para Exibição em Modo Lista */
       .list-view .property-card {
         flex-direction: row;
       }

       .list-view .card-img-wrapper {
         width: 300px;
         height: auto;
         min-height: 200px;
       }

       /* Badges */
       .agent-badge {
         position: absolute;
         bottom: 12px;
         left: 12px;
         display: flex;
         align-items: center;
         gap: 8px;
         color: #fff;
         font-weight: 600;
         font-size: 0.85rem;
         text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
         z-index: 2;
       }

       .agent-avatar {
         width: 36px;
         height: 36px;
         border-radius: 50%;
         border: 2px solid #fff;
         background: #4a5568;
         display: flex;
         align-items: center;
         justify-content: center;
         font-size: 1.1rem;
       }

       .status-badge {
         position: absolute;
         bottom: -15px;
         right: 15px;
         background: #ffffff;
         color: #017c26;
         border: 1px solid #f3e5d8;
         border-radius: 20px;
         padding: 4px 14px;
         font-size: 0.75rem;
         font-weight: 700;
         box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
         z-index: 3;
       }

       .card-content {
         padding: 24px 16px 16px 16px;
         display: flex;
         flex-direction: column;
         flex-grow: 1;
       }

       .property-title {
         font-size: 1.1rem;
         font-weight: 700;
         color: #1a202c;
         margin-bottom: 2px;
         white-space: nowrap;
         overflow: hidden;
         text-overflow: ellipsis;
       }

       .property-location {
         font-size: 0.75rem;
         color: #a0aec0;
         margin-bottom: 10px;
       }

       .property-description {
         font-size: 0.8rem;
         color: #718096;
         display: -webkit-box;
         -webkit-line-clamp: 2;
         -webkit-box-orient: vertical;
         overflow: hidden;
         margin-bottom: 15px;
         min-height: 2.4em;
       }

       .property-specs {
         display: flex;
         gap: 12px;
         border-bottom: 1px solid #edf2f7;
         padding-bottom: 12px;
         margin-bottom: 12px;
       }

       .spec-item {
         display: flex;
         align-items: center;
         gap: 5px;
         font-size: 0.75rem;
         color: #718096;
       }

       .spec-icon {
         border: 1px solid #cbd5e0;
         border-radius: 50%;
         width: 24px;
         height: 24px;
         display: flex;
         align-items: center;
         justify-content: center;
         font-size: 0.65rem;
       }

       .card-footer-info {
         display: flex;
         justify-content: space-between;
         align-items: center;
         margin-top: auto;
       }

       .property-price {
         font-size: 1.25rem;
         font-weight: 700;
         color: #017c26;
       }

       .property-code {
         font-size: 0.7rem;
         color: #a0aec0;
       }

       /* Paginação */
       .pagination .page-link {
         color: #4a5568;
         border-color: #e2e8f0;
         padding: 8px 16px;
         border-radius: 6px;
         margin: 0 3px;
         font-weight: 600;
       }

       .pagination .page-item.active .page-link {
         background-color: #017c26;
         border-color: #017c26;
         color: #ffffff;
       }

       .pagination .page-item.disabled .page-link {
         color: #cbd5e0;
       }

       .pagination .page-link:focus {
         box-shadow: none;
       }



       /* FIM AREA DE IMOVEIS */



       /* AREA DE FORMULARIO */

 
        :root {
            --brand-color: #00a89e;
            --brand-hover: #008981;
            --input-border: #e0e0e0;
            --text-muted: #6c757d;
        }

        body {
            font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: #f4f6f8;
            color: #333;
        }

        .form-card {
            background: #fff;
            padding: 35px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }

        .teal-line-top {
            width: 40px;
            height: 4px;
            background-color: var(--brand-color);
            margin: 0 auto 15px auto;
        }

        /* Progresso das Etapas */
        .step-progress-bar {
            height: 6px;
            background-color: #e9ecef;
            border-radius: 3px;
            overflow: hidden;
            margin-bottom: 25px;
        }

        .step-progress-fill {
            height: 100%;
            background-color: var(--brand-color);
            transition: width 0.3s ease;
        }

        .step-indicators {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
        }

        .step-item {
            text-align: center;
            flex: 1;
            position: relative;
        }

        .step-number {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: #e9ecef;
            color: #6c757d;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin-bottom: 6px;
            transition: all 0.3s ease;
        }

        .step-item.active .step-number {
            background-color: var(--brand-color);
            color: #fff;
        }

        .step-item.completed .step-number {
            background-color: #008981;
            color: #fff;
        }

        .step-title {
            font-size: 0.85rem;
            color: #6c757d;
            font-weight: 600;
        }

        .step-item.active .step-title {
            color: #2b2b2b;
        }

        /* Seção Título Interno */
        .section-title {
            display: flex;
            align-items: center;
            font-size: 1.15rem;
            font-weight: 700;
            color: #2b2b2b;
            margin-top: 10px;
            margin-bottom: 20px;
            border-bottom: 1px solid #eee;
            padding-bottom: 8px;
        }

        .section-title::before {
            content: "";
            display: inline-block;
            width: 25px;
            height: 4px;
            background-color: var(--brand-color);
            margin-right: 10px;
        }

        /* Floating Labels */
        .form-floating > label {
            color: var(--text-muted);
            font-size: 0.85rem;
            padding-top: 0.6rem;
        }

        .form-floating > .form-control,
        .form-floating > .form-select {
            border-color: var(--input-border);
            border-radius: 4px;
            height: 58px;
            box-shadow: none !important;
            font-size: 0.95rem;
        }

        .form-floating > .form-control:focus,
        .form-floating > .form-select:focus {
            border-color: var(--brand-color);
        }

        /* Campo de Telefone */
        .phone-group { position: relative; }
        .phone-flag {
            position: absolute;
            left: 12px;
            bottom: 12px;
            z-index: 5;
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 0.85rem;
            color: #555;
        }
        .phone-group .form-control { padding-left: 55px; }

        /* Captcha Box */
        .captcha-box {
            background-color: #f8f9fa;
            border: 1px solid var(--input-border);
            border-radius: 4px;
            height: 58px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Georgia', cursive, serif;
            font-size: 1.8rem;
            font-weight: bold;
            font-style: italic;
            letter-spacing: 5px;
            color: #555;
            background-image: repeating-linear-gradient(45deg, #eee 0, #eee 2px, transparent 0, transparent 4px);
            user-select: none;
        }

        /* Botões */
        .btn-brand {
            background-color: var(--brand-color);
            color: #fff;
            border: none;
            border-radius: 4px;
            padding: 12px 35px;
            font-weight: 700;
            font-size: 0.95rem;
            transition: background-color 0.2s ease;
        }

        .btn-brand:hover {
            background-color: var(--brand-hover);
            color: #fff;
        }

        .btn-secondary-custom {
            background-color: #e9ecef;
            color: #495057;
            border: none;
            border-radius: 4px;
            padding: 12px 30px;
            font-weight: 600;
        }

        .btn-secondary-custom:hover {
            background-color: #dee2e6;
        }

        [v-cloak] { display: none; }
 


       /* FIM AREA DE FORMULARIO */




       /*  AREA DE CONTACTO */


        /* Linha e Título Principal */
    .brand-divider {
      width: 40px;
      height: 4px;
      background-color: #017c26;
      margin: 0 auto 12px auto;
      border-radius: 2px;
    }

    .brand-title {
      color: #017c26;
      font-weight: 500;
      letter-spacing: 2px;
      font-size: 1.5rem;
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    /* Informações da Morada */
    .address-text {
      font-size: 1.1rem;
      line-height: 1.4;
      color: #333;
      margin-bottom: 25px;
    }

    /* Seção de Contactos */
    .contact-item {
      margin-bottom: 18px;
    }

    .contact-icon {
      color: #017c26;
      font-size: 1rem;
      margin-right: 8px;
    }

    .contact-text {
      font-size: 0.95rem;
      color: #333;
      text-decoration: none;
    }

    .contact-text:hover {
      color: #017c26;
    }

    .contact-subtext {
      font-size: 0.75rem;
      color: #777777;
      margin-top: 2px;
    }

    /* Estilização do Mapa */
    #map-container {
      width: 100%;
      height: 450px;
      margin-top: 40px;
      border: 1px solid #e0e0e0;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    
       /* FIM AREA DE CONTACTO */

