*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --gold: #C9A84C;
    --gold-light: #E8C96A;
    --gold-dark: #9A7A2E;
    --black: #0D0D0D;
    --dark: #1A1A1A;
    --dark2: #222222;
    --dark3: #2E2E2E;
    --white: #FFFFFF;
    --off-white: #F5F3EE;
    --gray: #B0A89A;
    --gray-light: #F0EDE8;
    --text-muted: #888070;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Montserrat', sans-serif;
    background: var(--off-white);
    color: var(--dark);
    overflow-x: hidden;
  }

  /* ===== SCROLLBAR ===== */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--dark2); }
  ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

  /* ===== HEADER ===== */
  #header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 2.5rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.4s, box-shadow 0.4s;
  }

  #header.scrolled {
    background: rgba(13,13,13,0.97);
    box-shadow: 0 2px 30px rgba(0,0,0,0.5);
  }

  .header-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }

  .logo-text span:first-child {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
  }

  .logo-text span:last-child {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .logo-icon {
    width: 48px;
    height: 48px;
    background: var(--gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .logo-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--black);
  }

  .header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  .header-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
  }

  .header-info a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.2s;
  }

  .header-info a:hover { color: var(--gold); }

  .creci-badge {
    font-size: 0.68rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
  }

  .header-social {
    display: flex;
    gap: 0.7rem;
    align-items: center;
  }

  .header-social a {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(201,168,76,0.4);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.85rem;
  }

  .header-social a:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
  }

  .btn-wpp-header {
    background: var(--gold);
    color: var(--black) !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
  }

  .btn-wpp-header:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
  }

  .hamburger {
    width: 38px;
    height: 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 6px;
    transition: border-color 0.2s;
  }

  .hamburger:hover { border-color: var(--gold); }

  .hamburger span {
    display: block;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s;
  }

  /* ===== SIDE MENU ===== */
  #side-menu {
    position: fixed;
    top: 0; right: -100%;
    width: min(380px, 100vw);
    height: 100vh;
    background: rgba(13,13,13,0.98);
    backdrop-filter: blur(20px);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 2rem;
    border-left: 1px solid rgba(201,168,76,0.2);
  }

  #side-menu.open { right: 0; }

  #overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }

  #overlay.show { opacity: 1; pointer-events: all; }

  .menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(201,168,76,0.2);
  }

  .menu-logo span:first-child {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
  }

  .menu-logo span:last-child {
    display: block;
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .close-menu {
    background: none;
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 6px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    color: var(--gold);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
  }

  .close-menu:hover {
    background: var(--gold);
    color: var(--black);
  }

  .menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
  }

  .menu-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.9rem 1rem;
    border-radius: 8px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-left: 2px solid transparent;
  }

  .menu-nav a:hover {
    color: var(--gold);
    background: rgba(201,168,76,0.08);
    border-left-color: var(--gold);
    padding-left: 1.4rem;
  }

  .menu-nav a svg {
    width: 16px;
    height: 16px;
    opacity: 0.6;
    flex-shrink: 0;
  }

  .menu-contact {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(201,168,76,0.2);
  }

  .menu-contact h4 {
    color: var(--gold);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 700;
  }

  .menu-contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .menu-contact-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .menu-contact-links a:hover { color: var(--gold); }

  /* ===== HERO ===== */
  #hero {
    height: 100vh;
    min-height: 680px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(13,13,13,0.72) 0%, rgba(13,13,13,0.45) 50%, rgba(13,13,13,0.85) 100%),
      url('https://images.unsplash.com/photo-1613490493576-7fde63acd811?w=1800&q=80') center/cover no-repeat;
  }

  .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 860px;
  }

  .hero-tag {
    display: inline-block;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.5);
    color: var(--gold);
    font-size: 0.68rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
  }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 1.2rem;
  }

  .hero-title em {
    font-style: italic;
    color: var(--gold);
  }

  .hero-subtitle {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-hero-primary {
    background: var(--gold);
    color: var(--black);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }

  .btn-hero-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201,168,76,0.35);
  }

  .btn-hero-outline {
    background: transparent;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }

  .btn-hero-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
  }

  .hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
  }

  .hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
  }

  @keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
  }

  /* ===== SEARCH SECTION ===== */
  #busca {
    background: var(--dark);
    padding: 2.5rem;
    position: relative;
  }

  .search-title {
    text-align: center;
    margin-bottom: 1.8rem;
  }

  .search-title h2 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .search-title h2 span { color: var(--gold); }

  .search-form {
    max-width: 1100px;
    margin: 0 auto;
  }

  .search-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.8rem;
    margin-bottom: 0.8rem;
  }

  .search-grid select,
  .search-grid input {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 6px;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    padding: 0.75rem 1rem;
    width: 100%;
    transition: border-color 0.2s;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
  }

  .search-grid select:focus,
  .search-grid input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(201,168,76,0.08);
  }

  .search-grid select option { background: var(--dark2); color: var(--white); }

  .search-grid input::placeholder { color: rgba(255,255,255,0.35); }

  .search-actions {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
  }

  .btn-search {
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.85rem 2.5rem;
    cursor: pointer;
    transition: all 0.2s;
  }

  .btn-search:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
  }

  .btn-more-filters {
    background: transparent;
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.4);
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0.85rem 1.5rem;
    cursor: pointer;
    transition: all 0.2s;
  }

  .btn-more-filters:hover {
    background: rgba(201,168,76,0.1);
    border-color: var(--gold);
  }

  /* ===== SECTION BASE ===== */
  .section-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .section-eyebrow {
    display: inline-block;
    color: var(--gold);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.8rem;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
  }

  .section-title.white { color: var(--white); }
  .section-title span { color: var(--gold); }

  .section-line {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 1rem auto 0;
  }

  /* ===== DESTAQUES ===== */
  #destaques {
    padding: 5rem 2.5rem;
    background: var(--gray-light);
  }

  .imoveis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .imovel-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    position: relative;
  }

  .imovel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  }

  .card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
  }

  .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
  }

  .imovel-card:hover .card-img img { transform: scale(1.06); }

  .card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gold);
    color: var(--black);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
  }

  .card-fav {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    background: rgba(13,13,13,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    backdrop-filter: blur(4px);
  }

  .card-fav:hover { background: var(--gold); }
  .card-fav.active { background: var(--gold); }
  .card-fav svg { width: 14px; height: 14px; fill: none; stroke: white; stroke-width: 2; }
  .card-fav.active svg { fill: var(--black); stroke: var(--black); }

  .card-body {
    padding: 1.25rem 1.4rem 1.4rem;
  }

  .card-location {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }

  .card-location svg { width: 12px; height: 12px; flex-shrink: 0; }

  .card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.8rem;
    line-height: 1.3;
  }

  .card-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
  }

  .card-feat {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
  }

  .card-feat svg { width: 14px; height: 14px; flex-shrink: 0; }

  .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-light);
  }

  .card-price {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--gold-dark);
  }

  .card-price small {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 1px;
  }

  .btn-card {
    background: var(--dark);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.5rem 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
  }

  .btn-card:hover { background: var(--gold); color: var(--black); }

  .section-cta {
    text-align: center;
    margin-top: 3rem;
  }

  .btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--dark);
    border: 1.5px solid var(--dark);
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.85rem 2rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s;
  }

  .btn-outline-dark:hover {
    background: var(--dark);
    color: var(--white);
  }

  /* ===== BANNER INSTITUCIONAL ===== */
  #banner {
    position: relative;
    padding: 7rem 2.5rem;
    overflow: hidden;
    background:
      linear-gradient(135deg, rgba(13,13,13,0.88) 0%, rgba(13,13,13,0.75) 100%),
      url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1600&q=80') center/cover no-repeat;
  }

  .banner-content {
    max-width: 650px;
    position: relative;
    z-index: 1;
  }

  .banner-eyebrow {
    display: inline-block;
    color: var(--gold);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1.2rem;
    border-left: 3px solid var(--gold);
    padding-left: 0.8rem;
  }

  .banner-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.2rem;
  }

  .banner-title span { color: var(--gold); }

  .banner-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 500px;
  }

  .banner-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
  }

  .banner-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .banner-stat-num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
  }

  .banner-stat-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .banner-img-deco {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 380px;
    height: 380px;
    background:
      linear-gradient(135deg, rgba(201,168,76,0.12) 0%, rgba(201,168,76,0.04) 100%);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .banner-img-deco::before {
    content: '';
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 50%;
  }

  .banner-inner-icon {
    color: rgba(201,168,76,0.3);
    font-size: 6rem;
  }

  /* ===== ÚLTIMOS IMÓVEIS ===== */
  #ultimos {
    padding: 5rem 2.5rem;
    background: var(--white);
  }

  /* ===== SERVIÇOS ===== */
  #servicos {
    padding: 5rem 2.5rem;
    background: var(--dark);
  }

  .servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
  }

  .servico-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 12px;
    padding: 2rem 1.75rem;
    transition: all 0.3s;
  }

  .servico-card:hover {
    background: rgba(201,168,76,0.06);
    border-color: rgba(201,168,76,0.5);
    transform: translateY(-4px);
  }

  .servico-icon {
    width: 52px;
    height: 52px;
    background: rgba(201,168,76,0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
  }

  .servico-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
  }

  .servico-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.7rem;
    line-height: 1.3;
  }

  .servico-text {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.7;
  }

  /* ===== CONTATO ===== */
  #contato {
    padding: 5rem 2.5rem;
    background: var(--gray-light);
  }

  .contato-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .contato-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .contato-info h3 span { color: var(--gold-dark); }

  .contato-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
  }

  .contato-items {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }

  .contato-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }

  .contato-item-icon {
    width: 44px;
    height: 44px;
    background: var(--gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .contato-item-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--black);
    fill: none;
    stroke-width: 2;
  }

  .contato-item-info label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2px;
  }

  .contato-item-info a,
  .contato-item-info span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    transition: color 0.2s;
  }

  .contato-item-info a:hover { color: var(--gold-dark); }

  .contato-form {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  }

  .contato-form h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
  }

  .form-group {
    margin-bottom: 1rem;
  }

  .form-group label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    background: var(--gray-light);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: var(--dark);
    padding: 0.75rem 1rem;
    transition: border-color 0.2s;
    resize: vertical;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: white;
  }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

  .btn-form {
    width: 100%;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 0.5rem;
  }

  .btn-form:hover { background: var(--gold-light); transform: translateY(-1px); }

  /* ===== FOOTER ===== */
  #footer {
    background: var(--black);
    padding: 4rem 2.5rem 2rem;
    border-top: 1px solid rgba(201,168,76,0.2);
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto 3rem;
  }

  .footer-brand p {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.8;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    max-width: 300px;
  }

  .footer-logo-text span:first-child {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
  }

  .footer-logo-text span:last-child {
    display: block;
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .footer-social {
    display: flex;
    gap: 0.7rem;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s;
  }

  .footer-social a:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

  .footer-col h5 {
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid rgba(201,168,76,0.2);
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }

  .footer-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.83rem;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }

  .footer-links a::before {
    content: '›';
    color: var(--gold);
    font-size: 1rem;
    line-height: 1;
  }

  .footer-links a:hover { color: var(--gold); }

  .footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }

  .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .footer-contact-item svg {
    width: 14px;
    height: 14px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .footer-contact-item span {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.5;
  }

  .footer-contact-item a {
    font-size: 0.8rem;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-contact-item a:hover { color: var(--gold); }

  .footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.7rem;
  }

  .footer-bottom p {
    font-size: 0.72rem;
    color: var(--text-muted);
  }

  .footer-bottom p span { color: var(--gold); }

  /* ===== WPP FLOAT ===== */
  #wpp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
  }

  .wpp-tooltip {
    background: var(--dark);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    transition: all 0.2s;
    pointer-events: none;
  }

  #wpp-float:hover .wpp-tooltip { opacity: 1; transform: translateX(0); }

  .wpp-btn {
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: all 0.25s;
    animation: pulse-wpp 3s infinite;
  }

  .wpp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.55);
  }

  .wpp-btn svg {
    width: 28px;
    height: 28px;
    fill: white;
  }

  @keyframes pulse-wpp {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.65); }
  }

  /* ===== MODAL IMÓVEL ===== */
  #modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 3000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
  }

  #modal-overlay.open { opacity: 1; pointer-events: all; }

  .modal-box {
    background: var(--white);
    border-radius: 16px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s;
  }

  #modal-overlay.open .modal-box { transform: translateY(0); }

  .modal-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
  }

  .modal-body { padding: 2rem; }

  .modal-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    margin-bottom: 0.8rem;
  }

  .modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
  }

  .modal-loc {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }

  .modal-feats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    background: var(--gray-light);
    border-radius: 10px;
  }

  .modal-feat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
  }

  .modal-feat strong { font-size: 1.1rem; color: var(--dark); }

  .modal-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }

  .modal-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-light);
  }

  .modal-price { font-size: 1.6rem; font-weight: 900; color: var(--gold-dark); }

  .modal-price small { display: block; font-size: 0.68rem; color: var(--text-muted); font-weight: 500; }

  .close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: rgba(0,0,0,0.6);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: background 0.2s;
  }

  .close-modal:hover { background: rgba(0,0,0,0.85); }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    .contato-wrapper { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .banner-img-deco { display: none; }
    .header-info { display: none; }
    .header-social { display: none; }
    .btn-wpp-header { display: none; }
  }

  @media (max-width: 640px) {
    #header { padding: 0 1.25rem; height: 68px; }
    #busca { padding: 2rem 1.25rem; }
    #destaques, #ultimos, #servicos, #contato { padding: 3.5rem 1.25rem; }
    #banner { padding: 4rem 1.25rem; }
    #footer { padding: 3rem 1.25rem 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hero-btns { flex-direction: column; align-items: center; }
    .btn-hero-primary, .btn-hero-outline { width: 100%; justify-content: center; max-width: 280px; }
    .search-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .banner-stats { gap: 1.5rem; }
  }

/* =============================================================
   CARROSSEL DE FOTOS — Modal
   Adicionado por: assets/js/carousel.js
   ============================================================= */

/* Container principal */
.carousel {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  background: #000;
}

/* Faixa deslizante que contém todos os slides */
.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Cada slide ocupa 100% da largura do container */
.carousel-slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Botões anterior / próximo */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10;
  backdrop-filter: blur(4px);
}

.carousel-btn:hover { background: rgba(0, 0, 0, 0.72); }

.carousel-prev { left:  10px; }
.carousel-next { right: 10px; }

/* Bolinhas de navegação (dots) */
.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.carousel-dot.active {
  background: #C9A84C;   /* dourado da identidade Anair */
  transform: scale(1.3);
}

/* Contador "1 / 7" no canto superior direito */
.carousel-counter {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
  z-index: 10;
  backdrop-filter: blur(4px);
  letter-spacing: 0.5px;
}

/* Responsivo — reduz altura em telas pequenas */
@media (max-width: 640px) {
  .carousel { height: 240px; }
  .carousel-btn { width: 32px; height: 32px; font-size: 1.1rem; }
}
