/* Site Sithes — estilos (espelha engine-astro global.css) */

html, body, button, input, select, textarea { font-family: 'Poppins', sans-serif; }
html { scroll-behavior: smooth; overflow-x: clip; scrollbar-gutter: stable; }

#site-header {
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

.site-card {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 4px 24px rgba(12, 71, 120, 0.08);
}

.nav-glass {
  background-color: rgb(255 255 255 / 0.55);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid rgb(255 255 255 / 0.6);
  box-shadow: 0 0 9px -3px rgba(0, 0, 0, 0.18);
}

.nav-dropdown::after {
  content: '';
  position: absolute;
  left: -0.75rem;
  right: -0.75rem;
  top: 100%;
  height: 1rem;
}

.nav-dropdown-panel {
  visibility: hidden;
  transform: translateX(-50%) translateY(8px) scale(0.98);
  transform-origin: top center;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.22s;
  pointer-events: none;
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
  pointer-events: auto;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1) 0.04s, visibility 0s linear 0s;
}

.nav-dropdown-item {
  border-radius: 0.75rem;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.nav-dropdown-item:hover {
  background-color: rgb(240 249 255);
  box-shadow: 0 4px 16px rgba(12, 71, 120, 0.08);
}

.nav-dropdown-icon {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

.nav-dropdown-item:hover .nav-dropdown-icon {
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.45);
}

/* Menu mobile */
.nav-mobile-toggle-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 1.25rem;
  height: 1rem;
}

.nav-mobile-bar {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 9999px;
  background-color: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-mobile-toggle[aria-expanded="true"] .nav-mobile-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-mobile-toggle[aria-expanded="true"] .nav-mobile-bar:nth-child(2) {
  opacity: 0;
}

.nav-mobile-toggle[aria-expanded="true"] .nav-mobile-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
}

.nav-mobile-panel.is-open {
  pointer-events: auto;
}

.nav-mobile-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-mobile-panel.is-open .nav-mobile-backdrop {
  opacity: 1;
}

.nav-mobile-sheet {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(100vw - 1.5rem, 22rem);
  height: 100%;
  background: #fff;
  box-shadow: -12px 0 40px rgba(12, 71, 120, 0.14);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-mobile-panel.is-open .nav-mobile-sheet {
  transform: translateX(0);
}

.nav-mobile-sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #f5f5f4;
}

.nav-mobile-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  color: #0c4a6e;
  transition: background-color 0.2s ease;
}

.nav-mobile-close:hover {
  background-color: #f0f9ff;
}

.nav-mobile-nav {
  flex: 1;
  overflow-y: auto;
  padding: 0.75rem 1rem 1rem;
}

.nav-mobile-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 0.75rem;
  border-radius: 0.75rem;
  color: #111;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-mobile-link:hover,
.nav-mobile-link:focus-visible {
  background-color: #f0f9ff;
  color: #0c4a6e;
}

.nav-mobile-group {
  margin-bottom: 0.5rem;
}

.nav-mobile-group-label {
  margin: 0.5rem 0.75rem 0.25rem;
  color: #78716c;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-mobile-sublink {
  align-items: flex-start;
}

.nav-mobile-sublink-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 0.625rem;
  background: linear-gradient(79deg, #84cc16 0%, #16a34a 100%);
  color: #fff;
}

.nav-mobile-sublink-icon .icon-svg {
  width: 1.125rem;
  height: 1.125rem;
}

.nav-mobile-footer {
  padding: 1rem 1.25rem 1.5rem;
  border-top: 1px solid #f5f5f4;
}

.nav-mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 2.75rem;
  border-radius: 0.625rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(12, 71, 120, 0.25);
}

body.nav-mobile-open {
  overflow: hidden;
}

