/* ========================================================= RESET BÁSICO ========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: #333;
  line-height: 1.5;
  padding-top: 90px; /* espaço pro header fixo */
}
a {
  text-decoration: none;
  color: inherit;
} /* Classe para acessibilidade (esconder visualmente) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
} /* ========================================================= CONTAINER BASE ========================================================= */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
} /* ========================================================= HEADER FIXO E ANIMADO ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: none;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(-20px);
}
.site-header.visible {
  opacity: 1;
  transform: translateY(0);
}
.site-header.scrolled {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.98);
} /* Conteúdo interno do header */
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  max-width: 1200px;
  margin: 0 auto;
} /* =========================== LOGO =========================== */
.logo {
  height: 55px;
  width: auto;
  transition: transform 0.3s ease;
}
.logo img {
  height: 100%;
  width: auto;
  text-align: left;
}
.logo:hover {
  transform: scale(1.05);
} /* =========================== MENU DE NAVEGAÇÃO =========================== */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-menu a {
  position: relative;
  color: #444;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  padding-bottom: 4px;
} /* Linha animada no hover */
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #0056b3;
  transition: width 0.3s ease;
  border-radius: 4px;
}
.nav-menu a:hover {
  color: #000;
}
.nav-menu a:hover::after {
  width: 100%;
} /* Link ativo (scrollspy) */
.nav-menu a.active {
  color: #0056b3;
}
.nav-menu a.active::after {
  width: 100%;
} /* =========================== MENU MOBILE =========================== */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
} /* Responsivo */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: max-height 0.4s ease;
  }
  .nav-menu.active {
    max-height: 400px;
    padding: 20px;
  }
  .nav-menu a {
    padding: 12px 20px;
    width: 100%;
    border-bottom: 1px solid #eee;
  }
} /* ========================================================= HERO ========================================================= */
.hero {
  position: relative;
  height: 100vh;
  background-image: url("imagens/AdobeStock_1234091923.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}
.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  line-height: 1.3;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Botão principal */
.btn-primary {
  background: #b4975a;
  color: #fff;
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}
.btn-primary:hover {
  background: #a38648;
} /* ========================================================= SEÇÕES GERAIS (Serviços, Sobre, Missão, Profissional, Contato) ========================================================= */
.servicos,
.sobre,
.missao,
.profissional,
.contato,
.site-footer {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}
.servicos.visible,
.sobre.visible,
.missao.visible,
.profissional.visible,
.contato.visible,
.site-footer.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======================= SEÇÃO SERVIÇOS ======================= */
.servicos {
  padding: 100px 0;
  background: linear-gradient(to bottom, #ffffff, #f5f5f5);
  text-align: center;
}

.servicos h2 {
  font-size: 2.6rem;
  color: #1a1a1a;
  margin-bottom: 15px;
  position: relative;
}

.servicos h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #b4975a;
  border-radius: 4px;
}

.servicos-subtitulo {
  color: #555;
  font-size: 1.15rem;
  margin-bottom: 60px;
  letter-spacing: 0.3px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ======================= GRID FLEX ======================= */
.servicos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px; /* espaçamento maior entre os cards */
  align-items: stretch;
}

/* ======================= CARD ======================= */
.servico-item {
  flex: 1 1 280px;
  max-width: 320px;
  background: #fff;
  padding: 50px 30px;
  border-radius: 20px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  border-top: 5px solid transparent;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Hover elegante */
.servico-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  border-top: 5px solid #b4975a;
}

/* ======================= ÍCONES DESTACADOS ======================= */
.servico-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  background: rgba(180, 151, 90, 0.1);
  color: #b4975a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  transition: all 0.3s ease;
}

.servico-item:hover .servico-icon {
  background: #b4975a;
  color: #fff;
  transform: scale(1.15);
}

/* ======================= TÍTULO E TEXTO ======================= */
.servico-item h3 {
  font-size: 1.35rem;
  color: #222;
  margin-bottom: 15px;
  font-weight: 600;
}

.servico-item p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-top: 10px;
}

/* ======================= RESPONSIVIDADE ======================= */
@media (max-width: 1200px) {
  .servico-item {
    flex: 1 1 45%;
  }
}

