/*============ RESET ============*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
}

/*========== VARIABLES ==========*/
/*========== VARIABLES ==========*/
:root {
  --header-height: 4.5rem;

  /* colors - Bege */
  --base-color: hsl(38, 30%, 65%);
  /* Bege principal */
  --base-color-second: hsl(38, 40%, 85%);
  /* Bege mais claro */
  --base-color-alt: hsl(38, 35%, 55%);
  /* Bege mais escuro */
  --title-color: hsl(38, 25%, 25%);
  /* Marrom escuro para títulos */
  --text-color: hsl(0 0% 46%);
  --text-color-light: hsl(0 0% 98%);
  --body-color: hsl(0 0% 98%);

  /* font size */
  --title-font-size: 1.875rem;
  --subtitle-font-size: 1rem;
  --title-font: 'Cormorant Garamond';
  --body-font: 'Manrope';
}

/*============= BASE ============*/
html {
  scroll-behavior: smooth;
}

body {
  font: 400 1rem var(--body-font), sans-serif;
  color: var(--text-color);
  background: var(--body-color);
  -webkit-font-smoothing: antialised;
}

.title {
  font: 700 var(--title-font-size) var(--title-font), sans-serif;
  color: var(--title-color);
  -webkit-font-smoothing: auto;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--title-font), serif;
}

.button {
  background-color: var(--base-color);
  color: var(--text-color-light);
  height: 3.5rem;
  display: inline-flex;
  align-items: center;
  padding: 0 2rem;
  border-radius: 0.25rem;
  font: 500 1rem var(--body-font), sans-serif;
  transition: background 0.3s;
}

.button:hover {
  background: var(--base-color-alt);
}

.divider-1 {
  height: 2px;
  background: linear-gradient(270deg,
      hsla(var(--hue), 36%, 57%, 1),
      hsla(var(--hue), 65%, 88%, 0.34));
}

.divider-2 {
  height: 2px;
  background: linear-gradient(-270deg,
      hsla(var(--hue), 36%, 57%, 1),
      hsla(var(--hue), 65%, 88%, 0.34));
}

/*============ LAYOUT ===========*/
.container {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.grid {
  display: grid;
  gap: 2rem;
}

.section {
  padding: calc(5rem + var(--header-height)) 0;
}

.section .title {
  margin-bottom: 1rem;
}

.section .subtitle {
  font-size: var(--subtitle-font-size);
}

.section header {
  margin-bottom: 4rem;
}

.section header strong {
  color: var(--base-color);
}

#header {
  border-bottom: solid 1px #e4e4e4;
  margin-bottom: 2rem;
  display: flex;

  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: var(--body-color);
  width: 100%;
}

#header.scroll {
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
}

/*============= LOGO ============*/
.logo {
  font: 700 1.31rem var(--title-font), sans-serif;
  color: var(--title-color);
}

.logo span {
  color: var(--base-color);
}

.logo-alt span {
  color: var(--body-color);
}

nav .logo img {
  height: 5rem;
  object-fit: contain;
  vertical-align: middle;
}

/*========== NAVIGATION =========*/
nav {
  height: var(--header-height);
  /* rem → root element */
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

nav ul li {
  text-align: center;
}

nav ul li a {
  transition: color 0.3s;
  position: relative;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--base-color);
}

nav ul li a::after {
  content: '';
  width: 0%;
  height: 2px;
  background: var(--base-color);

  position: absolute;
  left: 0;
  bottom: -1.5rem;

  transition: width 0.2s;
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

nav .menu {
  opacity: 0;
  visibility: hidden;
  top: -20rem;
  transition: 0.2s;
}

nav .menu ul {
  display: none;
}

/* Show menu */
nav.show .menu {
  opacity: 1;
  visibility: visible;

  background: var(--body-color);

  height: 100vh;
  width: 100vw;

  position: fixed;
  top: 0;
  left: 0;

  display: grid;
  place-content: center;
}

nav.show .menu ul {
  display: grid;
}

nav.show ul.grid {
  gap: 4rem;
}

/* Toggle menu */
.toggle {
  color: var(--base-color);
  font-size: 1.5rem;
  cursor: pointer;
}

nav .icon-close {
  visibility: hidden;
  opacity: 0;

  position: absolute;
  top: -1.5rem;
  right: 1.5rem;

  transition: 0.2s;
}

nav.show div.icon-close {
  visibility: visible;
  opacity: 1;
  top: 1.5rem;
}

/*============= HOME ============*/
.hero-horizontal {
  position: relative;
  width: 100%;
  height: 100vh; /* Ocupa a altura da tela toda */
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  margin-top: 0;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Escurece a imagem para o texto ser legível */
  z-index: 1;
}

.hero-text-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-text-content .title {
  color: white;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-text-content .button {
  background-color: var(--base-color);
  color: white;
}

/*============= ABOUT ===========*/
#about {
  background: white;
}

#about .container {
  margin: 0;
}

