/* sessão 1 */

#secao-1 .slider,
#secao-1 .slides {
  height: calc(100vh - 50px) !important;
}

#secao-1 .slider .slides h1 {
  font-weight: 700;
}

#secao-1 .slider .slides h6 {
  font-size: 18px;
}

#secao-1 .slider .slides .box {
  background-color: rgba(0, 0, 0, 0.745);
  background-color: rgba(0, 6, 43, 0.85);
/*
  background: #000;
  background: linear-gradient(52deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.50) 50%, rgba(0, 0, 0, 0.95) 100%); */
  position: absolute;
  height: 100vh;
  width: 100%;
}

.slider .slides li .caption {
  margin-top: 40px;
}

.slider .slides li .caption.left-align {
  max-width: 500px;
}

#secao-1 .slider-botao-container {
  margin-top: 30px;
}

#secao-1 .slider-botao {
  border-radius: 20px;
  padding: 10px 20px;
  background-color: #f15a25;
  color: white;
  margin-top: 50px;
}

#secao-1 .slider-botao:hover {
  background-color: #ff7340;
}

#secao-1 .slider-slim {
  padding: 10px 20px;
  color: white;
  margin-top: 50px;
  background-color: #197cfe;
  border-radius: 20px;
  margin-left: 10px;

  &:hover {
    background-color: #529af9;
  }
}

#secao-1 .box-social {
  position: absolute;
  right: 100px;
  top: calc(50vh - 30px);
  z-index: 3;
  width: 30px;
}

#secao-1 .box-social .social-botao {
  padding-top: 14px;
  border-radius: 100%;
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.30154068463322825) 0%, rgba(255, 255, 255, 1) 53%);
}

#secao-1 .custom-shape-divider-bottom-1725648297 {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 3;
}

#secao-1 .custom-shape-divider-bottom-1725648297 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 74px;
}

#secao-1 .custom-shape-divider-bottom-1725648297 .shape-fill {
  fill: #1d1d1d;
}

#secao-1 .box-shine {
  position: absolute;
  display: flex;
  bottom: -1px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  height: 20%;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
}

#secao-1 .box-shine .box-shine-content-left {
  background: radial-gradient(
    ellipse 70% 70% at 35% 80%,
    rgba(241, 90, 37, 0.85) 0%,
    rgba(241, 90, 37, 0.45) 30%,
    rgba(241, 90, 37, 0.15) 55%,
    transparent 75%
  );
  width: 50%;
  height: 100%;
}

#secao-1 .box-shine .box-shine-content-right {
  background: radial-gradient(
    ellipse 70% 70% at 75% 90%,
    rgba(25, 124, 254, 0.85) 0%,
    rgba(25, 124, 254, 0.45) 30%,
    rgba(25, 124, 254, 0.15) 55%,
    transparent 75%
  );
  width: 50%;
  height: 100%;
}

/* sessão 2 */

#secao-2 {
  background-color: #1d1d1d;
  padding: 50px;
}

#secao-2 h4 {
  color: white;
}

#secao-2 h3,
#secao-2 h2 {
  font-weight: 700;
}

#secao-2 h5,
#secao-2 h4 {
  font-weight: 600;
}

#secao-2 h2 {
  margin-top: 20px;
}

#secao-2 .cards-grid {
  padding: 0 8px;
}

#secao-2 .cards-servico {
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, #1a1a2e 0%, #12121f 100%);
  border-radius: 16px;
  padding: 28px 24px 24px;
  border-top: 3px solid #f15a25;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5), 0 -1px 20px rgba(241, 90, 37, 0.12);
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

#secao-2 .cards-servico::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #f15a25, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

#secao-2 .cards-servico:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), 0 0 32px rgba(241, 90, 37, 0.2);
}

#secao-2 .cards-servico:hover::before {
  opacity: 1;
}

#secao-2 .card-icone {
  margin-bottom: 18px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(241, 90, 37, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(241, 90, 37, 0.25);
}

#secao-2 .cards-servico h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.3;
}

#secao-2 .cards-servico p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 24px;
  flex: 1;
}

#secao-2 .links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

#secao-2 .card-btn-primary {
  display: block;
  text-align: center;
  padding: 9px 16px;
  background: #f15a25;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.2s ease;
}

#secao-2 .card-btn-primary:hover {
  background: #ff7340;
  color: #fff;
}

