
  :root {
    --azul: #061d4f;
    --azul2: #082867;
    --azul-escuro: #02143a;
    --verde: #0daa47;
    --verde2: #17c964;
    --branco: #ffffff;
    --cinza: #f5f7fb;
    --cinza2: #eef3fb;
    --texto: #061d4f;
    --texto-suave: #4b5877;
    --borda: #dfe7f3;
    --sombra: 0 12px 35px rgba(4, 18, 50, 0.10);
    --mapa-link: 'https://www.google.com/maps/search/?api=1&query=Rua+Jesu%C3%ADno+Arruda+797+Itaim+Bibi+S%C3%A3o+Paulo+SP';
  }

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

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--cinza);
    color: var(--texto);
    line-height: 1.45;
  }

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

  img {
    max-width: 100%;
    display: block;
  }

  .container {
    width: min(1180px, 92%);
    margin: 0 auto;
  }

  .topbar {
    background: var(--azul-escuro);
    color: #fff;
    height: 47px;
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
  }

  .topbar .container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
    align-items: center;
  }

  .topbar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
  }

  .topbar-item i {
    font-size: 18px;
    color: #fff;
  }

  .header {
    background: #fff;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
  }

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

  .logo {
    width: 238px;
    flex: 0 0 auto;
  }

  .logo img {
    width: 100%;
    height: auto;
  }

  .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    flex: 1;
    min-width: 0;
  }

  .menu a {
    color: var(--azul);
    font-weight: 850;
    font-size: 13.5px;
    padding: 14px 9px;
    border-radius: 6px;
    transition: 0.2s;
    text-align: center;
    line-height: 1.18;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    white-space: nowrap;
  }

  .menu a:hover,
  .menu a.active {
    color: var(--verde);
    background: #f4faf7;
  }

  .menu a.destaque {
    border: 0;
    color: var(--azul);
    padding: 12px 14px;
    background: #fff;
    border-radius: 8px;
    min-height: 50px;
  }

  .mobile-menu-whats {
    display: none !important;
  }

  .btn-whats {
    background: var(--verde);
    color: #fff;
    padding: 14px 19px;
    border-radius: 8px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    box-shadow: 0 8px 22px rgba(13,170,71,0.28);
    transition: 0.2s;
    white-space: nowrap;
  }

  .btn-whats:hover {
    background: #07963d;
    transform: translateY(-1px);
  }

  .btn-outline {
    border: 2px solid rgba(255,255,255,0.85);
    color: #fff;
    padding: 14px 30px;
    border-radius: 7px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
  }

  .mobile-toggle {
    display: none;
    border: 0;
    background: var(--azul);
    color: #fff;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    font-size: 22px;
    cursor: pointer;
  }

  .hero {
    background:
      linear-gradient(90deg, rgba(2,20,58,0.96) 0%, rgba(2,20,58,0.86) 42%, rgba(2,20,58,0.40) 100%),
      url('sao-paulo-ponte.jpg') center center / cover no-repeat;
    color: #fff;
    min-height: 485px;
    display: flex;
    align-items: center;
  }

  .hero-content {
    padding: 54px 0 36px;
  }

  .hero h1 {
    font-size: clamp(36px, 5vw, 57px);
    line-height: 0.98;
    max-width: 600px;
    letter-spacing: -2px;
    margin-bottom: 18px;
    font-weight: 900;
  }

  .hero h1 span {
    color: var(--verde2);
    display: block;
  }

  .hero-box {
    border: 0;
    padding: 14px 0;
    max-width: 575px;
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.45;
    background: transparent;
  }

  .hero-actions {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
  }

  .trust-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 1050px;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.25;
  }

  .trust-item i {
    color: var(--verde);
    font-size: 42px;
    width: 42px;
    text-align: center;
  }

  .section {
    padding: 26px 0;
  }

  .section-title {
    text-align: center;
    font-size: 29px;
    line-height: 1.15;
    color: var(--azul);
    font-weight: 900;
    margin-bottom: 4px;
  }

  .section-subtitle {
    text-align: center;
    color: var(--azul);
    font-size: 15px;
    margin-bottom: 15px;
  }

  .services {
    padding-top: 20px;
  }

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

  .service-card {
    background: #fff;
    border: 1px solid var(--borda);
    border-radius: 9px;
    padding: 28px 24px 24px;
    text-align: center;
    min-height: 268px;
    box-shadow: 0 6px 18px rgba(4, 18, 50, 0.05);
    transition: 0.2s;
  }

  .service-card:hover {
    border-color: var(--verde);
    transform: translateY(-2px);
  }

  .service-card.featured {
    border: 1px solid var(--borda);
  }

  .service-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #e8eefb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 17px;
    color: var(--azul);
    font-size: 34px;
  }

  .service-card h3 {
    color: var(--azul);
    font-size: 21px;
    line-height: 1.18;
    font-weight: 900;
    margin-bottom: 15px;
  }

  .service-card p {
    color: var(--azul);
    font-size: 15px;
    line-height: 1.55;
    min-height: 78px;
  }

  .service-card ul {
    list-style: none;
    text-align: left;
    display: inline-block;
    margin: 4px auto 8px;
  }

  .service-card li {
    color: var(--azul);
    margin-bottom: 9px;
    font-size: 15px;
  }

  .service-card li i {
    color: var(--verde);
    margin-right: 9px;
    font-weight: 900;
  }

  .learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #005ac8;
    font-weight: 900;
    font-size: 15px;
    margin-top: 12px;
  }

  .local-section {
    padding-top: 0;
  }

  .local-box {
    background:
      linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(247,250,255,0.98) 100%);
    border: 1px solid var(--borda);
    border-radius: 18px;
    padding: 18px;
    display: grid;
    grid-template-columns: 390px minmax(0, 1fr) 260px;
    align-items: stretch;
    gap: 22px;
    box-shadow: 0 16px 38px rgba(4, 18, 50, 0.10);
    position: relative;
    overflow: hidden;
  }

  .local-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--verde), var(--azul));
  }

  .local-photo-wrap {
    position: relative;
    min-height: 230px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(2,20,58,0.12);
  }

  .local-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 14px;
    transition: 0.25s;
  }

  .local-photo-wrap:hover .local-img {
    transform: scale(1.03);
  }

  .local-photo-badge {
    position: absolute;
    left: 14px;
    bottom: 14px;
    background: rgba(2,20,58,0.88);
    color: #fff;
    border-radius: 12px;
    padding: 10px 13px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  }

  .local-photo-badge i {
    color: var(--verde2);
    font-size: 17px;
  }

  .local-text {
    padding: 6px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .local-tag {
    color: var(--verde);
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 9px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.2px;
  }

  .local-tag::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--verde);
    box-shadow: 0 0 0 5px rgba(13,170,71,0.12);
  }

  .local-text h2 {
    color: var(--azul);
    font-weight: 900;
    font-size: 29px;
    line-height: 1.08;
    margin-bottom: 12px;
    letter-spacing: -0.8px;
  }

  .local-text p {
    color: var(--azul);
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 12px;
  }

  .check-list {
    list-style: none;
    display: grid;
    gap: 9px;
    font-size: 14px;
    color: var(--azul);
    font-weight: 800;
    margin-bottom: 14px;
  }

  .check-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
  }

  .check-list li i {
    color: var(--verde);
    margin-top: 3px;
  }

  .local-mini-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin-top: 2px;
  }

  .local-mini-item {
    background: #fff;
    border: 1px solid #e2eaf6;
    border-radius: 12px;
    padding: 10px 9px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 900;
    color: var(--azul);
    box-shadow: 0 6px 16px rgba(4, 18, 50, 0.05);
  }

  .local-mini-item i {
    color: var(--verde);
    font-size: 16px;
  }

  .map-card {
    min-height: 230px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #dbe5f1;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.60), 0 12px 28px rgba(2,20,58,0.10);
    background: #eaf0f7;
  }

  .map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 230px;
    border: 0;
    display: block;
  }

  .contact-actions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin-top: 2px;
  }

  .contact-action {
    background: #fff;
    border: 1px solid #e2eaf6;
    border-radius: 12px;
    padding: 10px 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 900;
    color: var(--azul);
    box-shadow: 0 6px 16px rgba(4, 18, 50, 0.05);
    text-align: center;
    transition: 0.2s;
  }

  .contact-action:hover {
    transform: translateY(-1px);
    border-color: rgba(13,170,71,0.35);
    color: var(--verde);
  }

  .contact-action i {
    color: var(--verde);
    font-size: 16px;
  }

  .process-box {
    background: #fff;
    border: 1px solid var(--borda);
    border-radius: 9px;
    padding: 20px 22px 30px;
    box-shadow: 0 6px 18px rgba(4, 18, 50, 0.05);
  }

  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 12px;
    position: relative;
  }

  .step {
    text-align: center;
    position: relative;
    padding: 0 8px;
  }

  .step:not(:last-child)::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: -22px;
    top: 42px;
    color: #c8d2e7;
    font-size: 26px;
  }

  .step-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 10px;
  }

  .step-number {
    width: 34px;
    height: 34px;
    background: var(--azul);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
  }

  .step-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #e8eefb;
    color: var(--verde);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
  }

  .step h3 {
    color: var(--azul);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 900;
    margin-bottom: 9px;
  }

  .step p {
    color: var(--azul);
    font-size: 14px;
    line-height: 1.45;
  }

  .cta-band {
    padding: 0 0 10px;
  }

  .cta-content {
    background: var(--azul-escuro);
    color: #fff;
    border-radius: 8px;
    padding: 16px 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
  }

  .cta-left {
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .cta-left i {
    font-size: 52px;
    color: #fff;
  }

  .cta-left h2 {
    font-size: 24px;
    line-height: 1.15;
    font-weight: 900;
  }

  .cta-left p {
    font-size: 17px;
    font-weight: 700;
  }

  .reviews {
    padding-top: 0;
    padding-bottom: 8px;
  }

  .reviews .section-title {
    font-size: 22px;
    margin-bottom: 0;
  }

  .reviews .section-subtitle {
    margin-bottom: 6px;
    font-size: 13px;
  }

  .review-wrap {
    display: grid;
    grid-template-columns: 30px 1fr 30px;
    gap: 10px;
    align-items: center;
  }

  .arrow {
    color: var(--azul);
    font-size: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .review-viewport {
    overflow: hidden;
    width: 100%;
    padding: 8px 0 12px;
    position: relative;
  }

  .review-viewport::before,
  .review-viewport::after {
    content: "";
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }

  .review-viewport::before {
    left: 0;
    background: linear-gradient(90deg, var(--cinza), rgba(245,247,251,0));
  }

  .review-viewport::after {
    right: 0;
    background: linear-gradient(270deg, var(--cinza), rgba(245,247,251,0));
  }

  .review-grid {
    display: flex;
    gap: 12px;
    width: max-content;
    animation: reviewsScroll 28s linear infinite;
  }

  .review-viewport:hover .review-grid {
    animation-play-state: paused;
  }

  .review-card {
    background: #fff;
    border: 1px solid var(--borda);
    border-radius: 8px;
    padding: 14px 15px;
    min-height: 128px;
    width: 215px;
    flex: 0 0 215px;
    box-shadow: 0 6px 16px rgba(4, 18, 50, 0.04);
  }

  @keyframes reviewsScroll {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(calc(-50% - 6px));
    }
  }

  .stars {
    color: #ffc400;
    font-size: 15px;
    letter-spacing: 1px;
    margin-bottom: 8px;
  }

  .review-card p {
    font-size: 13px;
    color: var(--azul);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .review-card strong {
    display: block;
    color: var(--azul);
    font-size: 13px;
    font-weight: 900;
  }

  .review-card span {
    display: block;
    color: var(--texto-suave);
    font-size: 12px;
    font-weight: 700;
  }

  footer {
    background:
      radial-gradient(circle at top left, rgba(23,201,100,0.14), transparent 36%),
      linear-gradient(135deg, #02143a 0%, #061d4f 55%, #082867 100%);
    border-top: 0;
    padding-top: 0;
    color: #fff;
    margin-top: 18px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.15fr 1.15fr 1.55fr 1.15fr;
    gap: 34px;
    padding: 34px 0 28px;
  }

  footer h3 {
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 9px;
  }

  footer h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 38px;
    height: 3px;
    border-radius: 20px;
    background: var(--verde2);
  }

  footer ul {
    list-style: none;
  }

  footer li,
  footer p,
  footer a {
    color: rgba(255,255,255,0.86);
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.55;
  }

  footer a {
    transition: 0.2s;
  }

  footer a:hover {
    color: #fff;
  }

  footer li {
    margin-bottom: 5px;
  }

  .contact-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
  }

  .contact-line i {
    color: var(--verde2);
    width: 17px;
    margin-top: 3px;
    font-size: 15px;
  }

  .social-line {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 8px;
  }

  .social-line i {
    width: 17px;
    color: var(--verde2);
    margin-top: 3px;
    font-size: 15px;
  }

  .footer-bottom {
    background: rgba(0,0,0,0.22);
    border-top: 1px solid rgba(255,255,255,0.10);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 13px 0;
  }

  .footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }

  .footer-bottom p {
    color: rgba(255,255,255,0.90);
  }

  .whats-floating {
    position: fixed;
    right: 22px;
    bottom: 18px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--verde);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.30);
    z-index: 150;
    border: 4px solid #fff;
  }



  .cta-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .btn-phone {
    background: #fff;
    color: var(--azul);
    padding: 14px 19px;
    border-radius: 8px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    box-shadow: 0 8px 22px rgba(255,255,255,0.14);
    transition: 0.2s;
    white-space: nowrap;
  }

  .btn-phone:hover {
    transform: translateY(-1px);
    background: #f4f7ff;
  }
  @media (max-width: 1100px) {
    .topbar .container {
      grid-template-columns: 1fr;
      gap: 6px;
    }

    .topbar {
      height: auto;
      padding: 9px 0;
    }

    .navbar {
      flex-wrap: wrap;
      padding: 15px 0;
    }

    .menu {
      order: 3;
      width: 100%;
      flex-wrap: wrap;
    }

    .service-grid,
    .trust-row,
    .steps {
      grid-template-columns: repeat(2, 1fr);
    }

    .local-box {
      grid-template-columns: 1fr;
    }

    .local-img,
    .map-card {
      height: auto;
      min-height: 210px;
    }

    .step:not(:last-child)::after {
      display: none;
    }

    .footer-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 720px) {
    .topbar {
      display: none;
    }

    body.menu-mobile-open {
      overflow: hidden;
    }

    .header {
      position: sticky;
      top: 0;
      z-index: 999;
    }

    .navbar {
      min-height: 86px;
      padding: 12px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: nowrap;
      gap: 12px;
    }

    .logo {
      width: 184px;
      max-width: calc(100% - 66px);
    }

    .mobile-toggle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 48px;
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: var(--azul);
      box-shadow: 0 8px 22px rgba(2, 20, 58, 0.22);
      position: relative;
      z-index: 1002;
    }

    .mobile-toggle i {
      font-size: 22px;
    }

    .menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: min(86vw, 340px);
      height: 100vh;
      z-index: 1001;
      display: flex;
      flex-direction: column;
      align-items: stretch;
      justify-content: flex-start;
      gap: 8px;
      background: #fff;
      padding: 92px 18px 22px;
      border-top: 0;
      box-shadow: -16px 0 40px rgba(2, 20, 58, 0.22);
      overflow-y: auto;
      transition: right 0.28s ease;
    }

    .menu::before {
      content: "Menu eDocumento";
      position: absolute;
      top: 24px;
      left: 18px;
      right: 76px;
      color: var(--azul);
      font-size: 17px;
      line-height: 1.2;
      font-weight: 900;
      padding-bottom: 15px;
      border-bottom: 1px solid var(--borda);
    }

    body.menu-mobile-open::after {
      content: "";
      position: fixed;
      inset: 0;
      background: rgba(2, 20, 58, 0.52);
      backdrop-filter: blur(2px);
      z-index: 1000;
    }

    .menu.open {
      right: 0;
    }

    .menu a,
    .menu a.destaque {
      width: 100%;
      min-height: 48px;
      border: 1px solid var(--borda);
      border-radius: 12px;
      text-align: left;
      padding: 13px 14px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: #f8fbff;
      color: var(--azul);
      font-size: 14px;
      font-weight: 900;
      white-space: normal;
      line-height: 1.25;
    }

    .menu a::after,
    .menu a.destaque::after {
      content: "105";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      color: var(--verde);
      margin-left: 10px;
      font-size: 14px;
    }

    .menu a.active {
      background: rgba(13, 170, 71, 0.10);
      border-color: rgba(13, 170, 71, 0.28);
      color: var(--verde);
    }

    .menu a.destaque {
      background: #fff;
      border: 2px solid var(--azul);
    }

    .mobile-menu-whats {
      display: flex !important;
      margin-top: 8px;
      background: var(--verde) !important;
      border-color: var(--verde) !important;
      color: #fff !important;
      justify-content: center !important;
      gap: 9px;
      box-shadow: 0 10px 24px rgba(13, 170, 71, 0.24);
    }

    .mobile-menu-whats::after {
      display: none;
    }

    .navbar > .btn-whats {
      display: none;
    }

    .hero {
      min-height: auto;
      background:
        linear-gradient(90deg, rgba(2,20,58,0.97), rgba(2,20,58,0.82)),
        url('sao-paulo-ponte.jpg') center center / cover no-repeat;
    }

    .hero-content {
      padding: 42px 0 34px;
    }

    .hero h1 {
      letter-spacing: -1px;
      font-size: clamp(33px, 10vw, 44px);
    }

    .hero-box {
      font-size: 16px;
    }

    .hero-actions {
      flex-direction: column;
      align-items: stretch;
    }

    .btn-whats,
    .btn-outline {
      width: 100%;
    }

    .service-grid,
    .trust-row,
    .steps,
    .footer-grid {
      grid-template-columns: 1fr;
    }

    .trust-item {
      font-size: 15px;
    }

    .local-box {
      padding: 14px;
      border-radius: 15px;
    }

    .local-photo-wrap,
    .map-card {
      min-height: 220px;
    }

    .local-text h2 {
      font-size: 24px;
    }

    .local-mini-info,
    .contact-actions-grid {
      grid-template-columns: 1fr;
    }

    .review-wrap {
      grid-template-columns: 1fr;
    }

    .arrow {
      display: none;
    }

    .review-card {
      width: 255px;
      flex-basis: 255px;
    }

    .review-viewport::before,
    .review-viewport::after {
      width: 34px;
    }

    .cta-content {
      flex-direction: column;
      text-align: center;
      padding: 22px;
    }

    .cta-buttons {
      width: 100%;
      justify-content: center;
    }

    .btn-phone {
      width: 100%;
    }

    .cta-left {
      flex-direction: column;
    }

    .footer-bottom .container {
      justify-content: center;
      text-align: center;
    }
  }
