* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  background: #f5f7fa;
  padding-top: 70px;
}

/* SEÇÃO CONTADOR */
.contador {
  background: linear-gradient(rgba(10, 31, 68, 0.9), rgba(10, 31, 68, 0.9)),
              url('https://images.unsplash.com/photo-1588072432836-e10032774350');
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  color: white;
}

.contador-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  text-align: center;
  gap: 30px;
}

.item h2 {
  font-size: 42px;
  color: #00e676;
}

.item p {
  margin-top: 10px;
  font-size: 16px;
}

/* SEÇÃO IDENTIDADE PROAP */
.proap-identidade {
  position: relative;
  background: #eaf7f0;
  padding: 100px 20px;
  overflow: hidden;
}

.proap-identidade-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.proap-subtitulo {
  display: inline-block;
  font-size: 16px;
  color: #18b56a;
  margin-bottom: 14px;
  font-weight: 500;
}

.proap-identidade h2 {
  font-size: 52px;
  line-height: 1.1;
  color: #16214a;
  margin-bottom: 50px;
  font-weight: 700;
}

.proap-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 40px;
}

.proap-card {
  background: #f8f8f8;
  border: 1px solid #d9d9d9;
  border-radius: 24px;
  padding: 34px 32px;
  text-align: left;
  min-height: 290px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.proap-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.07);
}

.proap-icon {
  font-size: 34px;
  color: #18c46b;
  margin-bottom: 20px;
  line-height: 1;
}

.proap-card h3 {
  font-size: 20px;
  color: #1d2755;
  margin-bottom: 16px;
  font-weight: 700;
}

.proap-card p {
  font-size: 17px;
  line-height: 1.8;
  color: #6c7393;
  font-weight: 400;
}

.proap-btn-identidade {
  display: inline-block;
  padding: 14px 28px;
  border: 2px solid #19c56c;
  color: #1d2755;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  background: transparent;
  transition: 0.3s ease;
}

.proap-btn-identidade:hover {
  background: #19c56c;
  color: #fff;
}

/* LINHAS DECORATIVAS */
.proap-linha {
  position: absolute;
  border: 2px solid #20c86f;
  border-radius: 50%;
  opacity: 0.9;
}

.linha-topo {
  width: 900px;
  height: 320px;
  top: -140px;
  left: -180px;
  border-right: none;
  border-bottom: none;
  transform: rotate(-8deg);
}

.linha-baixo {
  width: 1200px;
  height: 420px;
  right: -420px;
  bottom: -180px;
  border-left: none;
  border-top: none;
  transform: rotate(8deg);
}

/* SEÇÃO DEPOIMENTOS */
.proap-depoimentos {
  position: relative;
  background: #f6f2f2;
  padding: 100px 20px;
  overflow: hidden;
}

.proap-depoimentos-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.proap-depoimentos-subtitulo {
  display: inline-block;
  font-size: 16px;
  color: #f28b30;
  margin-bottom: 14px;
  font-weight: 600;
}

.proap-depoimentos h2 {
  font-size: 52px;
  line-height: 1.1;
  color: #16214a;
  margin-bottom: 50px;
  font-weight: 700;
}

.proap-depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-bottom: 35px;
}

.proap-depoimento-card {
  position: relative;
  background: #f8f8f8;
  border: 2px solid #f28b30;
  border-radius: 20px;
  padding: 34px 32px 60px;
  text-align: left;
  min-height: 285px;
}

.proap-depoimento-card p {
  font-size: 17px;
  line-height: 1.9;
  color: #7a809d;
  margin-bottom: 22px;
}

.proap-depoimento-card strong {
  display: block;
  font-size: 18px;
  color: #1d2755;
  font-weight: 600;
}

.quote-mark {
  position: absolute;
  right: 26px;
  bottom: 10px;
  font-size: 72px;
  color: #e7e7e7;
  line-height: 1;
  font-weight: 700;
}

.proap-btn-depoimentos {
  display: inline-block;
  padding: 14px 28px;
  border: 2px solid #f28b30;
  color: #1d2755;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  background: transparent;
  transition: all 0.3s ease;
}

.proap-btn-depoimentos:hover {
  background: #f28b30;
  color: #fff;
}

/* LINHAS DECORATIVAS */
.depoimentos-linha {
  position: absolute;
  border: 1.5px solid #f4b07a;
  border-radius: 50%;
  opacity: 0.8;
}

.linha-esquerda {
  width: 340px;
  height: 520px;
  left: -120px;
  top: -40px;
  border-right: none;
  border-bottom: none;
  transform: rotate(10deg);
}

.linha-direita {
  width: 340px;
  height: 260px;
  right: -70px;
  top: -30px;
  border-left: none;
  border-bottom: none;
  transform: rotate(15deg);
}