#about .image {
  position: relative;
}

#about .image::before {
  content: '';
  height: 100%;
  width: 100%;
  background: var(--base-color-second);
  position: absolute;
  top: -8.3%;
  left: -33%;
  z-index: 0;
}

#about .image img {
  position: relative;
}

#about .image img,
#about .image::before {
  border-radius: 0.25rem;
}

#about .text {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

/*========== SERVICES ===========*/
/*Colocada Por EU*/
#services {
  padding-top: 6rem;
  padding-bottom: 7rem;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

#services header {
  margin-bottom: 0.2rem;
  /* Reduz o espaço */
}

.services-cards-container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0.5rem;
}

.services-cards-container .service-card {
  flex: 1 1 0;
  min-width: 0;
}

.card {
  padding: 3.625rem 2rem;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.08);
  border-bottom: 0.25rem solid var(--base-color);
  border-radius: 0.25rem 0.25rem 0 0;
  border-radius: 0.25rem 0.25rem 0 0;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}

.card i {
  display: block;
  margin-bottom: 1.5rem;
  font-size: 5rem;
  color: var(--base-color);
}

.card .title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.service-card {
  position: relative;
  height: 250px;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
}

.service-card .service-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.service-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
  transition: background 0.3s ease;
}

.service-card:hover .service-card-overlay {
  background: rgba(0, 0, 0, 0.65);
}

.service-card-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 1rem;
  text-align: center;
}

.service-card-content .title {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  min-height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-content .button {
  margin-top: 0;
}

/* Força as imagens da secção de serviços a ficarem lado a lado */
.service-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  /* permite ajustar em ecrãs pequenos */
  margin-top: 2rem;
}

.service-images img {
  width: 30%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.service-images img:hover {
  transform: scale(1.03);
}



/* Services List */
.services-list {
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.service-category {
  text-align: center;
  padding: 2rem 1rem;
}

.service-category i {
  display: block;
  margin-bottom: 1rem;
  font-size: 3rem;
  color: var(--base-color);
}

.service-category .title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--title-color);
}

.service-category ul {
  text-align: left;
  display: inline-block;
}

.service-category ul li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  list-style-type: disc;
  color: var(--text-color);
}

/* Responsividade para services list e cards */
@media (min-width: 768px) {
  .services-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .services-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

/*======== TESTIMONIALS =========*/
#testimonials {
  background: white;
}

#testimonials .container {
  margin-left: 0;
  margin-right: 0;
}

#testimonials header {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  margin-bottom: 0;
}

#testimonials blockquote {
  padding: 2rem;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.08);
  border-radius: 0.25rem;
}

#testimonials blockquote p {
  position: relative;
  text-indent: 1.875rem;
  margin-bottom: 1.5rem;
  color: var(--title-color);
}

#testimonials blockquote p span {
  font: 700 3rem var(--title-font), serif;
  position: absolute;
  top: -0.875rem;
  left: -1.875rem;
  color: var(--base-color);
}

#testimonials cite {
  display: flex;
  align-items: center;
  font-style: normal;
}

#testimonials cite img {
  height: 2rem;
  width: 2rem;
  object-fit: cover;
  clip-path: circle();
  margin-right: 0.5rem;
}

/* Swiper */
.swiper-slide {
  height: auto;
  padding: 4rem 1rem;
}

.swiper-pagination-bullet-active {
  background: var(--base-color);
}

/*========== CONTACT ============*/
#contact .grid {
  gap: 4rem;
}

#contact p {
  margin-bottom: 2rem;
}

#contact .button i,
#contact ul li i {
  font-size: 1.5rem;
  margin-right: 0.625rem;
}

#contact ul.grid {
  gap: 2rem;
}

#contact ul li {
  display: flex;
  align-items: center;
}

#contact ul li i {
  color: var(--base-color);
}

/*=========== FOOTER ============*/
footer {
  background: var(--base-color); /* Restored beige background */
  color: var(--body-color) !important;
  position: relative;
  overflow: hidden;
}



footer.section {
  padding: 5rem 0 3rem; /* More breathing room */
}

/* Brand Section */
footer .logo {
  display: inline-block;
  margin-bottom: 0;
}

footer .logo img {
  height: 6rem;
  width: auto;
  object-fit: contain;
  margin-left: -1rem;
  /* Removed white filter so logo displays in its original colors */
}

footer .brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

