/* ===== VARIABLES CSS ===== */
:root {
  --header-height: 3.5rem;
  
  /* Colors */
  --primary-color: #00A8CC;
  --primary-color-alt: #0088AA;
  --secondary-color: #FFFFFF;
  --text-color: #333333;
  --text-color-light: #666666;
  --body-color: #FAFAFA;
  --container-color: #FFFFFF;
  --border-color: #E5E5E5;
  --shadow-color: rgba(0, 0, 0, 0.1);
  
  /* Font and typography */
  --body-font: 'Lato', sans-serif;
  --title-font: 'Montserrat', sans-serif;
  --biggest-font-size: 3rem;
  --h1-font-size: 2.5rem;
  --h2-font-size: 2rem;
  --h3-font-size: 1.5rem;
  --normal-font-size: 1.1rem;
  --small-font-size: 0.9rem;
  --smaller-font-size: 0.8rem;
  
  /* Font weight */
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;
  
  /* Margins */
  --mb-0-25: 0.25rem;
  --mb-0-5: 0.5rem;
  --mb-0-75: 0.75rem;
  --mb-1: 1rem;
  --mb-1-25: 1.25rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-3: 3rem;
  
  /* z index */
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
}

/* Responsive typography */
@media screen and (max-width: 992px) {
  :root {
    --biggest-font-size: 2.5rem;
    --h1-font-size: 2rem;
    --h2-font-size: 1.75rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.75rem;
  }
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* Previne scroll horizontal */
}

body {
  margin: 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden; /* Previne scroll horizontal */
  width: 100%;
  max-width: 100vw; /* Garante que não exceda a largura da viewport */
}

h1, h2, h3, h4 {
  color: var(--text-color);
  font-weight: var(--font-semi-bold);
  font-family: var(--title-font);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

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

button {
  cursor: pointer;
  border: none;
  outline: none;
}

/* ===== REUSABLE CSS CLASSES ===== */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--mb-1-5);
  padding-right: var(--mb-1-5);
}

.section {
  padding: 5rem 0 2rem;
}

.section__title {
  font-size: var(--h2-font-size);
  color: var(--text-color);
  text-align: center;
  margin-bottom: var(--mb-3);
  font-family: var(--title-font);
  font-weight: var(--font-semi-bold);
}

.section__header {
  margin-bottom: var(--mb-2-5);
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: var(--font-medium);
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: var(--normal-font-size);
  border: 2px solid var(--primary-color);
}

.button:hover {
  background-color: var(--primary-color-alt);
  border-color: var(--primary-color-alt);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 168, 204, 0.3);
}

.button i {
  font-size: 1.2rem;
}

/* ===== HEADER & NAV ===== */
.header {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo-img {
  height: 40px;
  width: auto;
}

.nav__list {
  display: flex;
  column-gap: 2rem;
}

.nav__link {
  color: var(--text-color);
  font-weight: var(--font-medium);
  transition: color 0.3s ease;
  position: relative;
}

.nav__link:hover,
.nav__link.active-link {
  color: var(--primary-color);
}

.nav__link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav__link:hover::after,
.nav__link.active-link::after {
  width: 100%;
}

.nav__toggle,
.nav__close {
  display: none;
}

/* Mostrar toggle em mobile para debug */
@media screen and (max-width: 768px) {
  .nav__toggle {
    display: flex !important;
  }
}

/* ===== HOME ===== */
.home {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.home__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/home-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -1;
}

.home__container {
  position: relative;
  z-index: 1;
}

.home__content {
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
}

.home__title {
  font-size: var(--biggest-font-size);
  color: var(--secondary-color);
  margin-bottom: var(--mb-1-5);
  font-family: var(--title-font);
  font-weight: var(--font-bold);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.home__description {
  color: var(--secondary-color);
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-2-5);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  line-height: 1.5;
}

.home__button {
  font-size: var(--h3-font-size);
  padding: 1.25rem 2.5rem;
}

/* ===== SOBRE ===== */
.sobre {
  background-color: var(--container-color);
}

.sobre__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.sobre__text {
  font-size: var(--h3-font-size);
  color: var(--text-color-light);
  line-height: 1.8;
  text-align: justify;
}

.sobre__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.sobre__image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px var(--shadow-color);
  transition: transform 0.3s ease;
}

