@charset "UTF-8";
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

* {
  padding: 0;
  margin: 0;
  vertical-align: baseline;
  list-style: none;
  border: 0;
  box-sizing: border-box;
  scroll-margin-top: 85px;
  scroll-behavior: smooth;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1280px !important;
  }
}
/* --------------- Typography --------------- */
html {
  font-size: 15px;
}

@font-face {
  font-family: PlusJakartaSans-Regular;
  src: url("../fonts/PlusJakartaSans-Regular.ttf");
}
@font-face {
  font-family: PlusJakartaSans-Bold;
  src: url("../fonts/PlusJakartaSans-Bold.ttf");
}
body {
  font-family: PlusJakartaSans-Regular;
  line-height: 1.5;
  letter-spacing: 1px;
}

h1,
h3,
h4 {
  font-family: PlusJakartaSans-Bold;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.6rem;
  font-weight: bold;
}

h3 {
  font-size: 1.1rem;
}

h4 {
  font-size: 1rem;
}

p {
  font-size: 1rem;
}

a {
  font-family: PlusJakartaSans-Bold;
  font-weight: 500;
}

/* --------------- Colors --------------- */
:root {
  --swiper-theme-color: #ffffff !important;
  --white: #ffffff;
  --black: #000000;
  --backgroundColor: #ffffff;
  --primaryColor: #0c57a0;
  --secondaryColor: #ffed00;
  --textColor: #333333;
  --primaryGradientColor: #f8f8f8;
  --secondaryGradientColor: #f8f8f8eb;
  --gray: #cececec1;
  --blueDetail: #007bff;
  --btn-color-1: #0c57a0;
  --btn-color-2: #ffed00;
  /* testimonials */
  --yellowStar: #ffc107;
  --job: #666;
}

body {
  background-color: var(--backgroundColor);
}

h1,
h2,
h3,
h4,
p,
label {
  color: var(--textColor);
}

.h1 {
  color: var(--white);
  font-size: 2rem;
}

/* Text color for containers that have a gradient background */
.container-color h2,
.container-color h3,
.container-color h4,
.container-color p {
  color: var(--textColor) !important;
}

/* Header Navigation Color */
nav a {
  color: var(--white);
}

/* --------------- Mobile Nav Buttons --------------- */
#hamburger,
#close {
  filter: brightness(0) saturate(100%) invert(83%) sepia(87%) saturate(4126%) hue-rotate(1deg) brightness(104%) contrast(103%);
}

/* Swiper text color */
.swiper h1,
.swiper p {
  color: var(--white);
}

/* Button Text Color */
.button.btn-color-1 {
  color: var(--white);
}
.button.btn-color-2 {
  color: var(--textColor);
}

/* Footer Colors */
footer h3,
footer h4,
footer p,
footer a {
  color: var(--white);
}
footer .copyright {
  background-color: var(--backgroundColor);
}
footer .copyright p,
footer .copyright a {
  color: var(--black);
}

/* --------------- Utility SCSS --------------- */
/* General styles for global elements */
* {
  box-sizing: border-box;
  margin: 0;
  scroll-margin-top: 85px;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

/* --------------- Layout Utilities --------------- */
.container {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 1440px;
  padding: 50px;
  gap: 40px;
}

.container-color {
  background: linear-gradient(-25deg, var(--primaryGradientColor), var(--secondaryGradientColor));
}
.container-color.inverted {
  background: linear-gradient(-25deg, var(--secondaryGradientColor), var(--primaryGradientColor));
}

/* --------------- Text and Heading Utilities --------------- */
.heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}
.heading p {
  max-width: 900px;
}

hr {
  max-width: 100px;
  border: 0;
  background-color: var(--primaryColor);
  height: 3px;
  width: 100%;
}

.hr-yellow {
  max-width: 100px;
  border: 0;
  background-color: var(--secondaryColor);
  height: 3px;
  width: 100%;
}

/* ---------------  Buttons ---------------  */
.button {
  padding: 12px;
  text-decoration: none;
  border-radius: 10px;
  transition: 0.3s transform;
}
.button:hover {
  transform: scale(1.1);
}
.button.btn-color-1 {
  background-color: var(--btn-color-1);
  color: white;
}
.button.btn-color-2 {
  background-color: var(--btn-color-2);
}

