@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: "open-sans";
  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 */
/* LOGO */
.site-logo {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 30;
  flex-shrink: 0;
}

.custom-logo-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 0;
}

.custom-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  width: clamp(140px, 18vw, 188px);
  max-height: 44px;
  object-fit: contain;
}

.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 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #022B49 0%, #033B63 100%);
  color: #FFF;
  border: 2px solid rgba(255, 127, 0, 0.15);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(2, 43, 73, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn-contact:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #FB7704 0%, #FF8F1F 100%);
  color: #FFF;
  border-color: #FB7704;
  box-shadow: 0 16px 34px rgba(251, 119, 4, 0.28);
}

.btn-contact:active {
  transform: translateY(0);
}

.btn-contact i {
  font-size: 15px;
  color: #FFD59A;
  transition: 0.25s;
}

.btn-contact:hover i {
  color: #FFF;
}

/* 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;
  }
}
/* TABLETS */
@media (max-width: 991px) {
  .custom-logo {
    width: clamp(150px, 34vw, 180px);
    max-height: 42px;
  }
}
/* MOBILE */
@media (max-width: 768px) {
  .custom-logo {
    width: clamp(130px, 42vw, 170px);
    max-height: 40px;
  }
}
/* CELULARES PEQUENOS */
@media (max-width: 480px) {
  .custom-logo {
    width: clamp(120px, 48vw, 155px);
    max-height: 36px;
  }
}
@media (max-width: 991px) {
  .btn-contact {
    height: 44px;
    padding: 0 18px;
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .btn-contact {
    height: 40px;
    padding: 0 14px;
    font-size: 12px;
    gap: 8px;
  }
}
@media (max-width: 480px) {
  .btn-contact {
    height: 36px;
    padding: 0 12px;
    font-size: 11px;
  }
}
.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-contact-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: block;
  transition: 0.3s ease;
}

/* 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 {
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 100px 0 160px;
  background: #F4F5F6;
  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, 4vw, 3rem);
  line-height: 1.02;
  font-weight: 800;
  margin-bottom: 26px;
  color: var(--wp--preset--color--primary);
}

@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: 760px;
  z-index: 2;
  gap: 12px;
}

@media (max-width: 991px) {
  .hero-content {
    position: relative;
    z-index: 2;
  }
}
.hero-description {
  font-size: 1.22rem;
  line-height: 1.8;
  max-width: 560px;
  margin: auto;
  opacity: 0.92;
  color: var(--wp--preset--color--text);
}

@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: hidden;
}

@media (min-width: 992px) {
  .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);
  }
}
/* SLIDER */
.hero-slider {
  min-height: 180px;
  position: relative;
  /* Garante que o texto não "vaze" se o container demorar a calcular a altura */
  display: grid;
  grid-template-columns: 1fr;
}

@media (max-width: 991px) {
  .hero-slider {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    min-height: 260px;
  }
}
/* SLIDES */
.hero-slide {
  grid-area: 1/1/2/2; /* Faz todos os slides ocuparem exatamente o mesmo espaço, um em cima do outro */
  opacity: 0;
  visibility: hidden; /* Remove do fluxo de leitura/teclado enquanto invisível */
  /* Efeito Sênior: Começa um pouco abaixo e levemente menor (escala sutil) */
  transform: translateY(20px) scale(0.98);
  pointer-events: none; /* Evita clicar em links de slides invisíveis */
  /* Transição extremamente refinada (estilo Apple/Stripe) */
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), visibility 1.2s;
}

/* SLIDE EM TRANSIÇÃO DE SAÍDA (Opcional, mas dá o toque premium) */
/* Quando o slide perde a classe active, ele sobe e desaparece suavemente */
.hero-slide:not(.active) {
  transform: translateY(-20px);
}

/* ATIVO */
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  /* Mantém a transição suave na entrada */
  transition: opacity 1.4s cubic-bezier(0.22, 1, 0.36, 1), transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-actions {
  display: flex;
  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: 60px;
  padding: 18px 38px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-btn-primary {
  background: #001A75;
  color: #F4F5F6;
  text-shadow: none;
  padding: 1.2rem 1.6rem;
}

.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%;
  }
}
.hero-btn {
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.hero-btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.hero-btn-primary:hover .hero-btn-icon {
  transform: translateX(6px);
  opacity: 0.95;
}

.hero-btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 45%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.8s ease;
}

