@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

    :root{
      --pink:#e63f98;
      --pink-strong:#d62b86;
      --pink-soft:#fff2f8;
      --rose:#ff6dbd;
      --text:#241b20;
      --muted:#6f6670;
      --border:#ece7ec;
      --bg:#fffafc;
      --card:#ffffff;
      --shadow:0 14px 38px rgba(31,18,28,.08);
      --shadow-soft:0 10px 24px rgba(31,18,28,.05);
      --radius:22px;
      --heroText:rgba(255,255,255,.96);
      --header-h:72px;
      --max:1180px;
    }

    *{box-sizing:border-box;margin:0;padding:0}
    html{scroll-behavior:smooth}
    body{
      font-family:Inter,system-ui,-apple-system,Segoe UI,Arial,sans-serif;
      color:var(--text);
      background:#fff;
      -webkit-font-smoothing:antialiased;
      text-rendering:optimizeLegibility;
    }
    a{text-decoration:none;color:inherit}
    img{max-width:100%;display:block}
    button,input,textarea,select{font:inherit}
    section[id]{scroll-margin-top:86px}

    .section-shell{max-width:var(--max);margin:0 auto;padding:0 18px}
    .section-title{font-family:'Great Vibes','Segoe Script','Brush Script MT',cursive;font-size:clamp(38px,5.2vw,58px);line-height:1.08;font-weight:400;letter-spacing:0;color:#231b20}
    .section-subtitle{margin-top:10px;font-size:15px;line-height:1.7;color:var(--muted)}

    header{
      position:fixed;
      inset:0 0 auto 0;
      height:var(--header-h);
      z-index:9999;
      background:rgba(255,255,255,.9);
      backdrop-filter:blur(12px);
      -webkit-backdrop-filter:blur(12px);
      border-bottom:1px solid rgba(236,231,236,.85);
    }
    .nav{
      max-width:var(--max);
      margin:0 auto;
      height:100%;
      padding:0 18px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:0;
      font-weight:800;
      letter-spacing:-.01em;
    }
    .brand-logo{width:34px;height:34px;object-fit:contain;border-radius:10px}
    .brand-copy{display:flex;flex-direction:column;line-height:1.05}
    .brand-copy strong{font-size:15px;color:#231b20}
    .brand-copy span{font-size:11px;color:var(--muted);font-weight:600}

    .menu{
      display:flex;
      align-items:center;
      gap:22px;
    }
    .menu a{
      position:relative;
      font-size:14px;
      color:#5d5560;
      font-weight:600;
      transition:color .2s ease;
    }
    .menu a:hover{color:#231b20}
    .menu a::after{
      content:"";
      position:absolute;
      left:0;bottom:-8px;
      width:100%;height:2px;
      transform:scaleX(0);
      transform-origin:left;
      background:linear-gradient(90deg,var(--pink),var(--rose));
      transition:transform .22s ease;
    }
    .menu a:hover::after{transform:scaleX(1)}

    .actions{display:flex;align-items:center;gap:10px}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:44px;
      padding:11px 16px;
      border-radius:999px;
      border:1px solid var(--border);
      background:#fff;
      color:#2d2328;
      font-size:14px;
      font-weight:700;
      cursor:pointer;
      transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
    }
    .btn:hover{transform:translateY(-1px);box-shadow:var(--shadow-soft)}
    .btn-primary{
      border:none;
      color:#fff;
      background:linear-gradient(135deg,var(--pink-strong),var(--rose));
      box-shadow:0 12px 28px rgba(230,63,152,.28);
    }
    .btn-outline{background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.22);color:#fff}

    .menu-toggle{
      display:none;
      width:44px;height:44px;
      border-radius:12px;
      border:1px solid var(--border);
      background:#fff;
      color:#33272d;
      font-size:18px;
      cursor:pointer;
    }

    .hero{
      position:relative;
      min-height:100svh;
      padding-top:var(--header-h);
      overflow:hidden;
      background:#120d11;
    }
    .hero-video,
    .hero-overlay,
    .hero-hit{position:absolute;inset:0}
    .hero-video{z-index:0}
    .hero-video video{width:100%;height:100%;object-fit:cover;object-position:center}
    .hero-overlay{
      z-index:1;
      background:
        radial-gradient(1000px 600px at 50% 38%, rgba(0,0,0,.12), rgba(0,0,0,.45)),
        linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.62));
    }
    .hero-hit{top:var(--header-h);z-index:2}
    .hero-hit a{display:block;width:100%;height:100%}

    .hero-content{
      position:relative;
      z-index:3;
      min-height:calc(100svh - var(--header-h));
      display:grid;
      place-items:center;
      padding:26px 18px;
      text-align:center;
      color:var(--heroText);
      pointer-events:none;
    }
    .hero-card{
      pointer-events:auto;
      width:min(92vw,620px);
      padding:28px 24px;
      border-radius:28px;
      background:rgba(16,13,18,.28);
      border:1px solid rgba(255,255,255,.16);
      backdrop-filter:blur(14px);
      -webkit-backdrop-filter:blur(14px);
      box-shadow:0 30px 80px rgba(0,0,0,.38);
    }
    .hero-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      margin-bottom:14px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.12);
      border:1px solid rgba(255,255,255,.18);
      font-size:12px;
      font-weight:700;
      letter-spacing:.02em;
    }
    .hero-card h1{
      font-family:'Great Vibes','Segoe Script','Brush Script MT',cursive;
      font-size:clamp(44px,7vw,78px);
      line-height:1.04;
      letter-spacing:0;
      font-weight:400;
      margin-bottom:14px;
    }
    .hero-card p{
      max-width:520px;
      margin:0 auto;
      font-size:16px;
      line-height:1.7;
      color:rgba(255,255,255,.86);
    }
    .hero-actions{
      display:flex;
      justify-content:center;
      gap:12px;
      flex-wrap:wrap;
      margin-top:24px;
    }
    .hero-points{
      display:flex;
      justify-content:center;
      flex-wrap:wrap;
      gap:10px;
      margin-top:18px;
    }
    .hero-point{
      padding:9px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.1);
      border:1px solid rgba(255,255,255,.16);
      font-size:12px;
      font-weight:700;
    }

    .services{
      padding:72px 0 30px;
      background:linear-gradient(180deg,#fff 0%, #fff8fb 100%);
    }
    .services-top{
      display:flex;
      align-items:end;
      justify-content:space-between;
      gap:20px;
      margin-bottom:28px;
      flex-wrap:wrap;
    }
    .services-note{
      max-width:320px;
      padding:14px 16px;
      border-radius:18px;
      background:#fff;
      border:1px solid var(--border);
      color:var(--muted);
      font-size:13px;
      line-height:1.6;
      box-shadow:var(--shadow-soft);
    }
    .services-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:16px;
    }
    .service-card{
      display:flex;
      flex-direction:column;
      gap:16px;
      padding:20px;
      border-radius:24px;
      background:rgba(255,255,255,.94);
      border:1px solid #f2e8ee;
      box-shadow:var(--shadow-soft);
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .service-card:hover{
      transform:translateY(-3px);
      border-color:#f0c6dd;
      box-shadow:0 16px 36px rgba(230,63,152,.1);
    }
    .service-top{display:flex;align-items:flex-start;gap:0}
    .service-copy{min-width:0}
    .service-name{font-size:17px;line-height:1.25;font-weight:800;color:#251d22}
    .service-description{margin-top:6px;font-size:13px;color:var(--muted)}
    .service-meta{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-top:auto;
      padding-top:14px;
      border-top:1px solid #f4edf1;
    }
    .service-price strong{display:block;font-size:21px;letter-spacing:-.03em;color:#231b20}
    .service-price span{font-size:12px;color:var(--muted)}
    .service-button{
      min-width:122px;
      min-height:42px;
      padding:10px 14px;
      border-radius:999px;
      background:#231b20;
      color:#fff;
      font-size:13px;
      font-weight:800;
      text-align:center;
      transition:background .18s ease, transform .18s ease;
    }
    .service-button:hover{background:var(--pink-strong);transform:translateY(-1px)}

    .sobre-section{
      padding:54px 0 32px;
      background:#fff;
    }
    .sobre-container{
      max-width:var(--max);
      margin:0 auto;
      padding:0 18px;
      display:grid;
      grid-template-columns:340px 1fr;
      gap:48px;
      align-items:center;
    }
    .sobre-card{
      position:relative;
      width:100%;
      max-width:320px;
      aspect-ratio: 3 / 4.1;
      border-radius:42px;
      overflow:hidden;
      box-shadow:0 20px 44px rgba(25,18,25,.12);
      background:#f8eef4;
      justify-self:center;
    }
    .sobre-card img{width:100%;height:100%;object-fit:cover}
    .sobre-badge{
      position:absolute;
      left:18px;right:18px;bottom:18px;
      padding:14px 16px;
      border-radius:20px;
      background:rgba(20,13,18,.55);
      backdrop-filter:blur(10px);
      -webkit-backdrop-filter:blur(10px);
      border:1px solid rgba(255,255,255,.14);
      color:#fff;
    }
    .sobre-badge strong{display:block;font-size:18px}
    .sobre-badge span{display:block;margin-top:4px;font-size:13px;color:rgba(255,255,255,.78)}
    .sobre-texto h2{font-family:'Great Vibes','Segoe Script','Brush Script MT',cursive;font-size:clamp(42px,6vw,64px);line-height:1.05;font-weight:400;letter-spacing:0}
    .sobre-texto p{margin-top:16px;font-size:15px;line-height:1.82;color:#4f4750}
    .sobre-highlight{
      margin-top:18px;
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:12px;
    }
    .sobre-chip{
      padding:14px 14px;
      border-radius:18px;
      background:var(--pink-soft);
      border:1px solid #f7d5e5;
      font-size:13px;
      font-weight:700;
      color:#523844;
      text-align:center;
    }


    .reviews-balloons{
      padding:68px 0 30px;
      background:
        radial-gradient(700px 260px at 50% 35%, rgba(230,63,152,.08), transparent 70%),
        linear-gradient(180deg,#fff 0%, #fff8fb 100%);
      overflow:hidden;
    }
    .reviews-stage{
      position:relative;
      min-height:560px;
      margin-top:24px;
      border-radius:36px;
      padding:44px 28px 34px;
      background:
        linear-gradient(145deg, rgba(255,255,255,.96), rgba(255,247,251,.98)),
        repeating-linear-gradient(135deg, rgba(230,63,152,.035) 0 18px, rgba(255,255,255,0) 18px 90px);
      border:1px solid #f3dde8;
      box-shadow:0 24px 60px rgba(31,18,28,.08);
    }
    .reviews-intro{
      max-width:560px;
      text-align:center;
      margin:0 auto;
      position:relative;
      z-index:2;
    }
    .reviews-intro .section-title{
      margin-bottom:8px;
    }
    .reviews-copy{
      font-size:15px;
      line-height:1.75;
      color:#6d636d;
      max-width:520px;
      margin:0 auto;
    }
    .reviews-score{
      display:inline-flex;
      align-items:center;
      gap:10px;
      margin-top:18px;
      padding:12px 18px;
      border-radius:999px;
      background:#fff;
      border:1px solid #f1d8e6;
      box-shadow:0 12px 28px rgba(31,18,28,.06);
      font-size:15px;
      font-weight:800;
      color:#231b20;
    }
    .reviews-score-stars{
      color:#f4b400;
      letter-spacing:2px;
      font-size:16px;
    }
    .reviews-badge-note{
      display:block;
      margin-top:10px;
      font-size:13px;
      color:#8a7f88;
      font-weight:600;
    }
    .reviews-google-btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      margin-top:20px;
      min-height:46px;
      padding:12px 20px;
      border-radius:999px;
      background:linear-gradient(135deg,var(--pink-strong),var(--rose));
      color:#fff;
      font-size:14px;
      font-weight:800;
      box-shadow:0 14px 32px rgba(230,63,152,.25);
      transition:transform .18s ease, box-shadow .18s ease;
      position:relative;
      z-index:3;
    }
    .reviews-google-btn:hover{
      transform:translateY(-2px);
      box-shadow:0 18px 38px rgba(230,63,152,.3);
    }
    .reviews-list{
      position:relative;
      min-height:360px;
      margin-top:38px;
    }
    .review-bubble{
      position:absolute;
      width:min(100%, 310px);
      padding:18px 18px 16px;
      background:#fff;
      border:1px solid #f1dce8;
      border-radius:24px;
      box-shadow:0 18px 42px rgba(31,18,28,.09);
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      color:#2f262c;
      z-index:2;
    }
    .review-bubble:hover{
      transform:translateY(-4px);
      border-color:#efc8dc;
      box-shadow:0 22px 48px rgba(31,18,28,.14);
    }
    .review-bubble::after{
      content:"";
      position:absolute;
      width:32px;
      height:32px;
      background:#fff;
      border-right:1px solid #f1dce8;
      border-bottom:1px solid #f1dce8;
      bottom:-11px;
      transform:rotate(45deg);
      z-index:1;
    }
    .review-bubble.left::after{left:34px;}
    .review-bubble.center::after{left:calc(50% - 16px);}
    .review-bubble.right::after{right:34px;}
    .review-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      margin-bottom:12px;
      position:relative;
      z-index:2;
    }
    .review-person{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:0;
    }
    .review-avatar{
      width:44px;
      height:44px;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:linear-gradient(135deg,#f9d9ea,#f5a9cf);
      color:#8d2e64;
      font-size:16px;
      font-weight:800;
      flex-shrink:0;
      overflow:hidden;
    }
    .review-avatar img{
      width:100%;
      height:100%;
      object-fit:cover;
      border-radius:50%;
    }
    .review-meta{
      min-width:0;
    }
    .review-name{
      display:block;
      font-size:15px;
      font-weight:800;
      color:#231b20;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .review-time{
      display:block;
      margin-top:3px;
      font-size:12px;
      color:#8b8188;
      font-weight:600;
    }
    .google-icon{
      width:26px;
      height:26px;
      flex-shrink:0;
    }
    .review-stars{
      margin-bottom:12px;
      color:#f4b400;
      letter-spacing:2px;
      font-size:18px;
      font-weight:800;
      position:relative;
      z-index:2;
    }
    .review-text{
      font-size:14px;
      line-height:1.7;
      color:#4f454d;
      position:relative;
      z-index:2;
    }
    .review-bubble.b1{top:18px;left:8px;}
    .review-bubble.b2{top:0;right:8px;}
    .review-bubble.b3{left:50%;bottom:0;transform:translateX(-50%);}
    .review-bubble.b3:hover{transform:translateX(-50%) translateY(-4px);}
    .reviews-center-orb{
      position:absolute;
      inset:148px 0 auto 0;
      width:220px;
      height:220px;
      margin:auto;
      border-radius:50%;
      background:radial-gradient(circle at 35% 30%, rgba(255,255,255,.95), rgba(255,230,243,.78) 46%, rgba(230,63,152,.14) 100%);
      filter:blur(2px);
      opacity:.95;
      z-index:1;
      box-shadow:0 24px 60px rgba(230,63,152,.12);
      pointer-events:none;
    }

    @media (max-width:980px){
      .reviews-stage{
        min-height:auto;
        padding:36px 18px 28px;
      }
      .reviews-list{
        min-height:auto;
        display:grid;
        gap:18px;
        margin-top:26px;
      }
      .reviews-center-orb{display:none;}
      .review-bubble,
      .review-bubble.b1,
      .review-bubble.b2,
      .review-bubble.b3{
        position:relative;
        width:100%;
        left:auto;
        right:auto;
        top:auto;
        bottom:auto;
        transform:none;
        max-width:none;
      }
      .review-bubble.b3:hover{transform:translateY(-4px);}
      .review-bubble::after{
        left:34px !important;
        right:auto !important;
      }
    }

    @media (max-width:720px){
      .reviews-balloons{padding:54px 0 18px;}
      .reviews-stage{border-radius:28px;}
      .review-bubble{border-radius:20px;}
      .reviews-score{
        flex-direction:column;
        gap:6px;
        padding:14px 18px;
      }
      .reviews-google-btn{
        width:100%;
      }
    }

    .contact-section{
      padding:56px 0 42px;
      background:var(--bg);
    }
    .contact-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:18px;
      margin-top:28px;
    }
    .contact-card,
    .map-card{
      background:#fff;
      border:1px solid var(--border);
      border-radius:26px;
      box-shadow:var(--shadow-soft);
      overflow:hidden;
    }
    .contact-card{padding:24px}
    .contact-card h3,
    .map-card h3{font-family:'Great Vibes','Segoe Script','Brush Script MT',cursive;font-size:clamp(34px,4.6vw,48px);line-height:1.08;font-weight:400;letter-spacing:0;margin-bottom:18px}
    .info-list{display:grid;gap:16px}
    .info-item{padding:14px 0;border-bottom:1px solid #f2edf1}
    .info-item:last-child{border-bottom:none;padding-bottom:0}
    .info-label{font-size:12px;font-weight:800;letter-spacing:.06em;text-transform:uppercase;color:#9a8e97}
    .info-value{margin-top:6px;font-size:15px;line-height:1.65;color:#2d242a}
    .info-value a{color:var(--pink-strong);font-weight:700}
    .map-head{padding:24px 24px 0}
    .map-frame{height:100%;min-height:320px;margin-top:16px;border-top:1px solid #f2edf1}
    .map-frame iframe{width:100%;height:100%;border:0}

    .footer-premium{
      max-width:var(--max);
      margin:0 auto;
      padding:30px 18px 34px;
      text-align:center;
      color:#8a8087;
      font-size:13px;
      line-height:1.8;
    }
    .footer-link{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      margin-bottom:14px;
      padding:10px 14px;
      border-radius:999px;
      background:#fff;
      border:1px solid var(--border);
      color:var(--pink-strong);
      font-weight:800;
    }

    .wa-container{
      position:fixed;
      right:18px;
      bottom:18px;
      z-index:9998;
    }
    .wa-flutuante{
      width:58px;height:58px;
      border:none;
      border-radius:50%;
      display:grid;place-items:center;
      background:#25d366;
      box-shadow:0 12px 28px rgba(37,211,102,.28);
      cursor:pointer;
    }
    .wa-popup{
      display:none;
      flex-direction:column;
      width:min(300px,calc(100vw - 36px));
      margin-bottom:12px;
      border-radius:20px;
      overflow:hidden;
      background:#fff;
      border:1px solid #dcefe2;
      box-shadow:0 16px 36px rgba(0,0,0,.14);
      opacity:0;
      transform:translateY(10px) scale(.98);
      transition:opacity .2s ease, transform .2s ease;
      transform-origin:bottom right;
    }
    .wa-popup.show{opacity:1;transform:translateY(0) scale(1)}
    .wa-popup-header{
      display:flex;align-items:center;justify-content:space-between;
      padding:16px 18px;
      background:#0b8f66;
      color:#fff;
      font-weight:700;
      letter-spacing:.01em;
    }
    .wa-close{background:none;border:none;color:#fff;font-size:24px;cursor:pointer}
    .wa-popup-body{padding:18px;background:#efeae2}
    .wa-message{
      display:inline-block;
      max-width:220px;
      padding:12px 14px;
      border-radius:0 14px 14px 14px;
      background:#fff;
      font-size:14px;
      line-height:1.55;
      color:#161616;
    }
    .wa-popup-footer{padding:16px;background:#fff}
    .wa-btn-iniciar{
      display:block;
      padding:12px 14px;
      border-radius:999px;
      text-align:center;
      font-weight:800;
      color:#fff;
      background:#25d366;
    }

    
    @media (max-width:640px){
      .hero-card h1{font-size:56px;line-height:1.02}
      .section-title,.sobre-texto h2{font-size:48px;line-height:1.04}
      .contact-card h3,.map-card h3{font-size:40px;line-height:1.05}
    }

    @media (max-width:980px){
      .menu{
        display:none;
        position:absolute;
        top:calc(var(--header-h) - 4px);
        left:16px;right:16px;
        padding:12px;
        border-radius:20px;
        background:rgba(255,255,255,.98);
        border:1px solid var(--border);
        box-shadow:var(--shadow);
        flex-direction:column;
        align-items:stretch;
        gap:8px;
      }
      .menu.show{display:flex}
      .menu a{
        padding:12px 14px;
        border-radius:14px;
        background:#faf7fa;
      }
      .menu a::after{display:none}
      .menu-toggle{display:grid;place-items:center}
      .actions .btn-primary{display:none}
      .services-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
      .sobre-container,
      .contact-grid{grid-template-columns:1fr}
      .sobre-texto{text-align:center}
      .sobre-highlight{grid-template-columns:1fr}
    }

    @media (max-width:720px){
      :root{--header-h:68px}
      .nav{padding:0 14px}
      .brand-copy span{display:none}
      .hero-card{
        width:min(100%,520px);
        padding:24px 18px;
        border-radius:24px;
      }
      .hero-card p{font-size:15px}
      .hero-actions{flex-direction:column}
      .hero-actions .btn{width:100%}
      .services{padding-top:54px}

      .section-title{font-size:40px}
      .sobre-texto h2{font-size:40px}
      .contact-card h3,
      .map-card h3{font-size:28px}
      .services-top{margin-bottom:20px}
      .services-grid{grid-template-columns:1fr;gap:14px}
      .service-card{padding:18px}
      .service-top{align-items:center}
    }

    @media (prefers-reduced-motion:reduce){
      html{scroll-behavior:auto}
      *{animation:none !important;transition:none !important}
    }
  
    @media (max-width:768px){
      .section-title{font-size:clamp(32px,10vw,42px);line-height:1.1}
      .contact-card h3,
      .map-card h3{font-size:clamp(30px,9vw,38px);line-height:1.12}
    }



    .hero-policies{
      position:relative;
      z-index:3;
      max-width:1100px;
      margin:-26px auto 0;
      padding:0 20px;
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:14px;
    }
    .hero-policy-item{
      background:#fff;
      border:1px solid rgba(255,42,161,.14);
      border-radius:18px;
      padding:16px 18px;
      box-shadow:0 10px 28px rgba(35,27,32,.06);
      display:flex;
      flex-direction:column;
      gap:4px;
      text-align:center;
    }
    .hero-policy-item strong{
      font-size:18px;
      color:#c72f82;
      font-weight:800;
    }
    .hero-policy-item span{
      font-size:13px;
      color:#655b63;
      line-height:1.4;
    }
    @media (max-width:900px){
      .hero-policies{
        grid-template-columns:1fr;
        margin:-10px auto 0;
        gap:10px;
        padding:0 14px;
      }
      .hero-policy-item{
        border-radius:14px;
        padding:14px 16px;
      }
      .hero-policy-item strong{font-size:17px}
      .hero-policy-item span{font-size:12.5px}
    }


    .contact-card h3,
.map-card h3{
  font-family:'Great Vibes','Segoe Script','Brush Script MT',cursive;
  font-size:clamp(34px,4.6vw,38px);
  line-height:1.08;
  font-weight:400;
  letter-spacing:0;
  margin-bottom:18px;
}
    @media (max-width:768px){
      .contact-card h3,
      .map-card h3{
        font-size: 28px !important;
      }
    }
