﻿
.texto-dif {
    position: relative;
    display: block;
    text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);

}

/* Aplica a máscara e animação ao elemento principal E aos pseudo-elementos */
.texto-dif,
.texto-dif::before,
.texto-dif::after {
    -webkit-mask-image: linear-gradient(-75deg, rgba(10, 21, 169, 0.6) 50%, #c46b12 50%, rgb(15, 90, 188) 70%);
    -webkit-mask-size: 200%;
    animation: shine 3s infinite;
}

/* Estilos específicos dos pseudo-elementos (linhas) */
.texto-dif::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -50px;
    width: 50%;
    height: 5px;
    /* background-color: #262626; */
}

.texto-dif::after {
    content: "";
    position: absolute;
    left: 55%;
    bottom: -50px;
    width: 45px;
    height: 5px;
    /* background-color: #262626; */
}

/* Definição da animação (ajuste conforme necessário) */
@keyframes shine {
    from {
        -webkit-mask-position: 150%;
    }

    to {
        -webkit-mask-position: -50%;
    }
}

.imgLogo img {
    width: 100px;
    height: auto;
    filter: drop-shadow(0 0 10px #ffffcc); /* brilho amarelado */
    animation: brilhoLampada 2s infinite alternate;
  }
  
  @keyframes brilhoLampada {
    0% {
      filter: drop-shadow(0 0 5px #a7a7a7);
    }
    100% {
      filter: drop-shadow(0 0 20px #ffff99);
    }
  }

.menu-principal{
    margin: 0 auto;
}

.menu-principal ul {
    list-style: none;
    display: flex;
    justify-content: center;
    /* padding: 20px 0; */
    align-items: center;
}

.menu-principal li {
    /* margin: 0 20px; */
    font-size: 1.3em;
    border-right: 1px solid white;
    padding: 0 35px;
}
.menu-principal li:last-child {
    border-right: none; /* tira a borda do Ãºltimo item */
}

.menu-principal a {
    text-decoration: none;
    color: white;
    font-weight: 400;
    font-size: 1.1em;
    transition: color 0.3s ease;
    position: relative;
}

.menu-principal a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    height: 4px;
    width: 0%;
    background-color: #217dcf;
    transition: width 300ms ease;
}

.menu-principal li:hover {
    border-right: none; /* remove borda ao passar o mouse */
}

.menu-principal li:hover a::after {
    width: 100%; /* anima a linha de baixo */
}

.menu-principal a:hover {
    color: #1888eb;
}



.menu-principal li a:hover li{
    border-right: none !important;
}


.menu-toggle {
    display: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
  }
  
  .menu-icon {
    width: 30px;
    height: auto;
  }
  
  /* Oculta o menu em telas pequenas */
  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
      position: absolute;
      top: 15px;
      right: 20px;
    }
  
    .menu-principal {
      position: absolute;
      top: 60px;
      right: 0;
      background-color: #fff;
      width: 100%;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-in-out;
    }
  
    .menu-principal.active {
      max-height:400px; /* Ajuste conforme a quantidade de links */
    }
  
    .menu-principal ul {
      display: flex;
      flex-direction: column;
      margin: 0;
      padding: 0;
    }
  
    .menu-principal li {
      list-style: none;
      padding: 15px 20px;
      border-bottom: 1px solid #eee;
    }
  
    .menu-principal a {
      color: #000;
      text-decoration: none;
      font-weight: 500;
    }
  
    .menu-principal a:hover {
      color: #1C66A6;
    }
  }

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.borda{
    border: 1px solid red;
}

h5{
    /* font-size: 2.0em !important; */
}

h2{
    font-size: 3.5em;
}
h1{
    font-size: 4.0em;
}
i{
    font-size: 1.6em;
    opacity: 0.5;
}

.imagem-container {
    position: relative;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    /* width: 100%; */

}

.imagem-container img {
    width: 100%;
    display: block;
    /* border-radius: 8px; */
    /* position: relative; */
    z-index: 2;
}

.imagem-container::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    width: 100%;
    height: 100%;
    /* border: 2px solid #1C66A6; */
    /* border-radius: 8px; */
    z-index: 1;
    /* border: 1px solid red; */

}


@keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .animate-fadeIn {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0; /* Para iniciar invisÃ­vel */
  }
  
  /* Adiciona delay em elementos subsequentes para efeito cascata */
  .animate-delay-1 { animation-delay: 0.2s; }
  .animate-delay-2 { animation-delay: 0.4s; }
  .animate-delay-3 { animation-delay: 0.6s; }
  .animate-delay-4 { animation-delay: 0.8s; }


  .btn-projetos {
    background-color: #1C66A6;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2em;
    cursor: pointer;
    margin-top: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    opacity: 0;
    animation: fadeInUp 2s ease-out forwards;
    animation-delay: 0.2s;
}

.btn-projetos:hover {
    background-color: #16538B;
    transform: scale(1.05);
}

.btn-projetos:focus {
    outline: none;
    animation: pulse 1s infinite;  /* AnimaÃ§Ã£o de pulsar no foco */
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);  /* DÃ¡ um pequeno aumento */
    }
    100% {
        transform: scale(1);
    }
}


/* Fundo escurecido e centralizador */
#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* fundo translÃºcido */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(2px);
  }
  
  /* Spinner central */
  .spinner {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #007bff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 0.8s linear infinite;
  }
  
  /* Oculto por padrÃ£o */
  .hidden {
    display: none !important;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }




.containerPostagens{
      display: flex;
      justify-content: flex-start;
      align-items: center;
      flex-direction: row;
      height: 900px;
      position: relative;
      overflow: hidden;
}

.containerPostagens .ImgDiag {
  position: relative;
  width: 30%;
  transform: rotate(15deg);
  right: -650px;
  overflow: hidden;
}

.containerPostagens .ImgDiag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.containerPostagens .ImgDiag::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(36, 144, 208, 0.4), rgba(20, 98, 131, 0.4));
  z-index: 1;
  pointer-events: none;
  transition: background 0.3s ease;
}

/* Tablet e abaixo (≤ 1024px) */
@media (max-width: 1024px) {
  .containerPostagens .ImgDiag {
    right: -350px;
  }
}


@media (min-width: 1400px) and (max-width: 1850px){
  .containerPostagens .ImgDiag {
    right: -120px;
    height: 120%;
    width: 100%;
    z-index: -1;
  }
  
}

@media (min-width: 769px) and (max-width: 1035px) {
  .containerPostagens{
    height: auto;
  }
  .containerPostagens .ImgDiag {
    height: 40%;
    width: 100%;
    z-index: -1;
    transform: rotate(0deg);
    display: none;
  }

}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  .containerPostagens .ImgDiag {
    height: 120%;
  }

  .containerPostagens .ImgDiag::after {
    background: linear-gradient(to bottom, rgba(36, 144, 208, 0.1), rgba(20, 98, 131, 0.05));
  }
}
.Containerposts{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
    height: 100%;
    width: 100%;
    padding: 10px 20px;
  
}


.post-item {
    position: relative;
    width: 400px;
    height: 500px;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 15px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
    /* overflow: hidden; */
}

.post-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* preto com opacidade */

    /* background-color: rgba(22, 82, 150, 0.3); Cor com transparÃªncia */
    z-index: 0;
}


.post-item * {
    position: relative;
    z-index: 1;
}


.post-desc h3{
    padding: 20px 0;
    border-bottom: 1px solid rgb(255, 255, 255);
}

.containerIcons{
    display: flex;
    justify-content: space-between;
    padding: 20px 10px;
}

.containerIcons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-size: 16px;
}