.bg-gradient-btn {
  background: linear-gradient(79deg, #84cc16 0%, #16a34a 100%);
}

.bg-gradient-btn-secondary {
  background: linear-gradient(82deg, #0284c7 0%, #0c4a6e 100%);
}

.scroll-progress-track { background: linear-gradient(79deg, #84cc16 0%, #16a34a 100%); }
.scroll-progress-fill {
  background: linear-gradient(82deg, #0284c7 0%, #0c4a6e 100%);
  transition: width 0.12s linear;
}

.icon-wrap {
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-svg { width: 1.5rem; height: 1.5rem; }

.icon-check {
  width: 1.5rem;
  height: 1.5rem;
  font-size: 0.7rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-nav-btn {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-social-btn {
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social-icon,
.footer-social-btn .icon-svg {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

.footer-copyright {
  text-align: center;
}
.footer-copyright > * {
  text-align: center;
}
.footer-copyright p {
  margin: 0;
}

/* Hero interno (serviços / hospedagem) */
.page-hero-bg {
  background-image: var(--page-hero-bg-mobile);
  background-size: cover;
  background-position: center;
}

@media (min-width: 1024px) {
  .page-hero-bg {
    background-image: var(--page-hero-bg-desktop);
  }
}

/* Hero */
.hero-visual {
  position: relative;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  overflow: visible;
}

@media (min-width: 1024px) {
  .hero-visual { min-height: 600px; }
}

.hero-vector-stage {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 108%;
  height: 108%;
  pointer-events: none;
  z-index: 0;
}

.hero-vector-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  opacity: 1;
}

.hero-main-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
}

.hero-img-slot {
  position: relative;
  z-index: 1;
  width: min(90vw, 640px);
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
}

.hero-float-card {
  pointer-events: auto;
  will-change: transform;
  transform: translateZ(0);
}

@media (max-width: 1023px) {
  .hero-float-card {
    display: none;
  }

  .hero-visual {
    min-height: 280px;
  }
}

/* Fallback flutuante via CSS (caso GSAP falhe) */
@keyframes hero-card-float-0 {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(-8px, 16px, 0) rotate(1.2deg); }
}
@keyframes hero-card-float-1 {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(10px, 20px, 0) rotate(-1.5deg); }
}
@keyframes hero-card-float-2 {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(-6px, 14px, 0) rotate(1deg); }
}

html.no-gsap .hero-float-card[data-float-index="0"] { animation: hero-card-float-0 2.95s ease-in-out infinite; }
html.no-gsap .hero-float-card[data-float-index="1"] { animation: hero-card-float-1 3.3s ease-in-out infinite 0.45s; }
html.no-gsap .hero-float-card[data-float-index="2"] { animation: hero-card-float-2 2.6s ease-in-out infinite 0.9s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-float-card,
  html.no-gsap .hero-float-card[data-float-index="0"],
  html.no-gsap .hero-float-card[data-float-index="1"],
  html.no-gsap .hero-float-card[data-float-index="2"] {
    animation: none !important;
  }
  #preloader { display: none !important; }
}

/* Diferenciais */
.diferencial-card { transition: transform 0.35s ease, box-shadow 0.35s ease; }
.diferencial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(12, 71, 120, 0.14);
}
.diferencial-card-icon { transition: transform 0.35s ease; }
.diferencial-card:hover .diferencial-card-icon { transform: scale(1.08); }

/* Parceiros marquee */
.parceiros-marquee-title {
  margin: 0;
}
.client-marquee-track {
  animation: client-marquee-scroll 30s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
}
.client-marquee:hover .client-marquee-track { animation-play-state: paused; }
.client-marquee-item { min-height: 3.5rem; flex-shrink: 0; }
.client-marquee-img { opacity: 0.82; transition: opacity 0.3s ease; }
.client-marquee-item:hover .client-marquee-img { opacity: 1; }

@keyframes client-marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}

/* Soluções carousel */
.solucoes-carousel-shell { padding-top: 1rem; padding-bottom: 1rem; position: relative; }

/* Soluções — vetor de fundo */
.solucoes-waves-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.solucoes-waves-img {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 115%;
  min-width: 72rem;
  max-width: none;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: contain;
  object-position: center;
  opacity: 1;
}
@media (min-width: 768px) {
  .solucoes-waves-img {
    width: 108%;
    top: 50%;
  }
}

#solucoes .site-container {
  position: relative;
  z-index: 1;
}
#solucoes .solucoes-carousel-shell,
#solucoes .solucoes-card {
  position: relative;
  z-index: 2;
}

.solucoes-carousel-viewport { overflow: hidden; touch-action: pan-y pinch-zoom; cursor: grab; }
.solucoes-carousel-viewport.is-dragging { cursor: grabbing; user-select: none; }
.solucoes-track {
  display: flex;
  gap: 2rem;
  padding: 1rem 0;
  transition: transform 500ms ease-in-out;
  will-change: transform;
}
.solucoes-carousel-viewport.is-dragging .solucoes-track {
  transition: none;
}
.solucoes-card { flex: 0 0 100%; min-width: 0; }
@media (min-width: 768px) {
  .solucoes-card { flex: 0 0 calc(33.333% - 1.33rem); }
}

/* Portfólio */
.portfolio-track { transition: transform 500ms ease-out; }

/* Cases home carousel */
.cases-home-carousel { padding: 0 2.5rem; }
@media (min-width: 768px) {
  .cases-home-carousel { padding: 0 3.5rem; }
}
.cases-home-viewport {
  overflow: hidden;
  touch-action: pan-y pinch-zoom;
  cursor: grab;
}
.cases-home-carousel.is-dragging .cases-home-viewport {
  cursor: grabbing;
  user-select: none;
}
.cases-home-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 500ms ease-in-out;
}
.cases-home-carousel.is-dragging .cases-home-track {
  transition: none;
}
.cases-home-slide {
  flex: 0 0 100%;
  min-width: 0;
}
@media (min-width: 768px) {
  .cases-home-slide { flex: 0 0 calc(50% - 0.75rem); }
}
.case-home-card { transition: transform 0.35s ease, box-shadow 0.35s ease; }
.case-home-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(12, 71, 120, 0.12); }
.case-card { transition: transform 0.35s ease, box-shadow 0.35s ease; }
.case-card:hover { transform: translateY(-8px); box-shadow: 0 18px 40px rgba(12, 71, 120, 0.14); }
.case-card-image-wrap::after,
.case-home-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(12, 71, 120, 0.18));
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.case-card:hover .case-card-image-wrap::after,
.case-home-card:hover .case-home-card-image::after { opacity: 1; }

