@charset "utf-8";
* {
  box-sizing: border-box;
}

:root{
  /* valores default (desktop grande) */
  --cel-from: 0;     /* px de onde começa (positivo = mais baixo) */
  --cel-to:  -60;     /* px aonde termina (negativo = sobe) */
  --cel-start: 0.85;  /* quando começa a animar (fração da viewport) */
  --cel-end:   0.45;  /* quando termina a animar */
}
/* Base */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #FFFFFF;
}

.hero {
  background: url('img-site/Imagem1.webp') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 70px;
  position: relative;
  margin-bottom: 40px;
}

.overlay {
  background-color: rgba(255, 255, 255, 0.5);
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 0px;
  padding-bottom: 20px;	  
  border-radius: 30px;
  display: inline-block;
}

.title {
 color: #6A509D;
 padding-top: 0px;
 padding-bottom: 0px;
 font-size: 26px;
	
}

.subtitle {
  color: #6A509D;
  line-height: 1.1;
  font-size: 20px;
  max-width: 700px;
  text-align: center;
  margin-bottom: 10px;
 font-weight: 600;
	text-shadow: 1px 1px 1px rgba(0,0,0,1.0);

}

.subt-destaque {
 color:#6A509D;
 font-weight: bold;
 font-size: 24px;
}

.logo-responsiva {
  text-align: center; /* Centraliza a imagem se desejar */
}

.logo-responsiva img {
  width: 400px; /* Tamanho real da logo */
  height: auto;
  display: block;
  margin: 0 auto; /* Centraliza a imagem */
}

/* Botão */
.cta-button {
  background-color: #6A509D;
  color: #F1EBF9;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  margin-top: 10px;
  display: inline-block;
  transition: background 0.3s;
}

.cta-button:hover {
  background-color: #00828E;
}

/* Feature Blocos */
.feature-blocos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
  padding: 0px 0;
  max-width: 1920px;
  margin: 0 auto;
}

.feature-item {
  position: relative;
  width: 100%;
  max-width: 480px;
  min-height: 400px; 
  border-radius: 0px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background-size: cover;
  background-position: top center;
}
	.feature-bg-video{
  position: relative;
  overflow: hidden;
  min-height: 450px;            /* ajuste a altura mínima do herói */
}

.feature-bg-video .bg-video{
  position: absolute;
  inset: 0;                     /* ocupa todo o container */
  width: 100%;
  height: 100%;
  object-fit: cover;            /* cobre sem distorcer */
  z-index: 0;
}

/* escurecer um pouco o vídeo (opcional) */
.feature-bg-video::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.35);
  z-index: 0;
}

.feature-bg-video > *:not(.bg-video){
  position: relative;
  z-index: 1;                   /* conteúdo por cima do vídeo */
}

.feature-bg-video.no-video{
  background: url('img-site/deal1_poster.jpg') center/cover no-repeat;
}


.feature-item-2 {
  position: relative;
  width: 100%;
  max-width: 1920px;
  min-height: 10px;
  height: 700px;
  border-radius: 0px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background-size: cover;
  background-position: top center;
}
.feature-item-3 {
  position: relative;
  width: 100%;
  max-width: 1920px;
  min-height: 10px;
  height:400px;
  border-radius: 0px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background-size: cover;
}
.feature-com-imagem-1 {
  background-image: url('img-site/Imagem1.webp');
  background-size: cover;
  background-position: top bottom;
  background-repeat: no-repeat;
}

.feature-com-imagem-2 {
  background-image: url('img-site/office3.png');
  background-size: cover;
  background-position: top bottom;
  background-repeat: no-repeat;
}

.feature-com-imagem-3 {
  background-image: url('');
  background-size: cover;
  background-position: top bottom;
  background-repeat: no-repeat;
	
}

/* Conteúdo por cima da imagem */
.feature-content-duplo-1 {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 480px;
  min-height: 400px;
  padding: 10px 20px; /* adicionado padding lateral */
  color: #F1EBF9;
  box-sizing: border-box;
}

.feature-content-duplo-2 {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1920px;
  padding: 100px; /* adicionado padding lateral */
  color: #6A509D;
  background-color: #ffffff;
  box-sizing: border-box;
}

.feature-content-duplo-3 {
  position: relative;
  z-index: 1;
  display: flex;
  min-height:800px;
 justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1920px;
  gap: 0px;
  padding-bottom: 0px; /* adicionado padding lateral */
  color: #6A509D;
  box-sizing: border-box;
 flex-wrap: wrap;
}

.feature-content-duplo-4 {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1920px;
  height: 450px;
  padding: 10px 20px; /* adicionado padding lateral */
  color: #6A509D;
  box-sizing: border-box;
}

.feature-textos {
  flex: 1;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.feature-texto-1 {
  width: 90%;
  max-width: 480px;
  text-align: left;
  box-sizing: border-box;
	padding: 0px;
	 text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
	transform: translateX(100)
		 

}

.feature-texto-2 {
  flex: 1;
  text-align: left;
  max-width: 1000px;
  min-height: 10px;
  height: 350px;
  padding-right: 30px;
  padding-bottom: 10px;
  padding-top: 10px;
  padding-left: 60px;
}

.feature-texto-3 {
  flex: 1;
  text-align: left;
  max-width: 700px;
}

.feature-texto-4 {
  flex: 1;
  text-align: left;
  max-width: 860px;
	transform: translateX(270px);
}

.feature-texto-5 {
  flex: 1;
  text-align: left;
  max-width: 760px;
  transform: translateX(-420px);
}
.feature-texto-6 {
  flex: 1;
  text-align: left;
  max-width: 860px;
  transform: translateX(-420px);
}


.feature-texto-1 h3 {
  font-size: 40px;
  margin-bottom: 40px;
  margin-top: 20px;
  font-weight: 700;
}

.feature-texto-1 p {
  font-size: 25px;
  line-height: 1.5;
  padding-right: 800px;
  font-weight: 500;
}

.feature-texto-2 h3 {
  font-size: 35px;
  margin-bottom: 40px;
  margin-top: 20px;
  font-weight: 700;
		
}

.feature-texto-2 p {
  font-size: 22px;
  line-height: 1.5;
  padding-right: 200px;
  font-weight: 500;
	  color: #4b2c82;
}

.feature-texto-3 h3 {
  font-size: 34px;
  font-weight: 700;
}

.feature-texto-3 p {
  font-size: 26px;
  line-height: 1.6;
  font-weight: 500;
	  color: #4b2c82;
}


.feature-texto-4 h3 {
  font-size: 34px;
  font-weight: 700;
}

.feature-texto-4 p {
  font-size: 26px;
  line-height: 1.6;
  font-weight: 500;
	  color: #4b2c82;
	max-width: 10000px;
}

.feature-texto-5 h3 {
  font-size: 33px;
  font-weight: 700;
}

.feature-texto-5 p {
  font-size: 22px;
  line-height: 1.6;
  font-weight: 500;
  color: #6A509D;
}

.feature-texto-6 h3 {
  font-size: 33px;
  font-weight: 700;
	  color: #ffffff;
}

.feature-texto-6 p {
  font-size: 22px;
  line-height: 1.6;
  font-weight: 500;
  color: #ffffff;
}
.feature-imagem-1 {
  flex-shrink: 1;
}

.feature-imagem-1 img {
  flex: 1;
  display: block;
  height :auto;
  max-width: 10px;
}

.feature-imagem-2 {
	flex-shrink: 1;}

.feature-imagem-3 {
  flex-shrink: 1;
}

.feature-imagem-3 img {
  flex: 1;
  height: auto;
  display: block;
  width: 100px;
  max-width: 100px;
  padding-top:0px;
}
.valores-socorro {
  text-align: center;
  background: #FFFFFF;
  color: #6A509D;
  padding: 30px 20px;
}

.titulo-socorro {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 30px;
}

.descricao-socorro {
  font-size: 30px;
  margin-bottom: 40px;
	  font-weight: 500;
	  color: #4b2c82;
}

.linha-valores {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.item-valor {
  background-color: rgb(106, 80, 157);
  border-radius: 12px;
  padding:25px;
  width: 250px;
  min-height: 160px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
	  display: flex;               /* novo */
  align-items: center;         /* centraliza vertical */
  justify-content: center;     /* centraliza horizontal */
  text-align: center;          /* centraliza o texto */
  
}

.item-valor:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


.item-valor h3 {
  font-size:22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #FFFFFF;
}

.item-valor p {
  font-size: 18px;
  line-height: 1.4;
  color: #FFFFFF;
  text-align: center;
}

  #celular-animado {
    --start: 160px;  /* default desktop */
    --end:   0px;  /* default desktop */
    --dur: 2.0s;

    transform: translateY(var(--start));
    transition: transform var(--dur) ease-out;
    will-change: transform;
  }

  /* quando ativar (entra na tela) */
  #celular-animado.is-active {
    transform: translateY(var(--end));
  }