.sobre__image-wrapper:hover {
  transform: translateY(-5px);
}

.sobre__image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.sobre__image-wrapper:hover .sobre__image {
  transform: scale(1.05);
}

/* ===== SERVIÇOS ===== */
.servicos {
  background-color: var(--body-color);
}

.servicos__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: var(--mb-3);
}

.servicos__card {
  background-color: var(--container-color);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow-color);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.servicos__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 168, 204, 0.2);
  border-color: var(--primary-color);
}

.servicos__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-alt));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--mb-1-5);
  transition: transform 0.3s ease;
}

.servicos__card:hover .servicos__icon {
  transform: scale(1.1);
}

.servicos__icon i {
  font-size: 2rem;
  color: var(--secondary-color);
}

.servicos__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1);
  color: var(--text-color);
}

.servicos__description {
  color: var(--text-color-light);
  line-height: 1.6;
}

.servicos__cta {
  text-align: center;
}

/* ===== ANTES & DEPOIS ===== */
.antes-depois {
  background-color: var(--container-color);
}

.gallery__filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: var(--mb-2-5);
  flex-wrap: wrap;
}

.gallery__filter {
  background-color: transparent;
  color: var(--text-color-light);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  border: 2px solid var(--border-color);
  font-weight: var(--font-medium);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery__filter:hover,
.gallery__filter.active {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.gallery__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: var(--mb-2-5);
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px var(--shadow-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 168, 204, 0.3);
}

.gallery__image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 168, 204, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

.gallery__item:hover .gallery__image {
  transform: scale(1.1);
}

.gallery__overlay i {
  font-size: 2rem;
  color: var(--secondary-color);
}

.instagram__link {
  text-align: center;
}

.instagram__button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #E4405F, #C13584);
  color: var(--secondary-color);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: var(--font-medium);
  transition: all 0.3s ease;
  text-decoration: none;
}

.instagram__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196, 53, 132, 0.4);
}

/* ===== ESTRUTURA ===== */
.estrutura {
  background-color: var(--body-color);
}

.estrutura__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.estrutura__text {
  font-size: var(--h3-font-size);
  color: var(--text-color-light);
  line-height: 1.8;
  margin-bottom: var(--mb-2);
  text-align: justify;
}

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

.estrutura__feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: var(--container-color);
  border-radius: 10px;
  box-shadow: 0 5px 15px var(--shadow-color);
  transition: transform 0.3s ease;
}

.estrutura__feature:hover {
  transform: translateX(10px);
}

.estrutura__feature i {
  font-size: 1.5rem;
  color: var(--primary-color);
  width: 30px;
}

.estrutura__feature span {
  font-weight: var(--font-medium);
  color: var(--text-color);
}

.estrutura__image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 40px var(--shadow-color);
}

.estrutura__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.estrutura__image:hover .estrutura__img {
  transform: scale(1.05);
}

/* ===== DEPOIMENTOS ===== */
.depoimentos {
  background-color: var(--container-color);
}

.depoimentos__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.depoimento__card {
  background-color: var(--body-color);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow-color);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
}

.depoimento__card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-color);
  font-family: serif;
  line-height: 1;
}

.depoimento__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 168, 204, 0.2);
  border-color: var(--primary-color);
}

.depoimento__stars {
  margin-bottom: var(--mb-1);
}

.depoimento__stars i {
  color: #FFD700;
  font-size: 1.2rem;
  margin-right: 0.25rem;
}