@media (max-width: 768px) {
  .servico-item {
    flex: 1 1 90%;
  }

  .servicos h2 {
    font-size: 2.2rem;
  }

  .servicos-subtitulo {
    font-size: 1rem;
  }

  .servico-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
}

.servico-item:hover .servico-icon {
  background: #b4975a;
  color: #fff;
  transform: scale(1.1);
}

/* ======================= TÍTULOS E TEXTOS ======================= */
.servico-item h3 {
  font-size: 1.3rem;
  color: #222;
  margin-bottom: 12px;
  font-weight: 600;
}

.servico-item p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 10px;
}

/* ======================= RESPONSIVIDADE ======================= */
@media (max-width: 1024px) {
  .servico-item {
    flex: 1 1 45%; /* dois cards lado a lado em telas médias */
  }
}

@media (max-width: 768px) {
  .servico-item {
    flex: 1 1 90%; /* um card por linha em telas pequenas */
  }
  .servicos h2 {
    font-size: 2rem;
  }
  .servicos-subtitulo {
    font-size: 1rem;
  }
}

.sobre,
.missao,
.profissional {
  padding: 60px 0;
  background: #f9f9f9;
  text-align: left;
}
.sobre p {
  max-width: 800px;
  margin: 0 auto 1.5em;
  font-size: 1.124rem;
  line-height: 1.6;
  text-align: justify;
  text-align-last: left;
  letter-spacing: 0.1px;
}
.missao-content p {
  max-width: 800px;
  margin: 0 auto 1.5em;
  font-size: 1.124rem;
  line-height: 1.6;
  text-align: justify;
  text-align-last: center;
  letter-spacing: 3px;
}
.missao-lista li {
  margin-bottom: 0.6rem;
  color: #333;
  font-weight: 500;
  letter-spacing: 1px;
  text-align: left;
}
.profissional p {
  max-width: 800px;
  margin: 0 auto 1.5em;
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: justify;
  text-align-last: left;
  letter-spacing: 1px;
} /* ========================================================= CONTATO ========================================================= */
.contato {
  background-color: #f9f9f9;
  padding: 60px 0;
  text-align: center;
}
.contato h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
}
.form-contato {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}
.form-contato input,
.form-contato textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}
.form-contato button {
  width: 100%;
  max-width: 200px;
  justify-self: center;
} /* ========================================================= FOOTER MODERNO ========================================================= */
.site-footer {
  background: linear-gradient(to right, #1a1a1a, #2b2b2b);
  color: #f1f1f1;
  text-align: center;
  padding: 40px 20px;
  border-top: 3px solid #b4975a;
}
.site-footer .container {
  position: relative;
  z-index: 1;
}
.site-footer h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff;
}
.site-footer p {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
}
.social-links {
  margin: 25px 0;
  display: flex;
  justify-content: center;
  gap: 25px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #b4975a;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}
.social-links a:hover {
  background-color: #b4975a;
  color: #fff;
  transform: translateY(-4px);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
  padding-top: 15px;
  font-size: 0.9rem;
  color: #aaa;
} /* ========================================================= BOTÃO WHATSAPP FIXO ========================================================= */
#robbu-whatsapp-button {
  position: fixed !important;
  bottom: 25px !important;
  right: 25px !important;
  z-index: 1100 !important;
}
#robbu-whatsapp-button img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}
#robbu-whatsapp-button:hover img {
  transform: scale(1.1);
}
.rwb-tooltip {
  background: #007bff;
  color: white;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.9rem;
  position: absolute;
  bottom: 75px;
  right: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}
#robbu-whatsapp-button:hover .rwb-tooltip {
  opacity: 1;
  transform: translateY(0);
}

/* ====== SEÇÃO PROFISSIONAL ====== */
.profissional {
  background-color: #f9f9f9; /* mesmo fundo do site */
  padding: 100px 0;
}

.profissional-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 80px 20px;
}

.profissional-texto {
  flex: 1 1 400px;
  max-width: 600px;
}

.profissional-texto h2 {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
  position: relative;
}

