@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100vw;
}
/* SCROLL SUAVE GLOBAL */
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Press Start 2P', cursive;
  overflow-x: hidden;
 
}


.cosmovision-section {
  background: #1E90FF;
  position: relative;
  width: 100%;
  height: 100vh;
  color: #d7ff00;
  overflow: hidden;
  
}



.tv-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
}

.menu-icon {
  width: 70px;
  height: 70px;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}

.menu {
  display: flex;
  gap: 40px;
  
}

.menu a {
  color: white;
  font-family: Arial, sans-serif;
  text-decoration: none;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.menu a:hover {
  transform: translateY(-5px);
  color: #d7ff00;
}

.cosmo-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 8vw;
  font-weight: 900;
  z-index: 2;
  line-height: 0.6;
  text-transform: uppercase;
}

.cosmo-title span {
  display: block;
}

.cosmo, .bible {
  color: #d7ff00;
  text-shadow: 2px 2px 0 #000;
}

.verse {
  align-self: flex-end;
  margin-top: auto;
  margin-bottom: 119px; /* espaço entre o versículo e a faixa rolante */
  margin-right: 30px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: white;
  text-align: right;
  max-width: 260px;
  z-index: 4;
}


.content {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center; /* centraliza verticalmente o conteúdo principal */
  align-items: center;
  padding-bottom: 90px; /* espaço para faixa e botão */
}


/*
.get-start {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: #d7ff00;
  color: #000;
  border: 2px solid #d7ff00;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 0.9rem;
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: none;
  z-index: 10; 
  transition: all 0.3s ease;
  display: inline-block;  
}
*/

.get-start:hover {
  background:#1E90FF ;
  color: #000;
}

.ticker-wrapper {
  position: absolute;
  bottom: -10px;
  left: 0;  
  width: 100%;
  height: 70px;
  background: #d7ff00;
  transform: rotate(-3deg);
  z-index: 3;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
}

.ticker {
  display: inline-flex;
  width: max-content; /* Para animação contínua */
  animation: scrollTicker 5s linear infinite;
}

.ticker span {
  white-space: nowrap;
  font-weight: bold;
  font-size: 1.2rem;
  color: #000;
  padding-right: 100px;
}

@keyframes scrollTicker {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*segunda parte */
.generation-section {
  background-color: #2d2d2d;
  padding: 80px 40px;
  font-family: Arial, Helvetica, sans-serif;
  color: rgb(221, 221, 221);
  text-align: center;
}


.generation-header {
  position: relative;
  margin-bottom: 60px;
}

.generation-header .icon {
  width: 40px;
  vertical-align: middle;
  margin-right: 10px;
}
.generation-label {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 10px;
}

.generation-header span {
  font-size: 14px;
  text-transform: uppercase;
  color: white;
  text-align: left;
}
.generation-header h2 {
  font-size: 36px;
  margin: 10px 0 20px;
  line-height: 1.4;
}

.all-services-btn {
  position: absolute;
  right: 0;
  top: 0;
  border: 2px solid #d4ff00;
  border-radius: 20px;
  padding: 6px 18px;
  font-size: 14px;
  color: #d4ff00;
  text-decoration: none;
 
}

.all-services-btn:hover {
  background-color: #d4ff00;
  color: #000;
   transition: all 0.3s ease;
}

.generation-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.card:hover{
  background-color: #004eff;
}
.card {
  flex: 1 1 300px;
  padding: 30px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 360px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
.dark-card {
  background-color: #2b2b2b;
}

.middle-card {
  background-color: #2b2b2b;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  
}

.card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  text-align: left;
}

.card h3 span {
  font-weight: 300;
}

.card p {
  font-size: 13px;
  text-align: left;
  line-height: 1.3;
  
}

.dark-card p,
.middle-card p {
  color: #cccccc !important;
}

.image-areaa {
  margin-top: 20px;
  width: 100%;
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid #444;
  border-radius: 8px;
}

.image-area img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

/*terceira parte*/
/* ESTILO BASE (mobile/tablet) */
.ressurection-power {
  display: flex;
  flex-direction: column;
  padding: 40px 20px 20px 20px;
  background: #f3f3f3;
  font-family: Arial, sans-serif;
  color: #000;
  position: relative;
  overflow: visible;
}

.left, .center, .right {
  margin: 10px 0;
  min-width: auto;
  flex: none;
  width: 100%;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
}

.icon {
  width: 60px;
  height: 60px;
}

.left h2 {
  font-size: 38px;
  line-height: 1.2;
  margin: 20px 0;
}

.left .verse-top {
  font-size: 14px;
  color: #444;
  max-width: 300px;
}

.left .items {
  margin-top: 30px;
}

.left .item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  font-size: 16px;
}