.depoimento__text {
  color: var(--text-color-light);
  line-height: 1.8;
  margin-bottom: var(--mb-1-5);
  font-style: italic;
}

.depoimento__author {
  color: var(--primary-color);
  font-weight: var(--font-semi-bold);
}

/* ===== CONTATO ===== */
.contato {
  background-color: var(--body-color);
}

.contato__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contato__form {
  background-color: var(--container-color);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px var(--shadow-color);
}

.form__group {
  margin-bottom: var(--mb-1-5);
}

.form__input,
.form__textarea {
  width: 100%;
  background-color: var(--body-color);
  color: var(--text-color);
  padding: 1rem 1.5rem;
  border-radius: 10px;
  border: 2px solid var(--border-color);
  outline: none;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  transition: border-color 0.3s ease;
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--primary-color);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__button {
  width: 100%;
  justify-content: center;
  padding: 1.25rem;
  font-size: var(--h3-font-size);
}

.form__message {
  margin-top: var(--mb-1);
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  font-weight: var(--font-medium);
  display: none;
}

.form__message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form__message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.contato__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contato__info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--container-color);
  border-radius: 15px;
  box-shadow: 0 10px 30px var(--shadow-color);
  transition: transform 0.3s ease;
}

.contato__info-item:hover {
  transform: translateY(-5px);
}

.contato__info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-alt));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contato__info-icon i {
  font-size: 1.5rem;
  color: var(--secondary-color);
}

.contato__info-content h3 {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-0-5);
  color: var(--text-color);
}

.contato__info-content p,
.contato__info-content a {
  color: var(--text-color-light);
  line-height: 1.6;
}

.contato__info-content a {
  transition: color 0.3s ease;
}

.contato__info-content a:hover {
  color: var(--primary-color);
}

.contato__map {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow-color);
}

.contato__map iframe {
  border-radius: 15px;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: var(--z-tooltip);
}

.whatsapp-button {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-button i {
  font-size: 1.8rem;
  color: var(--secondary-color);
}

@keyframes pulse {
  0% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
  100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  }
}

/* ===== GALLERY MODAL ===== */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: var(--z-modal);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s ease;
}

.gallery-modal__content {
  position: relative;
  margin: auto;
  padding: 20px;
  width: 90%;
  max-width: 800px;
  top: 50%;
  transform: translateY(-50%);
}

.gallery-modal__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.gallery-modal__close {
  position: absolute;
  top: 10px;
  right: 25px;
  color: var(--secondary-color);
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.gallery-modal__close:hover {
  color: var(--primary-color);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== SCROLL BAR ===== */
::-webkit-scrollbar {
  width: 0.6rem;
  background-color: var(--border-color);
}

::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 0.5rem;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--primary-color-alt);
}

/* ===== MEDIA QUERIES ===== */
/* For large devices */
@media screen and (max-width: 992px) {
  .container {
    margin-left: var(--mb-1-25);
    margin-right: var(--mb-1-25);
  }
  
  .sobre__container,
  .estrutura__container,
  .contato__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .home__title {
    font-size: var(--h1-font-size);
  }
  
  .home__description {
    font-size: var(--normal-font-size);
  }
}

