  /* .cid-urhxCeEvVr { */
  /*   padding-top: 8rem; */
  /* } */

  /* Modifica espaçamento entre o header e as imagens */
  .cid-tJS6uM4N87 {
    padding-top: 10rem;
  }

  /* Justifica texto na subheadline para dispositivos mobile */
  @media (max-width: 600px) {
    .mbr-text {
      text-align: justify;
    }
  }

  .memorial-section {
    width: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
    border-radius: 24px;
    overflow: hidden;
    background: #edefeb;
  }

  .memorial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  /* Exibe os memorial-items um abaixo do outro no mobile */
  @media (max-width: 900px) {
    .memorial-grid {
      grid-template-columns: 1fr;
    }
  }

  .memorial-item {
    padding-top: 30px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border-radius: 32px;
  }

  .memorial-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 600px;
  }

  .memorial-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.09);
  }

  .memorial-title {
    margin: 0 0 18px 0;
    font-size: 1.3rem;
    font-weight: 600;
  }

  .memorial-description {
    text-align: justify;
    line-height: 1.2;
    font-size: 1rem;
    opacity: 0.85;
  }

  .memorial-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    background: #edefeb;
    /* padding: 20px; */
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 40px;

  }

  /* Config para ambos os Mobile e Desktop */
  .img-box-1,
  .img-box-2 {
    height: 300px;
    background-size: cover;
    border: 3px solid #ffffff;
    border-radius: 14px;
    background-repeat: no-repeat;
  }

  /* Especifico do Mobile */
  .img-box-1 {
    background-position: left top;
  }

  .img-box-2 {
    background-position: top;
  }

  /* Especifico do Desktop */
  @media (min-width: 600px) {

    .img-box-1 {
      background-position: top;
    }

    .img-box-2 {
      background-position: center 15%;
    }

  }

  /* Provas Sociais (testimonials) */

  .testimonial-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .testimonial-bullet {
    display: flex;
    align-items: center;
    /* centraliza verticalmente o ponto */
    gap: 12px;
    background: #ffffff;
    padding: 16px 18px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .testimonial-bullet:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  }

  .testimonial-dot {
    width: 8px;
    height: 8px;
    background: #4f46e5;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* força alinhamento à esquerda */
    gap: 6px;
    text-align: left;
    /* garante que nada centralize */
  }

  .testimonial-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    opacity: 0.9;
    text-align: left;
    /* corrige desalinhamento da segunda caixa */
  }

  .testimonial-author {
    font-size: 0.8rem;
    opacity: 0.6;
    text-align: left;
    /* autor alinhado à esquerda */
  }


  /* Efeito aplicado ao botão de "Criar memorial agora" */

  .btn-primary {
    position: relative;
    z-index: 1;
  }

  .btn-primary::after {
    content: "";
    position: absolute;
    inset: -2px;
    /* distância da borda */
    border-radius: inherit;
    border: 2px solid #228b5e;
    opacity: 0;
    pointer-events: none;

    animation: borderGlow 2.5s ease-in-out infinite;
  }

  @keyframes borderGlow {
    0% {
      opacity: 0;
      box-shadow: 0 0 0px rgba(34, 139, 94, 0);
    }

    50% {
      opacity: 1;
      box-shadow: 0 0 6px rgba(34, 139, 94, 1);
    }

    100% {
      opacity: 0;
      box-shadow: 0 0 0px rgba(34, 139, 94, 0);
    }
  }