/* Footer */
footer {
  background: #ffffff;
  color: #6A509D;
  text-align: center;
  padding: 30px 15px 30px;
}

footer .slogan {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #6A509D;
}

footer .logo-footer {
  margin-bottom: 35px;
  margin-top: 35px;
}

footer .logo-footer img {
  max-width: 400px;
  height: auto;
}


footer .links {
  font-size: 20px;
}

footer .links a {
  color: #6A509D;
  text-decoration: none;
  margin: 0 5px;
	  display: inline-block; 
}
footer .links a:hover {
  text-decoration: underline;
}

footer .links a::after {
  content: "–";
  margin-left: 10px;
  color: #6A509D;
text-decoration: none; /* remove underline do pseudo-elemento */
  display: inline-block; 
}

footer .links a:last-child::after {
  content: "";
  margin: 0;
}


/* Responsivo */
@media (max-width: 480px) {
  :root{
    --cel-from: 30;   /* começa 30px abaixo */
    --cel-to:   -40;  /* sobe até -40px */
    --cel-start: 0.90;/* inicia quase no fim da viewport */
    --cel-end:   0.55;/* termina um pouco acima do meio */
  }

.hero {
  background: url('img-site/Imagem1.webp') center/cover no-repeat;
  padding: 30px;
}

.overlay {
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
}

.title {
    font-size: 24px;
	
}

.subtitle {
    font-size: 17px;
    line-height: 1.3;
	text-align: center;
	font-weight: 550;
		text-shadow: 2px 2px 2px rgba(0, 0, 0, 1.0);
}

.subt-destaque {
 color:#6A509D;
 font-weight: bold;
 font-size: 24px;
}


.logo-responsiva img {
    width: 100%;
    max-width: 350px;
  }

/* Botão */
.cta-button {
    font-size: 16px;
    padding: 10px 5px;
    width: 90%;
    max-width: 165px;
    box-sizing: border-box;
  }

.cta-button:hover {
  background-color: #C0E1D7;
  color: #6A509D;
}

/* Feature Blocos */
.feature-blocos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
  padding: 0px 0px;
  max-width: 480px;
  margin: 0px;
}

.feature-item {
  position: relative;
  width: 100%;
  max-width: 480px;
  min-height: 600px;
  border-radius: 0px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background-size: cover;
  background-position: top center;
}

.feature-item-2 {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: auto !important;
  border-radius: 0px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px;
  gap: 0px;
  padding: 0px;
  background-size: cover;
  background-position: top center;
}
.feature-item-3 {
  position: relative;
  width: 100%;
  max-width: 480px;
  height:auto!important;
  border-radius: 0px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background-size: cover;
}
.feature-com-imagem-1 {
  background-image: url('img-site/Imagem1.webp');
  background-size: cover;
  background-position: top bottom;
  background-repeat: no-repeat;
  height: auto;
}

.feature-com-imagem-2 {
  background-image: url('img-site/office3.png');
  background-size: cover;
  background-position: top bottom;
  background-repeat: no-repeat;
  height: auto;
}

.feature-com-imagem-3 {
  background-image: url('');
  background-size: cover;
  background-position: top bottom;
  background-repeat: no-repeat;
	
}

/* Conteúdo por cima da imagem */
.feature-content-duplo-1 {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 480px;
  height: auto !important;
  padding: 10px; /* adicionado padding lateral */
  color: #F1EBF9;
  box-sizing: border-box;
}

.feature-content-duplo-2 {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  max-width: 480px;
  height: auto !important;
  padding: 0px; /* adicionado padding lateral */
  color: #6A509D;
  background-color: #ffffff;
  box-sizing: border-box;
}

.feature-content-duplo-3 {
  position: relative;
  z-index: 1;
  display: flex;
  height: auto !important;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 480px;
  gap: 0px;
  margin: 0px;
  padding: 0px; /* adicionado padding lateral */
  color: #6A509D;
  box-sizing: border-box;
 flex-wrap: wrap;
 flex-direction: column;
}

.feature-content-duplo-4 {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  max-width: 480px;
  height: auto !important;
  padding: 0px 0px; /* adicionado padding lateral */
	margin: 0px;
  color: #6A509D;
  box-sizing: border-box;
}

.feature-textos {
  flex: 1;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  margin: 0px;
  padding: 0px;
  transform: none!important;
  align-items: center;
}

.feature-texto-1 {
  width: 95%;
  max-width: 480px;
  text-align: center;
  padding: 0px;
  box-sizing: border-box;
  transform: none!important;
}

.feature-texto-2 {
  flex: 1;
  text-align: center;
  height: auto !important;
  height: 350px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-top: 0px;
  padding-left: 0px;
	 transform: none!important;
}

.feature-texto-3 {
  flex: 1;
  text-align: center;
  max-width: 480px;
  width: 90%;
  transform: none!important;
    padding-right: 0px;
  padding-bottom: 0px;
  padding-top: 0px;
  padding-left: 0px;
}

.feature-texto-4 {
  flex: 1;
  text-align: center;
  max-width: 480px;
	  width: 90%;
	  margin: 0px;
  padding: 0px;
  transform: none!important;
}

.feature-texto-5 {
  flex: 1;
  text-align: center;
  max-width: 480px;
  transform: none!important;
}
.feature-texto-6 {
  flex: 1;
  text-align: center;
	width: 90%;
  max-width: 480px;
  transform: none!important;
}


