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

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;   /* mata a barra horizontal da página */
}


body {
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #222;
  background-color: #f7f7f7;
  line-height: 1.6;
}

/* Containers */

.container {
  width: min(1120px, 100% - 2rem);
  margin: 0 auto;
}

section[id] {
  scroll-margin-top: 80px;   /* ajusta pro tamanho do seu header no desktop */
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #003366;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo-link {
  text-decoration: none;
  color: #0b3b4d;
  display: flex;
  flex-direction: column;
  font-weight: 700;
}

.logo-main {
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo-sub {
  font-size: 0.75rem;
  text-transform: uppercase;
}

/* Nav */

.main-nav {
  position: relative;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-list a {
  text-decoration: none;
  color: #ffffff;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav-list a:hover {
  color: #7c7c7c;
}

/* Hamburguer (mobile) */

.nav-toggle {
  display: none;
  width: 32px;
  height: 24px;
  border: none;
  background: none;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 3px;
  border-radius: 99px;
  background: #ffffff;
}

/* Hero */

.hero-section {
  background: linear-gradient(135deg, #0b3b4d, #0b8f7a);
  color: #fff;
  padding: 5rem 0 4rem;
  position: relative;
  width: 100%;
  height: 70vh; 
  min-height: 620px;         /* ajusta a altura do “faixão” */
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1rem;
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.75rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: #ffd34d;
  color: #0b3b4d;
  border-color: #ffd34d;
}

.btn-primary:hover {
  background: #ffcd33;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
}

/* Sections genéricas */

.section {
  padding: 4rem 0;
  background: #f7f7f7;
}

.section-alt {
  background: #ffffff;
}

.section-highlight {
  background: #0b3b4d;
  color: #fff;
}

.section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

/* Cards */

.cards-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.section-highlight .card {
  background: rgba(255,255,255,0.06);
}

.card h3 {
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.card-link {
  font-size: 0.9rem;
  text-decoration: none;
  color: #0b8f7a;
}

/* Contato */

.contato-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
}

.contact-list {
  list-style: none;
  margin-top: 1rem;
}

.contact-list li + li {
  margin-top: 0.35rem;
}

.contact-form {
  /* background: #ffffff;
  padding: 1.75rem;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04); */
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid #ccc;
  padding: 0.6rem 0.75rem;
  font-size: 0.95rem;
}

/* Footer */

.site-footer {
  background: #1d242d;
  color: #fff;
  padding: 1.75rem 0;
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;   /* empilha texto e ícones */
  align-items: center;      /* centraliza horizontalmente */
  justify-content: center;
  text-align: center;       /* texto centralizado */
  gap: 0.5rem;
}


/* Botão DOE (verde) */
.btn-donate {
  background: #65bc7b;
  color: #ffffff !important;
  padding: 8px 24px;
  border-radius: 30px;
  font-weight: 600;
  border: 2px solid #65bc7b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: 0.2s ease;
}

.btn-donate:hover {
  background: #4bb35f;
  border-color: #4bb35f;
}

/* ===== HERO CARROSSEL ===== */

.hero-carousel {
  position: relative;
  background: #ffffff;
  min-height: 620px;
  top: 80px;
}

/* quando estiver pronto (JS adiciona essa classe), aparece bonitinho */
/* a section do carrossel já aparece com um fundo "ok" */
.hero-carousel {
  position: relative;
  background: linear-gradient(
    90deg,
    #cba62b 0%,      /* Laranja - 25% */
    #cba62b 25%,
    #2e6ba8 25%,     /* Azul - 50% */
    #2e6ba8 75%,
    #c8cb2b 75%,     /* Amarelo/Laranja novamente - 25% */
    #c8cb2b 100%
  );
  top: 80px;
}

/* o swiper em si começa escondido, mas a faixa já aparece */
.hero-swiper {
  opacity: 0;
  transition: opacity 0.25s ease;
}

.hero-carousel.is-ready {
  background: #ffffff !important; /* volta pra branco */
  transition: background 0.35s ease-in-out;
}

/* quando o JS termina de montar o slider, mostramos o swiper */
.hero-carousel.is-ready .hero-swiper {
  opacity: 1;
}



/* miniaturas (quadradinhos) */
.hero-thumbs {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding-top: 5rem;
  padding-bottom: 0;
  margin-bottom: -40px;
}

.hero-thumb {
  width: 65px;
  height: 65px;
  background-size: cover;
  background-position: center;
  /* REMOVE A BORDA BRANCA */
  border: none;
  cursor: pointer;
  opacity: 0.7;
  transform: scale(1);
  transition: transform .3s ease, opacity .3s ease, box-shadow .3s ease;
}

/* Thumb cresce QUANDO o mouse está sobre ela */
.hero-thumb:hover {
  transform: scale(1.8);
  opacity: 1;
  z-index: 20; /* garante que ela fica sobre as outras */
}

.hero-thumb.is-active,
.hero-thumb:hover {
  opacity: 1;
  transform: scale(1.8);     /* cresce bem, igual você falou */
  box-shadow: 0 8px 18px rgba(0,0,0,0.45);
  z-index: 10;               /* garante ficar por cima das outras */
}



/* container do swiper */
/* container do swiper */
.hero-swiper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 560px;
  margin: 0;
  overflow: visible;
}


/* wrapper do Swiper */
.hero-swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

/* cada slide = “gridwidth 1000px” igual revslider */
/* cada slide = “gridwidth 1000px” igual revslider */
.hero-swiper .swiper-slide {
  flex: 0 0 auto;
  width: calc(100% - 100px); /* ajusta pra caber o pedaço do slide ao lado */
  max-width: 1180px;
  height: 100%;
  min-height: 560px; /* mantém */
  transition: transform 0.8s ease; /* deixa melhor a animação */
}

/* imagem de fundo pura */
.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 560px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 560px;
  padding: 0 0 0;            /* padding vertical vai ser controlado pelo flex */
  z-index: 2;

  display: flex;             /* centraliza verticalmente */
  align-items: center;
}


.hero-slide-content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

/* NÃO queremos overlay nenhum por cima da imagem */
.hero-overlay {
  display: none !important;
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* conteúdo de texto dentro do slide */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 640px;
  margin-left: 150px;
  color: #ffffff;
  text-align: left;
  margin-top: 10%;
  top: auto; 
  transform: none;
}


.hero-content h1 {
  font-size: 2.6rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.hero-content h2 {
  font-size: 1.4rem;
  margin-bottom: 1.6rem;
  font-weight: 300;
}

.hero-content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
}

.hero-link {
  display: inline-block;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  text-decoration: none;
}

/* opcional: sombrazinhas nas laterais igual prod */
.shadow-left,
.shadow-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  pointer-events: none;
  z-index: 4;
}