.icons,
.icon-heart {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-view i,
.icon-view span {
    color: #aaa; /* cinza tipo "visualizaÃ§Ã£o" */
}

.icon-comment i,
.icon-comment span {
    color: #00acee; /* azul estilo Twitter para comentÃ¡rios */
}

.icon-heart i,
.icon-heart span {
    color: #e0245e; /* vermelho estilo like do Instagram */
}

.titulo {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.post-title p{
    font-size: .9em;
}

.post-desc h3{
    font-size: 1.5em;
}

@media (max-width: 1024px) {
    .containerPostagens {
        flex-wrap: wrap;
    }

    .post-item {
        width: 100%;
        height: auto;
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .titulo h2 {
        font-size: 50px;
    }

    .subtitulo {
        font-size: 14px;
    }

    .containerPostagens {
        flex-direction: column;
        align-items: center;
        padding: 0 15px;
        height: auto;
    }

    .post-item {
        width: 100%;
        max-width: 100%;
        padding: 20px;
    }

    .containerIcons {
        flex-direction: row;
        justify-content: space-around;
    }

    .icons, .icon-heart {
        gap: 5px;
        font-size: 14px;
    }


    .Containerposts{
      flex-direction: column;

    }
}

.rodape .container-rod{
    height: 100%;
}

.graute-info{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.graute-info img{
    height: 100px;
    width: auto;
}

.graute-info p{
    line-height: 2em;
}

.container-logo-info{
    display: flex;
    align-items: start;
    justify-content: start;
    /* width: 50%;
    height: 100px !important; */
}
.container-logo-info h3{
    margin-top: 40px;
}

.contato-info {
    display: flex;
    justify-content: flex-start; /* Centraliza os itens na horizontal */
    align-items: center;
    flex-direction: column;
    gap: 30px; /* EspaÃ§amento entre os itens */
    flex-wrap: wrap; /* Evita quebra esquisita se nÃ£o couber */
}

.contato-info .item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap; /* Evita quebra de linha dentro do item */
}

.contato-info img {
    width: 24px;
    height: 24px;
}

.contato-info p {
    font-size: 1em;
    margin: 0;
}

.contato-social {
    display: flex;
    flex-direction: column; /* MantÃ©m na mesma linha */
    gap: 25px;
}

.contato-info .item{
    width: 500px;
}

.container-redes-sociais{
    display: flex;

}

#iconeFace{
    width: 40px;
    height: 40px;
    background-color: #1877F2;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    text-decoration: none;
    margin: 15px;
}

#iconeFace:hover{
    transform: scale(1.1);
    box-shadow: 2px 4px 12px rgba(23, 85, 187, 0.3);
}

#iconeInsta{
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    text-decoration: none;
    margin: 15px;

}
#iconeInsta:hover{
    transform: scale(1.1); /* aumenta o tamanho */
    box-shadow: 0 4px 12px rgba(73, 73, 73, 0.3); /* sombra suave */
}

.atendimento-info{
    line-height: 3em;
    text-align: center;

}

@media (max-width: 481px) {
  .containerImgLuan {
    margin: 0; /* Remove qualquer margem padrão */
    align-items: flex-end; /* Alinha os itens ao final (direita) */
    justify-content: flex-end; /* Alinha o conteúdo ao final (direita) */
    width: 100%; /* Garante que a div ocupe toda a largura */
    padding-right: 0; /* Remove qualquer padding à direita */
  }

  .blog-person {
    position: static; /* Remove o posicionamento absoluto */
    width: auto; /* Ajusta a largura da imagem ao conteúdo */
    max-width: 100%; /* Garante que a imagem não ultrapasse a largura do container */
    height: auto; /* Mantém a proporção */
    margin-top: 30px; /* Mantém a margem superior */
  }
    footer .rodape{
        display: flex;
        flex-direction: column;
    }
    h1{
        font-size: 1.4em;
    }

    .graute-info{
        margin: 20px 0;
    }
    .contato-info {
        flex-direction: column;
        align-items: center;
        /* justify-content: center; */
        gap: 20px;
        flex-wrap: nowrap;
    }

    .contato-info .item {
        display: flex;
        gap: 8px;
        width: auto;
        margin: 15px 0;
        text-align: left;
        /* flex-wrap: wrap; */
    }

    .contato-info .item p {
        white-space: normal; /* permite quebra de linha */
        word-break: break-word; /* quebra palavras longas se necessÃ¡rio */
        font-size: 1em;
        margin: 0;
    }

    /* MantÃ©m o endereÃ§o centralizado */
    .contato-info .item:first-child {
        text-align: center;
    }

    /* Ajusta WhatsApp e Instagram na mesma linha */
    .contato-info .item:nth-child(2),
    .contato-info .item:nth-child(3) {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .contato-social {
        display: flex;
        justify-content: center;
        gap: 15px;
    }

    .contato-info p {
        font-size: 0.9em; /* Reduz um pouco no mobile pra caber melhor */
    }

    .atendimento-info{
        margin: 20px 0;
    }

    .rodape {
        margin-bottom: 30px; /* Mais espaÃ§o pra evitar corte */
    }
}







.blog-left, .blog-right {
  flex: 1;
}

.blog-left {
    display: flex;
    justify-content: center;
    padding: 50px 0 20px 20px;
    position: relative;
  }
  
  .blog-phone {
    max-width: 90%;
    height: auto;
    z-index: 2;
    position: relative;
    border-radius: 12px;
      filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.5)); /* Exemplo de sombra */

  }
  /* Efeito de brilho por trás da imagem */
  .blog-left::before {
    content: '';
    position: absolute;
    width: 70%;
    height: 70%;
    top: 10%;
    left: -5%;
    background:  url('../img/Logo-removebg-preview.webp'); /* Insira o caminho da sua imagem aqui */
    background-size: cover; /* A imagem vai cobrir o tamanho total do pseudo-elemento */
    background-position: right; /* A imagem ficará centralizada */
    opacity: 0.7;
    filter: blur(5px); /* Aplica o desfoque */
    z-index: 1; /* Para garantir que o pseudo-elemento não sobreponha outros elementos */
    border: none; /* Remover borda */
  }
  