/* SEÇÃO ATIVIDADES EM CARROSSEL */
.proap-atividades {
  background: #f7f6f6;
  padding: 90px 20px;
}

.proap-atividades-container {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
}

.proap-atividades-slider {
  position: relative;
  min-height: 520px;
}

.atividade-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(30px);
  transition: all 0.7s ease;
}

.atividade-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  position: relative;
}

.atividade-texto span {
  display: inline-block;
  font-size: 15px;
  color: #7c839e;
  margin-bottom: 20px;
}

.atividade-texto h2 {
  font-size: 58px;
  line-height: 1.1;
  color: #16214a;
  margin-bottom: 24px;
  font-weight: 700;
}

.atividade-texto p {
  font-size: 18px;
  line-height: 1.8;
  color: #707896;
  max-width: 540px;
  margin-bottom: 34px;
}

.atividade-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  background: #15c967;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.atividade-btn:hover {
  background: #11b45b;
  transform: translateY(-2px);
}

.atividade-imagem img {
  width: 100%;
  max-width: 620px;
  height: 400px;
  object-fit: cover;
  border-radius: 28px;
  display: block;
  margin-left: auto;
}

.atividade-indicadores {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.indicador {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 50%;
  background: #cfd4df;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicador.active {
  background: #15c967;
  transform: scale(1.2);
}

/* HERO TOPO */
.proap-hero-topo {
  position: relative;
  background: #101c5a;
  min-height: 100vh;
  padding: 110px 20px 80px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.proap-hero-container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.proap-hero-conteudo {
  max-width: 520px;
}

.hero-kicker {
  display: inline-block;
  font-size: 15px;
  color: #5ee59a;
  margin-bottom: 18px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.proap-hero-conteudo h1 {
  font-size: 64px;
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 26px;
  font-weight: 700;
}

.proap-hero-conteudo p {
  font-size: 19px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: #13d66b;
  color: #0f1b57;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 17px;
  transition: all 0.3s ease;
  margin-bottom: 28px;
}

.hero-btn:hover {
  background: #0fc560;
  transform: translateY(-2px);
}

.hero-tags {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.hero-tags span {
  position: relative;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  padding-left: 22px;
}

.hero-tags span::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #18d36a;
  font-size: 13px;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* GALERIA */
.proap-hero-galeria {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "img1 img2"
    "img3 img4";
  gap: 22px;
  align-items: start;
}

.hero-img {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

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

.hero-img-1 {
  grid-area: img1;
  height: 250px;
}

.hero-img-2 {
  grid-area: img2;
  height: 160px;
}

.hero-img-3 {
  grid-area: img3;
  height: 160px;
}

.hero-img-4 {
  grid-area: img4;
  height: 250px;
}

/* LINHAS DECORATIVAS */
.hero-linha {
  position: absolute;
  border: 1.5px solid rgba(18, 214, 107, 0.35);
  border-radius: 50%;
  pointer-events: none;
}

.hero-linha-1 {
  width: 420px;
  height: 420px;
  top: -220px;
  left: -40px;
  border-right: none;
  border-bottom: none;
}

.hero-linha-2 {
  width: 760px;
  height: 340px;
  right: -120px;
  top: 160px;
  border-left: none;
  border-bottom: none;
  transform: rotate(8deg);
}

.hero-linha-3 {
  width: 980px;
  height: 420px;
  left: 320px;
  bottom: -220px;
  border-top: none;
  border-left: none;
  transform: rotate(-8deg);
}

/* SETAS DECORATIVAS */
.hero-seta {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 44px;
  opacity: 0.9;
  cursor: pointer;
  transition: 0.3s ease;
}

.hero-seta:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.08);
}

.hero-seta-esquerda {
  left: 28px;
}

.hero-seta-direita {
  right: 28px;
}

/* FOOTER */
.proap-footer {
  background: #101c5a;
  color: #ffffff;
  padding: 70px 20px 20px;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 18px;
}

.footer-col p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 12px;
}

.footer-info {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #13d66b;
}

.footer-whatsapp {
  display: inline-block;
  margin-top: 10px;
  padding: 14px 22px;
  background: #13d66b;
  color: #0f1b57;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  transition: 0.3s;
}

.footer-whatsapp:hover {
  background: #0fc560;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* HEADER */
.proap-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff;
  z-index: 999;
  border-bottom: 1px solid #eee;
}

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

.header-logo img {
  height: 42px;
  display: block;
}

.header-nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
}

.header-nav a {
  text-decoration: none;
  color: #1d2755;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
}

.header-nav a:hover,
.header-nav a.active {
  color: #13d66b;
}

.header-btn {
  padding: 10px 20px;
  background: #13d66b;
  color: #0f1b57;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.header-btn:hover {
  background: #0fc560;
}

/* RESPONSIVO */
@media (max-width: 1100px) {
  .proap-hero-conteudo h1 {
    font-size: 52px;
  }

  .proap-hero-container {
    gap: 40px;
  }
}

@media (max-width: 991px) {
  .proap-identidade h2,
  .proap-depoimentos h2 {
    font-size: 38px;
  }

  .proap-cards,
  .proap-depoimentos-grid,
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .proap-card,
  .proap-depoimento-card {
    min-height: auto;
  }

  .linha-topo,
  .linha-baixo,
  .linha-esquerda,
  .linha-direita {
    display: none;
  }

  .proap-atividades-slider {
    min-height: 760px;
  }

  .atividade-slide {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .atividade-texto {
    order: 2;
  }

  .atividade-imagem {
    order: 1;
  }

  .atividade-texto h2 {
    font-size: 42px;
  }

  .atividade-imagem img {
    max-width: 100%;
    height: 320px;
    margin-left: 0;
  }

  .proap-hero-topo {
    min-height: auto;
    padding: 90px 20px 70px;
  }

  .proap-hero-container {
    grid-template-columns: 1fr;
  }

  .proap-hero-conteudo {
    max-width: 100%;
  }

  .proap-hero-conteudo h1 {
    font-size: 44px;
  }

  .proap-hero-galeria {
    max-width: 700px;
  }

  .hero-seta {
    display: none;
  }

  .header-nav {
    display: none;
  }
}

@media (max-width: 576px) {
  .proap-identidade,
  .proap-depoimentos,
  .proap-atividades {
    padding: 70px 16px;
  }

  .proap-identidade h2,
  .proap-depoimentos h2,
  .proap-hero-conteudo h1 {
    font-size: 30px;
  }

  .proap-card {
    padding: 26px 22px;
    border-radius: 18px;
  }

  .proap-card p,
  .proap-depoimento-card p,
  .atividade-texto p,
  .proap-hero-conteudo p {
    font-size: 16px;
    line-height: 1.7;
  }

  .proap-depoimento-card {
    padding: 26px 22px 50px;
    border-radius: 16px;
  }

  .quote-mark {
    font-size: 56px;
    right: 18px;
    bottom: 8px;
  }

  .proap-atividades-slider {
    min-height: 700px;
  }

  .atividade-texto h2 {
    font-size: 34px;
  }

  .atividade-btn,
  .hero-btn,
  .footer-whatsapp {
    width: 100%;
    font-size: 16px;
    padding: 15px 20px;
    text-align: center;
  }

  .atividade-imagem img {
    height: 240px;
    border-radius: 20px;
  }

  .proap-hero-topo {
    padding: 70px 16px 50px;
  }

  .hero-tags {
    gap: 14px 18px;
  }

  .hero-tags span {
    font-size: 15px;
  }

  .proap-hero-galeria {
    gap: 14px;
  }

  .hero-img-1,
  .hero-img-4 {
    height: 190px;
  }

  .hero-img-2,
  .hero-img-3 {
    height: 120px;
  }

  .hero-linha-1,
  .hero-linha-2,
  .hero-linha-3 {
    display: none;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }
}

.map-section {
  background: #f7fbf8;
  padding: 80px 20px;
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.map-text .section-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #22c55e;
  margin-bottom: 14px;
}

.map-text h2 {
  font-size: 42px;
  line-height: 1.1;
  color: #14235c;
  margin-bottom: 20px;
}

.map-text p {
  font-size: 18px;
  line-height: 1.7;
  color: #5b678a;
  margin-bottom: 18px;
}

.map-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 28px 0;
}

.map-info-item {
  background: #ffffff;
  border: 1px solid #dbe7df;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 8px 24px rgba(20, 35, 92, 0.05);
}

.map-info-item strong {
  display: block;
  font-size: 16px;
  color: #14235c;
  margin-bottom: 8px;
}

.map-info-item p {
  font-size: 16px;
  color: #5b678a;
  margin: 0;
  line-height: 1.6;
}

.map-btn {
  display: inline-block;
  background: #22c55e;
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
}

.map-btn:hover {
  background: #16a34a;
  transform: translateY(-2px);
}

.map-frame-wrapper {
  background: #ffffff;
  padding: 12px;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(20, 35, 92, 0.10);
  border: 1px solid #dbe7df;
}

.map-frame-wrapper iframe {
  width: 100%;
  height: 480px;
  border-radius: 18px;
  display: block;
}

@media (max-width: 991px) {
  .map-container {
    grid-template-columns: 1fr;
  }

  .map-text h2 {
    font-size: 34px;
  }

  .map-frame-wrapper iframe {
    height: 400px;
  }
}

@media (max-width: 576px) {
  .map-section {
    padding: 60px 16px;
  }

  .map-text h2 {
    font-size: 28px;
  }

  .map-text p,
  .map-info-item p {
    font-size: 15px;
  }

  .map-frame-wrapper iframe {
    height: 320px;
  }
}