/* Case post */
.case-post-hero-overlay {
  background: linear-gradient(180deg, rgba(12, 71, 120, 0.55) 0%, rgba(12, 71, 120, 0.82) 100%);
}
.case-post-breadcrumb a { color: rgba(255, 255, 255, 0.9); }
.case-post-breadcrumb a:hover { color: #bef264; }
.case-post-others { border-top: 1px solid #e7e5e4; padding-top: 2.5rem; }

/* Contato */
.contato-vector-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.contato-vector-stage {
  position: absolute;
  left: 50%;
  top: 58%;
  width: 125%;
  max-width: none;
  min-height: 115%;
  pointer-events: none;
}
.contato-vector-img {
  width: 100%;
  height: 100%;
  min-height: 115%;
  object-fit: contain;
  object-position: center 55%;
  opacity: 0.5;
}

#contato-whatsapp-btn .icon-svg {
  width: 1.25rem;
  height: 1.25rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Blog */
.blog-card { transition: transform 0.35s ease, box-shadow 0.35s ease; }
.blog-card:hover { transform: translateY(-8px); box-shadow: 0 18px 40px rgba(12, 71, 120, 0.14); }
.blog-card-image-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12, 74, 110, 0.18), transparent 50%);
  opacity: 0; transition: opacity 0.35s ease;
}
.blog-card:hover .blog-card-image-wrap::after { opacity: 1; }

