.tv_fundo {
	background-image:url(../images/background.png);
	background-color: #2D9644;
	background-size:cover;
	position: relative;
	top: -140px;
}
.tv_fundo img {
  height: auto;
  width: 100%;
  position: relative;
  max-width:1200px;
  bottom:-150px;
}
@media screen and (max-width:991px){
.tv_fundo {
  top: -100px;
}
.tv_fundo img {
  bottom: -100px;
}
}
@media screen and (max-width:720px){
.tv_fundo {
  top: -80px;
}
.tv_fundo img {
  bottom: -80px;
}
}
@media screen and (max-width:576px){
.desktop {
display: none;
}
.mobile {
display: table;
}
}
@media screen and (max-width:480px){
.conteudo-empresas ul li a {
padding: 15px 30px;
}
.tv_fundo {
  top: -60px;
}
.tv_fundo img {
  bottom: -60px;
}
}
@media screen and (max-width:320px){
.tv_fundo {
  top: -50px;
}
.tv_fundo img {
  bottom: -50px;
}
}
/* BLOG */
.blog {
    padding: 0px 20px 40px 20px;
}

.blog-container {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;

    align-items: stretch; /* isso é importante */
}

/* CARD */
.post {
    border-radius: 12px;
    padding: 15px;
    border: 1px solid #E6E7E8;
    height: 100%;

    /* SOBREAMENTO */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Destaque ao passar o mouse */
.post:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.post img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.post h3 {
    color: #464AA1;
    font-size: 18px;
    margin-bottom: 8px;
}

.post .data {
    margin-top: auto; /* empurra para o final */
    font-size: 14px;
    color: #9a9a9a;
}

/* RESPONSIVO */

/* Tablet */
@media (max-width: 900px) {
    .blog-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Celular */
@media (max-width: 600px) {
    .blog-container {
        grid-template-columns: 1fr;
    }

    .post h3 {
        font-size: 16px;
    }
	.services .title{
	margin: 0 0 20px 0 !important;
    }
}
/* COBERTURA */
.cobertura-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 10px 25px rgba(0,0,0,.15);
  text-align: center;
}

.cobertura-box h1 {
  margin-bottom: 15px;
  font-size: 22px;
}

.cobertura-box p {
  font-size: 14px;
  color: #555;
}

.cobertura-box input {
  width: 100%;
  padding: 14px;
  margin-top: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.cobertura-box button {
  width: 100%;
  margin-top: 15px;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: #008FE8;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.cobertura-box button:hover {
  background: #2D9644;
}

.resultado {
  margin-top: 20px;
  font-size: 18px;
  font-weight: bold;
}