footer .brand p {
  color: var(--body-color);
  opacity: 0.8;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Titles */
footer .title {
  color: var(--body-color) !important;
  font-size: 1.5rem !important;
  margin-bottom: 1.5rem !important;
  position: relative;
  display: inline-block;
}

footer .title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 40px;
  height: 2px;
  background: var(--body-color);
  border-radius: 2px;
  transition: width 0.3s ease;
}

footer .footer-links:hover .title::after,
footer .footer-contactos:hover .title::after,
footer .social:hover .title::after {
  width: 60px;
}

/* Links */
footer ul li a {
  color: var(--body-color) !important;
  transition: all 0.3s ease !important;
  opacity: 0.8;
  display: inline-block;
}

footer ul li a:hover {
  color: var(--title-color) !important;
  opacity: 1;
  transform: translateX(8px);
}

footer ul {
  gap: 0.8rem !important;
}

/* Contact Info */
footer .footer-contactos ul li {
  opacity: 0.8;
  line-height: 1.6;
  transition: opacity 0.3s;
}

footer .footer-contactos ul li:hover {
  opacity: 1;
}

/* Social Icons */
footer i {
  font-size: 1.2rem;
}

footer .social {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

footer .social > div {
  display: flex;
  gap: 1rem !important;
  flex-wrap: wrap;
}

footer .social a {
  transition: all 0.3s ease !important;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--body-color) !important;
}

footer .social a:hover {
  transform: translateY(-5px) !important;
  background: var(--title-color);
  border-color: var(--title-color);
  color: var(--body-color) !important;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

footer .social a:hover i, footer .social a:hover svg {
  color: var(--body-color) !important;
}

/* Back to home button */
.back-to-home {
  background: var(--base-color);
  color: var(--text-color-light);
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 99;
  font-size: 1.5rem;
  padding: 0.5rem;
  clip-path: circle();
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  transform: translateY(150%);
}

.back-to-home.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

/*======== MEDIA QUERYS =========*/
/*
  Para dispositivos com resolução > 1200px
*/
@media (min-width: 1200px) {
  .container {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
  }

  .section {
    padding: 10rem 0;
  }

  .section header,
  #testimonials header {
    max-width: 32rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .button {
    height: 3.125rem;
  }

  nav .menu {
    opacity: 1;
    visibility: visible;
    top: 0;
  }

  nav .menu ul {
    display: flex;
    gap: 2rem;
  }

  nav .menu ul li a.title {
    font: 400 1rem var(--body-font), sans-serif;
    -webkit-font-smoothing: antialised;
  }

  nav .menu ul li a.title.active {
    font-weight: bold;
    -webkit-font-smoothing: auto;
  }

  nav .icon-menu {
    display: none;
  }

  /* layout */
  main {
    margin-top: var(--header-height);
  }

  /* home */
  #home .container {
    grid-auto-flow: column;
    justify-content: space-between;
    margin: 0 auto;
  }

  #home .image {
    order: 1;
  }

  #home .text {
    order: 0;
    max-width: 24rem;
    text-align: left;
  }

  /* about */
  #about .container {
    grid-auto-flow: column;
    margin: 0 auto;
  }

  /* services */
  .cards {
    grid-template-columns: 1fr 1fr 1fr;
  }
  
  .services-cards-container .service-card {
    width: calc(25% - 1.125rem);
  }

  .card {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  /* testimonials */
  #testimonials .container {
    margin-left: auto;
    margin-right: auto;
  }

  /* contact */
  #contact .container {
    grid-auto-flow: column;
    align-items: center;
  }

  #contact .text {
    max-width: 25rem;
  }

  /* footer */
  footer.section {
    padding: 0.2rem 0;
  }

  footer .container {
    grid-auto-flow: column;
    align-items: center;
    justify-content: space-between;
  }

  footer .logo {
    font-size: 2.25rem;
  }
}

.swiper-slide img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}


/*
  Para dispositivos com resolução > 992px
*/
@media (min-width: 992px) {
  :root {
    --title-font-size: 2.25rem;
    --subtitle-font-size: 1.125rem;
  }

  /* layout */
  main {
    margin-top: var(--header-height);
  }

  /* home */
  #home .container {
    grid-auto-flow: column;
    justify-content: space-between;
    margin: 0 auto;
  }

  #home .image {
    order: 1;
  }

  #home .text {
    order: 0;
    max-width: 24rem;
    text-align: left;
  }

  /* about */
  #about .container {
    grid-auto-flow: column;
    margin: 0 auto;
  }

  /* services */
  .cards {
    grid-template-columns: 1fr 1fr 1fr;
  }

  /* testimonials */
  #testimonials .container {
    margin-left: auto;
    margin-right: auto;
  }

  /* contact */
  #contact .container {
    grid-auto-flow: column;
    align-items: center;
  }

  #contact .text {
    max-width: 25rem;
  }

  /* footer */
  footer.section {
    padding: 3.75rem 0;
  }

  footer .container {
    grid-auto-flow: column;
    align-items: center;
    justify-content: space-between;
  }

  footer .logo {
    font-size: 2.25rem;
  }
}

