@charset "UTF-8";
/* main.scss */
:root {
  --primary: #0d3b66;
  --gray-900: #111;
  --gray-500: #666;
  --radius: 12px;
}

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

body {
  font-family: system-ui, sans-serif;
  color: var(--gray-900);
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid #eaeaea;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  position: relative;
}

/* LOGO */
.custom-logo {
  max-height: 52px;
  width: auto;
  display: block;
}

.custom-logo-link {
  display: flex;
  align-items: center;
}

.site-logo {
  display: flex;
  align-items: center;
  z-index: 2;
  position: relative;
  z-index: 30;
}

.custom-logo-link,
.site-logo {
  margin: 0;
  padding: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eee;
}

.site-header.scrolled {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

/* AÇÕES DIREITA */
.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 2;
}

/* BOTÃO CONTATO */
.btn-contact {
  background: #111;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
}

/* WHATSAPP */
.btn-whatsapp {
  color: #25D366;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  /* garante que o nav apareça corretamente */
  .site-nav {
    position: fixed;
    top: 70px; /* ajuste conforme altura do header */
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: #111; /* fundo escuro para contraste */
    display: none; /* escondido por padrão */
    flex-direction: column;
    padding: 20px;
    z-index: 9999;
  }
  /* quando menu estiver ativo (toggle JS) */
  .site-nav.active {
    display: flex;
  }
  /* lista vertical */
  .site-nav .menu {
    flex-direction: column;
    gap: 15px;
  }
  /* links legíveis */
  .site-nav .menu li a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
  }
  /* hover/active */
  .site-nav .menu li a:hover {
    color: #25D366;
  }
}
/* NAV CONTAINER */
.site-nav {
  display: flex;
  align-items: center;
}

/* UL DO MENU */
.site-nav .menu {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

@media (max-width: 768px) {
  .site-nav {
    position: absolute;
    top: 70px;
    right: 15px;
    left: auto;
    width: 260px; /* 👈 caixinha */
    height: auto;
    background: #111;
    border-radius: 12px;
    padding: 15px;
    display: none;
    flex-direction: column;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  }
  .site-nav.active {
    display: flex;
  }
  .site-nav .menu {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .site-nav .menu li a {
    color: #fff;
    font-size: 16px;
    display: block;
    width: 100%;
  }
}
/* LI */
.site-nav .menu li {
  list-style: none;
}

/* LINKS */
.site-nav .menu li a {
  position: relative;
  text-decoration: none;
  font-weight: 500;
  color: #2b2b2b;
  padding: 6px 0;
  transition: 0.25s ease;
}

/* hover institucional */
.site-nav .menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #0d3b66;
  transition: 0.3s ease;
}

.site-nav .menu li a:hover {
  color: #0d3b66;
}

.site-nav .menu li a:hover::after {
  width: 100%;
}

@media (max-width: 991px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 20px;
  }
  .site-nav.active {
    display: block;
  }
  .site-nav .menu {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
/* BOTÃO HAMBURGUER */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border: 0;
  background: transparent;
  cursor: pointer;
  width: 40px;
  height: 40px;
}

/* LINHAS DO HAMBURGER */
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #2b2b2b;
  border-radius: 2px;
  transition: 0.3s ease;
}

/* MOBILE SHOW */
@media (max-width: 991px) {
  .nav-toggle {
    display: flex;
  }
}
.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* BOTÃO HAMBURGUER END*/
/* Menu item active focus */
.site-nav .menu li.current-menu-item a {
  color: #0d3b66;
}

.site-nav .menu li.current-menu-item a::after {
  width: 100%;
}

@media (max-width: 991px) {
  .site-nav {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 0 0 12px 12px;
  }
  .site-nav .menu {
    gap: 14px;
  }
  .site-nav .menu li a {
    padding: 10px 0;
    font-size: 1.05rem;
  }
}
/*END*/
.hero {
  padding: 100px 0 160px;
  background: #fff;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .hero {
    padding: 30px 0 0 0;
  }
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 991px) {
  .hero-inner {
    gap: 22px;
  }
  .hero-title {
    font-size: clamp(1.2rem, 6vw, 3rem);
  }
  .hero-box {
    height: 220px;
    border-radius: 14px;
  }
}
/* MOBILE */
@media (max-width: 991px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }
}
.hero-title {
  font-size: clamp(1.6rem, 4.2vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -1.6px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--wp--preset--color--primary);
  text-align: center;
}