.hero-btn-primary:hover::before {
  left: 160%;
}

.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;
  }
}
@keyframes heroFloat {
  0% {
    transform: translateX(40px) translateY(0);
  }
  50% {
    transform: translateX(40px) translateY(-12px);
  }
  100% {
    transform: translateX(40px) translateY(0);
  }
}
.services {
  position: relative;
  z-index: 10;
  padding: var(--wp--preset--spacing--xl, 80px) 0 0;
}

.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);
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

/* HOVER */
.service-card:hover {
  transform: translateY(-8px);
  background: #fff;
  border-color: rgba(13, 59, 102, 0.14);
  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-description {
  color: #fff;
}

/* ICON */
.service-icon {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(135deg, #F4F5F6, #ffffff);
  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;
  margin-bottom: 16px;
  font-size: 1.28rem;
  line-height: 1.3;
  color: #111;
  transition: color 0.45s ease;
}

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

.service-hero-title {
  font-size: clamp(1.6rem, 4vw, 3rem);
  line-height: 1.02;
  font-weight: 800;
  margin-bottom: 26px;
  color: var(--wp--preset--color--primary);
}

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

/* 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 {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto var(--wp--preset--spacing--lg, 48px);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
  background: linear-gradient(135deg, #111111 0%, #0d3b66 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.services-title-main::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  margin: 16px auto 0;
  border-radius: 2px;
  background: rgba(255, 120, 1, 0.85);
  transition: width 0.3s ease;
}
.services-title-main:hover::after {
  width: 80px;
}

.service-single {
  padding: var(--wp--preset--spacing--xl, 80px) 0 0;
}

/* ===========================
   DESKTOP
=========================== */
@media (min-width: 992px) {
  .services {
    margin-top: -100px;
    z-index: 20;
  }
  .services-wrapper {
    transform: translateY(-100px);
    z-index: 20;
  }
}
/* ===========================
   MOBILE
=========================== */
@media (max-width: 991px) {
  .services {
    margin-top: 0;
  }
  .services-wrapper {
    padding: 24px 20px;
    border-radius: 24px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 28px;
  }
  .services-title-main {
    margin-bottom: 32px;
    padding: 0 20px;
  }
}
.cta-contact {
  margin-top: 80px;
  margin-bottom: 100px;
}

.cta-contact-box {
  background: #022A4A;
  border-radius: 32px;
  padding: 70px 40px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(2, 42, 74, 0.18);
}

.cta-contact-title {
  font-family: "Cormorant Garamond", serif;
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--wp--preset--spacing--lg, 48px) auto;
  font-size: clamp(2rem, 2.5vw + 1rem, 3rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 0%, #eff5fb 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2;
}
.cta-contact-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: rgba(255, 120, 1, 0.85);
  margin: 16px auto 0 auto;
  border-radius: 2px;
  transition: width 0.3s ease;
}
.cta-contact-title:hover::after {
  width: 80px; /* Animação sutil de respiro ao passar o mouse na seção */
}

.cta-contact-description {
  max-width: 620px;
  margin: 0 auto 40px;
  font-size: 1.15rem;
  line-height: 1.8;
  opacity: 0.95;
}

.cta-contact-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cta-phone-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 18px 34px;
  border-radius: 999px;
  background: #FB7704;
  color: #022A4A;
  font-weight: 700;
  text-decoration: none;
  transition: 0.35s ease;
  box-shadow: 0 14px 35px rgba(251, 119, 4, 0.35);
}

.cta-phone-btn:hover {
  transform: translateY(-4px);
  background: #ff8d24;
  box-shadow: 0 22px 45px rgba(251, 119, 4, 0.45);
}

@media (max-width: 991px) {
  .cta-contact {
    margin: 60px 0;
  }
  .cta-contact-box {
    padding: 50px 24px;
  }
  .cta-contact-actions {
    flex-direction: column;
  }
  .cta-phone-btn {
    width: 100%;
  }
}
.cta-contact-box::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(251, 119, 4, 0.1);
  top: -160px;
  right: -120px;
  filter: blur(20px);
}

.cta-contact-box::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  bottom: -120px;
  left: -80px;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FB7704;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 64px;
  padding: 0 34px;
  border-radius: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.35s;
  border: 1px solid transparent;
}

