*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --navy: #0a2342;
    --teal: #0e6b6b;
    --teal-light: #1a9090;
    --mint: #c8f0e8;
    --white: #f8fbfa;
    --gold: #c9a84c;
    --text: #1a2e3b;
    --muted: #5a7080;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 3rem;
    background: rgba(10,35,66,0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200,240,232,0.12);
  }
  .logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.04em;
  }
  .logo span { color: var(--gold); }
  nav ul { list-style: none; display: flex; gap: 2rem; }
  nav ul li a {
    font-size: 0.8rem; font-weight: 500;
    color: rgba(248,251,250,0.8);
    text-decoration: none; letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.3s;
  }
  nav ul li a:hover { color: var(--mint); }
  .nav-cta {
    background: var(--gold); color: var(--navy) !important;
    padding: 0.5rem 1.4rem; border-radius: 2px;
    font-weight: 600 !important; color: var(--navy) !important;
  }

  /* HERO */
  .hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy) 0%, #0d3d55 45%, var(--teal) 100%);
    position: relative; overflow: hidden;
    display: flex; align-items: center;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(14,107,107,0.35) 0%, transparent 60%),
                radial-gradient(ellipse at 10% 80%, rgba(201,168,76,0.1) 0%, transparent 50%);
  }
  .hero-geo {
    position: absolute; right: -60px; top: 0; bottom: 0; width: 55%;
    background: linear-gradient(135deg, rgba(14,107,107,0.15) 0%, rgba(26,144,144,0.08) 100%);
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
    border-left: 1px solid rgba(200,240,232,0.1);
  }
  .hero-img-overlay {
    position: absolute; right: 0; top: 0; bottom: 0; width: 52%;
    background: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=900&q=80') center/cover;
    opacity: 0.18;
    clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  .hero-content {
    position: relative; z-index: 2;
    padding: 8rem 3rem 5rem 5rem;
    max-width: 620px;
  }
  .hero-badge {
    display: inline-block;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold);
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase;
    padding: 0.4rem 1rem; border-radius: 2px;
    margin-bottom: 1.8rem;
    animation: fadeUp 0.8s ease both;
  }
  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.4rem;
    animation: fadeUp 0.8s 0.15s ease both;
  }
  .hero h1 em {
    font-style: italic; color: var(--mint);
  }
  .hero p {
    font-size: 1rem; color: rgba(248,251,250,0.75);
    line-height: 1.75; margin-bottom: 2.4rem;
    font-weight: 300;
    animation: fadeUp 0.8s 0.3s ease both;
  }
  .hero-btns {
    display: flex; gap: 1rem; flex-wrap: wrap;
    animation: fadeUp 0.8s 0.45s ease both;
  }
  .btn-primary {
    background: var(--gold); color: var(--navy);
    padding: 0.9rem 2.2rem; font-family: 'Jost', sans-serif;
    font-weight: 600; font-size: 0.85rem;
    letter-spacing: 0.1em; text-transform: uppercase;
    border: none; cursor: pointer; border-radius: 2px;
    transition: all 0.3s; text-decoration: none;
    display: inline-block;
  }
  .btn-primary:hover { background: #e0bc5a; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,168,76,0.35); }
  .btn-outline {
    background: transparent; color: var(--white);
    padding: 0.9rem 2.2rem;
    border: 1px solid rgba(248,251,250,0.35);
    font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
    cursor: pointer; border-radius: 2px;
    transition: all 0.3s; text-decoration: none; display: inline-block;
  }
  .btn-outline:hover { border-color: var(--mint); color: var(--mint); }

  .hero-stats {
    position: absolute; bottom: 3rem; right: 5%;
    display: flex; gap: 3rem; z-index: 2;
    animation: fadeUp 0.8s 0.6s ease both;
  }
  .stat { text-align: center; }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem; font-weight: 600;
    color: var(--white); display: block;
  }
  .stat-label {
    font-size: 0.7rem; font-weight: 500;
    color: rgba(200,240,232,0.7); letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  /* SECTION BASE */
  section { padding: 6rem 3rem; }

  /* SERVICES */
  .services { background: var(--white); }
  .section-label {
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--teal);
    margin-bottom: 0.8rem;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 300; color: var(--navy);
    margin-bottom: 0.5rem;
  }
  .section-title em { font-style: italic; color: var(--teal); }
  .section-sub { color: var(--muted); font-weight: 300; line-height: 1.7; max-width: 500px; }
  .section-header { margin-bottom: 3.5rem; }

  .services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem; max-width: 1200px; margin: 0 auto;
  }
  .service-card {
    padding: 2.2rem 1.8rem;
    border: 1px solid rgba(14,107,107,0.12);
    border-radius: 4px;
    position: relative; overflow: hidden;
    transition: all 0.35s;
    background: #fff;
  }
  .service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--teal-light));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.35s;
  }
  .service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(10,35,66,0.1); }
  .service-card:hover::before { transform: scaleX(1); }
  .service-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, rgba(14,107,107,0.1), rgba(26,144,144,0.05));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin-bottom: 1.2rem;
  }
  .service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem; font-weight: 600;
    color: var(--navy); margin-bottom: 0.6rem;
  }
  .service-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; font-weight: 300; }

  /* BAIRROS */
  .bairros { background: linear-gradient(135deg, var(--navy) 0%, #0d3d55 60%, var(--teal) 100%); }
  .bairros .section-label { color: var(--mint); }
  .bairros .section-title { color: var(--white); }
  .bairros .section-sub { color: rgba(248,251,250,0.65); }
  .bairros-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem; max-width: 1100px; margin: 0 auto;
  }
  .bairro-item {
    border: 1px solid rgba(200,240,232,0.2);
    padding: 1.6rem 1.2rem;
    border-radius: 4px; text-align: center;
    transition: all 0.3s;
    cursor: default;
    background: rgba(255,255,255,0.04);
  }
  .bairro-item:hover {
    background: rgba(200,240,232,0.08);
    border-color: rgba(200,240,232,0.45);
    transform: translateY(-3px);
  }
  .bairro-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-weight: 600;
    color: var(--white); margin-bottom: 0.3rem;
  }
  .bairro-item p { font-size: 0.75rem; color: rgba(200,240,232,0.6); font-weight: 300; letter-spacing: 0.05em; }
  .city-tag {
    font-size: 0.65rem; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold);
    display: block; margin-bottom: 0.4rem;
  }

  /* LEAD FORM */
  .lead-section {
    background: var(--white);
    display: flex; align-items: stretch;
    padding: 0; min-height: 620px;
  }
  .lead-visual {
    width: 45%;
    background: url('https://images.unsplash.com/photo-1613977257363-707ba9348227?w=800&q=80') center/cover;
    position: relative;
  }
  .lead-visual::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(10,35,66,0.7), rgba(14,107,107,0.5));
  }
  .lead-visual-text {
    position: absolute; bottom: 3rem; left: 2rem; right: 2rem; z-index: 2;
  }
  .lead-visual-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 300;
    color: #fff; line-height: 1.3; margin-bottom: 0.5rem;
  }
  .lead-visual-text p { font-size: 0.85rem; color: rgba(255,255,255,0.7); font-weight: 300; }
  .lead-form-wrap {
    flex: 1;
    padding: 4rem 3.5rem;
    display: flex; flex-direction: column; justify-content: center;
  }
  .lead-form-wrap .section-label { margin-bottom: 0.5rem; }
  .lead-form-wrap h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem; font-weight: 300;
    color: var(--navy); margin-bottom: 0.5rem;
  }
  .lead-form-wrap > p { font-size: 0.9rem; color: var(--muted); margin-bottom: 2rem; font-weight: 300; }

  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
  .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
  .form-group label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); }
  .form-group input,
  .form-group select,
  .form-group textarea {
    border: 1px solid rgba(10,35,66,0.18);
    border-radius: 3px; padding: 0.75rem 1rem;
    font-family: 'Jost', sans-serif; font-size: 0.9rem;
    color: var(--text); background: #f8fbfa;
    outline: none; transition: border-color 0.3s;
    width: 100%;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--teal); }
  .form-full { grid-column: 1 / -1; }
  .form-group textarea { resize: none; height: 90px; }
  .radio-group { display: flex; gap: 1rem; flex-wrap: wrap; }
  .radio-label {
    display: flex; align-items: center; gap: 0.4rem;
    font-size: 0.85rem; cursor: pointer; color: var(--text);
  }
  .radio-label input[type="radio"] { accent-color: var(--teal); }
  .form-btn {
    width: 100%; padding: 1rem;
    background: linear-gradient(135deg, var(--navy), var(--teal));
    color: #fff; border: none; border-radius: 3px;
    font-family: 'Jost', sans-serif; font-weight: 600;
    font-size: 0.85rem; letter-spacing: 0.12em;
    text-transform: uppercase; cursor: pointer;
    transition: opacity 0.3s, transform 0.2s;
    margin-top: 0.5rem;
  }
  .form-btn:hover { opacity: 0.9; transform: translateY(-1px); }
  .form-note { font-size: 0.72rem; color: var(--muted); margin-top: 0.6rem; text-align: center; }

  /* WHY */
  .why { background: #f0f8f5; }
  .why-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem; max-width: 1100px; margin: 0 auto;
  }
  .why-item { display: flex; gap: 1.2rem; align-items: flex-start; }
  .why-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem; font-weight: 600;
    color: rgba(14,107,107,0.2);
    line-height: 1; flex-shrink: 0;
  }
  .why-text h4 {
    font-size: 0.95rem; font-weight: 600;
    color: var(--navy); margin-bottom: 0.4rem;
  }
  .why-text p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; font-weight: 300; }

  /* FOOTER */
  footer {
    background: var(--navy);
    padding: 3rem;
    display: flex; flex-wrap: wrap; gap: 2rem;
    justify-content: space-between; align-items: center;
  }
  .footer-brand .logo { font-size: 1.3rem; }
  .footer-brand p { font-size: 0.8rem; color: rgba(248,251,250,0.45); margin-top: 0.4rem; font-weight: 300; }
  .footer-links { display: flex; gap: 2rem; }
  .footer-links a { font-size: 0.78rem; color: rgba(248,251,250,0.55); text-decoration: none; transition: color 0.3s; }
  .footer-links a:hover { color: var(--mint); }
  .footer-contact { text-align: right; }
  .footer-contact a { display: block; color: rgba(248,251,250,0.7); font-size: 0.85rem; text-decoration: none; margin-bottom: 0.3rem; }
  .footer-contact a:hover { color: var(--gold); }
  .footer-bottom {
    background: rgba(0,0,0,0.2); text-align: center;
    padding: 1rem 3rem;
    font-size: 0.72rem; color: rgba(248,251,250,0.3);
  }

  /* SUCCESS */
  .success-msg {
    display: none; text-align: center; padding: 2rem;
    background: rgba(14,107,107,0.08);
    border: 1px solid rgba(14,107,107,0.25);
    border-radius: 4px; color: var(--teal);
  }
  .success-msg h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; margin-bottom: 0.5rem; }

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

  @media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }
    nav ul { display: none; }
    .hero-content { padding: 7rem 1.5rem 3rem; }
    .hero-stats { position: relative; bottom: auto; right: auto; padding: 0 1.5rem 2rem; gap: 1.5rem; }
    section { padding: 4rem 1.5rem; }
    .lead-section { flex-direction: column; }
    .lead-visual { width: 100%; height: 220px; }
    .lead-form-wrap { padding: 2.5rem 1.5rem; }
    .form-grid { grid-template-columns: 1fr; }
    footer { flex-direction: column; text-align: center; }
    .footer-contact { text-align: center; }
  }