.left .item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.center {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle {
  background: #d4ff00;
  width: 280px;
  height: 400px;
  border-radius: 50% / 40%;
  position: absolute;
  top: 50px;
  z-index: 1;
}

.robot {
  width: 200px;
  position: relative;
  top: 0;
  margin: 0 auto;
  display: block;
  z-index: 2;
}

.right .top-img {
  width: 100%;
  max-width: 300px;
  margin-bottom: 20px;
}

.bar-group {
  font-size: 14px;
  margin-bottom: 20px;
}

.label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
  font-weight: bold;
}

.bar {
  background: #ccc;
  border-radius: 8px;
  height: 8px;
  margin-bottom: 16px;
  overflow: hidden;
}

.bar > div {
  width: 0%;
  height: 100%;
  border-radius: 8px;
}

.bar.green > div {
  background: #8bc34a;
}

.bar.lime > div {
  background: #d4ff00;
}

.bar.blue > div {
  background: #1e88e5;
}

.source {
  font-size: 11px;
  color: #555;
  margin-top: 10px;
}

.footer-bar {
  position: static;
  margin-top: 30px;
  padding: 20px;
  display: flex;
  justify-content: center;
  gap: 30px;
  border-radius: 20px;
  background: #333;
  width: 100%;
  box-sizing: border-box;
  z-index: 1;
}

.footer-bar .icons-left,
.footer-bar .icons-right {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: nowrap;
  width: auto;
}

.footer-bar img {
  width: 60px;
  height: 60px;
}

@media (min-width: 1024px) {
  .ressurection-power {
    flex-direction: row;
    padding: 60px 40px 0 40px;
  }

  .left, .center, .right {
    margin: 20px;
    flex: 1;
    min-width: 300px;
    width: auto;
  }

  .robot {
    width: 600px;
    top: -200px;
    margin: 0;
  }

  .circle {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
  }

.footer-bar {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  box-sizing: border-box;
  background: #333;
  z-index: 3; /* << AQUI! */
}

  .footer-bar .icons-left,
  .footer-bar .icons-right {
    gap: 40px;
    display: flex;
  }

  .footer-bar img {
    width: 150px;
    height: 150px;
  }
}



/*quarta parte*/ 

.salmos119-section {
  background-color: #1e1e1e;
  color: white;
  padding: 60px 10px; 
  font-family: 'Arial', sans-serif;
  text-align: center;
}

.salmos119-text {
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3; /* Reduzido para aproximar da imagem */
  padding: 0 10px;  /* adiciona um pouquinho de padding interno pra não */
}

.salmos119-text .azul {
  background-color: #0073ff;
  color: #c4f000;
  padding: 0 8px;
  border-radius: 18px;
}

.salmos119-text .verde {
  background-color: #c4f000;
  color: black;
  padding: 0 8px;
  border-radius: 18px;
}

.salmos119-text .verde-claro {
  color: #c4f000;
}

.salmos119-text .azul-claro {
  color: #69a7ff;
}

.salmos119-text .azul-frase {
  background-color: #0073ff;
  color: #c4f000;
  padding: 0 8px;
  border-radius: 12px;
}

.salmos119-text img {
  width: 42px; /* Tamanho dos ícones embutidos no texto */
  vertical-align: middle;
  margin: 0 5px;
}

.salmos119-rodape {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  gap: 20px;
}

.salmos119-rodape img {
  width: 34px; /* Ícones maiores */
}

.salmos119-rodape span {
  background-color: #c4f000;
  color: black;
  font-weight: bold;
  padding: 12px 30px;
  font-size: 22px;
  border-radius: 40px;
}

.footer-icon {
  width: 40px;
  height: auto;
}


/*setima parte*/

.vision-section {
  background-color: #000000;
  padding: 80px 40px;
  font-family: 'Arial', sans-serif;
  text-align: center;
  color: #ffffff;
}

.vision-header {
  margin-bottom: 60px;
}

.vision-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

.vision-icon {
  width: 40px;
  height: 40px;
}

.vision-header h2 {
  font-size: 32px;
  color: white;
  margin-top: 10px;
  font-weight: bold;
}

.vision-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.vision-card {
  width: 220px;
  border-radius: 16px;
  padding: 30px 20px;
  color: white;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.vision-card:hover {
  transform: translateY(-8px);
}

.blue-card {
  background-color: #0073ff;
}

.black-card {
  background-color: #1a1a1a;
}

.number {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

.step-title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
}

.green-text {
  color: #d4ff00;
}

.description {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}
  

/*cometarios*/ 
.testimonials-section {
  background: #fff;
  padding: 40px 40px;
  font-family: 'Urbanist', sans-serif;
  color: #111;
}

.section-header {
  text-align: left;
  margin-bottom: 40px;
}

.section-header .label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
}
.label img{
width: 50px;
height: 50px;

}

