/* =========================================
       CSS VARIABLES — IDENTIDADE VISUAL
    ========================================= */
    :root {
      --pink:        #E8557A;
      --pink-light:  #F5A8BA;
      --pink-pale:   #FDF0F3;
      --black:       #1A1A1A;
      --dark:        #2C2C2C;
      --mid:         #6B6B6B;
      --light:       #F9F9F9;
      --white:       #FFFFFF;
      --accent:      #FF8FAB;
      --border:      rgba(232, 85, 122, 0.15);

      --font-display: 'Playfair Display', Georgia, serif;
      --font-body:    'DM Sans', sans-serif;

      --radius-sm:  8px;
      --radius-md:  16px;
      --radius-lg:  28px;
      --radius-xl:  48px;

      --shadow-sm:  0 2px 12px rgba(232,85,122,0.08);
      --shadow-md:  0 8px 32px rgba(232,85,122,0.14);
      --shadow-lg:  0 20px 60px rgba(232,85,122,0.18);

      --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* =========================================
       RESET & BASE
    ========================================= */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: var(--font-body);
      background: var(--white);
      color: var(--dark);
      line-height: 1.65;
      overflow-x: hidden;
    }

    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }
    ul { list-style: none; }

    /* =========================================
       UTILITY CLASSES
    ========================================= */
    .container {
      width: 100%;
      max-width: 1180px;
      margin-inline: auto;
      padding-inline: clamp(20px, 5vw, 60px);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: var(--radius-xl);
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.95rem;
      cursor: pointer;
      border: none;
      transition: var(--transition);
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--pink);
      color: var(--white);
      box-shadow: 0 4px 20px rgba(232,85,122,0.35);
    }
    .btn-primary:hover {
      background: #d4446a;
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(232,85,122,0.45);
    }

    .btn-outline {
      background: transparent;
      color: var(--pink);
      border: 2px solid var(--pink);
    }
    .btn-outline:hover {
      background: var(--pink);
      color: var(--white);
      transform: translateY(-2px);
    }

    .section-label {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--pink);
      background: var(--pink-pale);
      padding: 6px 14px;
      border-radius: 99px;
      border: 1px solid var(--border);
      margin-bottom: 16px;
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      color: var(--black);
      line-height: 1.2;
      margin-bottom: 16px;
    }

    .section-sub {
      font-size: 1.05rem;
      color: var(--mid);
      max-width: 520px;
      line-height: 1.7;
    }

    /* =========================================
       FADE-IN ANIMATION
    ========================================= */
    .fade-up {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* =========================================
       HEADER / NAVBAR
    ========================================= */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
      transition: var(--transition);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 70px;
    }

    /* Logo */
    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo-icon {
      width: 42px;
      height: 42px;
      background: none; /*var(--pink);*/
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
    }

    .logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }

    .logo-text span:first-child {
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--black);
    }

    .logo-text span:last-child {
      font-size: 0.72rem;
      font-weight: 500;
      color: var(--pink);
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    /* Nav links */
    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
    }

    .nav-links a {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--dark);
      position: relative;
      transition: color var(--transition);
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -3px; left: 0;
      width: 0; height: 2px;
      background: var(--pink);
      border-radius: 2px;
      transition: width var(--transition);
    }

    .nav-links a:hover { color: var(--pink); }
    .nav-links a:hover::after { width: 100%; }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
      background: none;
      border: none;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--dark);
      border-radius: 2px;
      transition: var(--transition);
    }

    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile menu */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 70px; left: 0; right: 0;
      background: var(--white);
      border-bottom: 1px solid var(--border);
      padding: 24px 28px;
      flex-direction: column;
      gap: 20px;
      z-index: 999;
      box-shadow: var(--shadow-md);
    }

    .mobile-menu.open { display: flex; }

    .mobile-menu a {
      font-size: 1.05rem;
      font-weight: 500;
      color: var(--dark);
      padding: 8px 0;
      border-bottom: 1px solid var(--border);
      transition: color var(--transition);
    }
    .mobile-menu a:hover { color: var(--pink); }

    /* =========================================
       HERO SECTION
    ========================================= */
    #inicio {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding-top: 70px;
      position: relative;
      overflow: hidden;
      background: var(--white);
    }

    /* Organic blob bg */
    .hero-blob {
      position: absolute;
      top: -10%;
      right: -5%;
      width: min(600px, 70vw);
      height: min(600px, 70vw);
      background: radial-gradient(circle at 60% 40%, var(--pink-light) 0%, var(--pink-pale) 55%, transparent 75%);
      border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
      animation: morphBlob 10s ease-in-out infinite;
      z-index: 0;
    }

    @keyframes morphBlob {
      0%, 100% { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; }
      33%       { border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%; }
      66%       { border-radius: 70% 30% 50% 50% / 30% 70% 60% 40%; }
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .hero-content { max-width: 560px; }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--pink-pale);
      border: 1px solid var(--border);
      color: var(--pink);
      font-size: 0.82rem;
      font-weight: 600;
      padding: 7px 16px;
      border-radius: 99px;
      margin-bottom: 24px;
      animation: fadeInDown 0.8s ease forwards;
    }

    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-16px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(2.2rem, 5.5vw, 3.8rem);
      line-height: 1.1;
      color: var(--black);
      margin-bottom: 20px;
      animation: fadeInUp 0.9s 0.1s ease both;
    }

    .hero-title em {
      font-style: normal;
      color: var(--pink);
    }

    .hero-sub {
      font-size: 1.05rem;
      color: var(--mid);
      margin-bottom: 36px;
      animation: fadeInUp 0.9s 0.2s ease both;
    }

    .hero-ctas {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      animation: fadeInUp 0.9s 0.3s ease both;
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .hero-stats {
      display: flex;
      gap: 32px;
      margin-top: 48px;
      animation: fadeInUp 0.9s 0.45s ease both;
    }

    .stat { display: flex; flex-direction: column; }

    .stat-num {
      font-family: var(--font-display);
      font-size: 1.9rem;
      font-weight: 900;
      color: var(--black);
      line-height: 1;
    }

    .stat-num span { color: var(--pink); }

    .stat-label {
      font-size: 0.78rem;
      color: var(--mid);
      font-weight: 500;
      margin-top: 4px;
    }

    /* Hero illustration */
    .hero-visual {
      display: flex;
      justify-content: center;
      align-items: center;
      animation: fadeInRight 1s 0.2s ease both;
    }

    @keyframes fadeInRight {
      from { opacity: 0; transform: translateX(40px); }
      to   { opacity: 1; transform: translateX(0); }
    }

    .hero-card {
      position: relative;
      width: min(420px, 90%);
    }

    .hero-card-main {
      background: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      aspect-ratio: 4/5;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(145deg, var(--pink-pale) 0%, #fff5f8 100%);
      position: relative;
    }

    /* Paw print decorations */
    .paw-deco {
      position: absolute;
      font-size: 6rem;
      opacity: 0.07;
      user-select: none;
    }

    .hero-pet-illustration {
      font-size: 7rem;
      position: relative;
      z-index: 1;
      animation: float 3s ease-in-out infinite;
      filter: drop-shadow(0 10px 20px rgba(232,85,122,0.2));
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-12px); }
    }

    /* Floating badges */
    .hero-floating {
      position: absolute;
      background: var(--white);
      border-radius: var(--radius-md);
      padding: 12px 16px;
      box-shadow: var(--shadow-md);
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.85rem;
      font-weight: 600;
      white-space: nowrap;
    }

    .hero-floating-1 {
      bottom: -16px;
      left: -16px;
      color: var(--dark);
    }

    .hero-floating-2 {
      top: 24px;
      right: -20px;
      color: var(--dark);
    }

    .float-icon {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
    }

    .float-icon.green { background: #e8f5e9; }
    .float-icon.pink  { background: var(--pink-pale); }

    /* =========================================
       SOBRE SECTION
    ========================================= */
    #sobre {
      padding: clamp(70px, 10vw, 120px) 0;
      background: var(--light);
    }

    .sobre-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .sobre-visual {
      position: relative;
    }

    .sobre-img-wrap {
      aspect-ratio: 1;
      max-width: 460px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: linear-gradient(135deg, var(--pink-pale), #ffe8ef);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 8rem;
      box-shadow: var(--shadow-lg);
      position: relative;
    }

    .sobre-deco {
      position: absolute;
      bottom: -20px;
      right: -20px;
      width: 120px;
      height: 120px;
      background: var(--pink);
      border-radius: var(--radius-md);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 4px;
      box-shadow: var(--shadow-md);
    }

    .sobre-deco-num {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 900;
      color: var(--white);
      line-height: 1;
    }

    .sobre-deco-txt {
      font-size: 0.72rem;
      font-weight: 600;
      color: rgba(255,255,255,0.85);
      text-align: center;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .sobre-content { max-width: 520px; }

    .sobre-features {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-top: 32px;
    }

    .feature-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 16px;
      background: var(--white);
      border-radius: var(--radius-md);
      border: 1px solid var(--border);
      transition: var(--transition);
    }

    .feature-item:hover {
      box-shadow: var(--shadow-sm);
      transform: translateX(4px);
    }

    .feature-icon {
      width: 40px;
      height: 40px;
      min-width: 40px;
      border-radius: 10px;
      background: var(--pink-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
    }

    .feature-text h4 {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--black);
      margin-bottom: 2px;
    }

    .feature-text p {
      font-size: 0.82rem;
      color: var(--mid);
    }

    /* =========================================
       SERVIÇOS SECTION
    ========================================= */
    #servicos {
      padding: clamp(70px, 10vw, 120px) 0;
      background: var(--white);
    }

    .servicos-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .servicos-header .section-sub { margin-inline: auto; }

    .servicos-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 24px;
    }

    .service-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 36px 28px;
      text-align: center;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
      cursor: default;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--pink);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform var(--transition);
    }

    .service-card:hover::before { transform: scaleX(1); }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
      border-color: var(--pink-light);
    }

    .service-icon {
      width: 72px;
      height: 72px;
      border-radius: 20px;
      background: var(--pink-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      margin: 0 auto 20px;
      transition: var(--transition);
    }

    .service-card:hover .service-icon {
      background: var(--pink);
      transform: scale(1.1);
    }

    .service-card h3 {
      font-family: var(--font-display);
      font-size: 1.25rem;
      color: var(--black);
      margin-bottom: 12px;
    }

    .service-card p {
      font-size: 0.88rem;
      color: var(--mid);
      line-height: 1.65;
    }

    .service-tag {
      display: inline-block;
      margin-top: 20px;
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--pink);
      background: var(--pink-pale);
      padding: 5px 12px;
      border-radius: 99px;
    }

    /* =========================================
       CONTATO SECTION
    ========================================= */
    #contato {
      padding: clamp(70px, 10vw, 120px) 0;
      background: var(--light);
    }

    .contato-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
    }

    .contato-info h2 {
      margin-bottom: 32px;
    }

    .info-cards {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .info-card {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 20px;
      transition: var(--transition);
    }

    .info-card:hover {
      box-shadow: var(--shadow-sm);
      border-color: var(--pink-light);
    }

    .info-card-icon {
      width: 44px;
      height: 44px;
      min-width: 44px;
      border-radius: 12px;
      background: var(--pink);
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.15rem;
    }

    .info-card-body { flex: 1; }

    .info-card-label {
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--mid);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 4px;
    }

    .info-card-value {
      font-size: 0.92rem;
      font-weight: 500;
      color: var(--dark);
    }

    .info-card-value a {
      color: var(--pink);
      transition: color var(--transition);
    }
    .info-card-value a:hover { color: #c43d61; }

    /* Horário */
    .horario-grid {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-top: 6px;
    }

    .horario-row {
      display: flex;
      justify-content: space-between;
      font-size: 0.88rem;
      color: var(--dark);
    }

    .horario-row span:last-child {
      font-weight: 600;
      color: var(--pink);
    }

    /* Map */
    .map-wrap {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      height: 100%;
      min-height: 400px;
      border: 1px solid var(--border);
    }

    .map-wrap iframe {
      width: 100%;
      height: 100%;
      min-height: 400px;
      border: none;
      display: block;
    }

    /* =========================================
       FOOTER
    ========================================= */
    footer {
      background: var(--black);
      color: rgba(255,255,255,0.75);
      padding: 56px 0 0;
    }

    .footer-inner {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 48px;
    }

    .footer-brand .logo { margin-bottom: 16px; }
    .footer-brand .logo-text span:first-child { color: var(--white); }

    .footer-desc {
      font-size: 0.88rem;
      line-height: 1.7;
      max-width: 280px;
      margin-bottom: 24px;
    }

    .social-links {
      display: flex;
      gap: 10px;
    }

    .social-link {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: rgba(255,255,255,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      transition: var(--transition);
      color: rgba(255,255,255,0.7);
    }

    .social-link:hover {
      background: var(--pink);
      color: var(--white);
      transform: translateY(-2px);
    }

    .footer-col h4 {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--white);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 20px;
    }

    .footer-col ul {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-col ul li a {
      font-size: 0.88rem;
      color: rgba(255,255,255,0.6);
      transition: color var(--transition);
    }

    .footer-col ul li a:hover { color: var(--pink-light); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 20px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }

    .footer-bottom p {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.4);
    }

    .footer-bottom a { color: var(--pink-light); }

    /* =========================================
       WHATSAPP FLOATING BUTTON
    ========================================= */
    .wa-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 2000;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 10px;
    }

    .wa-bubble {
      background: var(--white);
      color: var(--dark);
      padding: 10px 16px;
      border-radius: 12px 12px 0 12px;
      font-size: 0.82rem;
      font-weight: 500;
      box-shadow: var(--shadow-md);
      max-width: 200px;
      text-align: right;
      opacity: 0;
      transform: translateX(10px);
      pointer-events: none;
      transition: var(--transition);
    }

    .wa-float:hover .wa-bubble {
      opacity: 1;
      transform: translateX(0);
    }

    .wa-btn {
      width: 58px;
      height: 58px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(37,211,102,0.4);
      transition: var(--transition);
      animation: waPulse 2.5s ease-in-out infinite;
    }

    .wa-btn:hover {
      transform: scale(1.08);
      box-shadow: 0 8px 28px rgba(37,211,102,0.5);
    }

    .wa-btn svg {
      width: 28px;
      height: 28px;
      fill: var(--white);
    }

    @keyframes waPulse {
      0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
      50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.65); }
    }

    /* =========================================
       RESPONSIVE — TABLET
    ========================================= */
    @media (max-width: 900px) {
      .hero-inner { grid-template-columns: 1fr; gap: 48px; }
      .hero-visual { order: -1; }
      .hero-card { width: min(340px, 85vw); margin-inline: auto; }

      .sobre-inner    { grid-template-columns: 1fr; gap: 48px; }
      .sobre-visual   { max-width: 380px; }
      .sobre-img-wrap { max-width: 100%; }

      .contato-inner  { grid-template-columns: 1fr; }

      .footer-inner   { grid-template-columns: 1fr 1fr; }
    }

    /* =========================================
       RESPONSIVE — MOBILE
    ========================================= */
    @media (max-width: 600px) {
      .nav-links, .nav .btn { display: none; }
      .hamburger { display: flex; }

      .hero-stats { gap: 5px; flex-wrap: wrap; }

      .footer-inner   { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom  { flex-direction: column; text-align: center; }

      .wa-float { bottom: 20px; right: 16px; }
    }