.cta-phone-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.cta-phone-btn.whatsapp {
  background: #FB7704;
  color: #fff;
  box-shadow: 0 18px 40px rgba(251, 119, 4, 0.3);
}
.cta-phone-btn.whatsapp:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(251, 119, 4, 0.4);
}

.cta-phone-btn.phone {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.cta-phone-btn.phone:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-5px);
}

.cta-contact-box {
  background: linear-gradient(135deg, #022A4A 0%, #06385F 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.cta-contact-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(251, 119, 4, 0.18), transparent 45%);
  pointer-events: none;
}

.about-company {
  padding: 120px 0;
  background: #fff;
}

.about-company-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-company-tag {
  display: inline-flex;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(251, 119, 4, 0.12);
  color: #FB7704;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 22px;
}

.about-company-title {
  font-family: "Cormorant Garamond", serif;
  max-width: 800px;
  margin: 0 auto var(--wp--preset--spacing--lg, 48px) auto;
  font-size: clamp(2rem, 2.5vw + 1rem, 3rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #022B49 0%, #c0d3e5 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2;
}
.about-company-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: rgba(255, 120, 1, 0.85);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.about-company-title:hover::after {
  width: 80px; /* Animação sutil de respiro ao passar o mouse na seção */
}

.about-company-text {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #4b5563;
  margin-bottom: 26px;
  max-width: 760px;
}

.about-company-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-company-logo img {
  width: 100%;
  max-width: 320px;
  transition: all 0.6s ease;
  opacity: 0.92;
}

.about-company-logo:hover img {
  transform: scale(1.04);
  opacity: 1;
}

@media (max-width: 991px) {
  .about-company {
    padding: 80px 0;
  }
  .about-company-inner {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  .about-company-title {
    font-size: 2rem;
  }
  .about-company-text {
    max-width: 100%;
  }
  .about-company-logo {
    order: -1;
  }
  .about-company-logo img {
    max-width: 220px;
  }
}
.contact-form-side {
  background: #022B4A;
  border-radius: 32px;
  padding: 50px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.contact-form-side input,
.contact-form-side select,
.contact-form-side textarea {
  width: 100%;
  border: none;
  background: #fff;
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 18px;
  font-size: 1rem;
  outline: none;
  transition: 0.3s;
}

.contact-form-side input:focus,
.contact-form-side select:focus,
.contact-form-side textarea:focus {
  box-shadow: 0 0 0 4px rgba(251, 119, 4, 0.25);
}

.contact-form-side button {
  width: 100%;
  height: 60px;
  border: none;
  border-radius: 999px;
  background: #FB7704;
  color: #022B4A;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.35s;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

@media (max-width: 991px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.contact-info-side ul {
  list-style: none;
  padding: 0;
}

.contact-info-side li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 18px;
}

.contact-form-side::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.45;
  pointer-events: none;
}

.contact-form-side::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 119, 4, 0.16), transparent 70%);
  top: -180px;
  right: -180px;
}

.contact-form-side h2 {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--wp--preset--spacing--lg, 48px) auto;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 0%, #eff5fb 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2;
}
.contact-form-side h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: rgba(255, 120, 1, 0.85);
  margin: 16px auto 0 auto;
  border-radius: 2px;
  transition: width 0.3s ease;
}
.contact-form-side h2:hover::after {
  width: 80px; /* Animação sutil de respiro ao passar o mouse na seção */
}

.contact-form-side input,
.contact-form-side select,
.contact-form-side textarea {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-form-side button {
  width: 100%;
  height: 62px;
  background: #FB7704;
  color: #022B4A;
  font-size: 1.5rem;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  letter-spacing: 0.5px;
  box-shadow: 0 15px 35px rgba(251, 119, 4, 0.35);
}

.contact-form-side button:hover {
  transform: translateY(-4px);
  background: #ff9124;
  box-shadow: 0 22px 40px rgba(251, 119, 4, 0.45);
}

.contact-mini-title {
  display: inline-block;
  color: #FB7704;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.contact-info-side h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  line-height: 1.2;
  color: #022B4A;
  margin-bottom: 40px;
}

.contact-info-side li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #ECECEC;
}

.contact-info-side li::before {
  content: "✓";
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #FB7704;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  flex-shrink: 0;
}