.blog-right {
  text-align: left;
  padding-left: 30px;
}


.blog-list {
  list-style: none;
  padding: 0;
}

.blog-list li {
  font-size: 18px;
  color: white;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}



.blog-footer {
  margin-top: 40px;
}

.blog-footer p {
  margin: 5px 0;
  color: #ffffff;
  font-size: 18px;
}

.blog-handle {
  font-weight: bold;
}

.cta-insta {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 25px;
  background: #1C66A6;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  font-size: 1.1em;
  transition: background 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
}

#cta-instablog2:hover{
  color: white;
}

.cta-insta:hover {
  background: #c12b5f;
}

@media (max-width: 768px) {


  .blog-left, .blog-right {
    width: 100%;
    text-align: center;
    padding: 0;
  }

  .blog-right {
    margin-top: 30px;
  }

  .blog-person {
    position: static; /* Remove o posicionamento absoluto para que o flex-end funcione */
    width: auto; /* Deixa a largura da imagem se ajustar ao conteúdo */
    max-width: 100%; /* Garante que a imagem não ultrapasse a largura do container */
    height: auto; /* Mantém a proporção da imagem */
    margin-top: 30px; /* Mantém a margem superior */
  }

 

  
  .blog-subtitle,
  .blog-list li {
    font-size: 16px;
  }
}
.blog1 {
  width: 100%;
  text-align: center;
  position: relative;
}

.blog-person {
  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.5)); /* Exemplo de sombra */
}

.headerBlog {
  padding: 35px 20px;
  margin: 0 auto;
  position: relative;
  background: 
    linear-gradient(to bottom, rgba(36, 144, 208, 0.8), rgba(20, 98, 131, 0.8)),
    url('../img/fundo-servicos.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.headerBlog .titulo h2,
.headerBlog .titulo h4{
    padding: 20px 10px;
    color: white;
}

.headerBlog i{
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    color: white;
    padding: 15px;
    z-index: 500;
}

.headerBlog i:hover{
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(255, 105, 180, 0.7);
}
/* Efeito brilho suave */
@keyframes instagramGlow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.4),
                     0 0 15px rgba(204, 35, 102, 0.3);
    }
    50% {
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.6),
                     0 0 25px rgba(204, 35, 102, 0.4);
    }
}

.headerBlog .logoImg{
    width: 100%;
    padding: 15px 20px;
    display: flex;
    justify-content: flex-start;
    position: absolute;
    top: 100px;
}
.headerBlog .logoImg img{
    width: 300px;
    height: auto;

}

