@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #F4F5F7;
  color: #6B7280;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 100px 0;
}
@media (min-width: 1024px) {
  .section-padding {
    padding: 140px 0;
  }
}

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-up.delay-1 {
  transition-delay: 0.2s;
}

.section-tag {
  font-family: "Familjen Grotesk", sans-serif;
  color: #735EBD;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: "Familjen Grotesk", sans-serif;
  color: #19102B;
  font-size: clamp(2.5rem, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.section-title strong {
  color: #BBD984;
  font-weight: inherit;
}
.section-title.text-white {
  color: #FFFFFF;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  border-radius: 10px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
}
.btn--green {
  background-color: #BBD984;
  color: #19102B;
}
.btn--green:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(178, 229, 48, 0.3);
}
.btn--purple-mid {
  background-color: #735EBD;
  color: #FFFFFF;
}
.btn--purple-mid:hover {
  background-color: rgb(130.7268722467, 112.0859030837, 196.4140969163);
  transform: translateY(-2px);
}
.btn__icon {
  display: block;
  margin-left: 12px;
  height: 24px;
  width: auto;
}
.btn__icon img {
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  padding-top: 24px;
  transition: padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.site-header__capsule {
  background-color: #735EBD;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px 8px 32px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.site-header__logo img {
  height: 32px;
  width: auto;
}
.site-header__menu-list {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-header__menu-list a {
  font-family: "Inter", sans-serif;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}
.site-header__menu-list a:hover {
  opacity: 1;
  color: #B2E530;
}
.site-header .site-navigation-main {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-header.is-scrolled {
  padding-top: 12px;
}
.site-header.is-scrolled .site-header__capsule {
  background-color: rgba(114, 82, 211, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
@media (max-width: 991px) {
  .site-header capsule {
    padding: 12px 24px;
  }
  .site-header .site-navigation-main {
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    background-color: #19102B;
    border-radius: 16px;
    flex-direction: column;
    padding: 32px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }
  .site-header .site-navigation-main.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .site-header__menu-list {
    flex-direction: column;
    width: 100%;
    text-align: center;
  }
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 100;
}
@media (max-width: 991px) {
  .mobile-menu-toggle {
    display: flex;
  }
}
.mobile-menu-toggle .hamburger-line {
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  transition: all 0.3s ease;
  transform-origin: left;
}
.mobile-menu-toggle.is-active .hamburger-line:nth-child(1) {
  transform: rotate(45deg);
}
.mobile-menu-toggle.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.is-active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 80px 0 80px;
}
.hero__grid {
  display: flex;
  justify-content: flex-start;
}
.hero__card {
  background-color: #19102B;
  border: 1px solid #735EBD; /* Borda do card exigida pelo design */
  border-radius: 16px;
  padding: 64px 80px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.hero__title {
  font-family: "Familjen Grotesk", sans-serif;
  color: #FFFFFF;
  font-size: clamp(2.5rem, 4vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.hero__title strong {
  color: #BBD984;
  font-weight: inherit;
}
.hero__title { /* Cor exata do destaque verde no título */ }
.hero__text {
  font-family: "Familjen Grotesk", sans-serif; /* Segue o design Figma do screenshot */
  color: #F4F5EB; /* Cor F4F5EB do texto exigida pelo design */
  font-size: clamp(1.125rem, 2vw, 24px);
  line-height: 1.5;
  font-weight: 500; /* Peso maior do texto exigido pelo design */
  margin-bottom: 40px;
}
.hero__text p {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .hero__card {
    padding: 40px 24px;
  }
}

/* ==========================================================================
   ESPECIALISTAS (SOBRE NÓS)
   ========================================================================== */
.especialistas {
  position: relative;
  background-color: #F4F5EB; /* #F4F5EB */
  overflow: hidden;
  /* Grafia de Fundo em SVG via CSS (Performance Máxima) */
}
.especialistas::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 50%; /* Ajuste de acordo com a proporção do seu SVG */
  height: 100%;
  background-image: url("https://aprovacao.mangu.com.br/petropack/wp-content/uploads/2026/05/Vector-7.svg");
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
  z-index: 1;
  pointer-events: none;
}
.especialistas__grid {
  position: relative;
  z-index: 2; /* Mantém o conteúdo acima da grafia de fundo */
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
@media (min-width: 1024px) {
  .especialistas__grid {
    grid-template-columns: 1fr 1fr; /* Divide meio a meio no Desktop */
    gap: 100px;
  }
}
.especialistas__content {
  max-width: 540px;
}
.especialistas__content .section-title {
  /* Nesta seção específica, o <strong> fica roxo, não verde */
}
.especialistas__content .section-title strong {
  color: #735EBD;
}
.especialistas__text {
  color: #19102B;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 500;
}
.especialistas__text p {
  margin-bottom: 24px;
}
.especialistas__text p:last-child {
  margin-bottom: 0;
}
.especialistas__image-wrapper {
  position: relative;
}
.especialistas__img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.especialistas {
  /* Badge Flutuante Glassmorphism Refinado */
}
.especialistas__badge {
  position: absolute;
  bottom: 60px; /* Subimos um pouco para destacar mais o efeito 'meio a meio' */
  /* Mágica do Meio a Meio: Alinha o centro do badge com a borda esquerda da imagem */
  left: 0;
  transform: translateX(-50%);
  /* Aumentamos a transparência para 0.7 e mantemos o blur */
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 24px 32px;
  border-radius: 12px;
  /* Sombra mais suave para combinar com a transparência */
  box-shadow: 0 10px 30px rgba(25, 16, 43, 0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 240px;
  /* REGRAS MOBILE (Crítico para responsividade) */
}
@media (max-width: 991px) {
  .especialistas__badge {
    /* No mobile, não dá pra ficar meio a meio fora da tela */
    /* Jogamos ele pra dentro da imagem com margem pequena */
    left: 20px;
    transform: translateX(0); /* Reseta o deslocamento do desktop */
    bottom: 20px;
    padding: 16px 24px;
    min-width: auto;
    background-color: rgba(255, 255, 255, 0.9); /* Um pouco menos transparente no mobile pra garantir leitura */
  }
}
.especialistas__badge .badge-tag {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #735EBD;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}
.especialistas__badge .badge-num {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: clamp(2rem, 3vw, 40px);
  font-weight: 700;
  color: #19102B;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -1px;
}
.especialistas__badge .badge-txt {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  color: #6B7280;
  font-weight: 500;
}

/* ==========================================================================
   SEÇÃO EMBALAGENS
   ========================================================================== */
.embalagens-destaque {
  background-color: #4C3C92; /* Cor roxa azulada do Figma */
  overflow: hidden;
  position: relative; /* Contexto para o posicionamento absoluto da visual */
  /* Grafia cobrindo toda a seção */
}
.embalagens-destaque__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  pointer-events: none;
  opacity: 0.8;
}
.embalagens-destaque__grid {
  position: relative;
  z-index: 2; /* Acima da grafia de fundo */
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
  /* NO DESKTOP: O grid cuida apenas do texto */
}
@media (min-width: 1024px) {
  .embalagens-destaque__grid {
    grid-template-columns: 1fr;
    gap: 0;
    position: static;
  }
}
.embalagens-destaque__content {
  /* Mobile */
  position: relative;
  z-index: 3;
  max-width: 100%;
  /* Desktop: Segura o texto para não encostar na imagem gigante */
}
@media (min-width: 1024px) {
  .embalagens-destaque__content {
    max-width: 600px; /* Alinha com a largura do Hero */
    margin-right: auto;
  }
}
.embalagens-destaque__content .section-tag--light {
  color: #BBD984; /* #BBD984 */
}
.embalagens-destaque__content .section-title {
  color: #FFFFFF;
  margin-bottom: 24px;
}
.embalagens-destaque__content .section-title strong {
  color: #19102B; /* #19102B (Cor escura no destaque) */
}
.embalagens-destaque__text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 48px;
}
.embalagens-destaque__text p {
  margin-bottom: 16px;
}
.embalagens-destaque {
  /* Cards de Diferenciais */
}
.embalagens-destaque__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .embalagens-destaque__features {
    grid-template-columns: 1fr 1fr;
  }
}
.embalagens-destaque__features .feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.05);
}
.embalagens-destaque__features .feature-card__icon {
  width: 28px;
  height: 28px;
}
.embalagens-destaque__features .feature-card__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.embalagens-destaque__features .feature-card__text {
  color: #FFFFFF;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
}
.embalagens-destaque {
  /* CONTAINER VISUAL: A MÁGICA ESTÁ AQUI */
}
.embalagens-destaque__visual {
  position: relative;
  z-index: 1; /* Fica atrás do conteúdo de texto em overlap se houver */
  display: flex;
  justify-content: center;
  align-items: center;
  /* REGRAS DE DESKTOP (Pixel-Perfect) */
}
@media (min-width: 1024px) {
  .embalagens-destaque__visual {
    position: absolute;
    top: 0;
    right: 0;
    width: 45vw;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
    margin: 0;
  }
}
.embalagens-destaque__visual .visual-main-render {
  /* Mobile */
  width: 100%;
  max-width: none;
  height: auto;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.3));
  /* Desktop: Gigante e Incompleta */
}
@media (min-width: 1024px) {
  .embalagens-destaque__visual .visual-main-render {
    width: auto;
    height: auto;
    max-width: none;
    max-height: 90%;
    position: relative;
    right: 0;
    filter: drop-shadow(0 50px 100px rgba(0, 0, 0, 0.5));
  }
}

/* ==========================================================================
   SEÇÃO 4: DIFERENCIAIS (Por que escolher)
   ========================================================================== */
.diferenciais {
  background-color: #F4F5EB; /* O Bege claro do fundo (#F4F5EB) */
	padding: 140px 0 50px 0;
}
.diferenciais__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 64px;
  text-align: center;
}
.diferenciais__header .section-title {
  max-width: 800px;
  margin: 0 auto;
}
.diferenciais__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  /* Tablet: 2 colunas */
}
@media (min-width: 768px) {
  .diferenciais__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.diferenciais__grid {
  /* Desktop: 3 colunas */
}
@media (min-width: 1024px) {
  .diferenciais__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}
.diferenciais .dif-card {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02); /* Sombra bem sutil exigida pelo minimalismo */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.diferenciais .dif-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}
.diferenciais .dif-card__icon {
  width: 32px;
  height: 32px;
  margin-bottom: 24px;
}
.diferenciais .dif-card__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.diferenciais .dif-card__title {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #19102B;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.diferenciais .dif-card__text {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: #6B7280; /* #6B7280 */
  line-height: 1.6;
  font-weight: 500;
}

/* ==========================================================================
   SEÇÃO 5: DEPOIMENTOS / PARCEIROS
   ========================================================================== */
.depoimentos {
  background-color: #F4F5EB; /* Mantém o fundo bege #F4F5EB da página */
}
.depoimentos__wrapper {
  background-color: #19102B; /* #19102B */
  border-radius: 16px;
  padding: 80px 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
@media (min-width: 1024px) {
  .depoimentos__wrapper {
    padding: 100px 80px;
  }
}
.depoimentos__header {
  max-width: 700px;
  margin: 0 auto 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.depoimentos__header .section-tag--light {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}
.depoimentos__header .text-green {
  color: #BBD984; /* Força o verde lima no título */
  margin-bottom: 24px;
  font-size: 52px;
}
.depoimentos__subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
}
.depoimentos {
  /* Grid dos cards de depoimento */
}
.depoimentos__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .depoimentos__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.depoimentos {
  /* Design Interno dos Cards */
}
.depoimentos .dep-card {
  background-color: rgba(255, 255, 255, 0.04); /* Fundo sutil para destacar dentro do wrapper escuro */
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.depoimentos .dep-card:hover {
  transform: translateY(-4px);
  background-color: rgba(255, 255, 255, 0.07);
}
.depoimentos .dep-card__text {
  color: #FFFFFF;
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.6;
  font-weight: 400;
}
.depoimentos .dep-card__author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.depoimentos .dep-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.depoimentos .dep-card__avatar img {
  width: 35%;
  height: 35%;
  -o-object-fit: cover;
     object-fit: cover;
}
.depoimentos .dep-card__avatar {
  /* Estiliza o fallback do SVG se a foto não for enviada */
}
.depoimentos .dep-card__avatar svg {
  width: 20px;
  height: 20px;
  color: #735EBD;
}
.depoimentos .dep-card__meta {
  display: flex;
  flex-direction: column;
}
.depoimentos .dep-card__name {
  color: #FFFFFF;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   SEÇÃO 6: CTA / CONTATO (Ponta a ponta)
   ========================================================================== */
.cta-final {
  background-color: #19102B;
  position: relative;
  overflow: hidden;
  padding: 100px 0 120px;
}
.cta-final__visual {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.cta-final__visual .visual-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right center;
     object-position: right center;
}
.cta-final__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .cta-final__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.cta-final__content {
  max-width: 520px;
}
.cta-final__content .section-tag--dark {
  color: #735EBD;
  margin-bottom: 24px;
  display: block;
}
.cta-final__content .section-title {
  color: #FFFFFF;
  margin-bottom: 24px;
}
.cta-final__text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 40px;
}
.cta-final__contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
.cta-final__contacts .contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #735EBD;
}
.cta-final__contacts .contact-item span {
  color: #FFFFFF;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
}
.cta-final a {
  background: #BBD984;
  color: #0A0514;
  border-radius: 30px;
}

.cta-final img {
  margin-top: 5px;
  height: 60%;
}

/* ==========================================================================
   FOOTER (Continuidade do roxo)
   ========================================================================== */
.site-footer {
  background-color: #19102B;
  padding: 0 0 40px;
}
.site-footer__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 60px 0 40px;
}
@media (min-width: 1024px) {
  .site-footer__main {
    flex-direction: row;
    justify-content: space-between;
  }
}
.site-footer__brand img {
  height: 32px;
  width: auto;
}
.site-footer__nav .footer-menu-list {
  display: flex;
  justify-content: center;
  gap: 32px;
}
.site-footer__nav .footer-menu-list a {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.site-footer__nav .footer-menu-list a:hover {
  color: #B2E530;
}
.site-footer__actions {
  display: flex;
  gap: 16px;
}
.site-footer__actions .btn-back-top {
  background-color: #735EBD;
  color: #FFFFFF;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}
.site-footer__actions .btn-back-top:hover {
  background-color: rgb(146.4537444934, 130.1718061674, 203.8281938326);
}
/* ==========================================================================
   BOTÃO WHATSAPP FLUTUANTE
   ========================================================================== */
.btn-wpp-float { 
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25D366; /* Verde do WPP */
  width: 56px; /* Aumentei um pouco para ter destaque como floating button */
  height: 56px; 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Sombra para desgrudar do fundo */
  z-index: 9999; /* Garante que fique acima de tudo, inclusive do header sticky */
  transition: transform 0.3s ease, box-shadow 0.3s ease; 

  &:hover { 
    transform: scale(1.08); 
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  } 

  svg { 
    width: 50px; 
    height: 50px; 
    fill: #FFFFFF;
    display: block; /* Remove o espaçamento extra da linha base do HTML */
    margin-top: -2px; /* Ajuste fino ótico para compensar a ponta do balão */
  } 

  /* Ajuste no mobile: um pouco menor e mais perto da borda */
  @include mq(md) {
    bottom: 32px;
    right: 32px;
    width: 64px;
    height: 64px;
    
    svg {
      width: 38px;
      height: 38px;
      margin-top: -3px; /* Ajuste ótico proporcional no desktop */
    }
  }
}
.site-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
@media (min-width: 1024px) {
  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
.site-footer__copy {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  font-family: "Inter", sans-serif;
}
.site-footer__copy a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: underline;
}
.site-footer__mangu {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-footer__mangu span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}
.site-footer__mangu img {
  height: 20px;
  width: auto;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.site-footer__mangu img:hover {
  opacity: 1;
}/*# sourceMappingURL=main.css.map */