.contact-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.contact-buttons a {
  position: relative;
  flex: 1;
  min-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 30px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.3rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}

.contact-buttons a svg {
  width: 22px;
  height: 22px;
  transition: 0.35s;
}

.contact-buttons a:hover {
  background: #022B4A;
  color: #ffffff;
  transform: translateY(-4px);
}

.contact-info-side {
  position: relative;
}

.contact-info-side::after {
  content: "⚖";
  position: absolute;
  right: -20px;
  top: 20px;
  font-size: 340px;
  opacity: 0.03;
  pointer-events: none;
}

@media (max-width: 991px) {
  .contact-section {
    padding: 70px 0;
  }
}
.contact-section {
  padding-block: clamp(50px, 8vw, 50px);
  margin: 0px 0 90px 0;
}

.phone-btn {
  background: #ffffff;
  color: #022B4A;
  border: 1px solid rgba(2, 43, 74, 0.01);
  box-shadow: 0 10px 30px rgba(2, 43, 74, 0.08);
}
.phone-btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(2, 43, 74, 0.15);
}

.whatsapp-btn {
  color: #fff;
  background: linear-gradient(135deg, #FB7704, #ff9d2f);
  box-shadow: 0 14px 38px rgba(251, 119, 4, 0.28);
}
.whatsapp-btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(251, 119, 4, 0.38);
}

.contact-buttons a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: 0.8s;
}

.contact-buttons a:hover::before {
  left: 150%;
}

.contact-buttons a:hover svg {
  transform: scale(1.12) rotate(-8deg);
}

/* ==========================
   BOTÃO ENVIAR COM ÍCONE
========================== */
.contact-form-side button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.contact-form-side button:hover {
  color: white;
}
.contact-form-side button svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.contact-form-side button:hover svg {
  transform: translate(5px, -2px) rotate(-8deg) scale(1.08);
}

.contact-form-side button span {
  display: inline-flex;
  align-items: center;
}

.contact-form-side button svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.contact-form-side button:hover svg {
  transform: translateX(4px);
}

.fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
}

/* BOTÃO */
.fab-toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* ÍCONE */
.fab-icon {
  width: 62px;
  height: 62px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.35);
  transition: 0.35s;
}

.fab-icon img {
  width: 28px;
  height: 28px;
  display: block;
}

/* BALÃO */
.fab-text {
  position: relative;
  display: flex;
  align-items: center;
  height: 54px;
  padding: 0 22px;
  background: #FFF;
  color: #022B49;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  transition: 0.35s;
}

/* SETA DO BALÃO */
.fab-text::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 16px;
  height: 16px;
  background: #FFF;
  border-radius: 3px;
}

/* HOVER */
.fab-toggle:hover .fab-icon {
  transform: scale(1.08);
  box-shadow: 0 22px 45px rgba(37, 211, 102, 0.45);
}

.fab-toggle:hover .fab-text {
  transform: translateX(-4px);
}

/* MENU */
.fab-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: absolute;
  right: 0;
  bottom: 82px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s;
}

.fab.open .fab-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.fab-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FFF;
  color: #022B49;
  padding: 14px 18px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transition: 0.25s;
}

.fab-item:hover {
  transform: translateX(-4px);
}

.fab-item img {
  width: 20px;
  height: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
  .fab {
    right: 16px;
    bottom: 16px;
  }
  .fab-icon {
    width: 58px;
    height: 58px;
  }
  .fab-icon img {
    width: 26px;
    height: 26px;
  }
  .fab-text {
    display: none;
  }
  .fab-menu {
    width: 220px;
    bottom: 74px;
  }
}
.fab-icon {
  width: 62px;
  height: 62px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25D366;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.35);
  transition: 0.35s;
  animation: fabPulse 3.8s ease-in-out infinite;
}

.fab-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.35);
  animation: fabWave 3.8s ease-out infinite;
}

