  :root {
    --fundo-pagina: #eeeeee;
    --verde-salvia: #a2af9b;
    --bege-areia: #dccfc0;
    --cinza-nevoa: #eeeeee;
    --preto-puro: #000000;
    --texto-contraste: #2f332c;
  }

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

  /* BLOQUEIA MOVIMENTO HORIZONTAL DA PÁGINA */
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--fundo-pagina);
    color: var(--texto-contraste);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  /* TOP BAR */
  .top-bar {
    background-color: #2A2A28;
    color: #F2F2F0;
    text-align: center;
    padding: 8px 10px;
    font-size: 14px;
    font-weight: bold;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .top-bar p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
  }

  /* NAVBAR */
  .navbar {
    background-color: rgba(0, 0, 0, 0.8) !important;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 35px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    height: 100px;
    z-index: 1000;
    border-bottom: 1px solid rgba(162, 175, 155, 0.3);
  }

  .home .navbar,
  .has-hero-banner .navbar {
    background-color: rgba(0, 0, 0, 0.8) !important;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }

  /* ==========================================================
    PAGE HEADER SPACE
  ========================================================== */

  .page-header-space {
      height: 135px;
  }

  .web-icone {
    position: relative;
    z-index: 1002;
    flex-shrink: 0;
  }

  .nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0 auto;
    white-space: nowrap;
  }

  .nav-links li {
    position: relative;
  }

  .nav-links a {
    color: var(--cinza-nevoa);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-decoration: none;
    padding: 10px 5px;
    font-size: 16px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
  }

  /* SETAS DO MENU */
  .arrow {
    font-size: 18px;
    margin-left: 5px;
    transition: transform 0.3s ease;
    display: inline-block;
    line-height: 1;
  }

  .arrow-menu {
    margin-left: 6px;
    display: inline-block;
    transition: transform 0.3s ease;
  }

  .submenu-toggle:hover .arrow-menu {
    transform: rotate(-90deg);
  }

  @media (hover: hover) {
    .nav-links a:hover {
      color: var(--verde-salvia);
    }
  }

  .has-submenu:hover .submenu {
    display: block;
  }

  .has-submenu:hover .arrow {
    transform: rotate(180deg);
    color: var(--verde-salvia);
  }

  .has-submenu:hover .arrow-menu {
    transform: rotate(-90deg);
    color: var(--verde-salvia);
  }

  /* SUBMENU */
  .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #111;
    list-style: none;
    padding: 10px 10px;
    min-width: 220px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
    border-top: 2px solid var(--verde-salvia);
  }

  .nav-links li:last-child .submenu {
    left: auto;
    right: 0;
  }

  .submenu li {
    display: block;
    width: 100%;
  }

  .submenu li a {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
  }

  /* BANNER */
  .banner {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
  }

  .has-hero-banner .navbar {
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }

  .has-hero-banner .banner {
    margin-top: 0;
  }

  body:not(.has-hero-banner) {
    padding-top: 135px;
  }

  /* WELCOME */
  .welcome-eyebrow {
    display: block;
    margin-bottom: 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 33px;
    font-weight: 600;
    letter-spacing: 4px;
    color: #777;
  }

  .welcome-text {
    width: 100%;
    max-width: 1100px;
    margin: 40px auto 80px;
    padding: 80px 60px;
    text-align: center;
    border-radius: 0;
  }

  .welcome-text h2 {
    margin: 0 0 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.1;
    font-weight: 500;
    color: #222;
    letter-spacing: -1px;
  }

  .welcome-text p {
    max-width: 850px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    text-align: center;
  }

  .home {
    text-align: center;
    font-size: 50px;
    margin: 60px auto 20px auto;
  }

  /* NEXT STEP */
  .next-step-section {
    width: 100%;
    background-color: #f5f5f3;
    padding: 75px 20px 55px;
  }

  .next-step-header {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
  }

  .next-step-eyebrow {
    display: block;
    margin-bottom: 18px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 6px;
    color: #6f8574;
    text-transform: uppercase;
  }

  .next-step-header h2 {
    margin: 0;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 700;
    color: #111413;
    letter-spacing: -1.5px;
  }

  .next-step-line {
    width: 42px;
    height: 4px;
    margin: 18px auto 16px;
    background-color: #e87920;
  }

  .next-step-header p {
    margin: 0;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 400;
    color: #5d6065;
  }

  /* CARDS */
  .cards-container {
    display: flex;
    justify-content: center;
    gap: 24px;
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
    flex-wrap: wrap;
  }

  .card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 36px 28px;
    flex: 1;
    min-width: 280px;
    max-width: 340px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  }

  .card::after {
    content: "";
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 140px;
    height: 140px;
    background-color: rgba(0, 0, 0, 0.03);
    border-radius: 50%;
    z-index: 0;
  }

  .card * {
    z-index: 1;
  }

  .card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
  }

  .card-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.8;
  }

  .icon-orange {
    background-color: #d96b27;
    color: #ffffff;
  }

  .icon-green {
    background-color: #5c7867;
    color: #ffffff;
  }

  .icon-beige {
    background-color: #d0b07d;
    color: #ffffff;
  }

  .icon-orange svg {
    transform: scale(1.75);
  }

  .card-number {
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
  }

  .card-number .line {
    display: inline-block;
    width: 20px;
    height: 2px;
    background-color: currentColor;
  }

  .num-orange {
    color: #d96b27;
  }

  .num-green {
    color: #5c7867;
  }

  .num-beige {
    color: #d0b07d;
  }

  .card-title {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    letter-spacing: 0.5px;
  }

  .card-text {
    font-size: 14px;
    line-height: 1.6;
    color: #555555;
    margin: 0 0 32px 0;
    flex-grow: 1;
  }

  .card-btn {
    background: transparent;
    border: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    transition: opacity 0.2s ease;
  }

  .card-btn:hover {
    opacity: 0.75;
  }

  .btn-orange {
    color: #d96b27;
  }

  .btn-green {
    color: #5c7867;
  }

  .btn-beige {
    color: #d0b07d;
  }

  /* PRAYER MODAL */
  .prayer-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .prayer-modal.active {
    opacity: 1;
    visibility: visible;
  }

  .prayer-modal-content {
    position: relative;
    width: 100%;
    max-width: 650px;
    max-height: 90vh;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 45px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
    transform: translateY(20px);
    transition: transform 0.3s ease;
  }

  .prayer-modal.active .prayer-modal-content {
    transform: translateY(0);
  }

  .close-prayer {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 38px;
    height: 38px;
    border: none;
    background: #eeeeee;
    border-radius: 50%;
    font-size: 25px;
    cursor: pointer;
    color: #333;
    transition: 0.2s;
  }

  .close-prayer:hover {
    background: #e56b24;
    color: white;
  }

  .prayer-header {
    text-align: center;
    margin-bottom: 30px;
  }

  .prayer-modal-icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .prayer-modal-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .prayer-header h2 {
    font-size: 30px;
    margin-bottom: 10px;
    color: #202020;
  }

  .prayer-header p {
    color: #666;
    line-height: 1.6;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
    border: 1px solid #d8d8d8;
    border-radius: 10px;
    padding: 13px 15px;
    font-family: inherit;
    font-size: 15px;
    background: #fafafa;
    outline: none;
    transition: border 0.2s;
  }

  .form-group input:focus,
  .form-group textarea:focus {
    border-color: #e56b24;
    background: white;
  }

  .form-group textarea {
    resize: vertical;
  }

  .prayer-consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 25px;
    font-size: 13px;
    color: #666;
    line-height: 1.5;
  }

  .prayer-consent input {
    margin-top: 3px;
  }

  .prayer-submit {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: #e56b24;
    color: white;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: 0.2s;
  }

  .prayer-submit:hover {
    background: #cf5e1d;
    transform: translateY(-1px);
  }

  .prayer-success {
    display: none;
    text-align: center;
  }

  .prayer-success.active {
    display: block;
  }

  .success-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    background: #607c6c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
  }

  .prayer-success h3 {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .prayer-success p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
  }

  .prayer-success button {
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    background: #333;
    color: white;
    cursor: pointer;
  }

  /* KINGDOM DIVIDER */
  .kingdom-divider {
    width: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 10px;
  }

  .kingdom-divider img {
    display: block;
    width: 500px;
    height: auto;
    object-fit: contain;
  }

  /* LOCATION */
  .location-section {
    width: 100%;
    background-color: #ffffff;
    padding: 100px 20px 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .location-header {
    max-width: 700px;
    margin-bottom: 50px;
  }

  .location-eyebrow {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    color: #777;
    margin-bottom: 18px;
  }

  .location-header h2 {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 500;
    color: #222;
  }

  .location-header p {
    margin-top: 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #777;
    letter-spacing: 1px;
  }

  /* MAP */
  .uk-map-link {
    display: block;
    width: min(450px, 90vw);
    text-decoration: none;
    color: inherit;
    transition: transform 0.35s ease;
  }

  .uk-map-link:hover {
    transform: scale(1.015);
  }

  .uk-map {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .uk-map-image {
    display: block;
    width: 100%;
    max-width: 800px;
    height: auto;
    object-fit: contain;
  }

  .map-location {
    position: absolute;
    left: 61%;
    top: 69%;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
  }

  .location-dot {
    width: 18px;
    height: 18px;
    background-color: #f47b20;
    border-radius: 50%;
    display: block;
    box-shadow: 0 0 0 3px #ffffff, 0 0 0 5px #f47b20;
  }

  .location-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #222;
    letter-spacing: 0.2px;
  }

  /* FOOTER BASE */
  .footer {
    padding: 50px;
    background: black;
    color: white;
    text-align: center;
    border-top: 3px solid var(--verde-salvia);
  }

  .main-footer {
    background-color: #1a1a1a;
    padding: 20px 0;
    color: white;
    margin-top: auto;
    flex-shrink: 0;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
  }

  .find-us {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 40px;
    border: 1px solid #ffffff;
    border-radius: 20px;
    color: #ffffff !important;
    text-decoration: none !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
  }

  .find-us:hover {
    background-color: #ffffff;
    color: #1a1a1a !important;
  }

  .footer-column-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
  }

  .footer-column-left {
    flex: 1;
    display: flex;
    justify-content: flex-start;
  }

  .footer-column-left p {
    font-size: 10px;

  }

  .find-us-container {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  /* INSTAGRAM CORREÇÃO */
  .instagram-link {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff !important;
    text-decoration: none !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
  }

  .instagram-link:hover,
  .instagram-link:visited,
  .instagram-link:active {
    color: #ffffff !important;
    text-decoration: none !important;
  }

  .instagram-icon {
    width: 48px !important;
    height: 48px !important;
    max-width: 48px !important;
    max-height: 48px !important;
    object-fit: contain;
    display: block;
    filter: none !important;
  }

  .instagram-link span {
    color: #ffffff !important;
    text-decoration: none !important;
  }

  .instagram-link:hover {
    opacity: 0.8;
  }

  /* OUTROS ÍCONES */
  .social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-size: 14px;
  }

  .footer-icon {
    width: 70px;
    height: auto;
    filter: brightness(0) invert(1);
  }

  /* MENU TOGGLE */
  .menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1101;
  }

  .bar {
    width: 30px;
    height: 3px;
    background: white;
    transition: 0.4s;
    border-radius: 2px;
  }

  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* HS BANNER */
  .hs-banner {
    width: 100%;
    height: auto;
    max-height: 500px;
    overflow: hidden;
  }

  .hs-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  /* BOTÃO GIVE */
  .nav-give {
    margin-left: 20px;
  }

  .btn-give {
    background-color: #e63946 !important;
    color: #ffffff !important;
    padding: 8px 25px !important;
    border-radius: 50px !important;
    font-weight: bold;
    transition: transform 0.3s, background-color 0.3s;
    display: inline-block;
    text-align: center;
  }

  .btn-give:hover {
    background-color: #c92a37 !important;
    transform: scale(1.05);
    color: #ffffff !important;
  }

  /* RESPONSIVIDADE - GERAL (< 1100px) */
  @media (max-width: 1100px) {
    .navbar {
      background-color: rgba(0, 0, 0, 0.3) !important;
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
      padding: 0 20px;
      justify-content: space-between;
    }

    .menu-toggle {
      display: flex;
    }

    .nav-links {
      position: fixed;
      right: -100%;
      top: 0;
      left: auto;
      transform: none;
      width: 75%;
      height: 100vh;
      background: #0a0a0a;
      flex-direction: column;
      justify-content: flex-start;
      padding: 100px 30px;
      transition: 0.5s ease;
      gap: 0;
      overflow-y: auto;
    }

    .nav-links.active {
      right: 0;
    }

    .nav-links li {
      width: 100%;
      margin-bottom: 15px;
    }

    .nav-links a {
      font-size: 22px;
      display: block;
      width: 100%;
      border-bottom: 1px solid #222;
      padding: 15px 0;
    }

    .submenu {
      position: static;
      display: none !important;
      width: 100%;
      background: #151515;
      box-shadow: none;
      padding-left: 20px;
    }

    .has-submenu.submenu-active .submenu {
      display: block !important;
    }

    .has-submenu.submenu-active > a {
      color: var(--verde-salvia) !important;
    }

    .has-submenu.submenu-active .arrow-menu {
      color: var(--verde-salvia) !important;
    }

    .submenu li a:active {
      color: var(--verde-salvia);
      background-color: #222;
    }

    .banner {
      margin-top: 0;
      padding: 0;
    }

    .banner img {
      object-fit: cover;
      object-position: center center;
    }

    .our-vision {
      flex-direction: column;
    }

    .v-reverse {
      flex-direction: column-reverse;
    }

    .image-container {
      height: 350px;
    }

    .nav-links .nav-give {
      margin-left: 0;
      margin-top: 15px;
      text-align: center;
      width: 100%;
    }

    .btn-give {
      padding: 5px 18px !important;
      font-size: 14px !important;
      display: inline-block !important;
      border-radius: 30px !important;
    }
  }

  /* IPAD / TABLET (768px até 1100px) */
  @media (min-width: 768px) and (max-width: 1100px) {
    .navbar {
      background-color: rgba(0, 0, 0, 0.1) !important;
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
    }

    .welcome-text {
      padding: 20px;

    }

    .welcome-text .welcome-eyebrow,
    .welcome-text h2,
    .welcome-text p {
      text-align: center !important;
    }

    .home {
      font-size: 28px;
    }

    .banner {
      margin-top: 0;
      width: 100%;
      height: auto;
      min-height: 0;
      overflow: hidden;
      position: relative;
    }

    .banner img {
      width: 100%;
      height: auto;
      object-fit: contain;
      object-position: center center;
      display: block;
    }

    .map-container,
    .image-services-container img {
      width: 100% !important;
    }

  

    .kingdom-divider {
      padding: 35px;
    }

    .kingdom-divider img {
      width: 225px;
    }

    .footer-container {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }

    .footer-column-left p,
    .footer-column-right {
      font-size: 14px;
    }

  /* ========= MENU IPAD ========= */

  .nav-links{

      width: 340px;
      padding: 85px 22px;
  }

  .nav-links li{

      margin-bottom: 6px;
  }

  .nav-links a{

      font-size: 22px;
      padding: 10px 0;
      letter-spacing: 1.2px;
  }

  .submenu li a{

      font-size: 15px;
      padding: 8px 0;
  }

  .btn-give{

      padding: 8px 20px !important;
      font-size: 13px !important;
      min-width: 150px;
  }

  .nav-links .nav-give{

      margin-top: 10px;
  }

  }


  /* CELULAR APENAS (< 767px) - FOOTER EMPILHADO */
  @media (max-width: 767px) {
    .welcome-text {
      padding: 20px;
  
    }

    .home {
      font-size: 28px;
    }

    .kingdom-divider {
      padding: 25px 10px;
    }

    .kingdom-divider img {
      width: 220px;
    }

    /* FOOTER CELULAR */
    .footer-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 25px;
      text-align: center;
    }

    .find-us-container {
      order: 1;
      width: 100%;
      display: flex;
      justify-content: center;
    }

    .footer-column-right {
      order: 2;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .instagram-link {
      display: inline-flex !important;
      align-items: center;
      justify-content: center;
      gap: 10px;
      color: #ffffff !important;
      text-decoration: none !important;
      font-size: 14px;
    }

    .instagram-icon {
      width: 48px !important;
      height: 48px !important;
      max-width: 48px !important;
      max-height: 48px !important;
      object-fit: contain;
      display: block;
    }

    .instagram-link span {
      color: #ffffff !important;
      text-decoration: none !important;
    }

    .footer-column-left {
      order: 3;
      width: 100%;
      display: flex;
      justify-content: center;
      text-align: center;
    }

    .footer-column-left p {
      margin: 0;
      font-size: 12px;
      line-height: 1.6;
    }

    .prayer-modal-content {
      padding: 30px 22px;
      border-radius: 20px;
    }

    .form-row {
      grid-template-columns: 1fr;
      gap: 0;
    }

    .prayer-header h2 {
      font-size: 25px;
    }

    .page-header-space {
      height: 135px;
    }
  }

  /* FAITH PAGE */
  .faith-page {
    width: 100%;
    background-color: var(--fundo-pagina);
    padding: 70px 25px 100px;
  }

  .faith-header {
    max-width: 900px;
    margin: 0 auto 55px;
    text-align: center;
  }

  .faith-eyebrow {
    display: block;
    margin-bottom: 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #777;
  }

  .faith-header h1 {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(42px, 6vw, 68px);
    line-height: 1.1;
    font-weight: 500;
    color: #222;
    letter-spacing: -1.5px;
  }

  .faith-divider {
    width: 45px;
    height: 4px;
    margin: 25px auto 0;
    background-color: #e87920;
  }

  .faith-image {
    position: relative;
    width: min(1100px, 100%);
    height: 430px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10);
  }

  .faith-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.02) 0%,
      rgba(0, 0, 0, 0.02) 45%,
      rgba(238, 238, 238, 0.75) 100%
    );
    pointer-events: none;
  }

  .faith-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 58%;
  }

  .faith-text {
    position: relative;
    z-index: 2;
    width: min(850px, 100%);
    margin: -45px auto 0;
    padding: 55px 70px 20px;
    background-color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
  }

  .faith-text p {
    margin: 0 0 27px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.9;
    font-weight: 400;
    color: #4b4e4b;
    text-align: center;
  }

  .faith-text p:last-child {
    margin-bottom: 0;
  }

  .faith-text p:first-child {
    font-weight: 500;
    color: #343834;
  }

  @media (max-width: 1100px) {

    .faith-page {
      padding: 50px 15px 70px;
    }

    .faith-header {
      margin-bottom: 40px;
    }

    .faith-eyebrow {
      font-size: 10px;
      letter-spacing: 3px;
    }

    .faith-header h1 {
      font-size: 38px;
      letter-spacing: -0.5px;
    }

    .faith-divider {
      width: 38px;
      height: 3px;
      margin-top: 20px;
    }

    .faith-image {
      width: 80%;
      height: 300px;
      border-radius: 3px;
    }

    .faith-image img {
      object-position: center center;
    }

    .faith-text {
      width: calc(70% - 20px);
      margin: -35px auto 0;
      padding: 38px 25px 15px;
    }

    .faith-text p {
      font-size: 14px;
      line-height: 1.85;
      margin-bottom: 23px;
      text-align: center;
    }
  }

  /* SERVICES PAGE */
  .services-page {
    width: 100%;
    background-color: var(--fundo-pagina);
    padding: 215px 20px 100px;
    flex: 1;
  }

  .services-header {
    max-width: 900px;
    margin: 0 auto 55px;
    text-align: center;
  }

  .services-eyebrow {
    display: block;
    margin-bottom: 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #777;
  }

  .services-header h1 {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(44px, 6vw, 68px);
    line-height: 1.1;
    font-weight: 500;
    color: #222;
    letter-spacing: -1.5px;
  }

  .services-divider {
    width: 45px;
    height: 4px;
    margin: 25px auto 20px;
    background-color: #e87920;
  }

  .services-header p {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #777;
  }

  .services-visual {
    width: min(1100px, 100%);
    height: 430px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 4px;
    background-color: #ddd;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10);
  }

  .services-visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
  }

  .services-intro {
    width: min(850px, 100%);
    margin: 0 auto;
    padding: 75px 30px 85px;
    text-align: center;
  }

  .services-intro-eyebrow {
    display: block;
    margin-bottom: 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    color: #6f8574;
  }

  .services-intro h2 {
    margin: 0 0 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 500;
    color: #222;
    letter-spacing: -1px;
  }

  .services-intro p {
    max-width: 760px;
    margin: 0 auto 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.9;
    color: #555;
  }

  .weekly-services {
    background-color: #f5f5f3;
    padding: 85px 20px 100px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
  }

  .weekly-services-header {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
  }

  .weekly-services-header > span {
    display: block;
    margin-bottom: 16px;
    margin-top: -16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    color: #6f8574;
  }

  .weekly-services-header h2 {
    margin: 0 0 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(34px, 5vw, 50px);
    line-height: 1.1;
    font-weight: 500;
    color: #222;
    letter-spacing: -1px;
  }

  .weekly-services-header p {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #666;
    line-height: 1.7;
  }

  .service-cards {
    width: min(1050px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .service-card {
    position: relative;
    display: flex;
    gap: 28px;
    background-color: #ffffff;
    padding: 38px;
    min-height: 270px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.09);
  }

  .service-card-main {
    border-top: 4px solid #e87920;
  }

  .service-card:not(.service-card-main) {
    border-top: 4px solid var(--verde-salvia);
  }

  .service-card-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #aaa;
    padding-top: 3px;
  }

  .service-card-content {
    flex: 1;
  }

  .service-card-day {
    display: block;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #777;
  }

  .service-card h3 {
    margin: 0 0 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 600;
    color: #222;
  }

  .service-time {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 18px;
  }

  .service-time-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #999;
  }

  .service-time strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 27px;
    font-weight: 600;
    color: #6f8574;
  }

  .service-card-main .service-time strong {
    color: #e87920;
  }

  .service-card p {
    max-width: 420px;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
  }

  .services-closing {
    max-width: 800px;
    margin: 0 auto;
    padding: 90px 20px 30px;
    text-align: center;
  }

  .services-closing-line {
    width: 40px;
    height: 4px;
    margin: 0 auto 25px;
    background-color: #e87920;
  }

  .services-closing h2 {
    margin: 0 0 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 500;
    color: #222;
  }

  .services-closing p {
    margin: 0 0 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #777;
  }

  .services-location-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 150px;
    padding: 13px 25px;
    border: 1px solid #333;
    border-radius: 30px;
    color: #333;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  }

  .services-location-btn:hover {
    background-color: #333;
    color: #fff;
    transform: translateY(-2px);
  }

  .google-maps-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 14px 28px;
    background-color: #2a2a28;
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
  }

  .google-maps-btn:hover {
    background-color: #969090;
    color: #1a1a1a;
  }

  @media (max-width: 1100px) {
    .main-footer {
      width: 100%;
      margin-top: auto;
      flex-shrink: 0;
    }

    .services-page {
      padding: 50px 15px 70px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .services-header {
      margin-bottom: 40px;
    }

    .services-eyebrow {
      font-size: 10px;
      letter-spacing: 3px;
    }

    .services-header h1 {
      font-size: 40px;
    }

    .services-header p {
      font-size: 14px;
    }

    .services-visual {
      height: auto;
      min-height: 230px;
      border-radius: 3px;
    }

    .services-visual img {
      width: 100%;
      height: auto;
      min-height: 230px;
      object-fit: cover;
    }

    .services-intro {
      padding: 60px 10px 70px;
    }

    .services-intro h2 {
      font-size: 32px;
    }

    .services-intro p {
      font-size: 14px;
      line-height: 1.8;
    }

    .weekly-services {
      padding: 65px 15px 75px;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      width: 100vw;
    }

    .weekly-services-header {
      margin-bottom: 35px;
    }

    .weekly-services-header h2 {
      font-size: 34px;
    }

    .service-cards {
      grid-template-columns: 1fr;
      gap: 18px;
    }

    .service-card {
      padding: 30px 25px;
      min-height: 0;
      gap: 18px;
    }

    .service-card-number {
      font-size: 11px;
    }

    .service-card h3 {
      font-size: 21px;
      margin-bottom: 20px;
    }

    .service-time strong {
      font-size: 23px;
    }

    .service-card p {
      font-size: 13px;
    }

    .services-closing {
      padding: 70px 10px 20px;
      margin-top: auto;
    }

    .services-closing h2 {
      font-size: 30px;
    }
  }

  /* OUR PASTORS */
  .pastors-page {
    width: min(1180px, 92%);
    margin: 0 auto;
    padding: 40px 0 90px;
  }

  .pastors-intro {
    max-width: 900px;
    margin: 25px auto 0;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: #666;
  }

  .pastors-content {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 70px;
  }

  .pastors-image {
    display: flex;
    justify-content: center;
  }

  .pastors-image img {
    width: 100%;
    max-width: 470px;
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
    display: block;
  }

  .pastors-role {
    display: block;
    margin-bottom: 12px;
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 700;
    color: #737e6d;
    text-transform: uppercase;
  }

  .pastors-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.15;
    color: #222;
    margin-bottom: 20px;
  }

  .small-divider {
    width: 45px;
    margin: 30px auto;
    display: block;
  }

  .pastors-text p {
    margin-bottom: 22px;
    font-size: 17px;
    line-height: 1.95;
    color: #555;
  }

  .pastors-quote {
    margin-top: 45px;
    padding-left: 24px;
    border-left: 4px solid #e47f22;
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-style: italic;
    line-height: 1.45;
    color: #2d2d2d;
  }

  .pastors-closing {
    margin-top: 110px;
    padding: 80px 50px;
    background: #f6f6f4;
    border-radius: 18px;
  }

  .pastors-closing-content {
    max-width: 760px;
    margin: auto;
    text-align: center;
  }

  .pastors-closing h2 {
    margin-top: 15px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 600;
    line-height: 1.15;
    color: #222;
  }

  .pastors-closing p {
    margin-top: 30px;
    font-size: 18px;
    line-height: 1.9;
    color: #666;
  }

  /* RESPONSIVE PASTORS */
  @media (max-width: 900px) {
    .pastors-content {
      grid-template-columns: 1fr;
      gap: 45px;
    }

    .pastors-image {
      order: 1;
    }

    .pastors-text {
      text-align: center;
      order: 2;
    }

    .pastors-text h2 {
      font-size: 38px;
      text-align: center;
    }

    .pastors-role {
      text-align: center;
    }

    .pastors-quote {
      border-left: none;
      border-top: 4px solid #e47f22;
      border-bottom: 4px solid #e47f22;
      padding: 22px 10px;
      text-align: center;
      font-size: 22px;
    }

    .pastors-closing {
      padding: 60px 30px;
    }

    .pastors-closing h2 {
      font-size: 40px;
    }
  }

  @media (max-width: 600px) {
    .pastors-page {
      width: 92%;
    }

    .pastors-intro {
      font-size: 16px;
    }

    .pastors-text h2 {
      font-size: 32px;
    }

    .pastors-text p {
      font-size: 16px;
    }

    .pastors-quote {
      font-size: 22px;
      padding: 22px 18px;
    }

    .pastors-closing h2 {
      font-size: 34px;
    }
    

    
  }

  /* ==========================================================
   STATEMENT OF FAITH — MOBILE
========================================================== */

