:root {
  --white: #ffffff;
  --red: #df0109;
  --blue: #03063c;
  --gray-dark: #4b5563;
  --gray-light: #666666;
  --gray-lighter: #999999;
}

html,
body {
  overflow-x: hidden;
}

* {
  margin: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;

  text-decoration: none;
  outline: none;
  max-width: 100%;
  padding: 0;
  scroll-behavior: smooth;
}

.hero {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 80px;
  max-height: auto;
}

.hero-logo {
  width: 200px;
}

.hero-nav {
  width: 50%;
}

.hero-items {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.hero-items li {
  cursor: pointer;
  position: relative;
}

.hero-items li a {
  color: var(--gray-dark);
}

.hero-items li a:hover {
  color: var(--gray-lighter);
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 80px;
  flex-grow: 1;
  /* make it a containing block and clip overflowing image so that
     large images don't increase the section height */
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #03063c 65%, #df0109 100%);
}

.hero-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-text-title {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.hero-text-title h1 {
  font-size: 6em;
  color: white;
}

.hero-text-title h1 span {
  color: #fca5a5;
}

.hero-text-subtitle {
  width: 90%;
}

.hero-text-subtitle p {
  font-size: 20px;
  color: white;
  line-height: 1.5;
}

.hero-contact {
  width: 100%;
  display: flex;
  align-items: center;
}

.hero-contact button {
  background-color: #22c55e;
  border: none;
  padding: 15px 25px;
  border-radius: 40px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-contact button:hover {
  background-color: #16a34a;
}

.hero-contact button a {
  color: white;
}

.hero-contact button a i {
  font-size: 18px;
}

.hero-container-left {
  width: 40%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden; /* IMPORTANTE */
}

.hero-container-left img {
  width: auto;
  display: flex;
  align-items: flex-end;
  max-width: 600px;
  height: auto; /* nunca ultrapassa a viewport */
  object-fit: contain;
}

.sobre {
  width: 100%;
  max-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px;
}

.sobre-text {
  max-width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-right: 50px;
}

.sobre-category {
  background-color: #e8ecf7;
  max-width: fit-content;
  padding: 5px 10px;
  border-radius: 20px;
}

.sobre-category span {
  color: var(--blue);
  font-size: 15px;
}

.sobre-title {
  font-size: 30px;
  margin-bottom: 40px;
}

.sobre-container-paragraph {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sobre-paragraph {
  width: 100%;
}

.sobre-paragraph p {
  color: var(--gray-light);
  line-height: 1.5;
  font-size: 25px;
  text-align: justify;
}

.sobre-container-stats {
  width: 100%;
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.sobre-stats-cond {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  background-color: #e8ecf7;
  padding: 20px;
  border-radius: 8px;
}

.sobre-stats-cond h2 {
  font-size: 30px;
  color: var(--blue);
}

.sobre-stats-cond span {
  color: var(--gray-dark);
  font-size: 16px;
}

.sobre-stats-unity {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  background-color: #f7f4e8;
  padding: 20px;
  border-radius: 8px;
}

.sobre-stats-unity h2 {
  font-size: 30px;
  color: #c5b522;
}

.sobre-stats-unity span {
  color: var(--gray-dark);
  font-size: 16px;
}

.sobre-stats-years {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  background-color: #f7e8e8;
  padding: 20px;
  border-radius: 8px;
}

.sobre-stats-years h2 {
  font-size: 30px;
  color: var(--red);
}

.sobre-stats-years span {
  color: var(--gray-dark);
  font-size: 16px;
}

.sobre-image {
  width: 50%;
  display: flex; /* Centraliza horizontal e vertical */
  justify-content: center;
  align-items: center;
  padding: 20px;

  /* Remove limites antigos */
  max-height: none;
}

/* LOGO DA EMPRESA */
.sobre-image img {
  width: 100%;
  max-width: 750px; /* Limite elegante, ajustável */
  height: auto;
  object-fit: contain;
}

/* ===== EQUIPE SLIDER ===== */
.equipe-slider {
  padding: 100px 0;
  overflow: hidden;
}

.equipe-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
.equipe-header {
  text-align: center;
  margin-bottom: 80px;
}

.equipe-category {
  background-color: #e8ecf7;
  padding: 6px 14px;
  border-radius: 20px;
  color: var(--blue);
  font-size: 15px;
  display: inline-block;
  margin-bottom: 12px;
}

.equipe-header h2 {
  font-size: 2.6em;
  margin-bottom: 15px;
  color: var(--dark);
}

.equipe-header p {
  font-size: 18px;
  color: var(--gray-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== CONTAINER FIXO DOS SLIDES ===== */
.equipe-slides {
  position: relative;
  min-height: 560px; /* trava a animação */
  display: flex;
  align-items: center;
}

/* ===== SLIDE ===== */
.equipe-slide {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  gap: 60px;

  opacity: 0;
  transform: translateX(100%);
  transition:
    transform 0.8s ease,
    opacity 0.8s ease;

  will-change: transform;
}

.equipe-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.equipe-slide.exit {
  transform: translateX(-100%);
  opacity: 0;
}

/* Layout alternado */
.layout-text-left {
  flex-direction: row;
}

.layout-text-right {
  flex-direction: row-reverse;
}

/* ===== TEXTO ===== */
.equipe-text {
  flex: 1;
}

.equipe-text h3 {
  font-size: 2.2em;
  color: var(--blue);
  margin-bottom: 5px;
}

.equipe-cargo {
  color: var(--red);
  font-weight: 600;
  font-size: 14px;
}

.equipe-text ul {
  margin-top: 20px;
  font-size: 20px;
  color: var(--gray-light);
  max-width: 580px;
  text-align: justify;
}

.equipe-text ul li {
  margin-bottom: 10px;
}

/* ===== FOTO (PADRONIZADA) ===== */
.equipe-photo {
  flex: 1;
  max-width: 450px;
  height: 550px;

  display: flex;
  align-items: flex-start;
  justify-content: center;

  overflow: hidden;
  object-position: top;
}

.equipe-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top;
  background-color: #f1f3f6;
  border-radius: 18px;
}

/* ===== BOTÃO ===== */
.equipe-next {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);

  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;

  background: var(--blue);
  color: #fff;
  font-size: 22px;
  cursor: pointer;

  z-index: 20;
  transition: background 0.3s;
}

.equipe-next:hover {
  background: #1e3a8a;
}

.servicos {
  width: 100%;
  padding: 80px 0;
  background-color: #f9fafb;
}

.container-servicos {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.servicos-category {
  background-color: #f7e8e8;
  display: flex;
  align-items: center;
  max-width: fit-content;
  border-radius: 20px;
  padding: 5px 10px;
  margin-bottom: 15px;
  color: var(--red);
  font-size: 15px;
}

.servicos-title {
  text-align: center;
  margin-bottom: 50px;
  width: 100%;
}

.servicos-title h1 {
  font-size: 2.8em;
  font-weight: 700;
  margin-bottom: 10px;
}

.servicos-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  justify-items: center;
}

.servico-card {
  width: 100%;
  max-width: 330px;
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  cursor: pointer;
}

.servico-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-color: var(--red);
}

.servico-card-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f7e8e8;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.servico-card-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.servico-card:hover .servico-card-icon {
  transform: scale(1.1);
}

.servico-card p {
  color: var(--gray-light);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  margin: 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

/* --- Seção de Certificação --- */
#certificacoes {
  padding: 30px 0;
}

.certificacoes-category {
  background-color: #f7e8e8;
  max-width: fit-content;
  border-radius: 20px;
  padding: 5px 10px;
  color: var(--red);
}

.titulo-secao {
  font-size: 2.5em;
  margin-top: 20px;
  margin-bottom: 50px;
  font-weight: 700;
}

/* --- Card da Certificação --- */
.card-certificacao {
  display: inline-block; /* Permite centralizar o bloco */
  background-color: #fff;
  border-radius: 12px;
  padding: 60px;
  margin: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Sombra suave e elegante */
  max-width: 500px;
  transition: transform 0.3s ease-in-out;
  border-top: 5px solid #ffc107; /* Linha de destaque na cor da estrela/ouro */
}

.card-certificacao:hover {
  transform: translateY(-5px); /* Efeito de elevação ao passar o mouse */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.icone-certificacao {
  font-size: 3em;
  color: #ffc107; /* Cor de destaque (amarelo/ouro) */
  margin-bottom: 15px;
}

.nome-certificacao {
  font-size: 2em;
  color: #007bff; /* Uma cor institucional que passe seriedade */
  margin-bottom: 10px;
  font-weight: 600;
}

.descricao-certificacao {
  color: #666;
  font-size: 1.3em;
  line-height: 1.6;
  margin-bottom: 25px;
}

.btn-detalhes {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s;
}

.btn-detalhes:hover {
  background-color: #0056b3;
}

.condominios-gerenciados {
  width: 100%;
  padding: 80px 0;
  background-color: #f9fafb;
}

.condominios-gerenciados .container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.cond-title {
  text-align: center;
  margin-bottom: 50px;
}

.cond-title .condominios-category {
  background-color: #e8ecf7;
  max-width: fit-content;
  border-radius: 20px;
  padding: 5px 10px;
  margin-bottom: 10px;
  display: inline-block;
  color: var(--blue);
}

.cond-title h2 {
  font-size: 2.8em;
}

.cond-title p {
  font-size: 18px;
  color: #666;
  margin-top: 10px;
}

/* ====== GRID DESKTOP — 3 colunas ====== */
.cond-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 colunas */
  gap: 30px;
  justify-items: center;
}

/* CARD */
.cond-card {
  width: 100%;
  max-width: 330px;
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: 0.3s ease;
}

.cond-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.cond-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.cond-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #03063c;
}

.cond-card p {
  color: #555;
  font-size: 16px;
  line-height: 1.5;
}

/* ====== SEÇÃO DIFERENCIAIS ====== */
.diferenciais {
  width: 100%;
  padding: 80px 0;
}

.container-diferenciais {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.diferenciais-header {
  text-align: center;
  margin-bottom: 60px;
  width: 100%;
}

.diferenciais-category {
  background-color: #e8ecf7;
  display: inline-flex;
  align-items: center;
  max-width: fit-content;
  border-radius: 20px;
  padding: 5px 10px;
  margin-bottom: 15px;
  color: var(--blue);
  font-size: 15px;
}

.diferenciais-header h2 {
  font-size: 2.8em;
  font-weight: 700;
  margin-bottom: 15px;
}

.diferenciais-header p {
  font-size: 18px;
  color: var(--gray-light);
  max-width: 600px;
  margin: 0 auto;
}

.diferenciais-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 100%;
  flex-wrap: wrap;
}

.diferencial-card {
  width: 100%;
  max-width: 450px;
  flex: 1;
  min-width: 280px;
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid #f0f0f0;
}

.diferencial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-color: var(--blue);
}

.diferencial-card.destaque {
  background: linear-gradient(135deg, #e8ecf7 0%, #fff 100%);
}

.diferencial-card.destaque:hover {
  background: linear-gradient(135deg, #d0d8e7 0%, #f0f4fa 100%);
}

.diferencial-card .icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e8ecf7;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.diferencial-card .icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.diferencial-card:hover .icon {
  transform: scale(1.1);
}

.diferencial-card h3 {
  font-size: 20px;
  color: var(--blue);
  margin: 0;
  font-weight: 600;
}

.diferencial-card p {
  color: var(--gray-light);
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.quanto-custa {
  width: 100%;
  padding: 80px 0;
  background-color: #f9fafb;
}

.container-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.quanto-custa-title {
  text-align: center;
  margin-bottom: 50px;
}

.quanto-custa-title .quanto-custa-category {
  background-color: #e8ecf7;
  max-width: fit-content;
  border-radius: 20px;
  padding: 5px 10px;
  margin-bottom: 10px;
  color: var(--blue);
}

.quanto-custa-title h2 {
  font-size: 2.8em;
  margin-top: 10px;
}

.quanto-custa-title p {
  font-size: 18px;
  color: #666;
  margin-top: 10px;
}

.form-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}

label.required::after {
  content: " *";
  color: red;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  outline: none;
}

.contact-form button {
  background-color: var(--gray-dark);
  color: white;
  border: none;
  padding: 15px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #374151;
}

.form-message {
  margin-top: 12px;
  font-weight: 500;
}

.footer {
  width: 100%;
  height: auto;
  background-color: #1e2836;
}

.container-footer {
  width: 100%;
  padding: 50px 5%;
  gap: 3em;
  display: flex;
  flex-direction: column;
}

.footer-infos {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 4em;
}

.footer-info-about {
  width: 25%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-info-about p {
  color: #9ca3af;
  line-height: 1.5;
  text-align: justify;
}

.footer-info-contact {
  width: 25%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-info-contact h3 {
  color: var(--white);
  margin-bottom: 1em;
}

.footer-info-contact span {
  color: #9ca3af;
  gap: 20px;
}

.footer-info-info {
  width: 25%;
  display: flex;
  flex-direction: column;
}

.footer-info-info h3:first-child {
  color: var(--white);
  margin-bottom: 1em;
}

.footer-info-info h3:nth-child(2) {
  color: var(--white);
  margin-bottom: 5px;
}

.footer-info-info h3:last-of-type {
  color: var(--white);
  margin-bottom: 5px;
}

.footer-info-info span:first-of-type {
  color: #9ca3af;
  margin-bottom: 1em;
}

.footer-info-info span:last-of-type {
  color: #9ca3af;
}

.footer-info-address {
  width: 25%;
  display: flex;
  flex-direction: column;
}

.footer-info-address h3 {
  color: var(--white);
  margin-bottom: 1em;
}

.container-address {
  width: 70%;
  display: flex;
  gap: 10px;
}

.container-address span {
  color: #9ca3af;
}

.footer-division {
  width: 100%;
  height: 1px;
  background-color: var(--gray-dark);
}

.footer-others {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-other-symbol span {
  color: #9ca3af;
  font-size: 14px;
}

.footer-other-socialmedia {
  display: flex;
  gap: 15px;
}

.footer-other-socialmedia a i {
  color: #9ca3af;
  font-size: 20px;
  cursor: pointer;
}

/* BOTÃO WHATSAPP FLUTUANTE */
.whatsapp-floating {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 65px;
  height: 65px;
  background-color: #22c55e;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  z-index: 9999;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  opacity: 0; /* começa escondido */
  pointer-events: none; /* evita clique quando invisível */
}

.whatsapp-floating.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all; /* ativa clique quando visível */
}

.whatsapp-floating:hover {
  background-color: #16a34a;
}

/* BALÃO DE MENSAGEM DO WHATSAPP */
.whatsapp-message-bubble {
  position: fixed;
  bottom: 105px;
  right: 25px;
  background-color: #ffffff;
  color: #333;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
  max-width: 200px;
  z-index: 9998;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  transform: translateY(10px);
}

.whatsapp-message-bubble::after {
  content: "";
  position: absolute;
  bottom: -8px;
  right: 15px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 0px solid transparent;
  border-top: 8px solid #ffffff;
}

.whatsapp-message-bubble.show {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.whatsapp-message-bubble p {
  margin: 0;
  color: #333;
}

/* =============================== RESPONSIVIDADE =============================== */

/* ======= NOTEBOOKS (entre 1200px e 1400px) ======= */
@media (max-width: 1550px) {
  /* HERO — texto mais compacto */

  .hero-content {
    flex-direction: column;
    text-align: center;
    padding: 50px 20px !important;
    min-height: auto !important;
    height: auto !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 30px;
  }

  .hero-text {
    width: 100% !important;
    align-items: center;
  }

  .hero-text-title h1 {
    font-size: 3em !important;
  }

  .hero-contact {
    justify-content: center !important;
  }

  .hero-text-title h1 {
    font-size: 4em !important; /* menor que 6em original */
  }

  .hero-text-subtitle p {
    font-size: 18px !important;
  }

  .hero-contact button {
    padding: 12px 22px;
    font-size: 15px;
  }

  /* HERO — imagem mantendo proporção adaptada */
  .hero-container-left {
    display: none !important;
  }

  /* HERO — container geral mais “compacto” */
  .hero-content {
    padding: 0 60px !important;
  }

  /* SOBRE - responsividade (<=1550px) */
  .sobre {
    padding: 60px !important;
  }
  .sobre-text {
    max-width: 65% !important;
    padding-right: 40px !important;
  }
  .sobre-image {
    width: 45% !important;
  }
  .sobre-image img {
    max-width: 600px !important;
  }
  .sobre-paragraph p {
    font-size: 19px !important;
  }

  /* QUANTO CUSTA - responsividade (<=1550px) */
  .quanto-custa {
    padding: 60px 20px !important;
  }
  .quanto-custa-title h2 {
    font-size: 2.5em !important;
  }

  /* DIFERENCIAIS - responsividade (<=1550px) */
  .diferenciais {
    padding: 60px 20px !important;
  }
  .diferenciais-header h2 {
    font-size: 2.5em !important;
  }
}

/* ======= até 1400px ======= */
@media (max-width: 1400px) {
  /* HEADER */
  .hero-nav,
  .hero-items {
    display: none !important;
  }

  .hero-header {
    justify-content: center !important;
    padding: 10px 40px;
  }

  .hero-logo {
    margin: 0 auto;
  }

  .hero-text-title h1 {
    font-size: 4.5em;
  }
  .hero-content {
    padding: 40px 60px;
  }

  /* SOBRE - responsividade (<=1400px) */
  .sobre {
    padding: 50px 40px !important;
  }
  .sobre-text {
    max-width: 70% !important;
  }
  .sobre-image {
    width: 40% !important;
  }

  /* QUANTO CUSTA - responsividade (<=1400px) */
  .quanto-custa {
    padding: 50px 20px !important;
  }
  .quanto-custa-title h2 {
    font-size: 2.4em !important;
  }
  .container-form {
    padding: 0 20px !important;
  }

  /* DIFERENCIAIS - responsividade (<=1400px) */
  .diferenciais {
    padding: 50px 20px !important;
  }
  .diferenciais-header h2 {
    font-size: 2.4em !important;
  }
  .diferenciais-grid {
    gap: 25px !important;
  }
  .diferencial-card {
    max-width: 400px !important;
  }
}

/* ======= até 1200px ======= */
@media (max-width: 1200px) {
  /* CERTIFICAÇÕES */
  #certificacoes {
    padding: 40px 20px !important;
    margin-top: 40px !important;
    text-align: center;
  }

  .card-certificacao {
    margin: 0 auto;
    width: 90%;
  }

  /* CONDOMÍNIOS */
  .condominios {
    flex-direction: column;
  }

  /* SOBRE - responsividade (<=1200px) */
  .sobre {
    flex-direction: column !important;
    align-items: center !important;
    padding: 40px 20px !important;
    text-align: center;
    gap: 30px;
  }
  .sobre-text {
    max-width: 100% !important;
    padding-right: 0 !important;
  }
  .sobre-image {
    width: 100% !important;
    padding: 0 !important;
  }
  .sobre-image img {
    max-width: 500px !important;
  }
  .sobre-container-stats {
    flex-direction: column !important;
    gap: 20px !important;
    align-items: stretch !important;
  }
  .sobre-stats-cond,
  .sobre-stats-unity,
  .sobre-stats-years {
    width: 100% !important;
  }

  /* QUANTO CUSTA - responsividade (<=1200px) */
  .quanto-custa {
    padding: 40px 20px !important;
  }
  .quanto-custa-title h2 {
    font-size: 2.2em !important;
  }
  .quanto-custa-title p {
    font-size: 16px !important;
  }
  .container-form {
    max-width: 100% !important;
    padding: 0 20px !important;
  }
  .contact-form button {
    padding: 12px !important;
    font-size: 15px !important;
  }

  /* DIFERENCIAIS - responsividade (<=1200px) */
  .diferenciais {
    padding: 40px 20px !important;
  }
  .diferenciais-header h2 {
    font-size: 2.2em !important;
  }
  .diferenciais-header p {
    font-size: 16px !important;
  }
  .diferenciais-grid {
    flex-direction: row !important;
    justify-content: center !important;
    gap: 20px !important;
  }
  .diferencial-card {
    max-width: 380px !important;
  }
}

@media (max-width: 1100px) {
  .cond-cards {
    grid-template-columns: repeat(2, 1fr); /* 2 colunas */
  }

  .servicos-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .servicos-title h1 {
    font-size: 2.4em !important;
  }

  /* SOBRE - responsividade (<=1100px) */
  .sobre-title {
    font-size: 26px !important;
  }
  .sobre-stats-cond h2,
  .sobre-stats-unity h2,
  .sobre-stats-years h2 {
    font-size: 26px !important;
  }

  /* QUANTO CUSTA - responsividade (<=1100px) */
  .quanto-custa-title h2 {
    font-size: 2em !important;
  }

  /* DIFERENCIAIS - responsividade (<=1100px) */
  .diferenciais-header h2 {
    font-size: 2em !important;
  }
  .diferencial-card {
    max-width: 350px !important;
  }
}

@media (max-width: 900px) {
  .footer-infos {
    flex-direction: column !important;
    gap: 20px !important;
  }

  .footer-info-about,
  .footer-info-contact,
  .footer-info-info,
  .footer-info-address {
    width: 100% !important;
  }

  .footer-info-about,
  .footer-info-contact,
  .footer-info-info,
  .footer-info-address {
    width: 100% !important;
  }

  /* SOBRE - responsividade (<=900px) */
  .sobre-paragraph p {
    font-size: 17px !important;
  }
  .sobre-image img {
    max-width: 420px !important;
  }
  .sobre {
    padding: 30px 20px !important;
  }

  /* QUANTO CUSTA - responsividade (<=900px) */
  .quanto-custa {
    padding: 30px 15px !important;
  }
  .quanto-custa-title h2 {
    font-size: 1.8em !important;
  }
  .quanto-custa-title p {
    font-size: 15px !important;
  }
  .container-form {
    gap: 15px !important;
  }
  .form-group input,
  .form-group textarea {
    padding: 8px !important;
    font-size: 14px !important;
  }

  .equipe-grid {
    grid-template-columns: 1fr;
  }

  .equipe-image {
    height: 240px;
  }

  /* DIFERENCIAIS - responsividade (<=900px) */
  .diferenciais {
    padding: 30px 15px !important;
  }
  .diferenciais-header h2 {
    font-size: 1.8em !important;
  }
  .diferenciais-header p {
    font-size: 15px !important;
  }
  .diferenciais-header {
    margin-bottom: 30px !important;
  }
  .diferenciais-grid {
    flex-direction: row !important;
    justify-content: center !important;
    gap: 15px !important;
  }
  .diferencial-card {
    max-width: 320px !important;
    padding: 30px 20px !important;
  }
  .diferencial-card .icon {
    width: 70px !important;
    height: 70px !important;
  }
  .diferencial-card .icon img {
    width: 40px !important;
    height: 40px !important;
  }
  .diferencial-card h3 {
    font-size: 18px !important;
  }
  .diferencial-card p {
    font-size: 14px !important;
  }
}

@media (max-width: 768px) {
  /* HERO SECTION */
  .hero-header {
    padding: 12px 20px;
    flex-direction: column;
    gap: 12px;
  }

  .hero-logo {
    width: 140px;
  }

  .hero-nav {
    display: none !important;
  }

  .hero-content {
    padding: 30px 20px !important;
    flex-direction: column !important;
    gap: 25px !important;
    min-height: auto !important;
  }

  .hero-text {
    width: 100% !important;
    gap: 12px !important;
  }

  .hero-text-title h1 {
    font-size: 2.2em !important;
    line-height: 1.2 !important;
  }

  .hero-text-subtitle p {
    font-size: 15px !important;
    line-height: 1.4 !important;
  }

  .hero-contact button {
    padding: 11px 18px !important;
    font-size: 14px !important;
    width: auto !important;
  }

  .hero-container-left {
    display: none !important;
  }

  /* CONDOMÍNIOS — tablet layout */
  .cond-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .cond-card {
    max-width: 360px;
    width: 100%;
    padding: 25px 20px;
  }

  .cond-title h2 {
    font-size: 2.2em;
    margin-bottom: 10px;
  }

  .cond-title p {
    font-size: 15px;
  }

  .cond-title .condominios-category {
    font-size: 12px;
    padding: 4px 8px;
  }

  .cond-icon {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .cond-card h4 {
    font-size: 17px;
    margin-bottom: 8px;
  }

  .cond-card p {
    font-size: 14px;
  }

  /* SERVIÇOS — tablet layout */
  .servicos {
    padding: 50px 20px !important;
  }

  .container-servicos {
    padding: 0 20px !important;
  }

  .servicos-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .servicos-title h1 {
    font-size: 2em !important;
    margin-bottom: 25px !important;
  }

  .servicos-category {
    font-size: 12px !important;
    padding: 4px 8px !important;
  }

  .servico-card {
    max-width: 100%;
    padding: 25px 20px;
  }

  .servico-card-icon {
    width: 70px !important;
    height: 70px !important;
  }

  .servico-card-icon img {
    width: 40px !important;
    height: 40px !important;
  }

  .servico-card p {
    font-size: 14px;
    line-height: 1.4;
  }

  /* SOBRE SECTION */
  .sobre {
    padding: 40px 20px !important;
    gap: 25px !important;
  }

  .sobre-text {
    max-width: 100% !important;
    padding: 0 !important;
    gap: 12px !important;
  }

  .sobre-category {
    font-size: 12px !important;
    padding: 4px 8px !important;
  }

  .sobre-title {
    font-size: 24px !important;
    margin-bottom: 20px !important;
  }

  .sobre-title h1 {
    font-size: 24px !important;
  }

  .sobre-container-paragraph {
    gap: 12px !important;
  }

  .sobre-paragraph p {
    font-size: 15px !important;
    line-height: 1.5 !important;
    text-align: left !important;
  }

  .sobre-image {
    width: 100% !important;
    padding: 0 !important;
    display: none !important;
  }

  .sobre-image img {
    max-width: 100% !important;
  }

  .sobre-container-stats {
    flex-direction: column !important;
    gap: 15px !important;
    margin-top: 20px !important;
  }

  .sobre-stats-cond,
  .sobre-stats-unity,
  .sobre-stats-years {
    width: 100% !important;
    padding: 18px !important;
    gap: 5px !important;
  }

  .sobre-stats-cond h2,
  .sobre-stats-unity h2,
  .sobre-stats-years h2 {
    font-size: 24px !important;
  }

  .sobre-stats-cond span,
  .sobre-stats-unity span,
  .sobre-stats-years span {
    font-size: 13px !important;
  }

  /* EQUIPE - tablet layout */
  .equipe-slider {
    padding: 50px 20px !important;
  }

  .equipe-wrapper {
    padding: 0 20px !important;
  }

  .equipe-header {
    margin-bottom: 40px !important;
  }

  .equipe-category {
    font-size: 12px !important;
    padding: 4px 8px !important;
  }

  .equipe-header h2 {
    font-size: 1.8em !important;
    margin-bottom: 10px !important;
  }

  .equipe-header p {
    font-size: 14px !important;
  }

  .equipe-slides {
    min-height: 550px !important;
    overflow: visible !important;
  }

  .equipe-slide {
    flex-direction: row !important;
    gap: 30px !important;
    padding: 20px !important;
  }

  .equipe-text {
    flex: 1 !important;
    width: auto !important;
    order: unset !important;
    text-align: left !important;
  }

  .equipe-text h3 {
    font-size: 1.6em !important;
    margin-bottom: 5px !important;
  }

  .equipe-cargo {
    font-size: 13px !important;
  }

  .equipe-text ul {
    font-size: 14px !important;
    max-width: 100% !important;
    padding: 0 !important;
  }

  .equipe-text ul li {
    margin-bottom: 6px !important;
  }

  .equipe-photo {
    flex: 1 !important;
    max-width: 350px !important;
    height: 400px !important;
    width: auto !important;
    order: unset !important;
  }

  .equipe-photo img {
    height: 100% !important;
  }

  .equipe-next {
    position: absolute !important;
    right: -20px !important;
    bottom: 25px !important;
    width: 50px !important;
    height: 50px !important;
    font-size: 20px !important;
  }

  /* DIFERENCIAIS - tablet layout */
  .diferenciais {
    padding: 50px 20px !important;
  }

  .container-diferenciais {
    padding: 0 20px !important;
  }

  .diferenciais-header {
    margin-bottom: 40px !important;
  }

  .diferenciais-category {
    font-size: 12px !important;
    padding: 4px 8px !important;
    margin-bottom: 10px !important;
  }

  .diferenciais-header h2 {
    font-size: 1.8em !important;
    margin-bottom: 10px !important;
  }

  .diferenciais-header p {
    font-size: 14px !important;
  }

  .diferenciais-grid {
    flex-direction: row !important;
    justify-content: center !important;
    gap: 20px !important;
  }

  .diferencial-card {
    max-width: 100% !important;
    min-width: 280px !important;
    padding: 28px 22px !important;
    gap: 15px !important;
  }

  .diferencial-card .icon {
    width: 70px !important;
    height: 70px !important;
  }

  .diferencial-card .icon img {
    width: 40px !important;
    height: 40px !important;
  }

  .diferencial-card h3 {
    font-size: 17px !important;
  }

  .diferencial-card p {
    font-size: 14px !important;
    line-height: 1.4 !important;
  }

  /* CERTIFICAÇÕES - tablet layout */
  #certificacoes {
    padding: 50px 20px !important;
  }

  .certificacoes-category {
    font-size: 12px !important;
    padding: 4px 8px !important;
  }

  .titulo-secao {
    font-size: 2em !important;
    margin-top: 15px !important;
    margin-bottom: 40px !important;
  }

  .card-certificacao {
    padding: 45px 35px !important;
    margin: 15px !important;
    max-width: 90% !important;
  }

  .icone-certificacao {
    font-size: 2.5em !important;
    margin-bottom: 15px !important;
  }

  .nome-certificacao {
    font-size: 1.7em !important;
    margin-bottom: 12px !important;
  }

  .descricao-certificacao {
    font-size: 1.1em !important;
    line-height: 1.5 !important;
    margin-bottom: 20px !important;
  }

  .btn-detalhes {
    padding: 9px 20px !important;
    font-size: 14px !important;
  }

  /* QUANTO CUSTA - tablet layout */
  .quanto-custa {
    padding: 40px 20px !important;
  }

  .container-form {
    max-width: 100% !important;
    padding: 0 20px !important;
    gap: 15px !important;
  }

  .quanto-custa-title {
    margin-bottom: 35px !important;
  }

  .quanto-custa-title .quanto-custa-category {
    font-size: 12px !important;
    padding: 4px 8px !important;
  }

  .quanto-custa-title h2 {
    font-size: 1.8em !important;
    margin-top: 10px !important;
  }

  .quanto-custa-title p {
    font-size: 14px !important;
  }

  .contact-form {
    gap: 15px !important;
  }

  .form-group label {
    font-size: 13px !important;
    margin-bottom: 5px !important;
  }

  .form-group input,
  .form-group textarea {
    padding: 10px !important;
    font-size: 14px !important;
  }

  .form-group textarea {
    min-height: 90px !important;
  }

  .contact-form button {
    padding: 11px 20px !important;
    font-size: 14px !important;
  }

  /* FOOTER - tablet layout */
  .footer-infos {
    flex-direction: row !important;
    gap: 30px !important;
    flex-wrap: wrap !important;
  }

  .footer-info-about,
  .footer-info-contact,
  .footer-info-info,
  .footer-info-address {
    width: calc(50% - 15px) !important;
  }

  .footer-info-about p {
    font-size: 13px !important;
  }

  .footer-info-contact h3,
  .footer-info-info h3,
  .footer-info-address h3 {
    font-size: 15px !important;
    margin-bottom: 10px !important;
  }

  .footer-info-contact span,
  .footer-info-info span,
  .footer-info-address span {
    font-size: 13px !important;
  }

  /* WHATSAPP FLUTUANTE */
  .whatsapp-floating {
    width: 60px !important;
    height: 60px !important;
    font-size: 28px !important;
    bottom: 20px !important;
    right: 20px !important;
  }

  .whatsapp-message-bubble {
    max-width: 200px !important;
    font-size: 13px !important;
    padding: 11px 14px !important;
  }
}

/* ======= MOBILE (até 480px) ======= */
@media (max-width: 480px) {
  /* HERO SECTION */
  .hero {
    min-height: 100vh;
  }

  .hero-header {
    padding: 10px 15px;
    flex-direction: column;
    gap: 15px;
  }

  .hero-logo {
    width: 120px;
  }

  .hero-nav {
    display: none !important;
  }

  .hero-content {
    padding: 20px 15px !important;
    flex-direction: column !important;
    gap: 20px !important;
    min-height: auto !important;
  }

  .hero-text {
    width: 100% !important;
    gap: 15px !important;
  }

  .hero-text-title h1 {
    font-size: 1.8em !important;
    line-height: 1.2 !important;
  }

  .hero-text-title h1 span {
    display: block;
  }

  .hero-text-subtitle {
    width: 100% !important;
  }

  .hero-text-subtitle p {
    font-size: 14px !important;
    line-height: 1.4 !important;
  }

  .hero-contact {
    justify-content: center !important;
    width: 100% !important;
  }

  .hero-contact button {
    padding: 10px 16px !important;
    font-size: 13px !important;
    width: 100% !important;
  }

  .hero-contact button a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .hero-container-left {
    display: none !important;
  }

  /* SOBRE SECTION */
  .sobre {
    padding: 20px 15px !important;
    gap: 20px !important;
  }

  .sobre-text {
    max-width: 100% !important;
    padding: 0 !important;
    gap: 10px !important;
  }

  .sobre-category {
    padding: 4px 8px !important;
    font-size: 12px !important;
  }

  .sobre-title {
    font-size: 18px !important;
    margin-bottom: 15px !important;
  }

  .sobre-title h1 {
    font-size: 18px !important;
  }

  .sobre-container-paragraph {
    gap: 10px !important;
  }

  .sobre-paragraph p {
    font-size: 13px !important;
    line-height: 1.5 !important;
    text-align: left !important;
  }

  .sobre-container-stats {
    flex-direction: column !important;
    gap: 10px !important;
    margin-top: 15px !important;
  }

  .sobre-stats-cond,
  .sobre-stats-unity,
  .sobre-stats-years {
    width: 100% !important;
    padding: 15px !important;
    gap: 3px !important;
  }

  .sobre-stats-cond h2,
  .sobre-stats-unity h2,
  .sobre-stats-years h2 {
    font-size: 20px !important;
  }

  .sobre-stats-cond span,
  .sobre-stats-unity span,
  .sobre-stats-years span {
    font-size: 12px !important;
  }

  .sobre-image {
    width: 100% !important;
    padding: 0 !important;
    display: none !important;
  }

  /* EQUIPE SLIDER */
  .equipe-wrapper {
    padding: 0 15px !important;
  }

  .equipe-header {
    margin-bottom: 30px !important;
  }

  .equipe-category {
    font-size: 12px !important;
    padding: 4px 8px !important;
  }

  .equipe-header h2 {
    font-size: 1.5em !important;
    margin-bottom: 8px !important;
  }

  .equipe-header p {
    font-size: 13px !important;
  }

  .equipe-slides {
    min-height: 700px !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    margin-bottom: 20px !important;
  }

  .equipe-slide {
    position: absolute !important;
    inset: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    align-items: center !important;
    text-align: center !important;
    justify-content: flex-start !important;
    padding: 20px 0 80px 0 !important;
    opacity: 0 !important;
    transform: translateX(100%) !important;
    transition:
      transform 0.8s ease,
      opacity 0.8s ease !important;
    will-change: transform !important;
  }

  .equipe-slide.active {
    opacity: 1 !important;
    transform: translateX(0) !important;
  }

  .equipe-slide.exit {
    transform: translateX(-100%) !important;
    opacity: 0 !important;
  }

  .equipe-text {
    flex: unset !important;
    width: 100% !important;
    order: 2 !important;
  }

  .equipe-text h3 {
    font-size: 1.3em !important;
    margin-bottom: 5px !important;
  }

  .equipe-cargo {
    font-size: 12px !important;
  }

  .equipe-text ul {
    font-size: 13px !important;
    text-align: left !important;
    max-width: 100% !important;
    padding: 0 10px !important;
  }

  .equipe-text ul li {
    margin-bottom: 6px !important;
  }

  .equipe-photo {
    flex: unset !important;
    max-width: 100% !important;
    height: 300px !important;
    width: 100% !important;
    order: 1 !important;
  }

  .equipe-photo img {
    height: 300px !important;
  }

  .equipe-next {
    position: absolute !important;
    right: 5px !important;
    top: 320px !important;
    transform: none !important;
    width: 45px !important;
    height: 45px !important;
    font-size: 18px !important;
    margin: 0 !important;
    z-index: 30 !important;
  }

  /* DIFERENCIAIS SECTION */
  .diferenciais {
    padding: 20px 15px !important;
  }

  .container-diferenciais {
    padding: 0 15px !important;
  }

  .diferenciais-header {
    margin-bottom: 20px !important;
  }

  .diferenciais-category {
    font-size: 11px !important;
    padding: 3px 6px !important;
  }

  .diferenciais-header h2 {
    font-size: 1.4em !important;
    margin-bottom: 8px !important;
  }

  .diferenciais-header p {
    font-size: 12px !important;
  }

  .diferenciais-grid {
    gap: 12px !important;
  }

  .diferencial-card {
    max-width: 100% !important;
    padding: 18px 15px !important;
    gap: 12px !important;
  }

  .diferencial-card .icon {
    width: 55px !important;
    height: 55px !important;
  }

  .diferencial-card .icon img {
    width: 30px !important;
    height: 30px !important;
  }

  .diferencial-card h3 {
    font-size: 14px !important;
  }

  .diferencial-card p {
    font-size: 12px !important;
    line-height: 1.3 !important;
  }

  /* CERTIFICAÇÕES SECTION */
  #certificacoes {
    padding: 20px 15px !important;
  }

  .certificacoes-category {
    font-size: 11px !important;
    padding: 3px 6px !important;
  }

  .titulo-secao {
    font-size: 1.5em !important;
    margin-top: 10px !important;
    margin-bottom: 25px !important;
  }

  .card-certificacao {
    padding: 30px 20px !important;
    margin: 10px !important;
    max-width: 95% !important;
  }

  .icone-certificacao {
    font-size: 2em !important;
  }

  .nome-certificacao {
    font-size: 1.4em !important;
    margin-bottom: 8px !important;
  }

  .descricao-certificacao {
    font-size: 0.95em !important;
    line-height: 1.4 !important;
    margin-bottom: 15px !important;
  }

  .btn-detalhes {
    padding: 8px 16px !important;
    font-size: 13px !important;
  }

  /* SERVIÇOS SECTION */
  .servicos {
    padding: 20px 15px !important;
  }

  .container-servicos {
    padding: 0 15px !important;
  }

  .servicos-category {
    font-size: 11px !important;
    padding: 3px 6px !important;
  }

  .servicos-title h1 {
    font-size: 1.4em !important;
    margin-bottom: 20px !important;
  }

  .servicos-cards {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  .servico-card {
    max-width: 100% !important;
    padding: 20px 15px !important;
    gap: 15px !important;
  }

  .servico-card-icon {
    width: 60px !important;
    height: 60px !important;
  }

  .servico-card-icon img {
    width: 35px !important;
    height: 35px !important;
  }

  .servico-card p {
    font-size: 13px !important;
    line-height: 1.4 !important;
  }

  /* CONDOMÍNIOS SECTION */
  .condominios-gerenciados {
    padding: 20px 15px !important;
  }

  .condominios-gerenciados .container {
    padding: 0 15px !important;
  }

  .cond-title {
    margin-bottom: 25px !important;
  }

  .cond-title .condominios-category {
    font-size: 11px !important;
    padding: 3px 6px !important;
  }

  .cond-title h2 {
    font-size: 1.4em !important;
    margin-bottom: 8px !important;
  }

  .cond-title p {
    font-size: 12px !important;
  }

  .cond-cards {
    gap: 15px !important;
  }

  .cond-card {
    max-width: 100% !important;
    padding: 20px 15px !important;
  }

  .cond-icon {
    font-size: 32px !important;
    margin-bottom: 10px !important;
  }

  .cond-card h4 {
    font-size: 15px !important;
    margin-bottom: 8px !important;
  }

  .cond-card p {
    font-size: 12px !important;
    line-height: 1.4 !important;
  }

  /* CONTATO/QUANTO CUSTA SECTION */
  .quanto-custa {
    padding: 20px 15px !important;
  }

  .container-form {
    padding: 0 15px !important;
    max-width: 100% !important;
  }

  .quanto-custa-title {
    margin-bottom: 20px !important;
  }

  .quanto-custa-title .quanto-custa-category {
    font-size: 11px !important;
    padding: 3px 6px !important;
  }

  .quanto-custa-title h2 {
    font-size: 1.4em !important;
    margin-top: 8px !important;
  }

  .quanto-custa-title p {
    font-size: 12px !important;
  }

  .form-container {
    gap: 10px !important;
  }

  .contact-form {
    gap: 10px !important;
  }

  .form-group label {
    font-size: 12px !important;
    margin-bottom: 3px !important;
  }

  .form-group input,
  .form-group textarea {
    padding: 8px 10px !important;
    font-size: 12px !important;
    border-radius: 4px !important;
  }

  .form-group textarea {
    min-height: 70px !important;
  }

  .contact-form button {
    padding: 10px 16px !important;
    font-size: 13px !important;
    width: 100% !important;
  }

  /* FOOTER */
  .container-footer {
    padding: 30px 15px !important;
    gap: 20px !important;
  }

  .footer-infos {
    gap: 15px !important;
  }

  .footer-info-about,
  .footer-info-contact,
  .footer-info-info,
  .footer-info-address {
    width: 100% !important;
  }

  .footer-info-about p {
    font-size: 12px !important;
  }

  .footer-info-contact h3,
  .footer-info-info h3,
  .footer-info-address h3 {
    font-size: 14px !important;
    margin-bottom: 8px !important;
  }

  .footer-info-contact span,
  .footer-info-info span,
  .footer-info-address span {
    font-size: 12px !important;
  }

  .container-address {
    width: 100% !important;
    gap: 8px !important;
  }

  .footer-others {
    flex-direction: column !important;
    gap: 10px !important;
  }

  .footer-other-symbol span {
    font-size: 11px !important;
  }

  .footer-other-socialmedia {
    gap: 12px !important;
  }

  .footer-other-socialmedia a i {
    font-size: 18px !important;
  }

  /* WHATSAPP FLUTUANTE */
  .whatsapp-floating {
    width: 55px !important;
    height: 55px !important;
    font-size: 26px !important;
    bottom: 20px !important;
    right: 20px !important;
  }

  .whatsapp-message-bubble {
    max-width: 180px !important;
    font-size: 12px !important;
    bottom: 85px !important;
    right: 15px !important;
    padding: 10px 12px !important;
  }
}