.shadow-left {
  left: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.25), transparent);
}

.shadow-right {
  right: 0;
  background: linear-gradient(to left, rgba(0,0,0,0.25), transparent);
}

/* ==== SOBRE A ONG ==== */

.section-about {
  position: relative;
  padding: 120px 0;
  /* imagem de fundo ocupando a section inteira */
  background-image: url('../img/bg_kid.jpg'); /* troque pelo nome da sua imagem */
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}

/* truque pra deixar a esquerda mais “clara” e texto legível */
.section-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.95) 45%,
    rgba(255, 255, 255, 0.0) 80%);
  pointer-events: none;
}

.section-about-inner {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
}

.about-text {
  max-width: 560px;
}

.about-text h2 {
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #003c7a;       /* azul do site */
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 0.98rem;
  line-height: 1.9;
  color: #444444;
  margin-bottom: 1rem;
}

/* Botão azul "NOSSOS PROJETOS" */
.btn-about {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  gap: 12px;
  border-radius: 25px;
  background-color: #003c7a;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid #003c7a;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

/* Ícone */
.button-icon-left {
  font-size: 1rem;
  color: #ffffff;
  transition: inherit;
}

/* Hover igual prod */
.btn-about:hover {
  background-color: #0892D2;
  border: 2px solid #0892D2;
  color: #ffffff;
}

.btn-about:hover .button-icon-left {
  color: #ffffff;
}

/* ===== PROJETOS EM ANDAMENTO / REALIZADOS ===== */

.proj-double {
    display: flex;
    width: 100%;
    min-height: 550px;
}

/* Cada lado da section */
.proj-box {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    /* ESSENCIAL PARA NITIDEZ */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-size: 110% auto;
    transition: background-size 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Zoom ao passar o mouse */
.proj-box:hover {
    /* transform: scale(1.05); */
    background-size: 130% auto;
}

/* ========= IMAGENS + OVERLAY NO MESMO BACKGROUND (IGUAL PROD) ========= */

/* LADO ESQUERDO — Projetos em andamento */
.proj-box.left {
    background-image: url("../img/andamento.fw-min.png");
    background-color: rgba(1, 69, 130, 0.85); /* azul do prod */
    background-blend-mode: overlay; /* igual ao WP */
}

/* LADO DIREITO — Projetos realizados */
.proj-box.right {
    background-image: url("../img/projetos_realizados.png");
    background-color: rgba(20, 116, 87, 0.85); /* verde do prod */
    background-blend-mode: overlay;
}

/* ========= CONTEÚDO ========= */

.proj-content {
    color: white;
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.proj-icon {
    font-size: 65px;
    margin-bottom: 15px;
}

.proj-content h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
}

.proj-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 28px;
    border-radius: 30px;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s;
    gap: 8px;
}

.proj-btn:hover {
    background: #fff;
    color: #004470;
}

/* ==== VÍDEOS BRASIL 2050 ==== */

/* ==== VÍDEOS BRASIL 2050 ==== */

.section-videos {
  position: relative;
  padding: 80px 0 90px;

  /* imagem de fundo nítida */
  background-image: url("../img/bgbg.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;

  /* “faixa” cinza escura, igual lógica da proj-box */
  background-color: rgba(0, 0, 0, 0.55); /* ajusta o 0.55 se quiser mais/menos escuro */
  background-blend-mode: overlay;        /* mistura cor + imagem sem perder nitidez */
}


.section-videos-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.section-videos-inner h2 {
  font-size: 1.8rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 40px;
}

/* duas colunas: vídeo 1 e vídeo 2 */
.videos-row {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
}

/* cada lado (div do vídeo) */
.video-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;   /* centraliza o conteúdo dentro da coluna */
}

/* título em cima de cada vídeo */
.video-item-title {
  font-size: 0.95rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 18px;
}

/* iframe maior e centralizado */
.video-frame {
  display: block;
  width: 100%;
  max-width: 680px;      /* AUMENTEI a largura máxima do player */
  height: 350px;         /* altura proporcional */
  margin: 0 auto;        /* centraliza dentro da coluna */
  border: 0;
}


/* ===== RESULTADOS & DEMONSTRATIVOS ===== */

.section-resultados {
    padding: 90px 0;
    background: #ffffff;
}

.resultados-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.section-resultados h2 {
    font-size: 1.9rem;
    color: #003c7a;
    margin-bottom: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.resultados-desc {
    max-width: 700px;
    margin: 0 auto 60px auto;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* GRID 3x2 */
.resultados-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px 45px;
    margin-top: 20px;
}

/* CARD */
.resultado-card {
    background: #ffffff;
    padding: 40px 10px;
    border-radius: 10px;
    text-decoration: none;
    color: #003c7a;
    font-weight: 700;
    font-size: 1.4rem;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);

}

/* Ícone */
.resultado-icone {
    font-size: 28px;
    color: #ffffff;
    background-color: #5e5e5e;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    line-height: 56px; /* centraliza verticalmente */
    border: 2px solid #5e5e5e;
    display: inline-block;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

/* Centralização do ícone abaixo do título */
.fusion-fa-align-center {
    display: flex;
    justify-content: center;
    margin-top: 14px;
}

/* HOVER — zoom + sombra + elevação */
.resultado-card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

/* ==== FALE CONOSCO ==== */

.section-contact {
  position: relative;
  padding: 90px 0 110px;
  background-image: url("../img/bg_contato.jpg"); /* ou outra imagem de fundo que você quiser */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* véu branco por cima do fundo, igual prod */
.section-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  pointer-events: none;
}

.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
  gap: 3rem;
  align-items: flex-start;
}

/* coluna esquerda */

.contact-left h2 {
  font-size: 1.9rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #003c7a;
  margin-bottom: 18px;
}

.contact-left p {
  font-size: 0.96rem;
  line-height: 1.9;
  color: #555;
  max-width: 430px;
  margin-bottom: 28px;
}

/* ícones das redes */

.contact-social {
  display: flex;
  gap: 14px;
}

.social-icon img {
  display: block;
  width: 58px;
  height: 58px;
}

/* coluna direita (formulário) */

.contact-right {
  width: 100%;
}

.contact-form {
  /* background: rgba(255, 255, 255, 0.96);
  padding: 22px 26px 26px;
  border-radius: 4px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.09); */
}

/* duas colunas para os campos de cima */

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  margin-bottom: 16px;
}