.feature-texto-1 h3 {
  font-size: 24px;
  margin-bottom: 0px;
  margin-top: 10px;
  font-weight: 700;
}

.feature-texto-1 p {
  font-size: 16px;
  line-height: 1.5;
  padding-right: 0px;
  font-weight: 500;
}

.feature-texto-2 h3 {
  font-size: 24px;
  margin-bottom: 0px;
  margin-top: 0px;
  font-weight: 700;
		
}

.feature-texto-2 p {
  font-size: 16px;
  line-height: 1.5;
  padding-right: 0px;
	  margin-bottom: 0px;
  margin-top: 0px;
  font-weight: 500;
  color: #4b2c82;
}

.feature-texto-3 h3 {
  font-size: 24px;
  font-weight: 700;
}

.feature-texto-3 p {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
	  margin-bottom: 0px;
  margin-top: 0px;
	  color: #4b2c82;
}

.feature-texto-4 h3 {
  font-size: 24px;
  font-weight: 700;
}

.feature-texto-4 p {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  margin: 0px;
  padding: 0px;
  color: #4b2c82;
}

.feature-texto-5 h3 {
  font-size: 24px;
  font-weight: 700;
  padding-top: 0px;
 transform: none!important;
}

.feature-texto-5 p {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  color: #6A509D;
}

.feature-texto-6 h3 {
  font-size: 24px;
  font-weight: 700;
	  color: #ffffff;
}

.feature-texto-6 p {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  color: #ffffff;
}
.feature-imagem-1 {
  flex-shrink: 1;
}

.feature-imagem-1 img {
  flex: 1;
  display: block;
  height: auto !important;
  max-width: 10px;
}

.feature-imagem-2 {
  flex-shrink: 1;
}

.feature-imagem-2 img { max-width: 200px; padding-top: 40px; }


.feature-imagem-3 {
  flex-shrink: 1;
}

.feature-imagem-3 img {
  flex: 1;
  height: auto;
  display: block;
  width: 100px;
  max-width: 100px;
  padding-bottom: 15px;
}
.valores-socorro {
  text-align: center;
  background: #FFFFFF;
  color: #6A509D;
  padding: 10px 10px;
}

.titulo-socorro {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.descricao-socorro {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 500;
  color: #4b2c82;
}

.linha-valores {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.item-valor {
  background-color: rgb(106, 80, 157);
  border-radius: 12px;
  padding: 0px 15px;
  width: 55%;
  height: auto !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.item-valor:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.item-valor h3 {
  font-size:22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #FFFFFF;
}

.item-valor p {
  font-size: 16px;
  line-height: 1.4;
  color: #FFFFFF;
	text-align: center; }
	
footer {
  background: #ffffff;
  color: #6A509D;
  text-align: center;
}

footer .slogan {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #6A509D;
}

footer .logo-footer {
  margin-bottom: 15px;
  margin-top: 15px;
  max-width: 100%;
}

footer .logo-footer img {
  max-width: 90%;
  height: auto;
}

footer .links {
  font-size: 16px;
  max-width: 100%;
}

footer .links a {
  color: #6A509D;
  text-decoration: none;
  margin: 0px;
}

}

@media (min-width: 481px) and (max-width: 768px) {

  :root{
    --cel-from: 35;
    --cel-to:   -50;
    --cel-start: 0.90;
	  --cel-end:   0.50;}
	
.hero {
  background: url('img-site/Imagem1.webp') center/cover no-repeat;
  padding: 20px;
}

.overlay {
    padding: 20px;
    width: 90%;
	max-width: 600px;
    box-sizing: border-box;
}

.title {
    font-size: 24px;
	
}

.subtitle {
    font-size: 20px;
    line-height: 1.1;
	text-align: center;
	font-weight: 550;
	 text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);

}

.subt-destaque {
 color:#6A509D;
 font-weight: bold;
 font-size: 20px;
}


.logo-responsiva img {
    width: 100%;
    max-width: 450px;
  }

/* Botão */
.cta-button {
    font-size: 18px;
    padding: 10px 5px;
    width: 90%;
    max-width: 185px;
    box-sizing: border-box;
  }

.cta-button:hover {
  background-color: #C0E1D7;
  color: #6A509D;
}

/* Feature Blocos */
.feature-blocos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0px 0px;
  max-width: 768px;
  margin: 0px;
}

.feature-item {
  position: relative;
  width: 100%;
  max-width: 768px;
min-height: 600px;
  border-radius: 0px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background-size: cover;
  background-position: top center;
}
	
	.feature-bg-video{
  position: relative;
  overflow: hidden;
  min-height: 450px;            /* ajuste a altura mínima do herói */
}

.feature-bg-video .bg-video{
  position: absolute;
  inset: 0;                     /* ocupa todo o container */
  width: 100%;
  height: 100%;
  object-fit: cover;            /* cobre sem distorcer */
  z-index: 0;
}

/* escurecer um pouco o vídeo (opcional) */
.feature-bg-video::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.35);
  z-index: 0;
}

.feature-bg-video > *:not(.bg-video){
  position: relative;
  z-index: 1;                   /* conteúdo por cima do vídeo */
}


.feature-item-2 {
  position: relative;
  width: 100%;
  max-width: 768px;
  height: auto !important;
  border-radius: 0px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px;
  gap: 0px;
  padding: 0px;
  background-size: cover;
  background-position: top center;
}
.feature-item-3 {
  position: relative;
  width: 100%;
  max-width: 768px;
  height:auto!important;
  border-radius: 0px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background-size: cover;
}
.feature-com-imagem-1 {
  background-image: url('img-site/Imagem1.webp');
  background-size: cover;
  background-position: top bottom;
  background-repeat: no-repeat;
  height: auto;
  min-height: 250px;
}

.feature-com-imagem-2 {
  background-image: url('img-site/office3.png');
  background-size: cover;
  background-position: top bottom;
  background-repeat: no-repeat;
  height: auto;
  min-height: 250px;
}

.feature-com-imagem-3 {
  background-image: url('');
  background-size: cover;
  background-position: top bottom;
  background-repeat: no-repeat;
	
}

/* Conteúdo por cima da imagem */
.feature-content-duplo-1 {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 768px;
  width: 100%;
  height: auto !important;
  padding: 10px; /* adicionado padding lateral */
  color: #F1EBF9;
  box-sizing: border-box;
}

.feature-content-duplo-2 {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  max-width: 768px;
  height: auto !important;
  padding: 0px; /* adicionado padding lateral */
  color: #6A509D;
  background-color: #ffffff;
  box-sizing: border-box;
}

.feature-content-duplo-3 {
  position: relative;
  z-index: 1;
  display: flex;
  height: auto !important;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 768px;
  gap: 0px;
  margin: 0px;
  padding: 0px; /* adicionado padding lateral */
  color: #6A509D;
  box-sizing: border-box;
 flex-wrap: wrap;
 flex-direction: column;
}

.feature-content-duplo-4 {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  max-width: 768px;
  height: auto !important;
  padding: 0px 0px; /* adicionado padding lateral */
	margin: 0px;
  color: #6A509D;
  box-sizing: border-box;
}