.buttons {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

/* WhatsApp */
.button_flutuante {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #53AB79;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease, transform 0.2s ease;
}

.button_flutuante:hover {
  background: #429365;
  transform: scale(1.1);
}

.button_flutuante span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.button_flutuante svg {
  width: 32px;
  height: 32px;
}

/* --------------- Header  --------------- */
header {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: var(--primaryColor);
  box-shadow: 0px 0px 5px rgba(126, 126, 126, 0.534);
}
header .header-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  height: 90px;
  padding: 1.5rem;
  width: 100%;
  align-items: center;
}
header .header-content .header-logo {
  display: block;
  font-size: 0;
}
header .header-content .header-logo img {
  max-width: 130px;
  object-fit: contain;
}
header .header-content nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  text-align: center;
  /* Novos estilos para ul e li */
}
header .header-content nav .nav-list {
  display: flex;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}
header .header-content nav .nav-list li a {
  text-decoration: none;
  transition: color 0.3s ease;
}
header .header-content nav .nav-list li a:hover {
  color: var(--secondaryColor);
}
header .header-content nav .socials {
  display: flex;
  flex-direction: row;
  gap: 15px;
  border-left: 2px solid var(--secondaryColor);
  padding-left: 30px;
}
header .header-content nav .socials a {
  font-size: 17px;
  transition: color 0.3s ease;
}
header .header-content nav .socials a:hover {
  color: var(--secondaryColor);
}
header .header-content .nav-item.active {
  color: var(--secondaryColor);
}

/* --------------- Mobile Nav Buttons --------------- */
#hamburger,
#close {
  display: none;
  width: 30px;
  cursor: pointer;
}

/* --------------- Media Queries --------------- */
@media only screen and (max-width: 992px) {
  header .header-content nav {
    gap: 20px;
  }
  header .header-content nav .nav-list li a {
    font-size: 0.9rem;
  }
  header .header-content nav .socials {
    padding-left: 20px;
  }
}
@media only screen and (min-width: 769px) {
  header .header-content nav {
    display: flex !important;
  }
}
@media only screen and (max-width: 769px) {
  header .header-content nav {
    display: none;
    background: var(--primaryColor);
    position: fixed;
    flex-direction: column;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 10;
    gap: 15px;
  }
  header .header-content nav .nav-list {
    flex-direction: column;
    gap: 20px;
  }
  header .header-content nav .nav-list li a {
    font-size: 1.2rem;
  }
  header .header-content nav .socials {
    border: none;
    padding: 0;
    gap: 20px;
    margin: 10px 0;
  }
  header .header-content nav .socials i {
    font-size: 24px;
  }
  #hamburger,
  #close {
    display: block;
  }
  #close {
    position: absolute;
    top: 30px;
    right: 20px;
  }
  h1 {
    font-size: 1.9rem;
  }
}
/* MOBILE PEQUENO Estilos para telas menores ou iguais a 600px. */
@media only screen and (max-width: 600px) {
  * {
    scroll-margin-top: 70px;
  }
  header .header-content {
    height: 70px;
  }
  #close {
    top: 20px;
  }
  .container {
    padding: 20px;
  }
}
/* --------------- Header swiper --------------- */
.swiper-header {
  height: 80vh;
  user-select: none;
}
.swiper-header .swiper-slide {
  background-position: center;
  background-size: cover;
}
.swiper-header .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.swiper-header .swiper-content {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  gap: 20px;
  padding: 0 55px;
}
.swiper-header .swiper-content h1,
.swiper-header .swiper-content p {
  max-width: 600px;
}

/* --------------- Media Queries --------------- */
@media only screen and (max-width: 768px) {
  .swiper .swiper-content {
    padding: 40px;
    height: 100%;
    min-height: 500px;
  }
  .swiper img {
    filter: brightness(0.5);
  }
  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 15px !important;
  }
}
/* --------------- Introduction --------------- */
.grid-col-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 40px;
}
.grid-col-2 .grid-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: start;
}
.grid-col-2 .grid-item img {
  width: 100%;
  border-radius: 10px;
}