.contact-form .form-group {
  margin-bottom: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 3px;
  border: 1px solid #d5d5d5;
  padding: 10px 12px;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  color: #999;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0892D2;
}

/* textarea maiorzinho */

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

/* botão verde "enviar o formulário" */

.btn-contact {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 34px;
  border-radius: 999px;
  border: none;
  background: #65bc7b;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease,
              box-shadow 0.15s ease;
}

.btn-contact:hover {
  background: #4bb35f;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

/* ==== ÍCONES SOCIAIS DO FALE CONOSCO (IGUAL PROD – PERFEITO) ==== */
.contact-social {
  display: flex;
  gap: 18px; /* mais espaço entre os ícones igual prod */
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 60px;
  height: 60px;

  border-radius: 4px;
  color: #ffffff;

  font-size: 32px; /* tamanho do ícone */
  padding: 8px;   /* garante proporção idêntica ao prod */

  text-decoration: none;

  transition: all .25s ease;
}

.social-icon.fb {
  background-color: #3b5998;
  border: 1px solid #3b5998;
}

.social-icon.ig {
  background-color: #3f729b;
  border: 1px solid #3f729b;
}

.social-icon.yt {
  background-color: #cd201f;
  border: 1px solid #cd201f;
}

.social-icon.mail {
  background-color: #000000;
  border: 1px solid #000000;
}

/* hover igual prod */
.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.22);
}