.feature-textos {
  flex: 1;
  max-width: 768px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  margin: 0px;
  padding: 0px;
  transform: none!important;
  align-items: center;
}

.feature-texto-1 {
  width: 80%;
  max-width: 768px;
  text-align: center;
  padding: 0px;
  box-sizing: border-box;
	  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);	
}

.feature-texto-2 {
  flex: 1;
  text-align: center;
  height: auto !important;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-top: 0px;
  padding-left: 0px;
	 transform: none!important;
		 text-shadow: 2px 2px 2px rgba(0, 0, 0, 1.0);
}

.feature-texto-3 {
  flex: 1;
  text-align: center;
  max-width: 768px;
  width: 90%;
  transform: none!important;
    padding-right: 0px;
  padding-bottom: 0px;
  padding-top: 0px;
  padding-left: 0px;
	
}

.feature-texto-4 {
  flex: 1;
  text-align: center;
  max-width: 768px;
	  width: 90%;
	  margin: 0px;
  padding: 0px;
  transform: none!important;
}

.feature-texto-5 {
  flex: 1;
  text-align: center;
  max-width: 768px;
  transform: none!important;
}
.feature-texto-6 {
  flex: 1;
  text-align: center;
	width: 90%;
  max-width: 768px;
  transform: none!important;
}


.feature-texto-1 h3 {
  font-size: 26px;
  margin-bottom: 0px;
  margin-top: 10px;
  font-weight: 700;
}

.feature-texto-1 p {
  font-size: 18px;
  line-height: 1.5;
  padding-right: 0px;
  font-weight: 500;
/*  background-color: rgba(0, 0, 0, 0.6);
	  border-radius: 20px;*/
}

.feature-texto-2 h3 {
  font-size: 26px;
  margin-bottom: 0px;
  margin-top: 0px;
  font-weight: 700;
		
}

.feature-texto-2 p {
  font-size: 18px;
  line-height: 1.5;
  padding-right: 0px;
	  margin-bottom: 0px;
  margin-top: 0px;
  font-weight: 500;
  color: #4b2c82;
}

.feature-texto-3 h3 {
  font-size: 26px;
  font-weight: 700;
}

.feature-texto-3 p {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
	  margin-bottom: 0px;
  margin-top: 0px;
	  color: #4b2c82;
}

.feature-texto-4 h3 {
  font-size: 26px;
  font-weight: 700;
}

.feature-texto-4 p {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
  margin: 0px;
  padding: 0px;
  color: #4b2c82;
}

.feature-texto-5 h3 {
  font-size: 26px;
  font-weight: 700;
  padding-top: 0px;
 transform: none!important;
}

.feature-texto-5 p {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
  color: #6A509D;
}
	
	.feature-texto-6 {background-color: rgba(0, 0, 0, 0.6);
	  border-radius: 20px;}
	
	
.feature-texto-6 h3 {
  font-size: 26px;
  font-weight: 700;
	  color: #F1EBF9;
		 text-shadow: 2px 2px 2px rgba(0, 0, 0, 1.0);
	
}

.feature-texto-6 p {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
  color: #F1EBF9;
		 text-shadow: 2px 2px 2px rgba(0, 0, 0, 1.0);
}
.feature-imagem-1 {
  flex-shrink: 1;
}

.feature-imagem-1 img {
  flex: 1;
  display: block;
  height: auto !important;
  max-width: 10px;
}

.feature-imagem-2 {
  flex-shrink: 1;
}

   .feature-imagem-2 img#celular-animado{ max-width: 200px; padding-top: 40px; }
	
.feature-imagem-3 {
  flex-shrink: 1;
}

.feature-imagem-3 img {
  flex: 1;
  height: auto;
  display: block;
  width: 100px;
  max-width: 100px;
  padding-bottom: 15px;
}
.valores-socorro {
  text-align: center;
  background: #FFFFFF;
  color: #6A509D;
  padding-left: 26px;
  padding-right: 26px; /* afasta dos cantos do site */
  gap: 20px;           /* um pouco menos de espaço entre cards */
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
	
	}  
	
	.valores-socorro > :not(.linha-valores) {
	grid-column: 1 / -1;}

.titulo-socorro {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 0px; 
  margin-top: 25px;
  margin-left: 10px; 
  margin-right: 10px;
  line-height: 1.1;
}

.descricao-socorro {
  font-size: 18px;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-left: 10px; 
  margin-right: 10px;
  font-weight: 500;
  line-height: 1.1;
  color: #4b2c82;
}

.linha-valores {
  display: contents;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.item-valor {
  background-color: rgb(106, 80, 157);
  border-radius: 12px;
  padding: 10px;
   width: auto; 
  height: auto !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-origin: center;
}

.item-valor:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.item-valor h3 {
  font-size:24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #FFFFFF;
}

.item-valor p {
  font-size: 18px;
  line-height: 1.4;
  color: #FFFFFF;
	text-align: center; }
	
	footer {
  background: #ffffff;
  color: #6A509D;
  text-align: center;
}

footer .slogan {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #6A509D;
}

footer .logo-footer {
  margin-bottom: 15px;
  margin-top: 15px;
  max-width: 100%;
}

footer .logo-footer img {
  width: 100%;
  max-width: 400px;
  height: auto;
}

footer .links {
  font-size: 19px;
  max-width: 100%;
}

footer .links a {
  color: #6A509D;
  text-decoration: none;
  margin: 0px;
}

}
	
@media (min-width: 769px) and (max-width: 991px) {
	
	  :root{
    --cel-from: 40;
    --cel-to:   -60;
    --cel-start: 0.88;
    --cel-end:   0.48;
  }
 
.hero {
  background: url('img-site/Imagem1.webp') center/cover no-repeat;
  padding: 20px;
}

.overlay {
    padding: 20px;
    width: 90%;
	max-width: 650px;
    box-sizing: border-box;
}

.title {
    font-size: 26px;
	
}

.subtitle {
    font-size: 22px;
    line-height: 1.1;
	text-align: center;
	font-weight: 550;
	 text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);

}

.subt-destaque {
 color:#6A509D;
 font-weight: bold;
 font-size: 20px;
}


.logo-responsiva img {
    width: 100%;
    max-width: 450px;
  }

/* Botão */
.cta-button {
    font-size: 18px;
    padding: 10px 5px;
    width: 90%;
    max-width: 185px;
    box-sizing: border-box;
  }

.cta-button:hover {
  background-color: #C0E1D7;
  color: #6A509D;
}

/* Feature Blocos */
.feature-blocos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0px 0px;
  max-width: 991px;
  margin: 0px;
}

.feature-item {
  position: relative;
  width: 100%;
  max-width: 991px;
min-height: 600px;
  border-radius: 0px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background-size: cover;
  background-position: top center;
}
		.feature-bg-video{
  position: relative;
  overflow: hidden;
  min-height: 450px;            /* ajuste a altura mínima do herói */
}

.feature-bg-video .bg-video{
  position: absolute;
  inset: 0;                     /* ocupa todo o container */
  width: 100%;
  height: 100%;
  object-fit: cover;            /* cobre sem distorcer */
  z-index: 0;
}

/* escurecer um pouco o vídeo (opcional) */
.feature-bg-video::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.35);
  z-index: 0;
}