/* --------------- Media Queries --------------- */
@media only screen and (max-width: 1200px) {
  .grid-col-2 {
    gap: 25px;
  }
}
@media only screen and (max-width: 768px) {
  .grid-col-2,
  .service-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .service-grid .service-box {
    aspect-ratio: unset;
  }
}
/* --------------- Services --------------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-grid .service-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  background-color: var(--white);
  padding: 25px;
  text-align: center;
  align-items: center;
  aspect-ratio: 1/1;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: border 0.3s ease;
  border: 2px solid transparent;
}
.service-grid .service-box i {
  font-size: 90px;
  transition: color 0.4s ease;
}
.service-grid .service-box img {
  width: 90px;
  display: block;
  height: auto;
}
.service-grid .service-box:hover {
  border: 2px solid var(--gray);
}

/* Ajuste para telas menores que 1350px */
@media only screen and (max-width: 1350px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* Ajuste para telas menores que 992px */
@media only screen and (max-width: 992px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Ajuste para telas menores que 768px */
@media only screen and (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-grid .service-box {
    aspect-ratio: unset;
  }
}
/* Ajuste para telas menores que 600px */
@media only screen and (max-width: 600px) {
  .service-grid {
    gap: 10px;
  }
  .service-box {
    padding: 15px;
  }
}
/* --------------- Structure --------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  cursor: pointer;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.gallery-item:hover {
  transform: scale(1.03);
  border-radius: 10px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 10px;
}
.gallery-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.gallery-item .overlay i {
  font-size: 3rem;
  color: var(--white);
  transform: scale(0.8);
  transition: transform 0.3s ease, color 0.3s ease;
}
.gallery-item:hover .overlay {
  opacity: 1;
}
.gallery-item:hover .overlay i {
  transform: scale(1);
  color: var(--secondaryColor);
}

/* --------------- Media Queries --------------- */
@media only screen and (max-width: 1200px) {
  .grid-col-2 {
    gap: 25px;
  }
}
@media only screen and (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 600px) {
  .gallery-grid {
    gap: 10px;
  }
  .gallery-item img {
    filter: brightness(0.9);
  }
}
/* --------------- Structure Modal --------------- */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: var(--secondaryColor);
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  z-index: 1001;
}

.close:hover,
.close:focus {
  color: red;
  text-decoration: none;
  cursor: pointer;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  color: var(--secondaryColor);
  font-weight: bold;
  font-size: 30px;
  cursor: pointer;
  user-select: none;
  transform: translateY(-50%);
  transition: 0.3s;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

/* --------------- Media Queries --------------- */
@media only screen and (min-width: 768px) and (max-width: 1025px) {
  .modal-content {
    max-width: 85%;
    max-height: 50vh;
    top: 32%;
    left: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .modal-content {
    max-width: 95%;
    max-height: 95vh;
  }
  .close {
    top: 10px;
    right: 20px;
    font-size: 30px;
  }
}
.testimonials {
  padding: 20px 0;
  background-color: #f8f8f8;
}
.testimonials .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.testimonials .section-header {
  text-align: center;
}
.testimonials .section-header .title {
  font-size: 36px;
  font-weight: 700;
  text-transform: capitalize;
  color: #333;
}
.testimonials-content {
  position: relative;
}
.testimonials-slider {
  overflow: hidden;
}
.testimonials-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  min-height: 420px;
  max-height: 420px;
  overflow: hidden;
}
.testimonials-item .info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}
.testimonials-item .info img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}
.testimonials-item .info .text-box .name {
  font-size: 18px;
  font-weight: 600;
  color: var(--textColor);
  margin-bottom: 5px;
}
.testimonials-item .info .text-box .job {
  font-size: 14px;
  color: var(--job);
}
.testimonials-item .rating {
  margin-bottom: 15px;
}
.testimonials-item .rating i {
  color: var(--yellowStar);
  font-size: 18px;
  margin: 0 2px;
}
.testimonials-item p {
  margin-top: 10px;
  color: var(--textColor);
  line-height: 1.6;
  overflow: hidden;
  max-height: 190px;
}
.testimonials .swiper-pagination {
  position: static;
  margin-top: 30px;
}
.testimonials .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #ccc;
  opacity: 1;
  margin: 0 5px;
}
.testimonials .swiper-pagination-bullet-active {
  background-color: var(--blueDetail);
}
.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  top: 50%;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #333;
}
.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
  font-size: 18px;
}
.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  z-index: 1;
}
.testimonials .swiper-button-prev {
  left: -20px;
}
.testimonials .swiper-button-next {
  right: -20px;
}

