@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(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(2.6rem, 4.2vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -1.6px;
  font-weight: 700;
  margin-bottom: 20px;
  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: 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);
}

@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);
  }
}
/* SLIDER */
.hero-slider {
  min-height: 180px;
  position: relative;
  margin-bottom: 15px;
}

@media (max-width: 991px) {
  .hero-slider {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    min-height: auto;
  }
}
/* SLIDES */
.hero-slide {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 1.6s cubic-bezier(0.22, 1, 0.36, 1), transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  display: none;
}

/* ATIVO */
.hero-slide.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

/* PRIMÁRIO */
.hero-btn-primary {
  background: #0d3b66;
  color: #fff;
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
  background: #0b3155;
}

/* SECUNDÁRIO */
.hero-btn-secondary {
  border: 1px solid #dcdcdc;
  color: #333;
  background: #fff;
}

.hero-btn-secondary:hover {
  transform: translateY(-2px);
  border-color: #0d3b66;
  color: #0d3b66;
}

@media (max-width: 991px) {
  .hero-actions {
    width: 100%;
    flex-direction: column;
  }
  .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);
}

.site-footer {
  background: #F3F5F8;
  color: rgba(255, 255, 255, 0.78);
  padding: 120px 0 40px;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  /* 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 24px 0;
  padding: 0;
  line-height: 1;
}

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

/* TEXTO */
.footer-text {
  margin-bottom: 18px;
  color: rgba(26, 8, 8, 0.78);
}

/* TÍTULO */
.footer-title {
  color: rgba(23, 4, 4, 0.78);
  margin-top: 0;
  padding-top: 0;
  line-height: 4;
}

/* LINKS */
.footer-links {
  list-style: none;
  margin: 20px 0 0 0;
}

.footer-links li {
  margin-bottom: 14px;
  color: rgba(32, 8, 8, 0.62);
}

.footer-links a {
  color: rgba(32, 8, 8, 0.62);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

/* 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;
  }
}

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