.feature-bg-video > *:not(.bg-video){
  position: relative;
  z-index: 1;                   /* conteúdo por cima do vídeo */
}


.feature-item-2 {
  position: relative;
  width: 100%;
  max-width: 991px;
  height: auto !important;
  border-radius: 0px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px;
  gap: 0px;
  padding: 0px;
  background-size: cover;
  background-position: top center;
}
.feature-item-3 {
  position: relative;
  width: 100%;
  max-width: 991px;
  height:auto!important;
  border-radius: 0px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background-size: cover;
}
.feature-com-imagem-1 {
  background-image: url('img-site/Imagem1.webp');
  background-size: cover;
  background-position: top bottom;
  background-repeat: no-repeat;
  height: auto;
  min-height: 250px;
}

.feature-com-imagem-2 {
  background-image: url('img-site/office3.png');
  background-size: cover;
  background-position: top bottom;
  background-repeat: no-repeat;
  height: auto;
  min-height: 250px;
}

.feature-com-imagem-3 {
  background-image: url('');
  background-size: cover;
  background-position: top bottom;
  background-repeat: no-repeat;
	
}

/* Conteúdo por cima da imagem */
.feature-content-duplo-1 {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 991px;
  width: 100%;
  height: auto !important;
  padding: 10px; /* adicionado padding lateral */
  color: #F1EBF9;
  box-sizing: border-box;
}

.feature-content-duplo-2 {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  max-width: 991px; 
  height: auto !important;
  min-height: auto;
  padding: 0px; /* adicionado padding lateral */
  color: #6A509D;
  background-color: #ffffff;
  box-sizing: border-box;
}

.feature-content-duplo-3 {
  position: relative;
  z-index: 1;
  display: flex;
  height: auto !important;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 991px;
  gap: 0px;
  margin: 0px;
  padding-bottom: 10px; /* adicionado padding lateral */
  color: #6A509D;
  box-sizing: border-box;
 flex-wrap: wrap;
  min-height: auto;
}

.feature-content-duplo-4 {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  max-width: 991px;
  height: auto !important;
  padding: 0px 0px; /* adicionado padding lateral */
	margin: 0px;
  color: #6A509D;
  box-sizing: border-box;
}

.feature-textos {
  flex: 1;
  max-width: 991px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  margin: 0px;
  padding: 0px;
  transform: none!important;
  align-items: center;
}

.feature-texto-1 {
  width: 60%;
  max-width: 991px;
  height: auto !important;
min-height: auto;
  text-align: center;
  padding: 0px;
  box-sizing: border-box;
	transform: translate(0px, 120px); 
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
	
	
}

.feature-texto-2 {
  flex: 1;
  text-align: center;
  height: auto !important;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-top: 0px;
  padding-left: 0px;
	 transform: none!important;
		 text-shadow: 2px 2px 2px rgba(0, 0, 0, 1.0);
}

.feature-texto-3 {
  flex: 1;
  text-align: center;
  max-width: 991px;
  width: 90%;
  transform: none!important;
    padding-right: 0px;
  padding-bottom: 0px;
  padding-top: 0px;
  padding-left: 0px;
	
}

.feature-texto-4 {
  flex: 1;
  text-align: center;
  max-width: 991px;
	  width: 90%;
	  margin: 0px;
  padding: 0px;
  transform: none!important;
}

.feature-texto-5 {
  flex: 1;
  text-align: center;
  max-width: 991px;
  transform: none!important;
}
.feature-texto-6 {
  flex: 1;
  text-align: center;
	width: 90%;
  max-width: 991px;
  transform: none!important;
}


.feature-texto-1 h3 {
  font-size: 26px;
  margin-bottom: 0px;
  margin-top: 10px;
  font-weight: 700;
	 min-height: auto;
}

.feature-texto-1 p {
  font-size: 19px;
  line-height: 1.5;
  padding-right: 0px;
  font-weight: 500;
	 min-height: auto;
/*  background-color: rgba(0, 0, 0, 0.6);
	  border-radius: 20px;*/
}

.feature-texto-2 h3 {
  font-size: 26px;
  margin-bottom: 0px;
  margin-top: 0px;
  font-weight: 700;
		
}

.feature-texto-2 p {
  font-size: 18px;
  line-height: 1.5;
  padding-right: 0px;
	  margin-bottom: 0px;
  margin-top: 0px;
  font-weight: 500;
  color: #4b2c82;
}

.feature-texto-3 h3 {
  font-size: 26px;
  font-weight: 700;
}

.feature-texto-3 p {
  font-size: 19px;
  line-height: 1.6;
  font-weight: 500;
	  margin-bottom: 0px;
  margin-top: 0px;
	  color: #4b2c82;
}

.feature-texto-4 h3 {
  font-size: 26px;
  font-weight: 700;
}

.feature-texto-4 p {
  font-size: 19px;
  line-height: 1.6;
  font-weight: 500;
  margin: 0px;
  padding: 0px;
  color: #4b2c82;
}

.feature-texto-5 h3 {
  font-size: 26px;
  font-weight: 700;
  padding-top: 0px;
 transform: none!important;
}

.feature-texto-5 p {
  font-size: 19px;
  line-height: 1.6;
  font-weight: 500;
  color: #6A509D;
}
	
	.feature-texto-6 {background-color: rgba(0, 0, 0, 0.6);
	  border-radius: 20px;}
	
	
.feature-texto-6 h3 {
  font-size: 26px;
  font-weight: 700;
	  color: #F1EBF9;
		 text-shadow: 2px 2px 2px rgba(0, 0, 0, 1.0);
	
}

.feature-texto-6 p {
  font-size: 19px;
  line-height: 1.6;
  font-weight: 500;
  color: #F1EBF9;
		 text-shadow: 2px 2px 2px rgba(0, 0, 0, 1.0);
}
.feature-imagem-1 {
  flex-shrink: 1;
}

.feature-imagem-1 img {
  flex: 1;
  display: block;
  height: auto !important;
  max-width: 10px;
}

.feature-imagem-2 {
  flex-shrink: 1;
}

	.feature-imagem-2 img {
    max-width: 200px;
    padding-top: 40px;
  }

.feature-imagem-3 {
  flex-shrink: 1;
}

.feature-imagem-3 img {
  flex: 1;
  height: auto;
  display: block;
  width: 100%;
  max-width: 90px;
  margin-left: 40px;
}
.valores-socorro {
  text-align: center;
  background: #FFFFFF;
  color: #6A509D;
  padding-left: 26px;
  padding-right: 26px; /* afasta dos cantos do site */
  gap: 20px;           /* um pouco menos de espaço entre cards */
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
	
	}  
	
	.valores-socorro > :not(.linha-valores) {
	grid-column: 1 / -1;}

.titulo-socorro {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 0px; 
  margin-top: 25px;
  margin-left: 10px; 
  margin-right: 10px;
  line-height: 1.1;
}

.descricao-socorro {
  font-size: 18px;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-left: 10px; 
  margin-right: 10px;
  font-weight: 500;
  line-height: 1.1;
  color: #4b2c82;
}