.contact-social {
  margin-bottom: 25px;
}

.footer-copy {
  margin: 0;
}

.footer-copy a {
  color: #ffffff;
  text-decoration: none;
}

.footer-copy a:hover {
  text-decoration: underline;
}

/* ícones do rodapé */
.footer-social {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;                 /* tamanho do ícone */
  color: #ffffff;
  text-decoration: none;
  /* sem borda, sem fundo, igual prod */
  border: none;
  width: auto;
  height: auto;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-social-link:hover {
  color: #003366;                  /* verdinho do botão DOE, pode ajustar */
  transform: translateY(-1px);     /* leve “lift” no hover, bem sutil */
}

/* ===== PÁGINA PROJETOS REALIZADOS – HEADER SOBRE O GIF ===== */

.page-realizados .site-header {
  position: absolute;        /* fica por cima do banner */
  top: 0;
  left: 0;
  right: 0;
  background: transparent;   /* some o azul */
  box-shadow: none;          /* sem sombra no topo */
  z-index: 1000;
}

/* degradê suave de cima pra baixo, igual WP */
.page-realizados .site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0)
  );
  pointer-events: none;
  z-index: -1; /* fica atrás do conteúdo do header */
}

/* garante que textos do menu fiquem brancos */
.page-realizados .nav-list a {
  color: #ffffff;
}

.page-realizados .nav-list a:hover {
  color: #ffd34d; /* amarelo do site no hover */
}

/* HERO PROJETOS REALIZADOS COM VÍDEO DE FUNDO */

.hero-realizados {
  position: relative;
  min-height: 520px;              /* põe 100vh se quiser tela cheia */
  padding: 160px 20px 120px;      /* respiro pro header e pro botão */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;               /* corta vídeo que passar pra fora */
}

/* vídeo ocupando tudo no fundo */
.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;              /* preenche sem distorcer */
  z-index: -2;
}

/* camada verde por cima do vídeo, igual prod */

.hero-realizados-inner {
  position: relative;
  z-index: 1;
}

.hero-realizados-inner h1 {
  font-size: 2.3rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

/* botão SAIBA MAIS */
.hero-realizados-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  border-radius: 999px;
  border: 2px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.hero-realizados-btn:hover {
  background: #ffffff;
  color: #004470;
  transform: translateY(-2px);
}

/* BOTÃO "SAIBA MAIS" IGUAL AO PROD */
.proj-saiba-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    background: transparent;               /* botão flat igual Avada */
    color: #ffffff;
    border: 2px solid #ffffff;
    
    padding: 14px 38px;
    border-radius: 30px;

    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;

    text-decoration: none;
    transition: all .25s ease;
}

/* Ícone igual prod */
.proj-saiba-btn i {
    font-size: 18px;
    line-height: 1;
    color: #ffffff;
    transition: inherit;
}

/* Hover igual Avada */
.proj-saiba-btn:hover {
    background: #ffffff;
    color: #004470;           /* azul do texto no hover */
    transform: translateY(-2px);
}

.proj-saiba-btn:hover i {
    color: #ffffff;
}