/* For medium devices */
@media screen and (max-width: 768px) {
  :root {
    --header-height: 3rem; /* Reduzindo altura do header em mobile */
  }
  
  /* ===== MENU HAMBURGER (Estado Fechado) ===== */
  .nav__toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: var(--z-fixed);
    position: relative;
  }
  
  .nav__hamburger {
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 1px;
  }
  
  .nav__toggle:hover .nav__hamburger {
    background-color: rgba(255, 255, 255, 0.8);
  }
  
  /* ===== MENU FULL-SCREEN (Estado Aberto) ===== */
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--primary-color); /* Fundo azul sólido da Zafira */
    padding: 4rem 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: var(--z-modal);
    overflow-y: auto;
  }
  
  .nav__menu.show-menu {
    right: 0;
  }
  
  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 2.5rem;
    margin-top: 2rem;
  }
  
  .nav__link {
    font-size: 1.5rem;
    font-weight: var(--font-medium);
    color: #ffffff;
    text-align: left;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 1px solid transparent;
  }
  
  .nav__link:hover {
    color: rgba(255, 255, 255, 0.8);
    border-bottom-color: rgba(255, 255, 255, 0.3);
    transform: translateX(10px);
  }
  
  .nav__link.active-link {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.5);
  }
  
  /* ===== ÍCONE DE FECHAR (X) ===== */
  .nav__close {
    display: block;
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2rem;
    color: #ffffff;
    cursor: pointer;
    z-index: var(--z-modal);
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  .nav__close:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
  }
  
  .nav__close-icon {
    font-size: 2rem;
    line-height: 1;
  }
  
  /* ===== AJUSTES GERAIS MOBILE ===== */
  .section {
    padding: 4rem 0 2rem;
  }
  
  .home {
    height: 100vh;
    padding-top: var(--header-height);
  }
  
  .home__bg {
    background-attachment: scroll;
  }
  
  .home__content {
    padding-top: 1rem;
  }
  
  .home__button {
    font-size: var(--normal-font-size);
    padding: 1rem 2rem;
    max-width: 300px;
    width: 100%;
    justify-content: center;
  }
  
  .servicos__container {
    grid-template-columns: 1fr;
  }
  
  .gallery__container {
    grid-template-columns: 1fr;
  }
  
  .gallery__filters {
    justify-content: center;
  }
  
  .sobre__images {
    grid-template-columns: 1fr;
  }
  
  .estrutura__features {
    gap: 0.75rem;
  }
  
  .estrutura__feature {
    padding: 0.75rem;
  }
  
  .depoimentos__container {
    grid-template-columns: 1fr;
  }
  
  .whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
  }
  
  .whatsapp-button {
    width: 55px;
    height: 55px;
  }
  
  .whatsapp-button i {
    font-size: 1.5rem;
  }
}

/* For small devices */
@media screen and (max-width: 576px) {
  .container {
    padding-left: var(--mb-1);
    padding-right: var(--mb-1);
  }
  
  .home__content {
    padding: 1rem 1rem 0 1rem; /* Ajustando padding para mobile pequeno */
  }
  
  .home__button {
    font-size: var(--normal-font-size);
    padding: 1rem 1.5rem;
    width: 100%;
    max-width: 280px;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .servicos__card,
  .depoimento__card {
    padding: 2rem 1.5rem;
  }
  
  .contato__form {
    padding: 2rem 1.5rem;
  }
  
  .gallery__filters {
    gap: 0.5rem;
  }
  
  .gallery__filter {
    padding: 0.5rem 1rem;
    font-size: var(--small-font-size);
  }
  
  .sobre__text,
  .estrutura__text {
    font-size: var(--normal-font-size);
  }
}

/* For extra small devices */
@media screen and (max-width: 350px) {
  .container {
    padding-left: var(--mb-0-75);
    padding-right: var(--mb-0-75);
  }
  
  .nav__logo-img {
    height: 35px;
  }
  
  .home__title {
    font-size: 2rem;
  }
  
  .home__content {
    padding: 1rem 0.5rem 0 0.5rem; /* Padding ainda menor para telas muito pequenas */
  }
  
  .home__button {
    font-size: var(--small-font-size);
    padding: 0.875rem 1.25rem;
    width: 100%;
    max-width: 260px;
    justify-content: center;
    text-align: center;
  }
  
  .section__title {
    font-size: 1.5rem;
  }
  
  .servicos__card,
  .depoimento__card,
  .contato__form {
    padding: 1.5rem 1rem;
  }
  
  .whatsapp-button {
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-button i {
    font-size: 1.3rem;
  }
}



body {
    overflow-x: hidden;
}