@keyframes fabPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}
@keyframes fabWave {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  70% {
    transform: scale(1.55);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fabShine {
  0%, 70% {
    transform: translateX(-170%) rotate(20deg);
  }
  85% {
    transform: translateX(170%) rotate(20deg);
  }
  100% {
    transform: translateX(170%) rotate(20deg);
  }
}
.site-footer {
  background: #F5F7FA;
  padding: 100px 0 60px;
  border-top: 5px solid #FF7F00;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 120px;
  /* ALINHA AS DUAS COLUNAS NO TOPO */
  align-items: start;
}

/* BRAND */
/* COLUNA DA ESQUERDA */
.footer-brand {
  display: flex;
  flex-direction: column;
}

/* REMOVE ESPAÇO ESTRANHO DA LOGO */
.footer-logo {
  display: flex;
  align-items: center;
  margin: 0 0 40px 0;
  padding: 0;
  line-height: 1;
}

/* LOGO */
.footer-logo img,
.custom-logo {
  display: block;
  max-width: 220px;
  height: auto;
}

/* TEXTO */
.footer-text {
  margin-bottom: 18px;
  color: #4B5563;
  font-size: 1rem;
  line-height: 1.9;
  max-width: 600px;
}

/* TÍTULO */
.footer-title {
  max-width: 800px;
  margin: 0 auto var(--wp--preset--spacing--lg, 48px) auto;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  background: linear-gradient(125deg, #022B49 0%, #022B49 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2;
}
.footer-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: rgba(255, 120, 1, 0.85);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.footer-title:hover::after {
  width: 80px; /* Animação sutil de respiro ao passar o mouse na seção */
}

/* LINKS */
.footer-links a,
.footer-text a {
  color: #4B5563;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-links strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  color: #022B49;
  margin-bottom: 4px;
}

.footer-links li {
  margin-bottom: 14px;
  color: #4B5563;
}

.footer-links a {
  color: #EA580C;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover,
.footer-text a:hover {
  color: #FF7F00;
}

.footer-links a,
.footer-brand a {
  color: #0F172A;
}

.footer-links a:hover,
.footer-brand a:hover {
  color: #9A3412;
}

.footer-links li,
.footer-links a,
.footer-text {
  overflow-wrap: break-word;
  word-break: break-word;
  font-size: 18px;
}

.footer-text:last-child {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* BOTTOM */
.footer-bottom {
  margin-top: 80px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.42);
}

@media (max-width: 991px) {
  .site-footer {
    padding: 80px 0 30px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .footer-bottom {
    margin-top: 50px;
  }
}
.footer-logo .custom-logo {
  display: inline-flex !important;
  border-radius: 10px;
}

.footer-column {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  height: auto;
  transition: none;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}

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

@media (max-width: 991px) {
  .footer-column {
    padding: 24px;
  }
}
.footer-contact {
  margin-top: 45px;
}

.footer-contact-top {
  display: grid;
  grid-template-columns: 1fr 170px;
  gap: 40px;
  align-items: start;
  margin-bottom: -5px;
}

.footer-qrcode {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.footer-qrcode img {
  width: 140px;
  height: 140px;
  border-radius: 14px;
  background: #FFF;
  padding: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.footer-links {
  margin: 0;
  padding: 0;
}

.footer-links li {
  list-style: none;
  margin-bottom: 18px;
}

@media (max-width: 991px) {
  .footer-contact {
    grid-template-columns: 1fr;
  }
  .footer-qrcode {
    justify-content: flex-start;
  }
  .footer-qrcode img {
    width: 130px;
    height: 130px;
  }
}
.footer-links-short {
  margin: 0;
  padding: 0;
}

.footer-links-short li {
  list-style: none;
  margin-bottom: 24px;
}

.footer-links-full {
  margin: 0;
  padding: 0;
}

.footer-links-full li {
  list-style: none;
  margin: 24px 0;
}

.footer-qrcode {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-qrcode img {
  width: 150px;
  height: 150px;
  padding: 8px;
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.footer-qrcode span {
  margin-top: 12px;
  font-size: 0.82rem;
  color: #64748B;
}

.footer-links strong {
  display: block;
  color: #022B4A;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.footer-links a {
  color: #EA580C;
  font-weight: 600;
  text-decoration: none;
}

.footer-links-full a {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: anywhere;
}

@media (max-width: 991px) {
  .footer-links-full a {
    font-size: 16px;
  }
}
.footer-links-full li {
  line-height: 1.8;
}

@media (max-width: 991px) {
  .footer-contact-top {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .footer-qrcode {
    align-items: flex-start;
  }
  .footer-qrcode img {
    width: 130px;
    height: 130px;
  }
}

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