.blog-container {
  position: relative;
  background: linear-gradient(to bottom, #ffffff 60%, rgba(36, 144, 208, 0.8) 60%, rgba(20, 98, 131, 0.8) 90%);
  width: 100%;
  overflow: hidden;
}

.blog-content {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  box-sizing: border-box;
  flex-wrap: wrap;
}

.blog-left,
.blog-right,
.containerImgLuan {
  flex: 1;
  max-width: 33.33%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: auto;
}

.blog-left {
  align-items: center;
}


.blog-right {
  padding: 0 30px;
  color: black;
  text-align: left;
}

.blog-subtitle {
  margin-bottom: 20px;
  font-size: 20px;
}

.blog-list li {
  font-size: 18px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1C66A6;
}

.containerImgLuan {
  margin: 0; /* Remove qualquer margem padrão */
  align-items: flex-end; /* Alinha os itens ao final (direita, neste caso) */
  justify-content: flex-end; /* Alinha o conteúdo ao final (direita) */
  width: 100%; /* Garante que a div ocupe toda a largura */
  padding-right: 0; /* Remove qualquer padding à direita */
}

.blog-person {
  position: absolute;
  bottom: 0;
  right: 0;
  max-height: 100%;
  object-fit: contain;
}

/* ------------------- RESPONSIVO ------------------- */

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
  .blog-content {
    flex-wrap: wrap;
    padding-top: 50px;
  }

  .blog-left,
  .blog-right,
  .containerImgLuan {
    max-width: 50%;
    flex: 0 0 50%;
    margin-bottom: 30px;
  }

  .containerImgLuan {
    justify-content: center;
    align-items: center;
    position: relative;
  }

  .blog-person {
    position: static;
    width: 70%;
    height: auto;
  }
}

/* Mobile (até 767px) */
@media (max-width: 767px) {
  
.blog-container{
  background: linear-gradient(to bottom, #ffffff 70%, #6394BF 60%);

}
  .blog-left,
  .blog-right,
  .containerImgLuan {
    max-width: 100%;
    flex: 0 0 100%;
    align-items: center;
    text-align: center;
    padding: 25px 5px 0 0;
  }

  .containerImgLuan{
    margin: 0;
    align-items: end;
    justify-content: flex-end;
    width: 100%;
  }

  .blog-right {
    padding: 0;
  }

  .blog-list li {
    justify-content: center;
  }

  .blog-person {
    position: static;
    width: 80%;
    margin-top: 30px;
  }
}

/* Telas grandes (acima de 2000px) */
@media (min-width: 2000px) {
  .blog-phone {
    max-width: 600px;
  }

  .blog-subtitle {
    font-size: 24px;
  }

  .blog-list li {
    font-size: 22px;
  }

  .blog-right {
    padding: 0 60px;
  }

  .blog-person {
    max-height: 90%;
  }
}

.acaoGraute {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 30px 40px;
  margin-top: 30px;
  width: 100%;
  text-align: center;
  transition: transform 0.3s ease;
}

.acaoGraute:hover {
  transform: translateY(-5px);
}

.acaoGraute h4 {
  font-size: 1.5em;
  color: #1C66A6;
  margin-bottom: 20px;
}

.acaoGraute a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  padding: 15px 25px;
  font-size: 1.2em;
  color: #333;
  background: #f0f0f0;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.acaoGraute a:hover {
  background: #6394BF;
  color: white;
}

.acaoGraute i {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(204, 35, 102, 0.5);
  transition: box-shadow 0.3s ease;
}

.acaoGraute a:hover i {
  box-shadow: 0 0 20px #dc2743;
}

.blog-footer {
  margin-top: 40px;
}

.blog-footer p {
  margin: 5px 0;
  color: #ffffff;
  font-size: 18px;
}

.blog-handle {
  font-weight: bold;
}

.cta-insta {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 25px;
  background: #1C66A6;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  font-size: 1.1em;
  transition: background 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.cta-insta:hover {
  background: #118EBF;
}

@media (max-width: 768px) {
  .blog-content {
    flex-direction: column;
    align-items: center;
  }

  .blog-left, .blog-right {
    width: 100%;
    text-align: center;
    padding: 0;
  }

  .blog-right {
    margin-top: 30px;
  }

  .blog-person {
    position: static;
    margin-top: 20px;
    width: 80%;
    max-width: 300px;
  }

 
.headerBlog .logoImg{
  top: 10px;
}
  .headerBlog .logoImg img {
    width: 100px;

  }
  .blog-subtitle,
  .blog-list li {
    font-size: 16px;
  }
}
  
