 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --green-deep: #28417A;
      --green-mid: #4C78A3;
      --green-light: #6C94C7;
      --green-pale: #EAF2FC;
      --cream: #F4F7FF;
      --terra: #6C94C7;
      --brown-soft: #8B5E52;
      --text-dark: #1A1A1A;
      --text-mid: #4A4A4A;
      --white: #FFFFFF;
      --shadow: 0 24px 60px rgba(40, 65, 122, 0.14);
      --shadow-soft: 0 12px 30px rgba(40, 65, 122, 0.08);
      --radius-xl: 28px;
      --radius-lg: 20px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background:
        radial-gradient(circle at top left, rgba(108, 148, 199, 0.16), transparent 30%),
        linear-gradient(135deg, var(--cream) 0%, #e9f1fb 100%);
      color: var(--text-dark);
      line-height: 1.6;
      min-height: 100vh;
      position: relative;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background:
        radial-gradient(circle at top right, rgba(108, 148, 199, 0.16), transparent 28%),
        linear-gradient(90deg, rgba(255,255,255,0.42), rgba(255,255,255,0));
      pointer-events: none;
      z-index: -1;
    }

    .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: var(--terra);
      transform-origin: left;
      transform: scaleX(0);
      z-index: 120;
    }

    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 5%;
      background: rgba(40, 65, 122, 0.92);
      backdrop-filter: blur(18px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      color: var(--white);
      letter-spacing: 0.03em;
      font-weight: 700;
    }

    .nav-logo span { color: var(--green-light); }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.2rem;
    }

    .nav-links a {
      color: rgba(255,255,255,0.9);
      text-decoration: none;
      font-size: 0.95rem;
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--green-light); }

    .nav-cta,
    .hero-btn,
    .cta-btn,
    .secondary-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .nav-cta { 
      background: var(--terra);
      color: var(--white);
      padding: 0.65rem 1.25rem;
      border-radius: 999px;
      font-size: 0.9rem;
      font-weight: 600;
      box-shadow: 0 12px 25px rgba(108, 148, 199, 0.23);
    }

    .nav-cta:hover,
    .hero-btn:hover,
    .cta-btn:hover,
    .secondary-btn:hover { transform: translateY(-2px); }

    .nav-toggle {
      display: none;
      background: transparent;
      border: none;
      color: var(--white);
      font-size: 1.3rem;
      cursor: pointer;
    }

    .hero {
      min-height: 100vh;
      background:
        linear-gradient(135deg, rgba(40, 65, 122, 0.95) 0%, rgba(15, 25, 58, 0.72) 100%),
        url('https://images.unsplash.com/photo-1588943211346-0908a1fb0b01?w=1400&q=80') center/cover no-repeat;
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 2.2rem;
      align-items: center;
      padding: 8.5rem 5% 4.5rem;
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .hero::after {
      content: '';
      position: absolute;
      right: -8%;
      bottom: -18%;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      background: rgba(255,255,255,0.08);
      filter: blur(6px);
      pointer-events: none;
    }

    .hero-content { max-width: 650px; position: relative; z-index: 1; }

    .paw-icon {
      font-size: 2.8rem;
      margin-bottom: 1rem;
      animation: float 3s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }

    .hero-eyebrow {
      font-size: 0.8rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--green-light);
      margin-bottom: 0.75rem;
      font-weight: 700;
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.6rem, 5.3vw, 4.3rem);
      line-height: 1.1;
      margin-bottom: 1rem;
      font-weight: 700;
    }

    .hero h1 em { color: var(--green-light); font-style: italic; }

    .hero-sub {
      font-size: 1.04rem;
      color: rgba(255,255,255,0.8);
      max-width: 560px;
      margin-bottom: 1.6rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 1.8rem;
    }

    .hero-btn {
      background: var(--terra);
      color: var(--white);
      padding: 0.95rem 1.6rem;
      border-radius: 999px;
      font-weight: 600;
      box-shadow: 0 12px 30px rgba(108, 148, 199, 0.35);
    }

    .hero-link {
      color: var(--white);
      text-decoration: none;
      padding: 0.95rem 1.2rem;
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: 999px;
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(6px);
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(90px, 1fr));
      gap: 0.9rem;
      margin-top: 1rem;
    }

    .stat-card {
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.16);
      border-radius: 18px;
      padding: 1rem;
      backdrop-filter: blur(8px);
      text-align: center;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
    }

    .stat-card strong {
      display: block;
      font-size: 1.2rem;
      color: var(--green-light);
      margin-bottom: 0.25rem;
    }

    .stat-card span {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.8);
    }

    .hero-card {
      background: rgba(255,255,255,0.14);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 26px;
      padding: 1.75rem;
      backdrop-filter: blur(14px);
      box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
    }

    .hero-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      margin-bottom: 0.8rem;
    }

    .hero-card p {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.84);
      margin-bottom: 1rem;
    }

    .hero-card ul {
      list-style: none;
      display: grid;
      gap: 0.65rem;
      margin-bottom: 1.1rem;
    }

    .hero-card li {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.92rem;
      color: rgba(255,255,255,0.92);
    }

    .secondary-btn {
      background: var(--white);
      color: var(--green-deep);
      padding: 0.8rem 1.1rem;
      border-radius: 999px;
      font-weight: 600;
    }

    .hours-panel {
      margin-top: 1rem;
      padding: 1rem 1.05rem;
      border-radius: 16px;
      background: rgba(255,255,255,0.14);
      border: 1px solid rgba(255,255,255,0.16);
      font-size: 0.92rem;
      color: rgba(255,255,255,0.95);
    }

    .strip {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 1rem;
      background: linear-gradient(135deg, rgba(234, 242, 252, 0.95) 0%, rgba(241, 247, 255, 0.95) 100%);
      color: var(--text-dark);
      padding: 2.4rem 5% 3rem;
      border-top: 1px solid rgba(40, 65, 122, 0.06);
    }

    .strip-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.8rem;
      padding: 1.5rem 1.2rem;
      font-size: 0.95rem;
      font-weight: 600;
      background: var(--white);
      border-radius: 20px;
      box-shadow: var(--shadow-soft);
      transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
      border: 1px solid rgba(40, 65, 122, 0.1);
      min-width: 165px;
      text-align: center;
      cursor: pointer;
    }

    .strip-item {
      animation: float-strip 2.6s ease-in-out infinite;
    }
    .strip-item:nth-child(0) { animation-delay: 0s; }
    .strip-item:nth-child(1) { animation-delay: 0.3s; }
    .strip-item:nth-child(2) { animation-delay: 0.6s; }
    .strip-item:nth-child(3) { animation-delay: 0.9s; }

    .strip-item:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 36px rgba(40, 65, 122, 0.16);
      background: linear-gradient(135deg, #f4f7ff 0%, var(--green-pale) 100%);
      border-color: var(--green-light);
    }

    .strip-item .icon {
      font-size: 2.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, rgba(108, 148, 199, 0.08), rgba(108, 148, 199, 0.12));
      border-radius: 14px;
      transition: transform 0.25s ease;
    }

    .strip-item:hover .icon {
      transform: scale(1.12) rotate(8deg);
    }

    section { padding: 5.5rem 5%; }

    .section-label {
      font-size: 0.74rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--green-deep);
      margin-bottom: 0.8rem;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 700;
      line-height: 1.2;
      color: var(--green-deep);
      max-width: 560px;
      margin-bottom: 1.2rem;
      letter-spacing: -0.02em;
    }

    .section-title em { font-style: italic; color: var(--green-light); }

    .section-body {
      font-size: 1rem;
      color: var(--text-mid);
      max-width: 560px;
      line-height: 1.8;
    }

    .sobre {
      background: linear-gradient(135deg, var(--white), #f7f9ff);
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 3rem;
      align-items: center;
    }

    .sobre-img-wrap { position: relative; }

    .sobre-img-wrap::before {
      content: '';
      position: absolute;
      inset: -18px -18px 18px 18px;
      border: 2px solid rgba(108, 148, 199, 0.36);
      border-radius: 22px;
      z-index: 0;
    }

    .sobre-img-wrap img {
      width: 100%;
      border-radius: 22px;
      position: relative;
      z-index: 1;
      object-fit: cover;
      aspect-ratio: 4/5;
      box-shadow: var(--shadow);
    }

    .sobre-badge {
      position: absolute;
      bottom: -18px;
      right: -18px;
      z-index: 2;
      background: var(--green-deep);
      color: var(--white);
      padding: 1rem 1.15rem;
      border-radius: 14px;
      text-align: center;
    }

    .sobre-badge .num { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--green-light); }
    .sobre-badge .lbl { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.85; margin-top: 0.2rem; }

    .servicos { background: linear-gradient(135deg, var(--green-pale), #eef5ff); }
    .servicos .inner { max-width: 1120px; margin: 0 auto; }
    .servicos-header { text-align: center; margin-bottom: 2.4rem; }
    .servicos-header .section-title { margin: 0 auto 1rem; }

    .filters {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.75rem;
      margin-bottom: 1.6rem;
    }

    .filter-btn {
      border: 1px solid rgba(40, 65, 122, 0.16);
      background: rgba(255,255,255,0.8);
      color: var(--green-deep);
      padding: 0.72rem 1rem;
      border-radius: 999px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }

    .filter-btn:hover {
      transform: translateY(-1px);
      background: var(--white);
    }

    .filter-btn.active {
      background: var(--green-deep);
      color: var(--white);
      border-color: var(--green-deep);
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.2rem;
    }

    .card {
      background: linear-gradient(145deg, #ffffff, #f4f7ff);
      border-radius: 18px;
      padding: 1.4rem;
      box-shadow: var(--shadow-soft);
      transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.25s ease;
      border-top: 3px solid transparent;
      border: 1px solid rgba(40, 65, 122, 0.06);
    }

    .card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 42px rgba(40, 65, 122, 0.14);
      border-top-color: var(--green-light);
    }

    .card.is-hidden { display: none; }

    .card-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
    .card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      color: var(--green-deep);
      margin-bottom: 0.6rem;
    }

    .card p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.7; }

    .cta-block {
      background: linear-gradient(135deg, var(--green-deep), #1e3368);
      text-align: center;
      padding: 5.5rem 5%;
      position: relative;
      overflow: hidden;
    }

    .cta-block::before {
      content: '';
      position: absolute;
      inset: auto auto -40px -40px;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: rgba(255,255,255,0.08);
      pointer-events: none;
    }

    .cta-block .section-label { color: var(--green-light); }
    .cta-block .section-title,
    .cta-block .section-body { color: var(--white); margin-left: auto; margin-right: auto; }
    .cta-block .section-body { opacity: 0.82; margin-bottom: 2rem; }

    .cta-btn {
      background: var(--green-light);
      color: var(--white);
      padding: 1rem 2rem;
      border-radius: 999px;
      font-weight: 700;
      box-shadow: 0 12px 28px rgba(108, 148, 199, 0.3);
    }

    footer {
      background: #102046;
      color: rgba(255,255,255,0.72);
      text-align: center;
      padding: 2rem 5%;
      font-size: 0.8rem;
      letter-spacing: 0.05em;
      border-top: 1px solid rgba(255,255,255,0.08);
    }

    footer span { color: var(--green-light); }

    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .strip.reveal {
      transform: translateY(0);
    }

    .strip.reveal.visible {
      transform: translateY(0);
    }

    @keyframes float-strip {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }

    @media (max-width: 900px) {
      .hero {
        grid-template-columns: 1fr;
        gap: 1.3rem;
      }
      .hero-card { max-width: 560px; }
    }

    @media (max-width: 760px) {
      .nav-toggle { display: inline-block; }
      .nav-links {
        position: absolute;
        top: 100%;
        right: 5%;
        flex-direction: column;
        align-items: flex-start;
        background: rgba(40, 65, 122, 0.98);
        padding: 1rem 1.2rem;
        border-radius: 16px;
        gap: 0.8rem;
        box-shadow: var(--shadow);
        display: none;
      }
      .nav-links.is-open { display: flex; }
      .nav-cta { display: none; }
      .sobre { grid-template-columns: 1fr; gap: 2rem; }
      .sobre-img-wrap::before { display: none; }
      .sobre-badge { right: 0; }
      .hero-stats { grid-template-columns: 1fr; }
      .strip-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); width: 100%; justify-content: center; }
      .strip-item:last-child { border-bottom: none; }
    }

    @media (prefers-reduced-motion: reduce) {
      .paw-icon,
      .card,
      .hero-btn,
      .cta-btn,
      .secondary-btn,
      .nav-cta,
      .reveal { transition: none; animation: none; }
    }