/* ==== PROJETOS REALIZADOS (PONTUAIS) ==== */

.section-projetos-realizados {
  padding: 60px 0 80px;
  background-image: linear-gradient(180deg, #49a962 0%, #347a47 100%);
  background-position: center center;
  background-repeat: no-repeat;
}

.projetos-realizados-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

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

/* CARD */

.projeto-card {
  border: 1px solid rgba(255, 255, 255, 0.9);
  padding: 40px 15%;
  color: #ffffff;
  background: transparent;
  min-height: 0;
  text-align: left;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.projeto-card h5 {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: 12px;
}

/* lista de infos (ícone + texto) */

.projeto-info {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}

.projeto-info li {
  display: flex;
  align-items: flex-start;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.projeto-info i {
  font-size: 1.4rem;       /* ~28px */
  margin: 5px 10px 10px 5px;
}

.projeto-info span {
  color: #ffffff;
}

/* botão "GALERIA E DESCRITIVO" */

.projeto-btn {
  margin-top: 16px;
  align-self: flex-start;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 28px;
  border-radius: 50px;
  border: none;

  background: #003c7a;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;

  transition: background 0.2s ease, transform 0.2s ease,
              box-shadow 0.2s ease;
}

.projeto-btn i {
  font-size: 1.1rem;
}

.projeto-btn:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* Botões da seção Realizados */
.page-realizados .projeto-btn {
    background: rgb(101, 188, 123);
    border: 1px solid rgb(101, 188, 123);
    color: #fff !important;
    transition: all 0.2s ease;
}

.page-realizados .projeto-btn:hover {
    background: rgb(81, 168, 103);   /* um pouco mais escuro */
    border-color: rgb(81, 168, 103);
    color: #fff !important;
}


/* hover do card: leve "lift" e sombra */

.projeto-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

/* último card centralizado na última linha */

.projeto-card--single {
  grid-column: 1 / -1;     /* ocupa as duas colunas */
  max-width: 520px;
  margin: 0 auto;
}

/* ==== PROJETOS PONTUAIS ==== */

.section-projetos-pontuais {
  background-image: linear-gradient(180deg, #d89b00 0%, #ad8400 100%);
  background-position: center center;
  background-repeat: no-repeat;
  padding: 40px 0 80px;   /* tira aquele espaço gigante lá em cima */
}

.pontuais-inner {
  max-width: 1200px;      /* um pouquinho mais larga que 1120 */
  margin: 0 auto;
  padding: 40px 40px 0;   /* laterais menores e topo controlado */
}


/* topo: ícone e título */

.pontuais-header {
  text-align: center;
  margin-bottom: 32px;
}

.pontuais-icon {
  font-size: 60px;
  color: #ffffff;
  display: block;
  margin-bottom: 8px;
}

.pontuais-header h4 {
  font-size: 1.75rem;  /* ~28px */
  line-height: 1.36;
  color: #ffffff;
  letter-spacing: 0.08em;
}

/* GRID 3 CARDS */

.pontuais-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;                      /* tira o 5% de “espaço roubando” dos cards */
}


/* CARD */

.pontual-card {
  border: 1px solid rgba(255, 255, 255, 0.9);
  padding: 40px 40px;   /* padding fixo, não encolhe tanto o conteúdo */
  color: #ffffff;
  background: transparent;
  min-height: 0;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pontual-card h5 {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: 12px;
}

/* lista de infos */

.pontual-info {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}

.pontual-info li {
  display: flex;
  align-items: flex-start;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.pontual-info i {
  font-size: 1.4rem; /* ~28px */
  margin: 5px 10px 10px 5px;
}

.pontual-info span {
  color: #ffffff;
}

/* botão amarelo */

.pontual-btn {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 10px 28px;
  border-radius: 50px;

  background: #ffc107;
  border: 1px solid #ffffff;
  color: #ffffff;
  text-decoration: none;

  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;

  transition: background 0.2s ease, border-color 0.2s ease,
              transform 0.2s ease, box-shadow 0.2s ease;
}

.pontual-btn i {
  font-size: 1.1rem;
}

.pontual-btn:hover {
  background: #c49406;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

/* hover leve no card também */

.pontual-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

/* ===== HERO PROJETOS EM ANDAMENTO ===== */

.hero-andamento {
  position: relative;
  width: 100%;
  height: 420px;              /* altura parecida com o prod */
  overflow: hidden;
  color: #ffffff;
  background: #003c7a;        /* cor base caso o vídeo não carregue */
}

/* o vídeo reaproveita a classe que você já usa em realizados */
.hero-andamento .hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-andamento-inner {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
  padding: 140px 20px 80px;   /* esse padding de cima abaixa o título */
  text-align: center;
}

.hero-andamento-inner h1 {
  font-size: 2.3rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 40px;
}

/* container dos dois botões */
.hero-andamento-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

/* o .proj-saiba-btn já existe na página de realizados
   e é reaproveitado aqui.
   Se quiser garantir o mesmo estilo, pode usar: */

.proj-saiba-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 32px;
  border-radius: 50px;
  border: 2px solid #ffffff;
  background: transparent;
  color: #ffffff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.proj-saiba-btn:hover {
  background: #ffffff46;
  border-color: #ffffff46;
  color: #ffffff;
  transform: translateY(-1px);
}

.proj-saiba-btn .button-icon-left {
  font-size: 1rem;
}

/* ===== SECTION CONECTA VIDAS (PROJETOS EM ANDAMENTO) ===== */

.section-conecta {
  padding: 60px 0 80px;
  background-image: linear-gradient(180deg, #015d9b 0%, #002b51 100%);
  color: #ffffff;
}

/* Centralização do conteúdo */
.section-conecta .projetos-realizados-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Cabeçalho Conecta */
.conecta-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.conecta-header-icon i {
  font-size: 60px;
  margin-bottom: 10px;
}

.conecta-header h2 {
  font-size: 1.8rem;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

.conecta-header p {
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 300;
}

/* Linha de metas (4 ícones grandes) */
.conecta-meta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  margin-bottom: 40px;
}

.conecta-meta-item {
  text-align: center;
  min-width: 170px;
}

.conecta-meta-icon i {
  font-size: 40px;
  margin-bottom: 8px;
}

.conecta-meta-label {
  font-size: 1rem;
  font-weight: 500;
}

/* Garantir texto branco nos cards do Conecta */
.section-conecta .projeto-card {
  border-color: rgba(255, 255, 255, 0.9);
  color: #ffffff;
  background: transparent;
}

.section-conecta .projeto-info i,
.section-conecta .projeto-info span {
  color: #ffffff;
}

/* ===== SECTION MEDITAR NA ESCOLA ===== */

.section-meditar {
  position: relative;
  padding: 80px 0 90px;
  color: #ffffff;
  background-image:
    linear-gradient(rgba(190, 188, 40, 0.80), rgba(190, 188, 40, 0.80)),
    url("../img/bemestar.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.meditar-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Cabeçalho */

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

.meditar-header-icon i {
  font-size: 60px;
  margin-bottom: 10px;
}

.meditar-header h2 {
  font-size: 1.8rem;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}

.meditar-header p {
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 300;
}

/* Botão central */

.meditar-cta {
  text-align: center;
  margin-bottom: 40px;
}

.meditar-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.8rem 2.8rem;
  border-radius: 50px;
  border: 1px solid #ffffff;
  background: transparent;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.meditar-btn i {
  font-size: 1rem;
}

.meditar-btn:hover,
.meditar-btn:focus {
  background: rgba(255, 255, 255, 0.23);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

/* Linha de meta-informações (4 ícones) */

.meditar-meta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.meditar-meta-item {
  text-align: center;
  min-width: 200px;
}

.meditar-meta-icon i {
  font-size: 40px;
  margin-bottom: 8px;
}

.meditar-meta-label {
  font-size: 0.9rem;
  font-weight: 500;
}


/* ===========================
   SECTION: OPÇÕES DE DOAÇÃO
   =========================== */

.section-opcoes-doacao {
  padding: 80px 0 90px;
  background-color: #f5f5f5;
}

.section-opcoes-doacao .doacao-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* GRID 2x2 */

.doacao-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

/* CARD */

.doacao-card {
  background-color: #ffffff;
  border: 2px solid #eaeaea;
  border-radius: 12px;
  box-shadow: 15px 15px 63px 27px rgba(232, 232, 232, 1);
  padding: 40px 50px 30px;
  min-height: 380px; /* ajusta se quiser mais alto */
  display: flex;
  flex-direction: column;
}

/* Cabeçalho do card */

.doacao-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.doacao-card-icon {
  font-size: 60px;
  color: #03a9f4;
}

.doacao-card-header h3 {
  font-size: 1.25rem; /* ~20px */
  font-weight: 600;
  color: #333333;
  text-transform: uppercase;
  line-height: 1.3;
}

/* Corpo do card */

.doacao-card-body {
  font-size: 0.95rem;
  color: #777777;
  line-height: 1.7;
}

/* Formulário / selects */

.doacao-form-group {
  margin-bottom: 24px;
}

.doacao-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #777777;
  margin-bottom: 8px;
}

.doacao-select {
  width: 100%;
  padding: 10px 14px;
  border-radius: 4px;
  border: 1px solid #cccccc;
  font-size: 0.95rem;
  color: #444444;
  outline: none;
  background-color: #ffffff;
}

.doacao-select:focus {
  border-color: #03a9f4;
  box-shadow: 0 0 0 2px rgba(3, 169, 244, 0.18);
}

/* Área do botão PayPal */

.doacao-paypal {
  margin-top: 16px;
}

.doacao-paypal input[type="image"] {
  max-width: 100%;
  height: auto;
}

/* Dados bancários */

.doacao-bank-data {
  margin-top: 12px;
  font-size: 0.95rem;
  color: #555555;
}

.doacao-bank-data strong {
  font-weight: 600;
  color: #333333;
}

/* ================================
   Ajustes só para em_andamento.html
   ================================ */

/* Header transparente sobre o vídeo nas páginas com hero em vídeo */
.page-andamento .site-header,
.page-realizados .site-header {
  position: absolute;       /* em cima do vídeo enquanto está no topo */
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;  /* sem barra azul no topo */
  box-shadow: none;
  z-index: 20;
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease;
}

/* Quando ganhar .is-solid (via JS) vira barra azul fixa */
.page-andamento .site-header.is-solid,
.page-realizados .site-header.is-solid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #003366;      /* mesmo azul do resto do site */
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}




/* responsivo: centraliza tudo no mobile */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .section-conecta {
    padding: 60px 0 70px;
  }

  .conecta-header h2 {
    font-size: 1.4rem;
  }

  .conecta-card {
    padding: 24px 20px;
  }
}

/* =========================================
   ANIMAÇÕES DE SCROLL (aparecer da esquerda)
   ========================================= */

.js-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.4s ease-out,
    transform 0.4s ease-out;
  will-change: opacity, transform;
}

/* Quando entrar na tela */
.js-reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}


/* ==============================
   ESTILOS DO MODAL
==============================*/

.modal-andamento {
  position: fixed;
  inset: 0;
  display: none;              /* começa escondido */
  align-items: center;
  justify-content: center;
  z-index: 1500;
}

.modal-andamento.is-open {
  display: flex;              /* mostra quando adicionamos a classe via JS */
}

.modal-andamento-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.modal-andamento-dialog {
  position: relative;
  background: #ffffff;
  max-width: 900px;
  width: calc(100% - 40px);
  max-height: 85vh;
  overflow-y: auto;
  border-radius: 8px;
  padding: 24px 24px 28px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.modal-andamento-title {
  font-size: 1.8rem;
  margin: 0 0 12px;
}

.modal-andamento-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  background: transparent;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.modal-andamento-video {
  margin: 10px 0 20px;
}

.modal-andamento-video video {
  width: 100%;
  height: auto;
  display: block;
}

.modal-andamento-gallery img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 8px;
}

/* =========================
   MODAIS – PROJETOS REALIZADOS
   ========================= */
.real-modal-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.65);
  z-index: 9999;
}

.real-modal-overlay.is-open {
  display: flex;
}

.real-modal-backdrop {
  position: absolute;
  inset: 0;
}

.real-modal-dialog {
  position: relative;
  background: #ffffff;
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 30px 28px 24px;
  border-radius: 4px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.real-modal-title {
  font-size: 32px;
  line-height: 1.3;
  margin: 0 40px 20px 0;
  color: #013b72;
}

.real-modal-body p {
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.7;
}

.real-modal-video {
  margin: 16px 0 20px;
}

.real-modal-video video {
  width: 100%;
  height: auto;
  display: block;
}

.real-modal-body img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 12px;
}

.real-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #666666;
}

.real-modal-close:hover {
  color: #000000;
}

/* Quando o menu estiver sólido (usuário deu scroll) */
.site-header.is-solid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999; /* Garante que fica acima de tudo */
}