.linha-valores {
  display: contents;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.item-valor {
  background-color: rgb(106, 80, 157);
  border-radius: 12px;
  padding: 10px;
   width: auto; 
  height: auto !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-origin: center;
}

.item-valor:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.item-valor h3 {
  font-size:24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #FFFFFF;
}

.item-valor p {
  font-size: 18px;
  line-height: 1.4;
  color: #FFFFFF;
	text-align: center; }
	
	footer {
  background: #ffffff;
  color: #6A509D;
  text-align: center;
}

footer .slogan {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #6A509D;
}

footer .logo-footer {
  margin-bottom: 15px;
  margin-top: 15px;
  max-width: 100%;
}

footer .logo-footer img {
  width: 100%;
  max-width: 400px;
  height: auto;
}

footer .links {
  font-size: 19px;
  max-width: 100%;
}

footer .links a {
  color: #6A509D;
  text-decoration: none;
  margin: 0px;
}

}

@media (min-width: 992px) and (max-width: 1199px) {
  :root{
    --cel-from: 45;
    --cel-to:   -65;
    --cel-start: 0.86;
    --cel-end:   0.46;
  }
.hero {
  background: url('img-site/Imagem1.webp') center/cover no-repeat;
  padding: 20px;
}

.overlay {
    padding: 20px;
    width: 90%;
	max-width: 650px;
    box-sizing: border-box;
}

.title {
    font-size: 26px;
	
}

.subtitle {
    font-size: 22px;
    line-height: 1.1;
	text-align: center;
	font-weight: 550;
	 text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);

}

.subt-destaque {
 color:#6A509D;
 font-weight: bold;
 font-size: 20px;
}


.logo-responsiva img {
    width: 100%;
    max-width: 450px;
  }

/* Botão */
.cta-button {
    font-size: 18px;
    padding: 10px 5px;
    width: 90%;
    max-width: 185px;
    box-sizing: border-box;
  }

.cta-button:hover {
  background-color: #C0E1D7;
  color: #6A509D;
}

/* Feature Blocos */
.feature-blocos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0px 0px;
  max-width: 1199px;
  margin: 0px;
	  height: auto !important;
}

.feature-item {
  position: relative;
  width: 100%;
  max-width: 1199px;
min-height: 600px;
  border-radius: 0px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background-size: cover;
  background-position: top center;
}

	.feature-bg-video{
  position: relative;
  overflow: hidden;
  min-height: 450px;            /* ajuste a altura mínima do herói */
}

.feature-bg-video .bg-video{
  position: absolute;
  inset: 0;                     /* ocupa todo o container */
  width: 100%;
  height: 100%;
  object-fit: cover;            /* cobre sem distorcer */
  z-index: 0;
}

/* escurecer um pouco o vídeo (opcional) */
.feature-bg-video::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.35);
  z-index: 0;
}

.feature-bg-video > *:not(.bg-video){
  position: relative;
  z-index: 1;                   /* conteúdo por cima do vídeo */
}

.feature-item-2 {
  position: relative;
  width: 100%;
  max-width: 1199px;
  height: auto !important;
  border-radius: 0px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px;
  gap: 0px;
  padding: 0px;
  background-size: cover;
  background-position: top center;
}
.feature-item-3 {
  position: relative;
  width: 100%;
  max-width: 1199px;
  height:auto!important;
  min-height: 250px;
  border-radius: 0px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background-size: cover;
}
.feature-com-imagem-1 {
  background-image: url('img-site/Imagem1.webp');
  background-size: cover;
  background-position: top bottom;
  background-repeat: no-repeat;
  height: auto;
  min-height: 250px;
}

.feature-com-imagem-2 {
  background-image: url('img-site/office3.png');
  background-size: cover;
  background-position: top bottom;
  background-repeat: no-repeat;
  height: auto;
  min-height: 250px;
}

.feature-com-imagem-3 {
  background-image: url('');
  background-size: cover;
  background-position: top bottom;
  background-repeat: no-repeat;
	
}

/* Conteúdo por cima da imagem */
.feature-content-duplo-1 {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: center;
  justify-content: left;
  align-items: center;
  max-width: 1199px;
  width: 100%;
  height: auto !important;
  padding: 10px; /* adicionado padding lateral */
  color: #F1EBF9;
  box-sizing: border-box;
}

.feature-content-duplo-2 {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1199px;
  width: 90%;
  height: auto !important;
  min-height: auto;
  padding: 0px; /* adicionado padding lateral */
  color: #6A509D;
  background-color: #ffffff;
  box-sizing: border-box;
}

.feature-content-duplo-3 {
  position: relative;
  z-index: 1;
  display: flex;
  height: auto !important;
  justify-content: center;
  align-items: center;
  max-width: 1199px;
  width: 100%;
  gap: 0px;
  margin: 0px;
  padding-bottom: 10px; /* adicionado padding lateral */
  color: #6A509D;
  box-sizing: border-box;
 flex-wrap: wrap;
  min-height: auto;
}

.feature-content-duplo-4 {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: center;
  justify-content: left;
  align-items: center;
  max-width: 1199px;
  width: 80%;
  height: auto !important;
  padding: 20px; /* adicionado padding lateral */
	margin-right: 250px;
	margin-left: 25px;
  color: #6A509D;
  box-sizing: border-box;
}

.feature-textos {
  flex: 1;
  max-width: 1199px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  margin: 0px;
  padding: 0px;
  transform: none!important;
  align-items: center;
	  height: auto !important;
}

.feature-texto-1 {
  width: 62%;
  max-width: 1199px;
  text-align: center;
  height: auto !important;
  box-sizing: border-box;
  transform: translate(180px, 120px); 
	 text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);

	
}

.feature-texto-2 {
  text-align: center;
  height: auto !important;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-top: 0px;
  padding-left: 0px;
	 transform: none!important;
		 text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.6);
}

.feature-texto-3 {
  flex: 1;
  text-align: left;
  max-width: 1199px;
  width: 90%;
  transform: none!important;
    padding-right: 0px;
  padding-bottom: 0px;
  padding-top: 0px;
  padding-left: 0px;
	
}

.feature-texto-4 {
  flex: 1;
  text-align: left;
  max-width: 1199px;
  width: 90%;
  margin-left: 180px;
  margin-right: 80px;
  margin-top: 20px;
  padding: 0px;
  transform: none!important;
}

.feature-texto-5 {
  flex: 1;
  text-align: center;
  width: 90%;
  max-width: 1199px;
		  margin: 0px;
  padding: 0px;
  transform: none!important;
}



.feature-texto-1 h3 {
  font-size: 26px;
  margin-bottom: 0px;
  margin-top: 0px;
  font-weight: 700;
}

.feature-texto-1 p {
  font-size: 19px;
  line-height: 1.5;
  padding-right: 0px;
  font-weight: 500;
/*  background-color: rgba(0, 0, 0, 0.6);
	  border-radius: 20px;*/
}

.feature-texto-2 h3 {
  font-size: 26px;
  margin-bottom: 0px;
  margin-top: 0px;
  font-weight: 700;
		
}

.feature-texto-2 p {
  font-size: 18px;
  line-height: 1.5;
  padding-right: 0px;
	  margin-bottom: 0px;
  margin-top: 0px;
  font-weight: 500;
  color: #4b2c82;
}

