    :root {
      --bg: #f6fbfd;
      --paper: #ffffff;
      --text: #183038;
      --muted: #5e747b;
      --brand: #9bc43a;
      --brand-dark: #6f9724;
      --brand-blue: #25aee4;
      --brand-blue-dark: #1188bd;
      --mint: #eaf6d7;
      --aqua: #e5f7fc;
      --line: rgba(24, 48, 56, 0.12);
      --shadow: 0 24px 70px rgba(17, 136, 189, 0.14);
      --radius: 28px;
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background:
        radial-gradient(circle at top left, rgba(229, 247, 252, 0.95), transparent 34%),
        radial-gradient(circle at bottom right, rgba(155, 196, 58, 0.20), transparent 32%),
        var(--bg);
      color: var(--text);
      line-height: 1.6;
    }

    a { color: inherit; text-decoration: none; }

    .container {
      width: min(1160px, calc(100% - 40px));
      margin: 0 auto;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(16px);
      background: rgba(246, 251, 253, 0.82);
      border-bottom: 1px solid var(--line);
    }

    .nav {
      min-height: 92px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .brand-logo {
      height: 150px;
      padding-bottom: 5px;
      padding-top: 5px;
      width: auto;
      display: flex;
      filter: drop-shadow(0 10px 20px rgba(17, 136, 189, 0.12));
    }

    .menu {
      display: flex;
      align-items: center;
      gap: 28px;
      color: var(--muted);
      font-weight: 600;
      font-size: 20px;
    }

    .menu a:hover { color: var(--brand-blue-dark); }

    .btn {
      border: 0;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 22px;
      border-radius: 999px;
      font-weight: 700;
      transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    }

    .btn:hover { transform: translateY(-2px); }

    .btn-primary {
      color: white;
      background: linear-gradient(135deg, var(--brand-blue-dark), var(--brand-blue) 52%, var(--brand));
      box-shadow: 0 16px 34px rgba(17, 136, 189, 0.24);
    }

    .btn-light {
      background: white;
      color: var(--brand-blue-dark);
      border: 1px solid rgba(37, 174, 228, 0.28);
    }

    .hero { padding: 74px 0 56px; }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.02fr .98fr;
      gap: 56px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--brand-blue-dark);
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid rgba(37, 174, 228, 0.18);
      border-radius: 999px;
      padding: 8px 14px;
      font-size: 13px;
      font-weight: 700;
    }

    h1, h2, h3 {
      font-family: "Playfair Display", Georgia, serif;
      line-height: 1.02;
      letter-spacing: -0.045em;
      margin: 0;
    }

    h1 {
      font-size: clamp(46px, 6vw, 84px);
      margin-top: 22px;
    }

    h1 span { color: var(--brand-blue); }

    .lead {
      max-width: 610px;
      color: var(--muted);
      font-size: 19px;
      margin: 24px 0 34px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center;
    }

    .trust-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 44px;
      max-width: 660px;
    }

    .trust-card {
      background: rgba(255, 255, 255, 0.68);
      border: 1px solid var(--line);
      border-radius: 22px;
      padding: 18px;
    }

    .trust-card strong {
      display: block;
      font-size: 22px;
      color: var(--brand-blue-dark);
    }

    .trust-card small { color: var(--muted); font-weight: 600; }

    .hero-visual {
      position: relative;
      min-height: 620px;
    }

    .photo-card {
      position: absolute;
      inset: 0 0 0 42px;
      border-radius: 44px;
      overflow: hidden;
      box-shadow: var(--shadow);
      background: linear-gradient(135deg, var(--aqua), var(--mint));
    }

    .photo-card {
      position: absolute;
      inset: 0 0 0 42px;
      border-radius: 44px;
      overflow: hidden;
      box-shadow: var(--shadow);
      background-image:
        linear-gradient(to bottom, rgba(24,48,56,0), rgba(24,48,56,.18)),
        url('../imagens/dra-marina.png');
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
    }

    .floating-card {
      position: absolute;
      left: 0;
      bottom: -50px;
      width: 310px;
      padding: 22px;
      border-radius: 28px;
      background: rgba(255,255,255,.90);
      backdrop-filter: blur(16px);
      border: 1px solid rgba(255,255,255,.8);
      box-shadow: 0 24px 54px rgba(17, 136, 189, 0.18);
    }

    .floating-card strong {
      display: block;
      font-size: 17px;
      margin-bottom: 6px;
    }

    .floating-card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .seal {
      position: absolute;
      right: -8px;
      top: 42px;
      width: 142px;
      height: 142px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      text-align: center;
      color: white;
      background: linear-gradient(135deg, var(--brand-blue), var(--brand));
      box-shadow: 0 18px 40px rgba(17, 136, 189, 0.28);
      font-family: "Playfair Display", serif;
      font-size: 22px;
      line-height: 1.08;
    }

    section { padding: 74px 0; }

    .section-head {
      display: flex;
      justify-content: space-between;
      gap: 32px;
      align-items: end;
      margin-bottom: 34px;
    }

    .section-head h2 {
      font-size: clamp(34px, 4.2vw, 58px);
      max-width: 720px;
    }

    .section-head p {
      color: var(--muted);
      max-width: 380px;
      margin: 0;
    }

    .services {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .service-card {
      background: rgba(255,255,255,.72);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 26px;
      min-height: 245px;
      transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 22px 50px rgba(17, 136, 189, .12);
      background: white;
    }

    .icon {
      width: 48px;
      height: 48px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--aqua), var(--mint));
      color: var(--brand-blue-dark);
      font-size: 22px;
      margin-bottom: 22px;
    }

    .service-card h3 {
      font-size: 25px;
      margin-bottom: 12px;
    }

    .service-card p { margin: 0; color: var(--muted); }

    .about-panel {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 42px;
      align-items: center;
      background: linear-gradient(135deg, #123c4c, #0f7fae 54%, #7fb12c);
      color: white;
      border-radius: 44px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .about-image {
      min-height: 560px;
      background: url('https://images.unsplash.com/photo-1629909613654-28e377c37b09?auto=format&fit=crop&w=900&q=85') center/cover;
    }

    .about-content { padding: 56px 56px 56px 14px; }

    .about-content h2 {
      font-size: clamp(34px, 4vw, 56px);
      margin-bottom: 22px;
    }

    .about-content p { color: rgba(255,255,255,.82); }

    .features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-top: 30px;
    }

    .feature {
      padding: 16px;
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 20px;
      background: rgba(255,255,255,.08);
    }

    .feature strong { display: block; margin-bottom: 4px; }
    .feature small { color: rgba(255,255,255,.72); }

    .journey {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .step {
      padding: 30px;
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: var(--radius);
    }

    .step-number {
      color: var(--brand-blue);
      font-weight: 800;
      margin-bottom: 40px;
    }

    .step h3 { font-size: 28px; margin-bottom: 12px; }
    .step p { margin: 0; color: var(--muted); }

    .testimonial-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .testimonial {
      background: rgba(255,255,255,.76);
      border: 1px solid var(--line);
      border-radius: 32px;
      padding: 34px;
    }

    .stars { color: var(--brand); letter-spacing: 3px; margin-bottom: 18px; }
    .testimonial p { font-size: 18px; margin: 0 0 24px; }
    .testimonial strong { color: var(--brand-blue-dark); }

    .cta {
      padding: 70px;
      border-radius: 44px;
      color: white;
      overflow: hidden;
      position: relative;
      background:
        linear-gradient(100deg, rgba(18,60,76,.96), rgba(15,127,174,.78), rgba(111,151,36,.68)),
        url('https://images.unsplash.com/photo-1609840114035-3c981b782dfe?auto=format&fit=crop&w=1400&q=85') center/cover;
    }

    .cta h2 {
      max-width: 760px;
      font-size: clamp(36px, 5vw, 68px);
      margin-bottom: 20px;
    }

    .cta p {
      max-width: 610px;
      color: rgba(255,255,255,.82);
      font-size: 18px;
      margin-bottom: 30px;
    }

    footer {
      padding: 44px 0;
      color: var(--muted);
      border-top: 1px solid var(--line);
    }

    .footer-grid {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
    }

    @media (max-width: 980px) {
      .menu { display: none; }
      .hero-grid, .about-panel, .testimonial-wrap { grid-template-columns: 1fr; }
      .hero-visual { min-height: 520px; }
      .photo-card { inset: 0; }
      .services { grid-template-columns: repeat(2, 1fr); }
      .journey { grid-template-columns: 1fr; }
      .about-content { padding: 42px; }
      .about-image { min-height: 380px; }
      .section-head { display: block; }
      .section-head p { margin-top: 16px; }
    }

    @media (max-width: 620px) {
      .container { width: min(100% - 28px, 1160px); }
      .nav { min-height: 78px; }
      .brand-logo { height: 54px; }
      .hero { padding-top: 42px; }
      .trust-row, .services, .features { grid-template-columns: 1fr; }
      .hero-visual { min-height: 440px; }
      .floating-card { width: calc(100% - 28px); left: 14px; bottom: 20px; }
      .seal { width: 112px; height: 112px; font-size: 18px; right: 14px; }
      .cta { padding: 38px 26px; }
      .btn { width: 100%; }
    }

    .mapa {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:#25D366;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    color:white;
    text-decoration:none;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
    z-index:999;
}

.social-footer {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    color: white;
    background: linear-gradient(
        135deg,
        var(--brand-blue-dark),
        var(--brand-blue),
        var(--brand)
    );
    box-shadow: 0 8px 25px rgba(17,136,189,.25);
    transition: all .3s ease;
}

.instagram-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(17,136,189,.35);
}