.profissional-texto h2::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #b4975a; /* destaque dourado igual ao restante do site */
}

.profissional-texto p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8;
  margin-top: 1rem;
  text-align: justify;
}

/* ====== IMAGEM ====== */
.profissional-foto {
  flex: 1 1 350px;
  display: flex;
  justify-content: right;
  align-items: center;
  background: transparent;
  border: none;
}

.profissional-foto img {
  width: 80%;
  max-width: 650px;
  height: auto;
  display: block;
  border: none;
  border-radius: 16px;
  background: transparent !important;
  object-fit: contain; /* mantém proporção e evita cortes */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1); /* sombra suave e natural */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  filter: drop-shadow(
    0 4px 8px rgba(0, 0, 0, 0.1)
  ); /* 🔹 remove borda branca realçada */
}

.profissional-foto img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ====== RESPONSIVIDADE ====== */
@media (max-width: 768px) {
  .profissional-content {
    flex-direction: column;
    text-align: center;
  }

  .profissional-foto {
    justify-content: center;
  }

  .profissional-foto img {
    max-width: 350px;
  }

  .profissional-texto h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
.missao {
  background-color: #ffffff;
  padding: 80px 0;
}

.missao-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.missao-texto {
  flex: 1 1 45%;
}

.missao-texto h2 {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
  position: relative;
}

.missao-texto h2::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #b4975a;
}

.missao-texto p {
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.5rem;
  text-align: justify;
  text-align-last: left;
  letter-spacing: 0.4px;
  font-size: 1.2rem;
}

.missao-lista {
  list-style: none;
  padding: 0;
}

.missao-lista li {
  margin-bottom: 0.6rem;
  color: #333;
  font-weight: 500;
}

.missao-lista li::before {
  content: "• ";
  color: #b4975a;
  font-weight: bold;
}

.missao-imagem {
  flex: 1 1 45%;
  text-align: right;
}

.missao-imagem img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 550px;
}

.missao-imagem img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* RESPONSIVIDADE PARA MOBILE */
@media (max-width: 768px) {
  .missao-content {
    flex-direction: column; /* empilha verticalmente */
    text-align: center;
  }

  .missao-texto {
    order: 1; /* texto primeiro */
    text-align: center;
  }

  .missao-imagem {
    order: 2; /* imagem abaixo do texto */
    text-align: center; /* centraliza a imagem */
  }

  .missao-imagem img {
    max-width: 360px;
    margin: 0 auto; /* centraliza */
  }
}

.sobre {
  background-color: #fff;
  padding: 80px 0;
}

.sobre-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
}

.sobre-texto {
  flex: 1 1 45%;
  text-align: left;
}

.sobre-texto h2 {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
  position: relative;
  text-align: left;
}

.sobre-texto h2::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #b4975a;
}

.sobre-texto p {
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  text-align: justify;
  text-align-last: left;
  letter-spacing: 0.3px;
}

/* IMAGEM */
.sobre-imagem {
  flex: 1 1 45%;
  text-align: right;
}

.sobre-imagem img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 550px;
}

.sobre-imagem img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  .sobre-content {
    flex-direction: column; /* empilha normalmente: texto primeiro, imagem depois */
    text-align: center;
  }

  .sobre-texto {
    text-align: center;
    order: 1; /* texto primeiro */
  }

  .sobre-imagem {
    order: 2; /* imagem abaixo do texto */
    text-align: center; /* centraliza a imagem */
  }

  .sobre-imagem img {
    max-width: 360px;
    margin: 0 auto; /* centraliza */
  }
}

.form-message {
  margin-top: 15px;
  font-size: 1rem;
  padding: 12px;
  border-radius: 8px;
  display: none;
  text-align: center;
  transition: all 0.4s ease;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* AJUSTE LETTER-SPACING PARA MOBILE */
@media (max-width: 768px) {
  .sobre-texto p,
  .missao-texto p,
  .profissional-texto p {
    letter-spacing: normal; /* remove espaçamento exagerado */
    font-size: 1rem; /* opcional: diminui um pouco a fonte para mobile */
  }

  .missao-lista li {
    letter-spacing: normal; /* remove espaçamento exagerado */
  }
}