#secao-2 .card-btn-ghost {
  display: block;
  text-align: center;
  padding: 9px 16px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: border-color 0.2s ease, color 0.2s ease;
}

#secao-2 .card-btn-ghost:hover {
  border-color: rgba(241, 90, 37, 0.5);
  color: #f15a25;
}

#secao-2 .cards-cta {
  background: linear-gradient(135deg, #f15a25 0%, #c94010 100%);
  border-top: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(241, 90, 37, 0.35);
}

#secao-2 .cards-cta::before {
  display: none;
}

#secao-2 .cards-cta:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(241, 90, 37, 0.45);
}

#secao-2 .cards-cta .card-icone {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

#secao-2 .cards-cta h4 {
  font-size: 20px;
}

#secao-2 .cards-cta p {
  color: rgba(255, 255, 255, 0.85);
}

#secao-2 .card-cta-btn {
  display: block;
  text-align: center;
  padding: 14px 20px;
  background: #fff;
  color: #f15a25;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  margin-top: auto;
  transition: background 0.2s ease, color 0.2s ease;
}

#secao-2 .card-cta-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #c94010;
}

#secao-2 .texto-dinamico {
  margin-top: 0;
  font-size: 30px;
  text-align: center;
}

#secao-2 #ag-global {
  margin-top: 100px;
}

/* sessão 3 */

#secao-3  {
  padding: 0;
  background: #fff;
  background-color: #fff !important;
}

#secao-3 h2 {
  margin-top: 50px !important;
  font-weight: 700 !important;
}

/* sessão 3 */

#secao-3 .cases {
  background-color: white;
  padding: 0 20px;
}

#secao-3 .swiper {
  width: 100%;
  height: 100%;
}

#secao-3 .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

#secao-3 .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 20px 0 20px;
  border-radius: 10px;
  /* filter: grayscale(); */
  transition: all 0.3s;
}

#secao-3 .swiper-slide:hover img {
  filter: none;
}

#secao-3 .swiper-slide .box-cont {
  position: absolute;
  bottom: 20px;
  text-align: left;
  width: 100%;
  padding: 60px 10px 20px 10px;
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 1) 100%);
  border-radius: 10px;
}

#secao-3 .swiper-slide .box-cont h5 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 0 0;
}

#secao-3 .swiper-slide .box-cont p {
  margin: 5px 0;
  font-weight: 500;
}

#secao-3 .swiper-slide .box-cont a {
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50px;
  font-size: 12px;
  padding: 5px 10px;
}

#secao-3 .swiper-slide .box-cont a:hover {
  border: 2px solid #f15a25;
}

#secao-3 element {
  transform: translate3d(186.543px, 0px, 0px);
  width: 386.564px;
  transition-duration: 0ms;
}

#secao-3 .custom-shape-divider-bottom-1725648297 {
  position: relative;
  bottom: -1px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 3;
}

#secao-3 .custom-shape-divider-bottom-1725648297 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 74px;
}

#secao-3 .custom-shape-divider-bottom-1725648297 .shape-fill {
  fill: #333333;
}

#secao-3 .box-shine {
  position: relative;
  display: flex;
  bottom: -72px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  height: 115px;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
}

#secao-3 .box-shine .box-shine-content-left {
  background: radial-gradient(
    ellipse 70% 70% at 35% 80%,
    rgba(241, 90, 37, 0.85) 0%,
    rgba(241, 90, 37, 0.45) 30%,
    rgba(241, 90, 37, 0.15) 55%,
    transparent 75%
  );
  width: 50%;
  height: 100%;
}

#secao-3 .box-shine .box-shine-content-right {
  background: radial-gradient(
    ellipse 70% 70% at 75% 90%,
    rgba(25, 124, 254, 0.85) 0%,
    rgba(25, 124, 254, 0.45) 30%,
    rgba(25, 124, 254, 0.15) 55%,
    transparent 75%
  );
  width: 50%;
  height: 100%;
}

.swiper-scrollbar-drag {
  background-color: #f15a25;
}

@media only screen and (max-width: 992px) {
  #secao-2 .cards-servico {
    min-width: 0;
  }
}

#secao-1 {
  position: relative;
  top: -32px;
}

.th5 {
  color: #ffffff;
}

.titulob4 {
  color: #197cfe;
  font-weight: 600;
}

#secao-5 {
  padding: 0 0 60px 0;
  background-color: #fff;
}