.blog-category-filter { margin-bottom: 2rem; }
.blog-category-filter-list { display: flex; flex-wrap: wrap; gap: 0.625rem; list-style: none; margin: 0; padding: 0; justify-content: center; }
.blog-category-filter-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border-radius: 9999px; border: 1px solid rgba(12, 74, 110, 0.12);
  background: #fff; color: #0c4a6e; font-size: 0.8125rem; font-weight: 600;
  padding: 0.625rem 1rem; text-decoration: none;
}
.blog-category-filter-btn.is-active {
  background: linear-gradient(82deg, #0284c7 0%, #0c4a6e 100%);
  border-color: transparent; color: #fff;
}
.blog-category-filter-count {
  display: inline-flex; min-width: 1.375rem; align-items: center; justify-content: center;
  border-radius: 9999px; background: rgba(12, 74, 110, 0.08); font-size: 0.6875rem; font-weight: 700; padding: 0.125rem 0.375rem;
}
.blog-category-filter-btn.is-active .blog-category-filter-count { background: rgba(255,255,255,0.18); }

.blog-listing-meta { margin: 0 0 1.5rem; text-align: center; color: rgba(12,74,110,0.65); font-size: 0.875rem; }
.blog-listing-empty { display: flex; flex-direction: column; align-items: center; gap: 1rem; padding: 4rem 1rem; text-align: center; }
.blog-listing-empty-link { color: #0c4a6e; font-weight: 600; text-decoration: underline; }

.blog-pagination { margin-top: 3rem; }
.blog-pagination-list { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.5rem; list-style: none; margin: 0; padding: 0; }
.blog-pagination-btn {
  display: inline-flex; min-width: 2.5rem; height: 2.5rem; align-items: center; justify-content: center;
  border-radius: 0.625rem; border: 1px solid rgba(12,74,110,0.12); background: #fff; color: #0c4a6e;
  font-size: 0.875rem; font-weight: 600; padding: 0 0.75rem; text-decoration: none;
}
.blog-pagination-btn.is-active { background: #0c4a6e; border-color: #0c4a6e; color: #fff; }

/* —— Post interno (alinhado ao blog / site) —— */
.blog-post-hero .hospedagem-hero-overlay {
  --mx: 50%;
  --my: 50%;
  background:
    radial-gradient(42rem circle at var(--mx) var(--my), rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.42) 38%, rgba(255, 255, 255, 0.58) 100%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.52) 0%, rgba(255, 255, 255, 0.38) 48%, rgba(255, 255, 255, 0.62) 100%);
}
.blog-post-hero .site-container {
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.92), 0 0 1px rgba(255, 255, 255, 0.95);
}
.blog-post-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  margin-bottom: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(12, 74, 110, 0.55);
}
.blog-post-breadcrumb a {
  color: #0c4a6e;
  text-decoration: none;
  transition: color 0.2s ease;
}
.blog-post-breadcrumb a:hover {
  color: #65a30d;
}
.blog-post-byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  font-size: 0.875rem;
  color: rgba(12, 74, 110, 0.62);
}
.blog-post-byline-sep {
  opacity: 0.5;
}
.blog-post-body {
  overflow: hidden;
}
.blog-post-page {
  padding-bottom: 4rem;
}

.blog-adsense {
  margin: 0 0 2rem;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(245, 245, 244, 0.9);
  border: 1px dashed rgba(12, 74, 110, 0.14);
  overflow: hidden;
}
.blog-adsense-label {
  margin: 0 0 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(12, 74, 110, 0.45);
  text-align: center;
}

.blog-post-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(12, 74, 110, 0.1);
  text-align: center;
}
.blog-post-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #0c4a6e;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
.blog-post-footer-link:hover {
  color: #65a30d;
}