.feature-texto-3 h3 {
  font-size: 26px;
  font-weight: 700;
}

.feature-texto-3 p {
  font-size: 19px;
  line-height: 1.6;
  font-weight: 500;
	  margin-bottom: 0px;
  margin-top: 0px;
	  color: #4b2c82;
}

.feature-texto-4 h3 {
  font-size: 26px;
  font-weight: 700;
}

.feature-texto-4 p {
  font-size: 19px;
  line-height: 1.6;
  font-weight: 500;
  margin: 0px;
  padding: 0px;
  color: #4b2c82;
}

.feature-texto-5 h3 {
  font-size: 26px;
  font-weight: 700;
  padding-top: 0px;
 transform: none!important;
}

.feature-texto-5 p {
  font-size: 19px;
  line-height: 1.6;
  font-weight: 500;
  color: #6A509D;
}
	
	.feature-texto-6 {
  width: 100%;
  max-width: 1099px;
  text-align: center;
  padding: 0px;
  box-sizing: border-box;
  transform: none!important;
	 text-shadow: 2px 2px 2px rgba(0, 0, 0, 1.0);
	
}
	
	
	
.feature-texto-6 h3 {
  font-size: 26px;
	 padding: 0px;
  font-weight: 700;
	  color: #F1EBF9;
		 text-shadow: 2px 2px 2px rgba(0, 0, 0, 1.0);
	
}

.feature-texto-6 p {
  font-size: 19px;
  line-height: 1.6;
	 padding: 0px;
  font-weight: 500;
  color: #F1EBF9;
		 text-shadow: 2px 2px 2px rgba(0, 0, 0, 1.0);
}
.feature-imagem-1 {
  flex-shrink: 1;
}

.feature-imagem-1 img {
  flex: 1;
  display: block;
  height: auto !important;
  max-width: 10px;
}

.feature-imagem-2 {
  flex-shrink: 1;
}

	.feature-imagem-2 img {
    max-width: 200px;
    padding-top: 40px;
  }

.feature-imagem-3 {
  flex-shrink: 1;
}

.feature-imagem-3 img {
  flex: 1;
  height: auto;
  display: block;
  width: 100%;
  max-width: 90px;
  margin-left: 40px;
}
.valores-socorro {
  text-align: center;
  background: #FFFFFF;
  color: #6A509D;
  padding-left: 46px;
  padding-right: 46px; /* afasta dos cantos do site */
  gap: 40px;           /* um pouco menos de espaço entre cards */
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
	
	}  
	
	.valores-socorro > :not(.linha-valores) {
	grid-column: 1 / -1;}

.titulo-socorro {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 0px; 
  margin-top: 25px;
  margin-left: 10px; 
  margin-right: 10px;
  line-height: 1.1;
}

.descricao-socorro {
  font-size: 19px;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-left: 10px; 
  margin-right: 10px;
  font-weight: 500;
  line-height: 1.1;
  color: #4b2c82;
}

.linha-valores {
  display: contents;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.item-valor {
  background-color: rgb(106, 80, 157);
  border-radius: 12px;
  padding: 10px;
   width: auto; 
  height: auto !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-origin: center;
}

.item-valor:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.item-valor h3 {
  font-size:24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #FFFFFF;
}

.item-valor p {
  font-size: 18px;
  line-height: 1.4;
  color: #FFFFFF;
	text-align: center; }
	
/*	#celular-animado {
  transform: translateY(0);
  transition: transform 2.5s ease-out;
}*/
	
	footer {
  background: #ffffff;
  color: #6A509D;
  text-align: center;
}

footer .slogan {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #6A509D;
}

footer .logo-footer {
  margin-bottom: 15px;
  margin-top: 15px;
  max-width: 100%;
}

footer .logo-footer img {
  width: 100%;
  max-width: 400px;
  height: auto;
}

footer .links {
  font-size: 19px;
  max-width: 100%;
}

footer .links a {
  color: #6A509D;
  text-decoration: none;
  margin: 0px;
}

}
@media (min-width: 1200px) { 
  :root{
    --cel-from: 40;   /* iguais aos defaults declarados lá em cima */
    --cel-to:   -60;
    --cel-start: 0.85;
    --cel-end:   0.45;
  }
.hero {
  background: url('img-site/Imagem1.webp') center/cover no-repeat;
  padding: 80px;
}

.overlay {
    padding: 20px;
    width: 90%;
	max-width: 600px;
    box-sizing: border-box;
}

.title {
    font-size: 26px;
	
}

.subtitle p {
    font-size: 22px;
    line-height: 1.1;
	text-align: center;
	font-weight: 550;
	 text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);

}

.subt-destaque {
 color:#6A509D;
 font-weight: bold;
 font-size: 20px;
}


.logo-responsiva img {
    width: 100%;
    max-width: 450px;
  }

/* Botão */
.cta-button {
    font-size: 18px;
    padding: 10px 5px;
    width: 90%;
    max-width: 185px;
    box-sizing: border-box;
  }

.cta-button:hover {
  background-color: #C0E1D7;
  color: #6A509D;
}

/* Feature Blocos */
.feature-blocos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0px 0px;
  max-width: 1920px;
  margin: 0px;
	  height: auto !important;
}

.feature-item {
  position: relative;
  width: 100%;
  max-width: 1920px;
min-height: 600px;
  border-radius: 0px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background-size: cover;
  background-position: top center;
}

	.feature-bg-video{
  position: relative;
  overflow: hidden;
  min-height: 450px;            /* ajuste a altura mínima do herói */
}

.feature-bg-video .bg-video{
  position: absolute;
  inset: 0;                     /* ocupa todo o container */
  width: 100%;
  height: 100%;
  object-fit: cover;            /* cobre sem distorcer */
  z-index: 0;
}

/* escurecer um pouco o vídeo (opcional) */
.feature-bg-video::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.35);
  z-index: 0;
}

.feature-bg-video > *:not(.bg-video){
  position: relative;
  z-index: 1;                   /* conteúdo por cima do vídeo */
}


.feature-item-2 {
  position: relative;
  width: 100%;
  max-width: 1920px;
  height: auto !important;
  border-radius: 0px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px;
  gap: 0px;
  padding: 0px;
  background-size: cover;
  background-position: top center;
}
.feature-item-3 {
  position: relative;
  width: 100%;
  max-width: 1920px;
  height:auto!important;
  min-height: 250px;
  border-radius: 0px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background-size: cover;
}
.feature-com-imagem-1 {
  background-image: url('img-site/Imagem1.webp');
  background-size: cover;
  background-position: top bottom;
  background-repeat: no-repeat;
  min-height: 1050px;
}

.feature-com-imagem-2 {
  background-image: url('img-site/office3.png');
  background-size: cover;
  background-position: top bottom;
  background-repeat: no-repeat;
  height: auto;
  min-height: 250px;
}

.feature-com-imagem-3 {
  background-image: url('');
  background-size: cover;
  background-position: top bottom;
  background-repeat: no-repeat;
	
}