#secao-5 #processo-header {
  text-align: center;
  padding: 50px 0 40px;
}

#secao-5 #processo-header h2 {
  color: #1a1a2e;
  margin-bottom: 12px;
}

#secao-5 #processo-header p {
  font-size: 16px;
  color: #666;
  max-width: 520px;
  margin: 0 auto;
}

#secao-5 #processo-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: stretch !important;
  gap: 16px !important;
  padding: 0 8px 40px !important;
}

#secao-5 .processo-passo {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  flex: 1 1 220px !important;
  min-width: 0 !important;
  padding: 32px 20px;
  background: #f9f9fb;
  border-radius: 16px;
  border-top: 3px solid #f15a25;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#secao-5 .processo-passo:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

#secao-5 .passo-numero {
  font-size: 48px;
  font-weight: 900;
  color: rgba(241, 90, 37, 0.12);
  line-height: 1;
  margin-bottom: 4px;
  font-family: 'Oswald', sans-serif;
}

#secao-5 .passo-icone {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(241, 90, 37, 0.08);
  border-radius: 14px;
  margin-bottom: 16px;
  border: 1px solid rgba(241, 90, 37, 0.2);
}

#secao-5 .processo-passo h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 10px;
}

#secao-5 .processo-passo p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

#secao-5 #processo-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 0 8px;
}

#secao-5 .badge-trust {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #f3f3f3;
  border-radius: 50px;
  font-size: 13px;
  color: #444;
  font-weight: 500;
  border: 1px solid #e0e0e0;
  transition: border-color 0.2s ease, color 0.2s ease;
}

#secao-5 .badge-trust:hover {
  border-color: #f15a25;
  color: #f15a25;
}

@media (max-width: 600px) {
  #secao-5 .processo-passo {
    flex: 1 1 100% !important;
  }
}

.tabs .tab a {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: left;
  font-size: 12px !important;
  overflow: hidden;
  -webkit-transition: color 0.28s ease, background-color 0.28s ease;
  transition: color 0.28s ease, background-color 0.28s ease;
}

.tabs .tab a:hover {
  color: #f15a25;
  background-color: #000000;
}

.tabs .tab a i {
  margin-right: 10px;
  font-size: 20px;
}

.tabs .indicator {
  position: absolute;
  bottom: 0;
  height: 2px;
  background-color: #fff;
  will-change: left, right;
}

#secao-6 {
  padding: 0;
  background-color: #000;
}

#secao-6 #box-brand {
  background-color: #000;
  padding-bottom: 50px;
}

#secao-6 #clientes-header {
  text-align: center;
  padding: 50px 16px 20px;
}

#secao-6 #clientes-header h2 {
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

#secao-6 #clientes-header p {
  color: #f15a25;
  font-size: 15px;
  font-weight: 500;
  margin: 0;
}

#secao-6 img {
  border-style: none;
  height: 200px;
  width: 275px;
}

#secao-6 .custom-shape-divider-top-1737658137 {
  position: relative;
  top: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

#secao-6 .custom-shape-divider-top-1737658137 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 25px;
}

#secao-6 .custom-shape-divider-top-1737658137 .shape-fill {
  fill: #fff;
}

#secao-6 .custom-shape-divider-bottom-1737658247 {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

#secao-6 .custom-shape-divider-bottom-1737658247 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 25px;
}

#secao-6 .custom-shape-divider-bottom-1737658247 .shape-fill {
  fill: #f1f1f1;
}

/* BLOG */
.h1-blog,
.marks h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 45px;
  font-weight: 600;
  color: #ffffff;
  margin-top: 50px;
  margin-bottom: 50px;
}


.h3-blog,
.marks h3,
#blog .marks h2 {
  font-family: 'Manrope', sans-serif;
  color: #ffffffff;
  margin-bottom: 30px;
  margin-top: 26px !important;
  font-size: 30px;
  font-weight: 600 !important;
  color: #ffffff;
}


.h4-blog,
.marks h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 25px;
  font-weight: 200;
  color: #000000;
}

.h5-blog,
.marks h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 200;
  color: #000000;
}

.p-blog,
.marks p {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 200;
  color: #000000;
  margin-bottom: 30px;
  margin-top: 30px;
}

.p-blog,
.marks p {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 18px;
  font-weight: 100;
  color: #ffffffff;
  margin-bottom: 30px;
  display: block;
}


