header .main-navigation .current-menu-item>a,
header .main-navigation .current_page_item>a {
  color: var(--secondary-color);
}

/* 
Theme Name: Lavalog
Theme URI: https://lavalog.com.br/
Author: Lucas Pereira
Description: Lavalog is a WordPress theme for institucional website for Lavalog.
Version: 1.0
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "DM Sans", sans-serif !important;
  scroll-behavior: smooth;
}

/* Exceções para ícones - preserva as fontes originais */
.dashicons,
.dashicons-before:before {
  font-family: dashicons !important;
}

/* Font Awesome - garante que a fonte correta seja usada */
.fa,
.fas,
.far,
.fab,
.fal,
.fad,
[class^="fa-"],
[class*=" fa-"] {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands",
    "Font Awesome 6 Pro" !important;
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.button {
  background: none;
  color: white;
  border: none;
  padding: 13px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  width: max-content;
  transition: background-color 0.3s ease;
}

.bg-blue:hover {
  background-color: #375a87;
}

.bg-orange:hover {
  background-color: #c46519;
}

/* Garante que o admin bar seja visível */
#wpadminbar {
  font-family: "DM Sans", sans-serif !important;
}

#wpadminbar * {
  font-family: "DM Sans", sans-serif !important;
}

#wpadminbar .ab-icon:before,
#wpadminbar .dashicons:before {
  font-family: dashicons !important;
}

body {
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--font-color);
}

b {
  color: inherit;
}

/* colors */

:root {
  --primary-color: #557dae;
  --secondary-color: #f58220;
  --font-color: #2c2d33;
  --link-color: #004ea3;
  --brand-primay: #3c597c;
  --border-color: #8DA8C9;
}

.color-blue {
  color: var(--primary-color);
}

.color-orange {
  color: var(--secondary-color);
}

.container {
  /* max-width: 1200px; */
  max-width: 80%;
  margin: 0 auto;
  /* padding: 0 20px; */
}

.section-title {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 25px;
  text-align: center;
}

.section-description {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 20px;
  text-align: center;
}

.row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.col-3 {
  width: calc(25% - 20px);
  margin-bottom: 40px;
}

.col-4 {
  width: calc(33.333% - 20px);
  margin-bottom: 40px;
}

.col-6 {
  width: calc(50% - 20px);
  margin-bottom: 40px;
}

.col-8 {
  width: calc(66.666% - 20px);
  margin-bottom: 40px;
}

.col-12 {
  width: calc(100% - 20px);
  margin-bottom: 40px;
}

.color-quaternary {
  color: var(--quaternary-color);
}

.button {
  background: none;
  /* Cor de fundo do botão */
  color: white;
  /* Cor do texto do botão */
  border: none;
  /* Remove a borda */
  padding: 8px 20px;
  /* Espaçamento interno */
  border-radius: 8px;
  /* Borda arredondada */
  cursor: pointer;
  font-weight: 600;
  /* Muda o cursor ao passar o mouse */
  font-size: 18px;

  width: max-content;
}

.bg-blue {
  background-color: var(--primary-color);
}

.bg-orange {
  background-color: var(--secondary-color);
}

.mobile {
  display: none !important;
}

/* Paginação */