/* Conteúdo por cima da imagem */
.feature-content-duplo-1 {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: center;
  justify-content: left;
  align-items: center;
  max-width: 1920px;
	  min-height: 450px; 
  width: 100%;
  padding: 10px; /* adicionado padding lateral */
  color: #F1EBF9;
  box-sizing: border-box;
}

.feature-content-duplo-2 {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1920px;
  width: 90%;
  height: auto !important;
  min-height: auto;
  padding: 0px; /* adicionado padding lateral */
  color: #6A509D;
  background-color: #ffffff;
  box-sizing: border-box;
}

.feature-content-duplo-3 {
  position: relative;
  z-index: 1;
  display: flex;
  height: auto !important;
  justify-content: center;
  align-items: center;
  max-width: 1920px;
  width: 100%;
  gap: 0px;
  margin: 0px;
  padding-bottom: 10px; /* adicionado padding lateral */
  color: #6A509D;
  box-sizing: border-box;
 flex-wrap: wrap;
  min-height: auto;
}

.feature-content-duplo-4 {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: center;
  justify-content: left;
  align-items: center;
  max-width: 1920px;
  width: 55%;
  height: auto !important;
  padding: 0px; /* adicionado padding lateral */
	margin-right: 350px;
	margin-left: 0px;
  color: #6A509D;
  box-sizing: border-box;
}

.feature-textos {
  flex: 1;
  max-width: 1920px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  margin: 0px;
  padding: 0px;
  transform: none!important;
  align-items: center;
	  height: auto !important;
}

.feature-texto-1 {
  width: 45%;
  max-width: 550px;
  text-align: center;
  height: auto !important;
  box-sizing: border-box;
  transform: translate(50px, 0px); 
	padding: 0px;
	 text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
	
}

.feature-texto-2 {
  text-align: center;
  height: auto !important;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-top: 0px;
  padding-left: 0px;
	 transform: none!important;
		 text-shadow: 2px 2px 2px rgba(0, 0, 0, 1.0);
}

.feature-texto-3 {
  flex: 1;
  text-align: left;
  max-width: 1920px;
  width: 90%;
  transform: none!important;
    padding-right: 35%;
  padding-bottom: 0px;
  padding-top: 0px;
  padding-left: 0px;
	
}

.feature-texto-4 {
  flex: 1;
  text-align: left;
  max-width: 1150px;
  width: 90%;
  margin-left: 380px;
  margin-right: 0px;
  margin-top: 20px;
  padding-right: 200px;
  transform: none!important;
}

.feature-texto-5 {
  flex: 1;
  text-align: center;
  width: 70%;
  max-width: 1720px;
  margin: 0px;
  padding: 0px;
  transform: none!important;
}



.feature-texto-1 h3 {
  font-size: 30px;
  margin-bottom: 0px;
  margin-top: 0px;
  font-weight: 700;
}

.feature-texto-1 p {
  font-size: 20px;
  line-height: 1.5;
  padding-right: 0px;
  font-weight: 500;
/*  background-color: rgba(0, 0, 0, 0.6);
	  border-radius: 20px;*/
}

.feature-texto-2 h3 {
  font-size: 30px;
  margin-bottom: 0px;
  margin-top: 0px;
  font-weight: 700;
		
}

.feature-texto-2 p {
  font-size: 18px;
  line-height: 1.5;
  padding-right: 0px;
	  margin-bottom: 0px;
  margin-top: 0px;
  font-weight: 500;
  color: #4b2c82;
}

.feature-texto-3 h3 {
  font-size: 30px;
  font-weight: 700;
}

.feature-texto-3 p {
  font-size: 19px;
  line-height: 1.6;
  font-weight: 500;
	  margin-bottom: 0px;
  margin-top: 0px;
	  color: #4b2c82;
}

.feature-texto-4 h3 {
  font-size: 30px;
  font-weight: 700;
}

.feature-texto-4 p {
  font-size: 19px;
  line-height: 1.6;
  font-weight: 500;
  margin: 0px;
  padding: 0px;
  color: #4b2c82;
}

.feature-texto-5 h3 {
  font-size: 30px;
  font-weight: 700;
  padding-top: 0px;
 transform: none!important;
}

.feature-texto-5 p {
  font-size: 19px;
  line-height: 1.6;
  font-weight: 500;
  color: #4B2C82;
  text-align: left;
}
	
	.feature-texto-6 {
  width: 100%;
  max-width: 1920px;
  text-align: center;
  padding: 0px;
  box-sizing: border-box;
  transform: none!important;
	 text-shadow: 2px 2px 2px rgba(0, 0, 0, 1.0);
	
}
	
	
	
.feature-texto-6 h3 {
  font-size: 28px;
	 padding: 0px;
  font-weight: 700;
	  color: #F1EBF9;
		 text-shadow: 2px 2px 2px rgba(0, 0, 0, 1.0);
	
}

.feature-texto-6 p {
  font-size: 19px;
  line-height: 1.6;
	 padding: 0px;
  font-weight: 500;
  color: #F1EBF9;
		 text-shadow: 2px 2px 2px rgba(0, 0, 0, 1.0);
}
.feature-imagem-1 {
  flex-shrink: 1;
}

.feature-imagem-1 img {
  flex: 1;
  display: block;
  height: auto !important;
  max-width: 10px;
}

.feature-imagem-2 {
  flex-shrink: 1;
}

  .feature-imagem-2 img { max-width: 240px; padding-top: 40px; }


.feature-imagem-3 {
  flex-shrink: 1;
}

.feature-imagem-3 img {
  flex: 1;
  height: auto;
  display: block;
  width: 100%;
  max-width: 120px;
  margin-left: 40px;
}
.valores-socorro {
  text-align: center;
  background: #FFFFFF;
  color: #6A509D;
  padding: 10px 10px;
}

.titulo-socorro {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
}

.descricao-socorro {
  font-size: 26px;
  margin-bottom: 20px;
	  font-weight: 600;
	  color: #6A509D;
}

.linha-valores {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap:1.2%;
  margin-bottom: 20px;
}

.item-valor {
  background-color: rgb(106, 80, 157);
  border-radius: 12px;
	padding-bottom: 0px;
	padding-top: 0px;
  padding-left: 10px;
  padding-rigth: 10px;
  width: 19%;
	 max-width: 280px;
	height: auto;
  min-height: 70px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.item-valor:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


.item-valor h3 {
  font-size:20px;
  font-weight: bold;
  margin-bottom: 0px;
  color: #FFFFFF;
}

.item-valor p {
  font-size: 18px;
  line-height: 1.4;
  color: #FFFFFF;
  text-align: center;
}
	
/*	#celular-animado {
  transform: translateY(0);
  transition: transform 2.5s ease-out;
}*/
	
	footer {
  background: #ffffff;
  color: #6A509D;
  text-align: center;
}

footer .slogan {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #6A509D;
}

footer .logo-footer {
  margin-bottom: 15px;
  margin-top: 15px;
  max-width: 100%;
}

footer .logo-footer img {
  width: 100%;
  max-width: 400px;
  height: auto;
}

footer .links {
  font-size: 19px;
  max-width: 100%;
}

footer .links a {
  color: #6A509D;
  text-decoration: none;
  margin: 0px;
}

}