@media (max-width: 767px) {

    /* PÁGINA */

    .faith-page {
        width: 100%;
        padding: 35px 12px 70px;
    }


    /* CABEÇALHO */

    .faith-header {
        width: 100%;
        margin-bottom: 30px;
        padding: 0 5px;
    }

    .faith-eyebrow {
        font-size: 10px;
        letter-spacing: 2.5px;
        margin-bottom: 12px;
    }

    .faith-header h1 {
        font-size: 34px;
        line-height: 1.15;
        letter-spacing: -0.5px;
    }

    .faith-divider {
        width: 38px;
        height: 3px;
        margin-top: 18px;
    }


    /* ======================================================
       IMAGEM
       MESMO CONCEITO DO DESKTOP
    ====================================================== */

    .faith-image {
        position: relative;

        width: 100%;
        height: 260px;

        margin: 0 auto;

        overflow: hidden;
        border-radius: 3px;

        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.10);
    }

    .faith-image img {
        width: 100%;
        height: 100%;

        display: block;

        object-fit: cover;
        object-position: center 58%;
    }


    /* ======================================================
       TEXTO SOBRE A IMAGEM
       MESMO EFEITO DO DESKTOP
    ====================================================== */

    .faith-text {
        position: relative;
        z-index: 2;

        width: calc(100% - 30px);

        margin: -35px auto 0;

        padding: 38px 25px 20px;

        background-color: rgba(255, 255, 255, 0.94);

        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);

        -webkit-backdrop-filter: blur(4px);
        backdrop-filter: blur(4px);
    }


    /* TEXTO */

    .faith-text p {
        width: 100%;
        max-width: none;

        margin: 0 0 23px;

        font-family: 'Montserrat', sans-serif;

        font-size: 14px;
        line-height: 1.85;

        font-weight: 400;

        color: #4b4e4b;

        text-align: center;
    }

    .faith-text p:last-child {
        margin-bottom: 0;
    }

}