.pagination {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

.pagination .current {
  background-color: var(--secondary-color);
  border-radius: 100%;
  color: white !important;
  font-weight: bold;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination .page-numbers:hover {
  color: var(--secondary-color);
}

/* Estilo inicial para o efeito de blur */
[data-aos="custom-unblur"] {
  opacity: 0;
  filter: blur(10px);
  /* Começa embaçado */
  transition: opacity 0.1s ease-out, filter 0.1s ease-out;
  /* Transição suave */
}

/* Estado final quando animado pelo AOS */
[data-aos="custom-unblur"].aos-animate {
  opacity: 1;
  filter: blur(0);
  /* Fica nítido */
}

.form-message {
  width: 100%;
  padding: 15px;
  margin: 20px 0;
  border-radius: 5px;
  text-align: center;
}

.form-message.error {
  background-color: #ffebee;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

.form-message.success {
  background-color: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

header {
  background-color: #FAFBFF;
  border-bottom: 1px solid #eee;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

header .main-navigation ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

header .main-navigation li {
  margin-left: 20px;
}

header .main-navigation a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 600;
  transition: color 0.3s ease;
}

header .main-navigation a:hover {
  color: var(--secondary-color);
}

header .acessos-desktop {
  display: flex;
  align-items: center;
  gap: 10px;
}

header .acessos-desktop p {
  margin: 0;
  font-weight: 600;
  color: var(--primary-color);
}

.acessos-mobile {
  display: none;
  /* Hidden by default */
}

.hero {
  background-image: url("assets/images/hero-bg.png");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: left;
  padding: 100px 0;
}

.hero .container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 600px;
  /* Adjust as needed */
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  max-width: 600px;
  color: white;
}

.hero p {
  max-width: 600px;
  margin-bottom: 30px;
  color: white;
}

.hero .button {
  /* No specific alignment needed here, it will follow parent's text-align */
}

.about-us {
  padding: 80px 0;
}

.about-us .row {
  align-items: center;
}

.about-us img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.about-us h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.about-us p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.services {
  background-color: var(--primary-color);
  padding: 0;
  color: white;
}

.services .container {
  display: flex;
  gap: 0;
  padding: 0;
}

.services .col-4 {
  background: var(--primary-color);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 40px;
  min-width: 340px;
  max-width: 420px;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.services .col-4 h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.services .col-4 p {
  font-size: 1rem;
  margin-bottom: 30px;
}

.services .col-8 {
  /* background: #6c8fc0; */
  color: #fff;
  padding: 60px 40px;
  flex: 1;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.services .row {
  display: flex;
  gap: 0;
}

.services .col-8 .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 40px;
}

.services .col-8 .col-6 {
  background: none;
  color: #fff;
  margin-bottom: 0;
}

.services .col-8 .col-12 {
  grid-column: 1 / span 2;
}

.service-item {
  background: none;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.service-item i {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 10px;
}

.service-item h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.service-item p {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0;
}

.services .button.bg-orange {
  margin-top: 20px;
}

@media (max-width: 990px) {
  .services .container {
    flex-direction: column;
    padding: 0;
  }

  .services .col-4,
  .services .col-8 {
    max-width: 100%;
    min-width: 0;
    border-radius: 0;
    padding: 40px 20px;
  }

  .services .col-8 .row {
    grid-template-columns: 1fr;
    gap: 30px 0;
  }

  .services .col-8 .col-12 {
    grid-column: auto;
  }
}

.services h3 {
  font-size: 36px;
  margin-bottom: 20px;
}

.services p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.service-item {
  /* background-color: rgba(255, 255, 255, 0.1); */
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.service-item i {
  font-size: 36px;
  color: white;
}

.service-item h4 {
  font-size: 24px;
  margin-bottom: 10px;
}

.service-item p {
  font-size: 16px;
  margin-bottom: 0;
}

.contact {
  padding: 80px 0;
}

.contact h2 {
  font-size: 36px;
  margin-bottom: 20px;
  text-align: left;
}

.contact>p {
  font-size: 18px;
  margin-bottom: 40px;
  text-align: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-right: 30px;
}

.contact-item i {
  font-size: 36px;
  color: var(--primary-color);
}

.contact-item h5 {
  font-size: 24px;
  margin-bottom: 10px;
}

.contact-item p {
  font-size: 16px;
  margin-bottom: 5px;
}

.contact-item a {
  color: var(--link-color);
  text-decoration: underline;
}

.map img {
  width: 100%;
  border-radius: 8px;
}

.hero-sobre {
  padding: 80px 0;
}

.somos-especialistas {
  background-color: #f5f5f5;
  padding: 80px 0;
}

.somos-especialistas p {
  font-size: 20px;
}

.depoimentos {
  padding: 80px 0;
}

.depoimento {
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.depoimento .autor {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.depoimento .avatar {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-right: 10px;
}

@media screen and (max-width: 990px) {
  .somos-especialistas .col-6 img {
    width: 100%;
  }
}

.hero-servicos {
  padding-top: 80px;
}

.hero-servicos h1 {
  font-size: 36px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 25px;
}

.hero-servicos p {
  text-align: center;
}

.lista-servicos {
  padding: 80px 0;
}

.servicos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.servico-item-principal {
  background-color: #fff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.servico-item-principal .servico-item-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.servico-item-principal h3 {
  font-size: 29px;
  font-weight: 600;
  margin: 0;
  color: var(--brand-primay);
}

.servico-item-principal p {
  font-size: 16px;
  margin: 20px 0;
  flex-grow: 1;
}

.servico-item-principal img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.servicos-secundarios {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.servicos-secundarios .servico-item {
  background-color: #fff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.servicos-secundarios-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  height: 100%;
}

.servicos-secundarios .servico-item-header img {
  width: 32px;
  height: 32px;
}

.servicos-secundarios .servico-item h4 {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
  color: var(--brand-primay);
}

.servicos-secundarios .servico-item p {
  font-size: 14px;
  margin: 10px 0;
  flex-grow: 1;
}

.lista-servicos .button {
  background-color: #fef3c7;
  color: #9C4D07;
  padding: 5px 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  width: max-content;
  margin-top: auto;
  border: 1px solid #FFCDA3;
  text-decoration: none;
}

.lista-servicos .btn-precos {
  background-color: var(--primary-color);
  color: white;
  border: none;
  height: 38px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.lista-servicos .button:hover {
  background-color: #fde68a;
}

.atencao {
  border-radius: 8px;
  margin: 40px 0;
  text-align: left;
}

.por-que-fazer {
  background-color: var(--primary-color);
  color: white;
  padding: 80px 0;
}

.por-que-fazer h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

.por-que-fazer ul {
  list-style: none;
  padding: 0;
}

.por-que-fazer li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 18px;
}

.por-que-fazer li i {
  color: white;
  margin-right: 10px;
  font-size: 10px;
}

.por-que-fazer .col-6 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.precisa-agendar {
  padding: 80px 0;
}

/* Depoimentos Carousel */
.depoimentos {
  padding: 80px 0;
}

.depoimentos h2 {
  text-align: center;
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 50px;
  font-weight: 600;
}

.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.carousel-wrapper {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 33.333%;
  padding: 0 10px;
  flex: 0 0 33.333%;
}

.depoimento {
  background: white;
  padding: 30px;
  border-radius: 8px;
  max-width: 600px;
  margin: 0 auto;
  height: 100%;
  border: 1px solid var(--primary-color);
}

.stars {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
}

.star {
  color: #ffc107;
  font-size: 20px;
}

.depoimento p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 25px;
  font-style: italic;
}

.autor {
  display: flex;
  align-items: center;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 18px;
}

.autor span {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 16px;
}

.carousel-btn {
  background: white;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--primary-color);
}

.carousel-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

.dot:hover {
  background: var(--secondary-color);
}

@media (max-width: 992px) {
  .carousel-slide {
    min-width: 50%;
    flex: 0 0 50%;
  }

  .container {
    padding: 0px;
  }
}

@media (max-width: 992px) {
  .servicos-grid {
    grid-template-columns: 1fr;
  }

  .servicos-secundarios-bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .carousel-slide {
    min-width: 100%;
    flex: 0 0 100%;
  }

  .carousel-container {
    gap: 15px;
  }

  .depoimento {
    padding: 20px;
  }

  .depoimentos h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
}

.precisa-agendar .box {
  border: 1px solid var(--border-color);
  padding: 30px;
  border-radius: 8px;
  text-align: left;
  width: 100%;
}

.precisa-agendar .box .icon-container img {
  width: 32px;
  height: 32px;
  margin-top: 5px;
}

.precisa-agendar .text-container {
  display: flex;
  flex-direction: column;
}

.precisa-agendar .box h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--brand-primay);
  font-weight: 600;
}

.precisa-agendar .box p {
  font-size: 16px;
  margin-bottom: 10px;
  margin-top: 0;
}

.precisa-agendar .box a {
  color: var(--link-color);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 16px;
}

.precisa-agendar .box a:hover {
  text-decoration: underline;
}

.precisa-agendar .box .cuidado {
  color: var(--secondary-color);
  font-weight: 500;
  margin-top: 10px;
}

@media screen and (max-width: 990px) {
  header .container {
    flex-wrap: wrap;
  }

  header .main-navigation {
    display: none;
    width: 100%;
  }

  header .main-navigation.toggled {
    display: block;
  }

  header .container>.acessos-desktop {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .row {
    flex-direction: column;
  }

  .col-6 {
    width: 100%;
  }
}

/* Footer Styles */
.site-footer {
  background: linear-gradient(135deg, #557dae 0%, #3c597c 100%);
  color: white;
}

.footer-main {
  padding: 60px 0 40px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-col {
  flex: 1;
}

.footer-logo-col {
  flex: 0 0 200px;
}

.footer-info {
  flex: 0 0 20%;
  max-width: 20%;
  text-align: center;
}

.footer-logo-col {
  flex: 0 0 35%;
  max-width: 35%;
}

.footer-logo {
  margin-bottom: 25px;
}

.footer-logo-img {
  max-width: 120px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-logo-col .footer-address {
  margin-top: 0;
}

.footer-logo-col .footer-address p {
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-logo-col .footer-address a {
  color: #ffffff;
  text-decoration: none;
}

.footer-logo-col .footer-address a:hover {
  text-decoration: underline;
}

.footer-address p {
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.footer-address strong {
  color: white;
  font-weight: 600;
}

.footer-address a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-address a:hover {
  color: var(--secondary-color);
}

.footer-navigation {
  margin-bottom: 25px;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-menu li {
  margin-bottom: 12px;
}

.footer-menu a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: var(--secondary-color);
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
}

.footer-bottom {
  height: 85px;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  border-top: 1px solid white;
  padding: 0px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.copyright,
.developer {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.developer-link {
  color: #9b59b6;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.developer-link:hover {
  color: #8e44ad;
}

@media screen and (max-width: 990px) {
  .footer-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-logo-col,
  .footer-info,
  .footer-nav-social {
    flex: none;
    max-width: 100%;
    text-align: center;
  }

  .footer-navigation {
    margin-bottom: 20px;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .hero-sobre .row {
    flex-direction: column;
  }

  .somos-especialistas .row {
    flex-direction: column-reverse;
  }

  .depoimentos .row {
    flex-direction: column;
  }

  .col-4 {
    width: 100%;
  }

  .hero-servicos h1,
  .hero-servicos p {
    text-align: center;
  }

  .lista-servicos .row {
    flex-direction: column;
  }

  .por-que-fazer .row {
    flex-direction: column-reverse;
  }

  .por-que-fazer img {
    width: 100%;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background-color: var(--primary-color);
    padding: 20px;
    transition: left 0.3s ease;
    z-index: 1000;
  }

  .mobile-menu.toggled {
    left: 0;
  }

  .mobile-menu .close-btn {
    color: white;
    font-size: 24px;
    position: absolute;
    top: 20px;
    left: 20px;
  }

  .mobile-menu ul {
    list-style: none;
    padding: 50px 0 0 0;
    margin: 0;
  }

  .mobile-menu li {
    padding: 20px 0px;
  }

  .mobile-menu a {
    color: white;
    font-size: 18px;
  }

  .mobile-menu .acessos-mobile {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
  }

  .mobile-menu .acessos-mobile p {
    color: white;
    font-weight: 500;
  }

  .mobile-menu .acessos-mobile .button {
    display: block;
    margin-bottom: 0;
    text-align: center;
    width: 100%;
  }

  .bg-blue {
    background-color: #375a87;
  }

  .footer-bottom {
    height: auto;
  }

  .footer-bottom .container {
    flex-direction: column;
    gap: 25px;
  }

  .copyright,
  .developer {
    text-align: center;
  }
}

@media screen and (min-width: 991px) {

  .menu-toggle,
  .mobile-menu {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .hero .container {
    justify-content: center;
    text-align: center;
  }

  .hero h1,
  .hero p,
  .hero .button {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero .col-6 {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .about-us .row {
    flex-direction: column-reverse;
  }

  .about-us .col-6 {
    width: 100%;
  }

  .about-us img {
    margin-top: 30px;
  }

  .services .col-4,
  .services .col-8 {
    width: 100%;
  }

  .services .col-8 {
    padding: 0px;
  }

  .services .services-row {
    flex-direction: column !important;
  }

  .services .row .col-6 {
    width: 100%;
  }

  .contact .row {
    flex-direction: column;
  }

  .contact .col-6 {
    width: 100%;
  }

  .contact .map {
    margin-top: 30px;
  }

  .site-footer .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .site-footer .footer-col {
    text-align: center;
    max-width: 100%;
  }

  .site-footer .social-icons {
    justify-content: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 10px;
  }
}