.section-header h2 {
  font-size: 28px;
  margin-top: 10px;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2px; /* diminui só o espaço horizontal */
  row-gap: 30px; /* mantém o espaço vertical maior */
  justify-items: center;
}



.testimonial-card {
  background: #2a2a2a;
  color: #fff;
  border-radius: 12px;
  padding: 25px;
  max-width: 600px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  color: #c4ff00;
  font-size: 16px;
  margin-bottom: 15px;
}

.quote {
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.4;
}

.profile {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
}

.profile img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.profile span {
  color: #c4ff00;
  font-size: 13px;
}

.quotes-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 30px;
  color: #c4ff00;
}



/*oitava parte*/
.section-8 {
  background-color: #111;
  color: #fff;
  padding: 80px 40px 60px;
  font-family: 'Helvetica', sans-serif;
  position: relative;
}

.section-8-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Ícone e texto no canto superior esquerdo */
.section-8-icon {
  position: absolute;
  top: 20px;
  left: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-8-icon img {
  width: 40px;
  height: 40px;
}

.section-8-icon span {
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: bold;
  color: #fff;
}

/* Títulos e descrição */
.section-8-header {
  margin-top: 60px;
  margin-bottom: 60px;
}

.section-8-header h2 {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.4;
}

.section-8-header h2 span {
  color: #cbff00;
  font-weight: 600;
}

.section-8-header .mission-text {
  font-size: 18px;
  margin-top: 10px;
}

.section-8-header .description {
  max-width: 600px;
  font-size: 14px;
  color: #aaa;
  margin-top: 20px;
  line-height: 1.6;
}

/* Blocos */
.section-8-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #333;
  padding: 25px 0;
  gap: 20px;
  flex-wrap: wrap;
}

.left .subtitle {
  font-size: 12px;
  color: #cbff00;
}

.left h3 {
  font-size: 20px;
  margin-top: 5px;
  font-weight: 400;
}

.section-8-btn {
  background-color: transparent;
  border: 2px solid #cbff00;
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
  transition: 0.3s ease;
}

.section-8-btn:hover {
  background-color: #cbff00;
  color: #000;
}

/*mapa mundi*/ 
.contribuicao {
  background-image: url("../img/mundi.jpg");
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
  color: white;
  padding: 60px 20px;
  text-align: center;
  min-height: 100vh;
}

.conteudo h2 {
  color: #ccc;
  font-weight: normal;
  margin-bottom: 10px;
}

.conteudo h1 {
  color: #a4ff3c;
  margin-bottom: 20px;
  font-size: 28px;
}

.duvidas {
  background-color: transparent;
  border: 1px solid #a4ff3c;
  color: white;
  padding: 10px 20px;
  margin-bottom: 300px; /* espaço aumentado */
  cursor: pointer;
  border-radius: 30px;
  transition: 0.3s;
}

.duvidas:hover {
  background-color: #a4ff3c;
  color: #000;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.item {
  max-width: 300px;
  text-align: center; /* Centraliza todo o conteúdo dentro do item */
}
.item img{
  width: 40px;
  height: 40px;
}
.item h3 {
  color: white;
  margin-bottom: 10px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center; /* Centraliza título + ícone */
  gap: 10px;
}

.item p {
  color: white;
  font-size: 14px;
  margin-bottom: 20px;
}

.item button {
  background-color: transparent;
  border: 2px solid #a4ff3c;
  color: white;
  padding: 10px 25px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
  margin: 0 auto; /* Para garantir centralização se usar display block */
}

.item button:hover {
  background-color: #a4ff3c;
  color: #000;
}

/*parte 9 */ 

.why-bosco {
  background-color: #f1f1f1;
  padding: 80px 40px;
  font-family: 'Arial', sans-serif;
}