.hero-slide-link {
  /* display: block; */
  /* height: 100%; */
  /* color: inherit; */
  text-decoration: none;
}

.hero-slide-link:hover .hero-link {
  text-decoration: underline;
}

/* Evita que o texto do carrossel fique sempre em maiúsculas */
.hero-slide-link .hero-content h1,
.hero-slide-link .hero-content h2,
.hero-slide-link .hero-content p,
.hero-slide-link .hero-link {
    text-transform: none !important;
}

.hero-slide-link *,
.hero-slide * {
    text-transform: none !important;
}

.doacao-paypal-btn {
  background: #ffffff !important;   /* Fundo branco */
  color: #4DAA70;                   /* Verde original do layout */
  border: none;        /* Borda verde para manter o branding */
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: none !important;      /* Remove qualquer efeito */
}

/* Remove completamente o hover */
.doacao-paypal-btn:hover {
  background: #ffffff !important;
  color: #4DAA70 !important;
  border-color: #4DAA70 !important;
  /* Nenhuma sombra ou transição */
}



/* responsivo básico */
@media (max-width: 1200px) {
  .hero-swiper .swiper-slide {
    width: 900px;
  }
  .hero-content {
    margin-left: 100px;
  }
}

@media (max-width: 992px) {
  .videos-row {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza os vídeos */
    gap: 30px; /* Espaçamento entre os vídeos */
  }

  .video-col {
    max-width: 100%;
    width: 100%;
    text-align: center;
  }

  .video-frame {
    width: 100%;
    max-width: 600px; /* Limita pra não ficar gigante */
    margin: 0 auto;
    display: block;
  }
  
  .hero-content h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
  }
  .hero-content {
    position: relative;
    z-index: 3;
    max-width: 640px;
    margin-left: 150px;
    color: #ffffff;
    text-align: left;
    margin-top: 20%;
    top: auto;
    transform: none;
  }

  .hero-swiper .swiper-slide {
    width: 800px;
  }
  .hero-content {
    margin-left: 60px;
    max-width: 520px;
  }

  .section-videos-inner {
    padding: 0 20px;
  }

  .videos-row {
    flex-direction: column;
    gap: 30px;
  }

  .video-frame {
    max-width: 100%;
    height: 260px;
  }

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

  .contact-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .contact-left p {
    max-width: 100%;
  }

  .projetos-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  /* .projeto-card {
    padding: 0;
  } */

  .projeto-card--single {
    max-width: none;
  }
  
  .pontuais-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .pontual-card {
    padding: 40px 12%;
  }

  .conecta-meta-row {
    gap: 30px;
  }

  .section-meditar {
    padding: 60px 0 70px;
  }

  .meditar-header h2 {
    font-size: 1.4rem;
  }

  .meditar-meta-row {
    gap: 30px;
  }

  .meditar-meta-item {
    min-width: 150px;
  }

  .doacao-grid {
    grid-template-columns: 1fr;
  }

  .doacao-card {
    box-shadow: 8px 8px 30px 0 rgba(232, 232, 232, 1);
    padding: 32px 24px 28px;
  }

  .proj-double {
    flex-direction: column;    /* empilha os dois cards */
    min-height: auto;          /* deixa a altura se ajustar */
  }

  .proj-box {
    min-height: 320px;         /* garante uma altura boa pra cada um */
    width: 100%;
  }

  .real-modal-dialog {
    padding: 22px 18px 18px;
  }

  .real-modal-title {
    font-size: 24px;
    margin-right: 30px;
  }
}

@media (max-width: 768px) {
  .hero-swiper .swiper-slide {
    width: 90%;
  }

  .section-about {
    padding: 80px 0;
    background-position: center top;
  }
  .section-about::before {
    background: rgba(255,255,255,0.94);
  }
  .about-text {
    max-width: 100%;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-list {
    position: absolute;
    right: 0;
    top: 160%;
    background: #003366;
    flex-direction: column;
    width: 220px;
    padding: 0.75rem 1rem;
    box-shadow: 0 12px 24px rgba(0,0,0,0.16);
    display: none;
  }

  .nav-list.open {
    display: flex;
  }

  .resultados-grid {
      grid-template-columns: 1fr;
  }

   .contact-form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-form {
    padding: 18px 18px 22px;
  }

  .hero-carousel,
  .hero-swiper,
  .hero-swiper .swiper-slide,
  .hero-slide,
  .hero-slider-wrapper {
    min-height: 500px;
  }

  .hero-content {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .hero-andamento-inner h1 {
    font-size: 2rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0;
  }

  .hero-andamento-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 15px;
  }
}