.blog-post-share {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(12, 74, 110, 0.1);
}
.blog-post-share-head {
  margin-bottom: 1rem;
}
.blog-post-share-label {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0c4a6e;
}
.blog-post-share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.blog-post-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 0.625rem;
  border: 1px solid rgba(12, 74, 110, 0.12);
  background: #fff;
  color: #0c4a6e;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.55rem 0.85rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.blog-post-share-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(12, 74, 110, 0.22);
  box-shadow: 0 8px 18px rgba(12, 71, 120, 0.1);
}
.blog-post-share-icon {
  display: inline-flex;
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}
.blog-post-share-icon svg { width: 100%; height: 100%; }
.blog-post-share-btn--whatsapp:hover { color: #15803d; border-color: rgba(21, 128, 61, 0.25); }
.blog-post-share-btn--facebook:hover { color: #1d4ed8; border-color: rgba(29, 78, 216, 0.25); }
.blog-post-share-btn--x:hover { color: #111827; border-color: rgba(17, 24, 39, 0.2); }
.blog-post-share-btn--linkedin:hover { color: #0a66c2; border-color: rgba(10, 102, 194, 0.25); }
.blog-post-share-btn--telegram:hover { color: #0284c7; border-color: rgba(2, 132, 199, 0.25); }
.blog-post-share-btn--copy:hover { color: #0c4a6e; }
.blog-post-share-feedback {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #15803d;
}
.blog-post-share-feedback.hidden { display: none; }

@media (min-width: 768px) {
  .blog-post-share-text { display: inline; }
}
@media (max-width: 767px) {
  .blog-post-share-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .blog-post-share-btn {
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.65rem 0.35rem;
    text-align: center;
    min-height: 4.25rem;
  }
  .blog-post-share-text {
    font-size: 0.6875rem;
    line-height: 1.2;
  }
}

.blog-post-html h2,
.blog-post-html h3,
.blog-post-html h4 {
  color: #0c4a6e;
  font-weight: 600;
  margin: 2rem 0 1rem;
  line-height: 1.3;
}
.blog-post-html blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid #7dd3fc;
  background: rgba(125, 211, 252, 0.12);
  color: rgba(12, 74, 110, 0.85);
}
.blog-post-html table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}
.blog-post-html th,
.blog-post-html td {
  border: 1px solid rgba(12, 74, 110, 0.15);
  padding: 0.625rem 0.75rem;
  text-align: left;
}
.blog-post-html iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 220px;
  margin: 1.5rem 0;
  border: 0;
  border-radius: 0.75rem;
}
.blog-post-html img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin: 1rem 0;
}
.blog-post-html a {
  color: #0369a1;
  text-decoration: underline;
}

.blog-gallery { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(12, 74, 110, 0.1); }
.blog-gallery-title {
  margin: 0 0 1.25rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #0c4a6e;
}
.blog-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .blog-gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
}
.blog-gallery-item { margin: 0; overflow: hidden; border-radius: 0.75rem; background: #f5f5f4; }
.blog-gallery-img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
  transition: transform 0.25s ease;
}
.blog-gallery-item:hover .blog-gallery-img { transform: scale(1.03); }

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bg-gradient-header {
  background: linear-gradient(
    79deg,
    rgba(240, 249, 255, 0.85) 0%,
    rgba(248, 250, 252, 0.95) 38%,
    #ffffff 72%
  );
}

/* Páginas internas — Hospedagem / Serviços */
.hospedagem-hero-overlay {
  --mx: 50%;
  --my: 50%;
  background:
    radial-gradient(38rem circle at var(--mx) var(--my), rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.52) 42%, rgba(255, 255, 255, 0.72) 100%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.55) 50%, rgba(255, 255, 255, 0.72) 100%);
}

.hospedagem-scroll-icon { animation: hospedagem-scroll-wheel 2s ease-in-out infinite; }
.hospedagem-scroll-chevron { animation: hospedagem-scroll-chevron 2s ease-in-out infinite; }

@keyframes hospedagem-scroll-wheel {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(4px); opacity: 0.85; }
}

@keyframes hospedagem-scroll-chevron {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(6px); opacity: 1; }
}

.plano-card-pro-wrapper {
  position: relative;
  padding-top: 0.25rem;
  border-radius: 22px;
  background: linear-gradient(79deg, #84cc16 0%, #16a34a 100%);
  box-shadow: 0 20px 48px rgba(12, 71, 120, 0.2);
}

@media (min-width: 768px) {
  .plano-card-pro-wrapper { transform: scale(1.03); }
}

.plano-card-pro-wrapper .site-card {
  border-radius: 20px;
  box-shadow: none;
}

.btn-plano-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 2.75rem;
  border-radius: 0.5rem;
  border: 2px solid #0c4a6e;
  color: #0c4a6e;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-plano-secondary:hover {
  background-color: #f0f9ff;
  transform: scale(1.02);
}

.btn-plano-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 2.75rem;
  border-radius: 0.5rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(12, 71, 120, 0.25);
  transition: transform 0.2s ease;
}

.btn-plano-primary:hover { transform: scale(1.02); }