@media (max-width: 991px) {
  .hero-title {
    font-size: clamp(2rem, 6vw, 3rem);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 20px;
    color: var(--wp--preset--color--primary);
  }
}
.hero-content {
  display: flex;
  flex-direction: column;
  max-width: 720px;
  z-index: 2;
  gap: 12px;
}

@media (max-width: 991px) {
  .hero-content {
    position: relative;
    z-index: 2;
  }
}
.hero-description {
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 520px;
  margin-top: 0;
  color: var(--wp--preset--color--text);
  text-align: center;
}

@media (max-width: 991px) {
  .hero-description {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--wp--preset--color--text);
  }
}
/* VISUAL */
.hero-visual {
  position: relative;
  z-index: 1;
  overflow: visible;
}

@media (min-width: 992px) {
  .hero-visual {
    margin-right: -40px;
  }
  .hero-image {
    width: 110%;
    max-width: none;
    transform: translateX(40px);
  }
}
.hero-box {
  position: relative;
  height: 620px;
  border-radius: 28px;
  overflow: visible;
  background: transparent;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

@media (max-width: 991px) {
  .hero-box {
    height: 360px;
  }
}
.hero-box img {
  transition: transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-box:hover img {
  transform: scale(1.015);
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
}

@media (min-width: 992px) {
  .hero-image {
    width: 112%;
    max-width: none;
    transform: translateX(40px);
  }
}
/* HERO FIXO - EXIBE SOMENTE O SEGUNDO SLIDE */
.hero-slider {
  position: relative;
  display: block;
  min-height: auto;
}

/* Esconde todos os slides, inclusive se o JavaScript trocar a classe active */
.hero-slider .hero-slide {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: none !important;
  pointer-events: none !important;
  transition: none !important;
}

/* Mantém somente o segundo slide visível */
.hero-slider > .hero-slide:nth-child(2),
.hero-slider > .hero-slide:nth-child(2 of .hero-slide) {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  pointer-events: auto !important;
}

@media (max-width: 991px) {
  .hero-slider {
    min-height: auto;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
}

.hero-actions {
  display: flex;
  justify-content: center; /* centraliza horizontalmente */
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: var(--wp--preset--spacing--md, 20px);
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-btn-primary {
  background: #FF7F00;
  color: #000;
  box-shadow: 0 10px 25px rgba(255, 127, 0, 0.25);
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
  background: #e57200;
  box-shadow: 0 16px 35px rgba(255, 127, 0, 0.35);
}

@media (max-width: 991px) {
  .hero-actions {
    width: 100%;
    flex-direction: column;
    margin-bottom: var(--wp--preset--spacing--md, 20px) 0;
  }
  .hero-btn {
    width: 100%;
  }
}
.mockup-window {
  width: 100%;
  max-width: 520px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #ececec;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06), 0 2px 10px rgba(0, 0, 0, 0.03);
}

/* TOPO */
.mockup-topbar {
  height: 42px;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-bottom: 1px solid #ececec;
}

.mockup-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d6d6d6;
}

/* CONTEÚDO */
.mockup-content {
  display: grid;
  grid-template-columns: 80px 1fr;
  min-height: 280px;
}

/* SIDEBAR */
.mockup-sidebar {
  background: #fafafa;
  border-right: 1px solid #ececec;
}

/* MAIN */
.mockup-main {
  padding: 24px;
}

/* LINHAS */
.mockup-line {
  height: 12px;
  border-radius: 999px;
  background: #ececec;
  margin-bottom: 14px;
}

.mockup-line.large {
  width: 90%;
  height: 18px;
}

.mockup-line.short {
  width: 60%;
}

/* CARDS */
.mockup-cards {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mockup-card {
  height: 90px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f3f3f3, #ebebeb);
}

@media (max-width: 991px) {
  .mockup-window {
    max-width: 100%;
  }
  .mockup-content {
    min-height: 220px;
  }
  .mockup-main {
    padding: 18px;
  }
}
.services {
  position: relative;
  z-index: 10;
  padding: var(--wp--preset--spacing--xl, 80px) 0 0 0;
}

@media (min-width: 992px) {
  .services-wrapper {
    transform: translateY(-100px);
    position: relative;
    z-index: 20;
  }
}
.services-wrapper {
  background: var(--wp--preset--color--gray-light);
  border-radius: 32px;
  padding: 42px 18px;
  position: relative;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
}

@media (max-width: 991px) {
  .services-wrapper {
    padding: 24px 20px;
    border-radius: 24px;
  }
}
/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* CARD */
.service-card {
  padding: var(--wp--preset--spacing--md, 24px);
  background: #fff;
  border: 1px solid #ececec;
  position: relative;
  border-radius: 20px;
  min-height: 420px;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  z-index: 1;
  display: flex;
  flex-direction: column;
}

/* HOVER */
.service-card:hover {
  transform: translateY(-10px);
  background: #fff;
  border-color: rgba(13, 59, 102, 0.14);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.05);
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.1);
}

.service-card::before {
  content: "";
  position: absolute;
  width: 220%;
  height: 220%;
  top: 50%;
  left: 50%;
  background: linear-gradient(135deg, #0d3b66, #16528b);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}

.service-card:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.service-card:hover .service-title,
.service-card:hover .service-description {
  color: #fff;
}

/* ICON */
.service-icon {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, #F4F5F6, #ffffff);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: background 0.45s ease, transform 0.45s ease, box-shadow 0.45s ease;
}

.service-card:hover .service-icon {
  background: rgba(155, 215, 225, 0.01) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.service-icon img {
  width: 33px;
  height: 33px;
  display: block;
  object-fit: contain;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.service-card:hover .service-icon img {
  transform: scale(1.08);
  filter: brightness(0) invert(1);
}

/* TITLE */
.service-title {
  position: relative;
  z-index: 2;
  font-size: 1.28rem;
  line-height: 1.3;
  margin-bottom: 16px;
  color: #111;
  transition: color 0.45s ease;
}

.service-card:hover .service-title {
  color: #fff !important;
}

/* DESCRIPTION */
.service-description {
  position: relative;
  z-index: 2;
  color: #666;
  line-height: 1.7;
  flex-grow: 1;
}

@media (max-width: 991px) {
  .services {
    margin-top: 0px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 28px;
  }
}
@media (min-width: 992px) {
  .services {
    position: relative;
    margin-top: -100px;
    z-index: 20;
  }
}
/* BUTTON */
.service-button {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(8rem, 100%);
  height: 3rem;
  border: 1px solid rgba(13, 59, 102, 0.18);
  border-radius: 10px;
  background: transparent;
  color: #0d3b66;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.35s ease, color 0.35s ease, background 0.35s ease, transform 0.35s ease;
}

/* SVG */
.service-button svg {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  transition: transform 0.35s ease;
}

/* CARD HOVER */
.service-card:hover .service-button {
  border-color: rgba(255, 255, 255, 0.82);
  background-color: rgb(255, 120, 1);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* SETA */
.service-card:hover .service-button svg {
  transform: translateX(4px);
}

/* TITULO PRINCIPAL H1 */
.services-title-main {
  font-family: "Cormorant Garamond", serif;
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--wp--preset--spacing--lg, 48px) auto;
  /* Tipografia Fluida (Min: 32px / Ideal: 2.5vw + 1rem / Max: 48px) */
  font-size: clamp(2rem, 2.5vw + 1rem, 3rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  /* Cores e Efeito Premium (Gradiente sutil usando a cor do seu tema #0d3b66) */
  background: linear-gradient(135deg, #111111 0%, #0d3b66 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2;
  /* Detalhe Sênior: Uma linha sutil decorativa abaixo do título */
}
.services-title-main::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: rgba(255, 120, 1, 0.85); /* Usando o laranja do seu botão */
  margin: 16px auto 0 auto;
  border-radius: 2px;
  transition: width 0.3s ease;
}
.services-title-main:hover::after {
  width: 80px; /* Animação sutil de respiro ao passar o mouse na seção */
}

/* Ajuste fino de espaçamento para telas menores */
@media (max-width: 991px) {
  .services-title-main {
    margin-bottom: 32px;
    padding: 0 20px; /* Evita que o texto toque nas bordas do celular */
  }
}
/* =========================================================
   FOOTER
   VALOR ASSESSORIA IMOBILIÁRIA
========================================================= */

.site-footer {
    width: 100%;
    background: #f3f4f6;
    padding: 60px 0 45px;
    margin: 0;
    border: 0;
    color: #222;
}


/* =========================================================
   GRID PRINCIPAL
========================================================= */

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: 420px minmax(0, 1fr);
    gap: 90px;
    align-items: stretch;
    width: 100%;
}


/* REMOVE O VISUAL ANTIGO DE CARDS */

.site-footer .footer-column {
    width: 100%;
    max-width: none;
    height: auto;

    margin: 0;
    padding: 0;

    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;

    box-sizing: border-box;
    transition: none;
}


.site-footer .footer-column:hover {
    transform: none;
}


/* =========================================================
   COLUNA ESQUERDA
========================================================= */

.site-footer .footer-brand {
    display: flex;
    flex-direction: column;
    min-width: 0;
}


/* =========================================================
   LOGO
========================================================= */

.site-footer .footer-logo {
    display: block;
    margin: 0 0 28px;
    padding: 0;
    line-height: 1;
}


.site-footer .footer-logo .custom-logo-link {
    display: inline-block;
    margin: 0;
    padding: 0;
}


.site-footer .footer-logo img,
.site-footer .footer-logo .custom-logo {
    display: block;

    width: auto;
    max-width: 210px;
    max-height: 82px;
    height: auto;

    margin: 0;
    padding: 0;

    border: 0;
    border-radius: 0;
    box-shadow: none;

    object-fit: contain;
}


.site-footer .footer-logo-fallback {
    display: inline-block;
    color: #082f4b;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
}


/* =========================================================
   CONTATOS + QR CODE
========================================================= */

.site-footer .footer-contact-area {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 130px;
    align-items: center;

    width: 100%;
    gap: 28px;
}


.site-footer .footer-contact {
    min-width: 0;
}


.site-footer .footer-contact-title {
    margin: 0 0 18px;
    padding: 0;

    color: #222;

    font-family: inherit;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
}


/* =========================================================
   ITENS DE CONTATO
========================================================= */

.site-footer .footer-contact-item {
    margin: 0 0 14px;
    padding: 0;

    color: #333;

    font-size: 14px;
    line-height: 1.5;

    min-width: 0;
}


.site-footer .footer-contact-label {
    display: block;

    margin: 0 0 3px;

    color: #444;

    font-size: 12px;
    line-height: 1.35;
    font-weight: 500;
}


.site-footer .footer-contact-item a {
    display: inline-block;
    max-width: 100%;

    color: #222;

    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;

    text-decoration: none;

    overflow-wrap: anywhere;

    transition: color .2s ease;
}


.site-footer .footer-contact-item a:hover {
    color: #0d3b66;
}


/* =========================================================
   QR CODE
========================================================= */

.site-footer .footer-qrcode {
    width: 130px;

    display: flex;
    align-items: center;
    justify-content: center;
}


.site-footer .footer-qrcode img {
    display: block;

    width: 120px;
    height: 120px;

    max-width: 100%;

    padding: 5px;

    background: #fff;
    border: 1px solid #d5d5d5;

    object-fit: contain;
}


/* =========================================================
   LOCALIZAÇÃO
========================================================= */

.site-footer .footer-location {
    margin-top: 10px;

    max-width: 390px;

    color: #333;

    font-size: 13px;
    line-height: 1.6;
}


.site-footer .footer-location .footer-contact-label {
    margin-bottom: 4px;
}


.site-footer .footer-location-text {
    color: #333;

    font-size: 13px;
    line-height: 1.6;

    overflow-wrap: anywhere;
}


.site-footer .footer-location-text p {
    margin: 0;
}


/* =========================================================
   REDES SOCIAIS
========================================================= */

.site-footer .footer-socials {
    display: flex;
    align-items: center;

    gap: 16px;

    margin-top: 24px;
}


.site-footer .footer-social-link {
    width: 22px;
    height: 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #555;

    text-decoration: none;

    transition:
        color .2s ease,
        transform .2s ease;
}


.site-footer .footer-social-link svg {
    display: block;

    width: 18px;
    height: 18px;

    fill: currentColor;
    stroke: currentColor;
    stroke-width: 1.5;
}


.site-footer .footer-social-link:hover {
    color: #082f4b;
    transform: translateY(-2px);
}


.site-footer .footer-social-link.is-disabled {
    pointer-events: none;
}


.site-footer .footer-youtube-play {
    fill: #f3f4f6;
    stroke: none;
}


/* =========================================================
   COLUNA DIREITA
========================================================= */

.site-footer .footer-company {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    min-width: 0;
}


/* =========================================================
   TÍTULO
========================================================= */

.site-footer .footer-title {
    margin: 0 0 20px;
    padding: 0;

    color: #222;

    font-family: inherit;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
}


/* REMOVE A LINHA LARANJA ANTIGA */

.site-footer .footer-title::after {
    display: none;
    content: none;
}


/* =========================================================
   TEXTO SOBRE A EMPRESA
========================================================= */

.site-footer .footer-text {
    width: 100%;
    max-width: 760px;

    margin: 0;
    padding: 0;

    color: #333;

    font-size: 14px;
    line-height: 1.65;
    font-weight: 400;

    text-align: left;

    overflow-wrap: break-word;
}


.site-footer .footer-text p {
    margin: 0;
}


.site-footer .footer-text:last-child {
    margin: 0;
    padding: 0;
    border: 0;
}


/* =========================================================
   COPYRIGHT / CNPJ
========================================================= */

.site-footer .footer-company-bottom {
    margin-top: 45px;
}


.site-footer .footer-copyright,
.site-footer .footer-cnpj {
    margin: 0;
    padding: 0;

    color: #3d3d3d;

    font-size: 13px;
    line-height: 1.6;
    font-weight: 400;
}


.site-footer .footer-cnpj {
    margin-top: 5px;
}


/* =========================================================
   NOTEBOOK / TABLET GRANDE
========================================================= */

@media (max-width: 1100px) {

    .site-footer .footer-grid {
        grid-template-columns: 370px minmax(0, 1fr);
        gap: 55px;
    }

    .site-footer .footer-contact-area {
        grid-template-columns: minmax(0, 1fr) 110px;
        gap: 20px;
    }

    .site-footer .footer-qrcode {
        width: 110px;
    }

    .site-footer .footer-qrcode img {
        width: 105px;
        height: 105px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .site-footer {
        padding: 50px 0 40px;
    }


    .site-footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }


    .site-footer .footer-brand,
    .site-footer .footer-company {
        width: 100%;
    }


    .site-footer .footer-contact-area {
        grid-template-columns: minmax(0, 300px) 125px;
        justify-content: start;

        gap: 30px;
    }


    .site-footer .footer-qrcode {
        width: 125px;
    }


    .site-footer .footer-qrcode img {
        width: 115px;
        height: 115px;
    }


    .site-footer .footer-location {
        max-width: 500px;
    }


    .site-footer .footer-text {
        max-width: 100%;
    }


    .site-footer .footer-company-bottom {
        margin-top: 30px;
    }

}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 600px) {

    .site-footer {
        padding: 42px 0 35px;
    }


    .site-footer .footer-grid {
        gap: 38px;
    }


    .site-footer .footer-logo {
        margin-bottom: 25px;
    }


    .site-footer .footer-logo img,
    .site-footer .footer-logo .custom-logo {
        max-width: 190px;
        max-height: 75px;
    }


    .site-footer .footer-contact-area {
        grid-template-columns: minmax(0, 1fr) 105px;
        gap: 18px;
    }


    .site-footer .footer-qrcode {
        width: 105px;
    }


    .site-footer .footer-qrcode img {
        width: 100px;
        height: 100px;
    }


    .site-footer .footer-contact-title,
    .site-footer .footer-title {
        font-size: 16px;
    }


    .site-footer .footer-contact-item,
    .site-footer .footer-contact-item a {
        font-size: 13px;
    }


    .site-footer .footer-contact-label {
        font-size: 12px;
    }


    .site-footer .footer-location,
    .site-footer .footer-location-text {
        font-size: 13px;
    }


    .site-footer .footer-text {
        font-size: 13px;
        line-height: 1.65;
    }


    .site-footer .footer-copyright,
    .site-footer .footer-cnpj {
        font-size: 12px;
    }

}


/* =========================================================
   CELULAR MUITO PEQUENO
========================================================= */

@media (max-width: 420px) {

    .site-footer .footer-contact-area {
        grid-template-columns: 1fr;
        gap: 22px;
    }


    .site-footer .footer-qrcode {
        width: auto;
        justify-content: flex-start;
    }


    .site-footer .footer-qrcode img {
        width: 110px;
        height: 110px;
    }

}
/*# sourceMappingURL=main.css.map */

/* restante do seu CSS aqui */


/* Descrição abaixo do título dos grupos de serviços */
.services-wrapper.services-group .services-group-description {
    width: 100%;
    max-width: 850px;
    margin: 25px auto 45px auto;
    padding: 0 20px;
    text-align: center;
}

.services-wrapper.services-group .services-group-description p {
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    line-height: 1.7;
    color: #333;
}


/* =========================================================
   CONTATO + ESPECIALIDADES
========================================================= */

.contact-specialties-section {
    padding: 90px 0;
    background: #fff;
}

.contact-specialties-grid {
    display: grid;
    grid-template-columns: 390px 1fr;
    gap: 70px;
    align-items: center;
    max-width: 1050px;
    margin: 0 auto;
}


/* =========================================================
   FORMULÁRIO
========================================================= */

.contact-form-card {
    position: relative;
    padding: 38px 36px 36px;
    border-radius: 22px;
    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #032d4b 0%,
            #073752 55%,
            #0b344b 100%
        );

    box-shadow:
        0 24px 55px rgba(2, 43, 73, 0.18);
}


/* efeito quadriculado discreto */
.contact-form-card::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );

    background-size: 36px 36px;

    pointer-events: none;
}


.contact-form-title {
    position: relative;
    z-index: 2;

    margin: 0;

    text-align: center;

    color: #fff;

    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    font-weight: 700;
}


.contact-title-line {
    position: relative;
    z-index: 2;

    width: 42px;
    height: 3px;

    margin: 13px auto 34px;

    border-radius: 10px;

    background: #ff7f00;
}


.contact-form {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    gap: 13px;
}


.contact-field input,
.contact-field select,
.contact-field textarea {

    width: 100%;

    border: 1px solid #dedede;
    outline: none;

    border-radius: 11px;

    background: #f7f7f7;

    color: #222;

    font-family: inherit;
    font-size: 14px;

    transition:
        border-color .25s ease,
        box-shadow .25s ease;
}


.contact-field input,
.contact-field select {
    height: 48px;
    padding: 0 17px;
}


.contact-field textarea {
    min-height: 115px;
    padding: 16px 17px;
    resize: vertical;
}


.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: #ff7f00;

    box-shadow:
        0 0 0 3px rgba(255, 127, 0, .12);
}


.contact-submit {

    width: 100%;
    height: 50px;

    margin-top: 5px;

    border: 0;
    border-radius: 999px;

    cursor: pointer;

    background: #ff7f00;

    color: #111;

    font-size: 18px;
    font-weight: 700;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 10px;

    box-shadow:
        0 12px 24px rgba(255, 127, 0, .25);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}


.contact-submit:hover {
    background: #ee7600;

    transform: translateY(-2px);

    box-shadow:
        0 17px 30px rgba(255, 127, 0, .32);
}


/* =========================================================
   LADO DIREITO
========================================================= */

.contact-specialties-content {
    position: relative;
    padding: 10px 0;
}


.contact-specialties-content::after {
    content: "⚖";

    position: absolute;

    right: 30px;
    top: 135px;

    font-size: 190px;
    line-height: 1;

    color: rgba(13, 59, 102, .035);

    pointer-events: none;
}


.contact-eyebrow {
    display: block;

    margin-bottom: 14px;

    color: #d96d00;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1.8px;
}


.contact-specialties-title {

    position: relative;
    z-index: 2;

    max-width: 520px;

    margin: 0 0 30px;

    color: #022b49;

    font-family: "Cormorant Garamond", serif;

    font-size: 38px;
    line-height: 1.06;

    font-weight: 800;
}


.contact-specialties-list {
    position: relative;
    z-index: 2;

    max-width: 520px;
}


.contact-specialty-item {

    min-height: 54px;

    display: flex;
    align-items: center;

    gap: 14px;

    border-bottom: 1px solid #e8e8e8;

    color: #333;

    font-size: 15px;
}


.contact-check {

    width: 26px;
    height: 26px;

    flex: 0 0 26px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ff7f00;

    color: #fff;

    font-size: 14px;
    font-weight: 700;
}


/* =========================================================
   TELEFONE / WHATSAPP
========================================================= */

.contact-buttons {

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 14px;

    max-width: 520px;

    margin-top: 20px;
}


.contact-phone,
.contact-whatsapp {

    min-height: 56px;

    border-radius: 11px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    text-decoration: none;

    font-weight: 700;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.contact-phone {

    border: 1px solid #f0f0f0;

    background: #fff;

    color: #0d3b66;

    box-shadow:
        0 8px 25px rgba(0,0,0,.04);
}


.contact-whatsapp {

    background: #ff8a16;

    color: #fff;

    box-shadow:
        0 12px 28px rgba(255, 127, 0, .25);
}


.contact-phone:hover,
.contact-whatsapp:hover {
    transform: translateY(-2px);
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 991px) {

    .contact-specialties-section {
        padding: 60px 0;
    }

    .contact-specialties-grid {
        grid-template-columns: 1fr;

        max-width: 650px;

        gap: 50px;
    }

    .contact-form-card {
        max-width: 520px;
        width: 100%;
        margin: 0 auto;
    }

    .contact-specialties-content {
        max-width: 520px;
        width: 100%;
        margin: 0 auto;
    }

}


@media (max-width: 600px) {

    .contact-specialties-section {
        padding: 45px 0;
    }

    .contact-form-card {
        padding: 30px 20px;
        border-radius: 18px;
    }

    .contact-specialties-title {
        font-size: 31px;
    }

    .contact-buttons {
        grid-template-columns: 1fr;
    }

    .contact-specialties-content::after {
        font-size: 130px;
        right: 10px;
    }

}

.contact-whatsapp-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}


/* =========================================================
   BOTÃO FLUTUANTE WHATSAPP
========================================================= */

.floating-whatsapp {
    position: fixed;

    right: 28px;
    bottom: 28px;

    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25D366;
    color: #ffffff;

    border-radius: 50%;

    text-decoration: none;

    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);

    z-index: 9999;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}


/* ÍCONE */

.floating-whatsapp svg {
    width: 34px;
    height: 34px;

    display: block;
}


/* HOVER */

.floating-whatsapp:hover {
    background: #20bd5a;

    color: #ffffff;

    transform: translateY(-4px) scale(1.05);

    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}


/* EFEITO DE PULSO */

.floating-whatsapp::before {
    content: "";

    position: absolute;
    inset: 0;

    border-radius: 50%;

    background: rgba(37, 211, 102, 0.3);

    z-index: -1;

    animation: whatsapp-pulse 2s infinite;
}


@keyframes whatsapp-pulse {

    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.35);
        opacity: 0;
    }

    100% {
        transform: scale(1.35);
        opacity: 0;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .floating-whatsapp {
        right: 18px;
        bottom: 18px;

        width: 56px;
        height: 56px;
    }


    .floating-whatsapp svg {
        width: 31px;
        height: 31px;
    }

}