/*
  Para dispositivos com resolução < 992px
*/
@media (max-width: 991px) {

  /* services */
  .cards {
    grid-template-columns: 1fr 1fr;
  }
}

/*
  Para dispositivos com resolução < 762px
*/
@media (max-width: 762px) {

  /* services */
  .cards {
    grid-template-columns: 1fr;
  }
}
/* Dropdown Menu */
.dropdown {
  position: relative;
}

/* Force override any grid displays from mobile menu */
nav .menu ul.dropdown-menu {
  display: block !important;
  column-count: 2;
  column-gap: 1rem;
  position: absolute;
  top: calc(100% + 1.5rem); /* Pushes the box below the header */
  left: -50%;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  padding: 1rem;
  min-width: 460px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  border: 1px solid rgba(0,0,0,0.05);
}

/* Invisible bridge so hover isn't lost when moving mouse down to the menu */
nav .menu .dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1.5rem;
}

nav .menu .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

nav .menu ul.dropdown-menu li {
  margin: 0;
  break-inside: avoid;
  page-break-inside: avoid;
}

nav .menu ul.dropdown-menu a {
  display: block;
  padding: 0.35rem 1.4rem;
  color: var(--title-color);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
  position: relative;
  text-transform: none;
  border-radius: 4px;
  text-align: left;
}

nav .menu ul.dropdown-menu a::before {
  content: '• ';
  color: var(--base-color);
  margin-right: 0.4rem;
  font-size: 1.2rem;
  line-height: 0;
  position: relative;
  top: 2px;
}

/* Override the weird underline from the main nav links */
nav .menu ul.dropdown-menu a::after {
  display: none !important;
}

nav .menu ul.dropdown-menu a:hover {
  background: #faf7f2;
  color: var(--base-color);
  padding-left: 1.5rem;
}

/* Mobile adjustments */
@media (max-width: 991px) {
  nav.show ul.grid {
    gap: 2rem !important; /* Reduces huge gaps to fit dropdown items */
  }

  nav .menu ul.dropdown-menu {
    column-count: 1;
    min-width: auto;
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
    margin-top: 1rem;
    border: none;
    display: none !important; /* hidden by default on mobile */
  }
  
  nav .menu .dropdown:hover .dropdown-menu,
  nav .menu .dropdown:focus-within .dropdown-menu {
    display: block !important;
  }

  nav .menu ul.dropdown-menu li {
    margin-bottom: 0.3rem;
  }

  nav .menu ul.dropdown-menu a {
    padding: 0.2rem 0;
    font-size: 0.95rem;
    color: var(--text-color);
    text-align: left;
  }
  
  nav .menu ul.dropdown-menu a:hover {
    background: transparent;
    color: var(--base-color);
    padding-left: 0.5rem;
  }
}

/* Custom Overrides from feedback */

/* 1. Services cards layout: 6 columns (one line), no gaps, no borders */
.services-cards-container {
  display: grid !important;
  grid-template-columns: repeat(6, 1fr) !important;
  gap: 0 !important;
  max-width: 1200px !important;
  margin: 0 auto;
}
.service-card {
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  width: 100% !important;
  height: 400px !important; /* Restored taller height */
}


/* 2. Menu Pendente sem bullets e com layout limpo */
.dropdown-menu, .dropdown-menu li {
  list-style: none !important;
}
nav .menu ul.dropdown-menu a::before {
  content: none !important;
  display: none !important;
}
nav .menu ul.dropdown-menu a {
  padding-left: 1rem !important; /* adjust padding since bullet is gone */
}

/* Fix Hero text alignment to the left */
.hero-horizontal {
  justify-content: flex-start !important;
}
.hero-text-content {
  text-align: left !important;
  margin: 0 !important;
}
.hero-text-content h2, .hero-text-content p {
  text-align: left !important;
}

/* 3. Botão Agendar no hover */
a.button:hover,
#cta-agendar a.button:hover,
.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background-color: var(--base-color-alt) !important;
  color: var(--text-color-light) !important;
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}

/* 4. Footer alinhamento grid */
footer .container.grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
  gap: 2rem;
  align-items: start;
}

footer .brand p:last-of-type {
  font-size: 0.8rem;
  margin-top: 1rem;
}

@media (max-width: 992px) {
  footer .container.grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  /* Keeping it all on one line as requested, no grid override here */
}
@media (max-width: 576px) {
  footer .container.grid {
    grid-template-columns: 1fr;
  }
}