.bloco-assinaturas { margin-bottom: 1.5rem; }
.plano-mensal { padding: 1rem 0 1.25rem; border-bottom: 1px solid #e7e5e4; }
.titulo-frequencia { font-size: 0.875rem; font-weight: 500; color: #57534e; margin-bottom: 0.5rem; }
.azul-destaque { color: #0c4a6e !important; }
.preco-frequencia { display: flex; align-items: baseline; gap: 0.2rem; color: #0c4a6e; }
.cif-pequeno { font-size: 1rem; font-weight: 600; }
.val-medio { font-size: 2rem; font-weight: 700; line-height: 1; }
.val-grande { font-size: 2.5rem; font-weight: 700; line-height: 1; }
.per-pequeno { font-size: 0.875rem; font-weight: 500; color: #57534e; }
.plano-anual-destaque { margin-top: 1rem; padding: 1rem; border-radius: 12px; background-color: #f0f9ff; border: 1px solid #bae6fd; }
.tag-vantajoso { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em; color: #fff; background: linear-gradient(82deg, #f97316 0%, #ea580c 100%); padding: 0.35rem 0.65rem; border-radius: 6px; margin-bottom: 0.75rem; }
.economia-destaque { margin-top: 0.75rem; padding: 0.6rem 0.75rem; border-radius: 8px; background-color: #ecfccb; border: 1px solid #bef264; color: #365314; font-size: 0.8rem; font-weight: 600; line-height: 1.4; }
.texto-renovacao-maior { margin-top: 0.65rem; font-size: 0.8rem; color: #57534e; line-height: 1.4; }
.dominio-gratis-box { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.85rem; padding: 0.65rem 0.75rem; border-radius: 8px; background-color: #fff; border: 1px solid #86efac; font-size: 0.85rem; color: #0c4a6e; }
.check-verde { color: #16a34a; flex-shrink: 0; }

/* Ferramentas */
.ferramentas-float-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  animation: ferramentas-float 5s ease-in-out infinite;
  text-decoration: none;
}
.ferramentas-float-card[data-float-delay='0'] { animation-delay: 0s; }
.ferramentas-float-card[data-float-delay='1'] { animation-delay: 0.6s; }
.ferramentas-float-card[data-float-delay='2'] { animation-delay: 1.2s; }
.ferramentas-float-card[data-float-delay='3'] { animation-delay: 0.3s; }
.ferramentas-float-card[data-float-delay='4'] { animation-delay: 0.9s; }
.ferramentas-float-card[data-float-delay='5'] { animation-delay: 1.5s; }
.ferramentas-float-card:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 18px 40px rgba(12, 71, 120, 0.16); }

@keyframes ferramentas-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.ferramenta-card { transition: transform 0.35s ease, box-shadow 0.35s ease; }
.ferramenta-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(12, 71, 120, 0.14); }

.footer-map { position: relative; }
.footer-map-iframe { display: block; }

.footer-map-facade-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  height: 100%;
  min-height: 14rem;
  border: 0;
  background: linear-gradient(135deg, #e0f2fe 0%, #f8fafc 100%);
  color: #0c4a6e;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.footer-map-facade-btn:hover {
  background: linear-gradient(135deg, #bae6fd 0%, #f1f5f9 100%);
}

.footer-map-facade-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: rgba(12, 74, 110, 0.1);
}

.footer-map-facade-text {
  font-size: 0.875rem;
  font-weight: 600;
}

/* Lenis smooth scroll */
html.lenis,
html.lenis body {
  height: auto;
}

html.lenis {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

/* Responsividade geral */
@media (max-width: 767px) {
  #inicio {
    min-height: auto;
    padding-top: 1.5rem;
    padding-bottom: 7rem;
  }

  #diferenciais,
  #contato {
    min-height: 0 !important;
  }

  #solucoes .flex.items-start.justify-between {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  #solucoes .flex.items-start.justify-between > .flex.items-center {
    align-self: flex-end;
  }

  .solucoes-card {
    min-height: auto !important;
  }

  #portfolio-carousel [data-portfolio-prev],
  #portfolio-carousel [data-portfolio-next] {
    width: 2.5rem;
    height: 2.5rem;
  }

  .portfolio-slide {
    height: 280px !important;
  }

  #cookie-consent {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 5.5rem;
    width: auto;
    max-width: none;
  }

  #whatsapp-float {
    right: 0.75rem;
    bottom: 1rem;
  }

  .hospedagem-hero-interactive .bg-fixed {
    background-attachment: scroll !important;
  }
}

.hero-float-card {
  will-change: transform;
}