.why-bosco .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.text-block .our-work {
  display: flex;          /* transforma em flex container */
  align-items: center;    /* alinha verticalmente o ícone com o texto */
  gap: 8px;               /* espaço entre o ícone e o texto */
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.logo {
  width: 40px;
  height: 40px;           /* garante que tenha altura igual ao texto */
  margin-bottom: 0;       /* remove margem que empurra pra baixo */
}

.our-work {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.why-bosco h2 {
  font-size: 36px;
  margin: 0 0 20px;
}

.description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 500px;
}

.stats {
  display: flex;
  gap: 40px;
  margin-top: 20px;
}

.stat {
  text-align: center;
}

.stat-icon {
  width: 0;
  height: 0;
  border-left: 15px solid #C4F232;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  margin: 0 auto 8px;
}

.stat h3 {
  font-size: 28px;
  font-weight: bold;
  color: #000;
}

.stat h3 span {
  color: #2A6DF5;
}

.stat p {
  margin-top: 4px;
  font-size: 16px;
}

.images {
  display: flex;
  flex-direction: row;
  gap: 1px;
}

.images img {
  width: 250px;  /* aumenta um pouco mais a largura */
  height: 400px;
  object-fit: cover;
  border-radius: 4px;
}



/*parte 10*/ 
.extraordinary-section {
  background: url('../img/move.png');
  background-size: cover;
  padding: 80px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.extraordinary-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.extraordinary-card {
  background-color: #1e1e1e;
  color: white;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px;
  max-width: 900px;
  width: 90%;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.extraordinary-text h2 {
  font-size: 36px;
  line-height: 1.3;
  font-weight: 400;
  margin-bottom: 40px;
  font-family: 'Arial', sans-serif;
}

.extraordinary-btn {
  background-color: transparent;
  border: 2px solid #ccff00;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.extraordinary-btn:hover {
  background-color: #ccff00;
  color: black;
}

.extraordinary-logo-container {
  position: relative;
  width: 180px;
  height: 180px;
}

.logo-circle {
  position: relative;
  width: 100%;
  height: 100%;
}

.logo-img {
  width: 100px;
  height: auto;
  position: absolute;
  bottom: 0;
  right: 0;
}

/* TEXTO CURVADO FIXO - metade de círculo invertido */
.circular-text {
  position: absolute;
  font-family: Arial, sans-serif;
  bottom: 1;          /* ajusta verticalmente */
  right: 1;           /* centraliza horizontalmente em relação ao card */
  width: 300px;
  height: 300px;
  z-index: 3;
  transform: rotate(305deg); /* gira o arco para inverter */
  transform-origin: center;
  pointer-events: none;
}



/*PARTE 11*/

.grow-up-section {
  background: #f5f5f5;
  padding: 80px 20px;
  font-family: 'Arial', sans-serif;
  position: relative; /* para que o ícone se posicione dentro dela */
}

/* Ícone fixo no canto superior ESQUERDO da SEÇÃO */
.blog-icon-top-left {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  font-family: Arial, sans-serif;
}

.blog-icon-top-left img {
  width: 40px;
  height: 40px;
}

/* Título centralizado */
.blog-title {
  text-align: center;
  font-size: 20px;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 40px;
  font-family: Arial, sans-serif;
}




.grow-up-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-bottom: 80px;
  flex-wrap: wrap;
 
}

.card {
  max-width: 280px;
  text-align: left;
}

.card img {
  width: 100%;
  border-radius: 6px;
}

.card .tag {
  display: inline-block;
  background-color: #d5ff00;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: bold;
  margin: 10px 0;
 
}

.card p {
  font-size: 16px;
  color: #000000;
}

.grow-up-qr {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1e1e1e;
  padding: 40px 30px;
  border-radius: 20px;
  flex-wrap: wrap;
  gap: 40px;
}

.grow-up-qr img {
  width: 150px;
  height: auto;
  background-color: #d5ff00;
  padding: 10px;
  border-radius: 10px;
}

.qr-content {
  color: #fff;
  max-width: 600px;
}

.qr-content h2 {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 10px;
}

.qr-content p {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 10px;
}

.qr-content .source {
  display: block;
  font-size: 14px;
  color: #ccc;
  margin-bottom: 15px;
}

.qr-button {
  display: inline-block;
  padding: 8px 20px;
  border: 2px solid #d5ff00;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s;
}

.qr-button:hover {
  transform: scale(1.05);
  background-color: #d5ff00;
  color: #000;
}


/*rodape*/
.rodape-personalizado {
  background-color: #141414;
  color: #ccc;
  padding: 60px 20px 30px;
  font-family: 'Urbanist', sans-serif;
}

.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-title {
  font-weight: bold;
  color: white;
  font-size: 16px;
  letter-spacing: 1px;
}

.logo-icon {
  width: 70px;
  border-radius: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  width: 100%;
}

.footer-links h4 {
  color: #c4ff00;
  font-size: 14px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  position: relative;
  color: #ccc;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: #c4ff00;
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #c4ff00;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-links a:hover {
  color: #c4ff00;
}

.telefone, .email {
  font-size: 13px;
  margin: 4px 0;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.social-icons img {
  width: 22px;
  height: 22px;
  transition: transform 0.3s;
}

.social-icons img:hover {
  transform: scale(1.2);
}

.footer-bottom {
  margin-top: 30px;
  text-align: center;
  font-size: 13px;
}

.footer-bottom a {
  color: #c4ff00;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration:underline;
}
.footer-bottom a {
  color: white;               /* cor inicial */
  text-decoration: none !important;
  font-weight: bold;
  transition: transform 0.3s ease, color 0.3s ease; /* efeito suave igual aos ícones */
}

.footer-bottom a:hover {
  color:#c4ff00;               /* cor ao passar o mouse */
  transform: scale(1.2);        /* aumenta suavemente como os ícones */
}







/*media responsivo*/
/* ==============================
   MOBILE - CELULAR (até 768px)
============================== */
@media (max-width: 768px) {
  /* COSMO SECTION */
  .cosmo-header { flex-direction: column; gap: 20px; }
  .cosmo-left h1 { font-size: 24px; max-width: 100%; }
  .cosmo-right { max-width: 100%; }
  .cosmo-images { flex-direction: column; gap: 40px; }
  .img-left, .img-right { min-width: 100%; }
  .purpose-img { width: 100%; height: auto; margin-left: 0; }
  .purpose-text { font-size: 14px; margin-left: 0; }
  .relax-img { width: 100%; height: auto; }
  .footer-box { max-width: 100%; padding: 20px; }
  .footer-icons img { width: 24px; height: 24px; }
  .footer-btn { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-btn a { font-size: 14px; padding: 8px 16px; }

  /* WHY BOSCO IMAGES */
  .images { flex-direction: column; align-items: center; }
  .images img { width: 100%; max-width: 300px; height: 260px; }

  /* Menu principal mobile */
  .nav-bar { flex-direction: row; justify-content: space-between; align-items: center; flex-wrap: wrap; padding: 20px; }
  .menu { width: 100%; justify-content: center; margin-top: 10px; gap: 15px; flex-wrap: wrap; display: flex; }
  .menu-icon { width: 50px; height: 50px; }

  /* Versículo Salmos */
  .content { position: relative; }
  .verse {
    position: absolute; bottom: 170px; left: 50%; transform: translateX(-50%);
    font-size: 11px; max-width: 90%; text-align: center; z-index: 5;
    color: white; padding: 6px 10px; border-radius: 8px;
  }

  /* Resurrection Power */
  .ressurection-power .center { align-items: center; }
  .robot { width: 200px; position: relative; top: -30px; z-index: 2; }
  .circle { width: 200px; height: 300px; top: -30px; position: absolute; z-index: 1; }

  /* Testimonial Cards */
  .testimonial-cards { grid-template-columns: 1fr; row-gap: 30px; }
  .testimonial-card { padding: 20px; font-size: 13px; }
  .quote { max-height: 140px; overflow-y: auto; font-size: 13px; line-height: 1.4; }
  .testimonial-card .profile { flex-direction: column; align-items: flex-start; gap: 5px; }
  .testimonial-card .stars { font-size: 14px; margin-bottom: 10px; }

  /* Ticker mobile */
  .ticker-wrapper { height: 60px; }
  .ticker { width: fit-content; animation: scrollTicker 3s linear infinite; }
  .ticker span { font-size: 0.9rem; margin-right: 200vw; }

  /* Extraordinary Section mobile */
  .extraordinary-card { flex-direction: column; text-align: center; padding: 40px 20px; }
  .extraordinary-logo-container { margin-top: 20px; width: 200px; height: 200px; position: relative; }
  .logo-img { width: 80px; height: 80px; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 5; }
  .circular-text { position: absolute; width: 200px; height: 200px; top: 60%; left: 65%; transform: translate(-50%, -50%); z-index: 1; }
  .circular-text path { d: path("M100,100 m-90,0 a90,90 0 1,1 180,0 a90,90 0 1,1 -180,0"); }
  .circular-text textPath { text-anchor: middle; }

  /* Ícones pequenos no celular */
  .icons-left img:nth-child(2), .icons-right img:nth-child(1) { display: none; }
}

/* ==============================
   NOTEBOOKS MÉDIOS / ASUS ZENBOOK FOLD (1367px a 1440px)
============================== */
@media (min-width: 1367px) and (max-width: 1440px) {
  /* Extraordinary Section */
  .circular-text { transform: scale(1) rotate(305deg); }
  .logo-img { transform: scale(1); }

  /* Resurrection Power */
  .ressurection-power .center { transform: translateY(-50px); }
  .ressurection-power .robot { transform: translateY(-40px); }
}