.ultimas-btn {
  padding: 5px 20px;
  background: transparent;
  border-radius: 50px;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Roboto Condensed', sans-serif;
  color: #fff;
  font-size: 13px;
  transition: all 0.5s ease-in;
  border: 2px solid #f15a25;
  margin-top: 30px;
}

.flex {
  display: flex;
  justify-content: space-between;
}

#secao-2 {
  background-size: cover;
  background-position: center;
}


.cc {
  background-color: #fff;
}

#secao-1 .slider .indicators {
  top: 200px;
  right: 50px !important;
  left: auto !important;
  z-index: 4;
  width: 2px !important;
}

#secao-1 .slider .indicators .indicator-item {
  display: inline-block;
  position: relative;
  cursor: pointer;
  height: 10px;
  width: 10px;
  border: 2px solid white;
  margin-top: 3px;
  margin-bottom: 3px;
  opacity: 0.5;
}

#secao-1 .slider .indicators .indicator-item:hover {
  opacity: 1;
}

#secao-1 .slider .indicators .indicator-item.active {
  background-color: #f15a25;
  height: 20px;
  border-radius: 10px;
  margin-top: 0px;
  margin-bottom: 0px;
  opacity: 1;
}

#secao-1 .slider video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

#secao-6 .swiper-slide {
  text-align: center;
}

.custom-shape-divider-top-1695910736 svg {
  fill: #f1f1f1;
}

@media only screen and (max-width: 700px) {
  .tabs .tab a span {
    display: none;
  }
}

@media only screen and (max-width: 450px) {
  #secao-1 .slider .slides h1 {
    font-size: 30px;
  }
  .slider .slides li .caption {
    margin-top: 20px;
    left: 8%;
    width: 75%;
  }
  #secao-2 {
    padding: 50px 0;
  }
  #secao-2 .texto-dinamico{
    font-size: 20px !important;
    height: 60px;
  }

  #secao-2 #ag-global {
    margin-top: 0;
  }
  #secao-2 .cards-servico {
    width: 100%;
  }

  #secao-3 h1 {
    font-size: 30px;
  }
}

/* ─── Blog Section ─────────────────────────────────────── */

#blog {
  background-color: #f1f1f1;
}

#blog #blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

#blog #blog-header-left h2 {
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 8px;
}

#blog #blog-header-left p {
  font-size: 15px;
  color: #666;
  margin: 0;
  max-width: 480px;
  line-height: 1.6;
}

#blog #blog-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

#blog .blog-ver-todos {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #f15a25;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

#blog .blog-ver-todos:hover {
  color: #ff7a45;
}

#blog .blog-ver-todos svg {
  transition: transform 0.2s ease;
}

#blog .blog-ver-todos:hover svg {
  transform: translateX(3px);
}

/* ─── Blog Card Grid ────────────────────────────────────── */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.blog-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(241, 90, 37, 0.3);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.blog-card-imagem-link {
  display: block;
  overflow: hidden;
}

.blog-card-imagem {
  overflow: hidden;
  height: 200px;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.blog-card:hover .blog-card-img {
  transform: scale(1.05);
}

.blog-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px;
}

.blog-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.blog-tag {
  display: inline-block;
  background: rgba(241, 90, 37, 0.15);
  color: #f15a25;
  border: 1px solid rgba(241, 90, 37, 0.25);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.2s ease, color 0.2s ease;
}

.blog-tag:hover {
  background: #f15a25;
  color: #fff;
}

.blog-card-titulo {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.45;
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-titulo a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card-titulo a:hover {
  color: #f15a25;
}

.blog-card-resumo {
  font-size: 13px;
  color: #888;
  line-height: 1.7;
  margin: 0 0 20px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.blog-card-autor {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-card-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(241, 90, 37, 0.4);
  flex-shrink: 0;
}

.blog-card-autor-info {
  display: flex;
  flex-direction: column;
}

.blog-card-autor-nome {
  font-size: 12px;
  font-weight: 600;
  color: #333;
  line-height: 1.2;
}

.blog-card-autor-data {
  font-size: 11px;
  color: #aaa;
}

.blog-card-ler {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: #f15a25;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.blog-card-ler svg {
  transition: transform 0.2s ease;
}

.blog-card-ler:hover {
  color: #ff7a45;
}

.blog-card-ler:hover svg {
  transform: translateX(3px);
}

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

  #blog #blog-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