/* --------------- Media Queries --------------- */
@media (min-width: 769px) and (max-width: 1024px) {
  .testimonials .section-header .title {
    font-size: 32px;
  }
  .testimonials-item {
    padding: 30px;
  }
  .testimonials .swiper-button-prev,
  .testimonials .swiper-button-next {
    display: none;
  }
  .testimonials p {
    padding: 15px;
  }
}
@media (max-width: 768px) {
  .testimonials .section-header .title {
    font-size: 28px;
  }
  .testimonials-item {
    padding: 20px;
  }
  .testimonials .swiper-button-prev,
  .testimonials .swiper-button-next {
    display: none;
    cursor: grab;
  }
  .testimonials p {
    padding: 10px;
  }
}
/* --------------- Contact --------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 3fr 9fr;
  max-width: 900px;
  width: 100%;
  gap: 40px;
  margin: 0 auto;
}
.contact-grid .contact-details {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}
.contact-grid .contact-details .contact-detail {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: start;
  align-items: center;
}
.contact-grid .contact-details .contact-detail i {
  font-size: 27px;
  color: var(--black);
}
.contact-grid .contact-details .contact-detail .contact-detail-info {
  display: flex;
  flex-direction: column;
}

/* --------------- Contact Form  --------------- */
/* Estilizar mensagens de erro específicas */
.wpcf7-not-valid-tip {
  padding: 3px;
  margin-top: -17px;
  color: #dc3232; /* Red */
  font-size: 13px !important;
  font-weight: normal;
  display: block;
}

/* Mensagem de erro geral */
.wpcf7-validation-errors {
  background-color: #ffe5e5;
  border: 2px solid red;
  color: red;
  padding: 10px;
  border-radius: 5px;
}

.screen-reader-response {
  display: none;
}

.wpcf7-form.sent .wpcf7-response-output {
  color: #4CAF50;
  border: 2px solid #74c477;
  background-color: #e8f5e9;
  padding: 10px;
  margin: 20px 0;
  display: block;
  border-radius: 10px;
}

form {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  align-items: flex-start;
  /* Estilos de input e textarea */
}
form label {
  margin-bottom: 5px;
  font-weight: bold;
}
form input:not([type=submit]),
form textarea {
  width: 100%;
  padding: 13px;
  margin-bottom: 15px;
  margin-top: 5px;
  font-size: 1rem;
  border: none;
  background-color: rgb(241, 241, 241);
  border-radius: 5px;
  outline: none;
  font-family: PlusJakartaSans-Regular;
}
form input:not([type=submit]):focus,
form textarea:focus {
  border: 2px solid var(--yellowStar);
}
form input:not([type=submit]):active,
form textarea:active {
  border: 2px solid var(--yellowStar);
}
form button {
  font-weight: bold;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
form button:focus, form button:active {
  outline: none; /* Remove o contorno padrão */
  border: 2px solid var(--primaryColor); /* Foco e ativo específico para o botão */
  box-shadow: none; /* Remove sombras */
}

/* --------------- Media Queries --------------- */
@media only screen and (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
/* --------------- Leaflet map --------------- */
#map {
  height: 450px;
  z-index: 1;
  max-width: 100%;
}

.leaflet-right {
  display: none;
}

/* --------------- Footer --------------- */
footer {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  min-height: 450px;
}
footer .footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.4);
}
footer .footer-content {
  flex: 1;
  padding: 5rem 1.5rem;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
}
footer .footer-content .socials i {
  font-size: 1.4rem;
  margin-right: 10px;
}
footer .footer-content .footer-logo {
  max-width: 150px;
}
footer .footer-content .socials {
  border: none;
  padding: 0;
}
footer .footer-content .socials a {
  transition: color 0.3s ease;
}
footer .footer-content .socials a:hover {
  color: var(--secondaryColor);
}
footer .footer-content .footer-content-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
footer .footer-content .footer-content-col .footer-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .footer-content .footer-content-col .footer-info a {
  text-decoration: none;
  font-weight: 200;
}
footer .copyright {
  text-align: center;
  width: 100%;
  padding: 20px;
  font-weight: 500;
}

/* --------------- Media Queries --------------- */
@media (min-width: 768px) and (max-width: 1024px) {
  footer .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 767px) {
  footer .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 20px;
  }
}
@media (max-width: 600px) {
  footer .footer-content {
    padding: 20px 10px;
    gap: 15px;
  }
}

/*# sourceMappingURL=style.css.map */
