:root{
  --laranja-vivite: #ec663b;
  --laranja-light: #ed8019;
  --cinza-light: #3f4548;
  --bg-light: #f7f7f8;
  --bco: #fff;
}
html {
  scroll-behavior: smooth;
  font-size: 16px; /* ↓ de 16px definindo a fonte geral do site*/
}
section {
  scroll-margin-top: 100px; /* ajuste conforme a altura do menu */
}

body{
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  line-height: 1.55; /* Definindo cada linha terá 1.55 × o tamanho da fonte*/
  color: #222;
  background: #fff;
}

/* ===== INICIO AJUSTES GLOBAIS DE TIPOGRAFIA ===== */
/* Base em telas grandes (desktop normal) */
body {
  font-size: 1rem; /* padrão: 16px */
}

/* Tamanhos médios — notebooks e tablets horizontais */
@media (max-width: 1200px) {
  body {
    font-size: 0.95rem; /* 15.2px */
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.4rem; }
  h4, h5, h6 { font-size: 1.1rem; }
}

/* Telas menores — tablets verticais e notebooks compactos */
@media (max-width: 992px) {
  body {
    font-size: 0.9rem; /* 14.4px */
  }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.25rem; }
  h4, h5, h6 { font-size: 1rem; }
}

/* Telas pequenas — celulares */
@media (max-width: 768px) {
  body {
    font-size: 0.85rem; /* 13.6px */
  }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.1rem; }
}
/* Ajuste automático para texto de botões */
@media (max-width: 1200px) {
  .btn {
    font-size: 0.9rem;
    padding: 0.5rem 1.2rem;
  }
}

@media (max-width: 992px) {
  .btn {
    font-size: 0.85rem;
    padding: 0.45rem 1rem;
  }
}

@media (max-width: 768px) {
  .btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.9rem;
  }
}
/* ===== FIM AJUSTES GLOBAIS DE TIPOGRAFIA ===== */

/* ===================== inicio MENU PRINCIPAL ====================================== */
.navbar {
  font-weight: 700;
  transition: background-color 0.45s ease, box-shadow 0.45s ease, backdrop-filter 0.45s ease;
  background-color: transparent !important;
}

.navbar .nav-link {
  position: relative;
  color: #fff !important;
  padding-bottom: 6px;
}
.navbar .nav-link::after { display: none; }
.navbar .nav-link:hover { color: var(--laranja-vivite) !important; }
.navbar .nav-link.active { color: var(--laranja-light) !important; }
.navbar .nav-link:focus,
.navbar .nav-link:active { color: inherit !important; background: none !important; outline: none !important; }

/* BOTÃO HAMBÚRGUER */
.custom-toggler {
  border: none;
  background: var(--laranja-light);
  padding: 10px;
  border-radius: 6px;
}
.custom-toggler .toggler-icon {
  width: 25px;
  height: 20px;
  position: relative;
}
.custom-toggler .toggler-icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: 0.3s ease;
}
.custom-toggler .toggler-icon span:nth-child(1) { top: 0; }
.custom-toggler .toggler-icon span:nth-child(2) { top: 8px; }
.custom-toggler .toggler-icon span:nth-child(3) { top: 16px; }
.custom-toggler.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.custom-toggler.active span:nth-child(2) { opacity: 0; }
.custom-toggler.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ESTADOS DA NAVBAR */
.transparent-nav {
  background-color: transparent !important;
  backdrop-filter: none;
  box-shadow: none !important;
}
.scrolled-nav,
.nav-light-bg {
  background-color: rgba(63,69,72,0.92) !important; /*Cor do fundo menu*/
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.18) !important;
}
.dropdown-icon {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.dropdown.active .dropdown-icon {
  transform: rotate(-135deg);
}

/* ===== RESPONSIVO ===== */
/* ===== RESPONSIVO ===== */
@media (max-width: 991px) {

  .navbar { text-align: center; }
  .nav-item { margin-bottom: 10px; }

  /* REMOVE TRANSITION NO MOBILE — remove atraso */
  #mainNav { 
    background-color: transparent !important; 
    transition: none !important; /* AQUI resolve o atraso */
  }

  #mainNav.show { 
    background-color: rgba(63,69,72,0.92) !important; 
    backdrop-filter: blur(6px); 
    border-radius: 6px !important;
    border: 2px solid #2c2c2c; /* contorno menu*/
  }
  /*----------inicioSolucao Rolagem navbar--------------*/
  .navbar-collapse {
    max-height: calc(100vh - 80px); /* altura da navbar */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  /*----------Somente este Solucao Rolagem navbar-------*/
  
  /* Remove o contorno preto padrão */
  .navbar-toggler,
  .navbar-toggler:focus,
  .navbar-toggler:active {
    outline: none !important;
    box-shadow: none !important;
  }

  /* Estilo fixo do botão hambúrguer */
  .custom-toggler {
    border: 4px solid #2c2c2c !important;  /* contorno permanente */
    background: var(--laranja-light);
    padding: 10px;
    border-radius: 10px;
  }

  .navbar .dropdown-menu {
    display: none;
    position: static;
    background: rgba(73,80,83,0.95); /*cor dentro sub menu*/
    border: 1px solid #2c2c2c; /* contorno sub menu*/
    border-radius: 6px !important;
    margin: 2px 50px !important;
    /*margin: 0;*/
    box-shadow: none;
    text-align: center;
  }

  .navbar .dropdown.active .dropdown-menu { display: block; }

  /*---------Seta no menu celular responsivo-------*/
  .navbar .dropdown-menu::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 47%; /*alinhamento da seta*/
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 9px solid var(--laranja-vivite);
    z-index: 10;
  }
/*---------Seta no menu celular responsivo-------*/
  .dropdown-icon {
    display: inline-block;
    margin-left: 4px;
    transition: transform 0.3s ease;
    vertical-align: middle;
  }

  .dropdown.active .dropdown-icon { transform: rotate(-135deg); }

  .navbar .dropdown-menu .dropdown-item {
    color: #fff;
    padding: 10px 0;
  }

  .navbar .dropdown-menu .dropdown-item:hover {
    color: var(--laranja-vivite);
    background: rgba(92,99,102,0.95);
  }
}

@media (min-width: 992px) {
  .dropdown-icon { margin-left: 4px; vertical-align: middle; }

  /* Dropdown abre ao passar o mouse */
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    transition: opacity 0.3s ease;
  }
  .navbar .dropdown:hover .dropdown-icon {
    transform: rotate(-135deg);
  }

  .navbar .dropdown-menu {
    display: none;
    position: absolute;
    margin-top: 0.5rem;
    background: rgba(63,69,72,0.95);
    border: 2px solid #2c2c2c;; /* contorno sub menu */
    border-radius: 6px;
    padding: 10px 0;
    min-width: 200px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.18);
  }

  /* Seta grande alinhada à esquerda do submenu */
  .navbar .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 20px;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid var(--laranja-vivite);
    z-index: 10;
  }

  .navbar .dropdown-menu .dropdown-item {
    color: #fff;
    padding: 8px 20px;
    white-space: nowrap;
  }
  .navbar .dropdown-menu .dropdown-item:hover {
    background: rgba(92,99,102,0.95);
    color: var(--laranja-vivite);
  }
}
/*======================Fim Menu========================================*/

/* Hero */
.hero-section{
  padding-top: 120px;
  padding-bottom: 60px;
  background: linear-gradient(180deg, #fff 0%, var(--bg-light) 100%);
}
/* Espaço acima e abaixo do carousel */
/*#carouselHero {
  padding-top: 80px;   /* ajuste o quanto quiser */
  /*padding-bottom: 80px;
}/*

/* Carousel com altura fixa *
#carouselHero .carousel-item {
  height: 500px;       /* altura fixa desejada *
  display: flex;
  align-items: center; /* centraliza verticalmente a legenda *
  justify-content: center;
  overflow: hidden;    /* corta partes da imagem que ultrapassarem *
}*/


#carouselHero .carousel-item {
  /*height: 420px; /* altura fixa moderada */
  height: auto;              /* altura automática */
}
#carouselHero .carousel-item img {
  width: 100%;
  /*height: 100%;*/
  height: auto !important;              /* altura proporcional */
  display: block;            /* remove espaços indesejados */
  border-radius: 10px;       /* mantém estética arredondada */
  /*object-fit: contain; /* mostra tudo sem cortar */
  /*background-color: #fff; /* cor de fundo neutra */
}
#carouselhero .row {
  align-items: center; /* centraliza verticalmente as colunas */
}

/* Fundo cinza adaptando ao tamanho do texto */
#carouselHero .caption-bg {
  background: rgba(0, 0, 0, 0.5); /* sombra semitransparente */
  display: inline-block;           /* se adapta ao conteúdo */
  text-align: center;
}

/* Legenda com fundo cinza claro apenas */
#carouselHero .carousel-caption {
  /*background: rgba(255, 255, 255, 0.85);*/
  padding: 1rem 1.5rem;
  border-radius: 10px;
  display: inline-block;
  color: #222 !important;
  text-shadow: none !important;
}

#carouselHero .carousel-caption {
  text-shadow: none !important;   /* remove de todos os elementos dentro */
  color: #fff !important;         /* garante que nada fique cinza */
}

#carouselHero .carousel-caption h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  text-shadow: none !important;              /* remove qualquer sombra extra */
}

#carouselHero .carousel-caption p {
  font-size: 1.1rem;
  color: #f9f9f9;
  margin-top: 0.5rem;
  text-shadow: none !important;              /* remove qualquer sombra extra */
}
/* Responsivo */
@media (max-width: 992px) {
  #carouselHero {
    max-height: 360px;
  }
  #carouselHero .carousel-caption h2 {
    font-size: 1.4rem;
  }
  #carouselHero .carousel-caption p {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  #carouselHero {
    max-height: 300px;
  }
  #carouselHero .caption-bg {
    padding: 1rem;
  }
  #carouselHero .carousel-caption h2 {
    font-size: 1.2rem;
  }
}

.btn-cta{
  background: var(--laranja-vivite);
  color: #fff;
  border: none;
}

.btn-cta:hover{
  background: var(--laranja-light);
  color: #fff;
}



/* Sections */
section { padding-top: 60px; padding-bottom: 60px; }

.bg-primary-light{
  background: linear-gradient(90deg, rgba(236,102,59,0.06), rgba(237,128,25,0.04));
}

/* Footer */
footer{ background: var(--cinza-light); color: #fff; }

/* Responsive tweaks */
@media (max-width: 768px){
  .hero-section { padding-top: 100px; }
  .brand-title { font-size: 1rem; }
  .feature-img { height: 48px; }
}


/* Força cor dos links da navbar (desktop e mobile) */
.navbar.navbar-expand-lg .navbar-nav .nav-link {
  color: var(--bco) !important;        /* cor padrão dos links */
  font-weight: 500;
}

/* Hover / focus */
.navbar.navbar-expand-lg .navbar-nav .nav-link:hover,
.navbar.navbar-expand-lg .navbar-nav .nav-link:focus {
  color: var(--laranja-light) !important;
}

/* Link ativo */
.navbar.navbar-expand-lg .navbar-nav .nav-link.active {
  color: var(--laranja-vivite) !important;
  font-weight: 700;
}

/* Botão "Solicite uma Demonstração" (se for .btn dentro da navbar) */
.navbar .btn {
  color: var(--bco) !important;
}

/* Ajuste do ícone do toggler (quando em navbar escura) */
.navbar .navbar-toggler {
  border-color: rgba(255,255,255,0.12);
}
.navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.85)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mantém o link ativo em laranja */
.navbar .nav-link.active,
.navbar .nav-item.show .nav-link {
  color: var(--laranja-vivite) !important;
  font-weight: 700;
  text-decoration: none;
}

#livestorage {
  padding-top: 100px;
  padding-bottom: 100px;
}


/* ===============botoes ler mais ================*
/* Botão Ler mais das notícias */
.btn-laranja {
  background-color: #ec663b;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
}

.btn-laranja:hover {
  background-color: #ed8019;
  color: #fff;
}

/*=====================Inicio CashBack================================*/
#cashback {
  background: linear-gradient(130deg, #fffaf7, #fff3ec, #ffe9dd);
}
#cashback .btn-cta {
  background: linear-gradient(135deg, #ec663b, #ed8019);
  color: #fff;
  padding: 0.6rem 1.5rem;   /* menor altura e largura */
  border-radius: 35px;      /* mantém arredondado, mas menos exagerado */
  font-weight: 600;         /* um pouco mais leve */
  font-size: 0.95rem;       /* ajusta tamanho da fonte */
  transition: transform 0.3s ease, background 0.3s ease;
  letter-spacing: 0.3px;
  width: 100%;
  max-width: 100%;
}

#cashback .btn-cta:hover {
  transform: scale(1.03);   /* escala mais sutil */
  background: linear-gradient(135deg, #ed8019, #ec663b);
  color: #fff;
}
@media (max-width: 768px) {
  #cashback .btn-cta {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    font-size: 0.85rem;
    padding: 0.75rem 1rem;
  }
}
/*=====================FIM CashBack================================*/

/*=====================cards noticias================================*/
#noticias {
background: linear-gradient(180deg, #ececec, #dcdcdc);
}
#beneficios {
  /*background: linear-gradient(90deg, #b3aa9e, #ddd7ce, #d8d1c6);*/
  /*background: linear-gradient(90deg, #3f4548, #a8edea, #fed6e3);*/
  background: linear-gradient(120deg, #b3aa9e, #dcd5ca, #e9e4dd);  
}
#recursos {
  background: linear-gradient(115deg, #c6b8a4, #f2e4d5, #f6d9be);
}
/*#sobre {
  /*background: linear-gradient(90deg, #3f4548, #c1c7c9, #dddada, #c1c7c9, #3f4548);*/
  /*background: linear-gradient(135deg, #c7c2bb, #e0d8cf, #f1ebe4);*/ /*colocar contato fixo*/
/*}*/


.card {
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.btn-cta {
  background: #ec663b;
  color: #fff !important;
  border: none;
  transition: 0.2s;
}
.btn-cta:hover {
  background: #ed8019;
  color: #fff !important;
}

/* Botão Ler mais dentro do card */
.btn-ler-mais {
  background-color: #ec663b;
  color: #fff;
  border: none;
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
  border-radius: 0.3rem;
  transition: background 0.3s;
  display: inline-block;
  margin-top: auto; /* faz o botão “grudar” no final do card */
}

.btn-ler-mais:hover {
  background-color: #ed8019;
  color: #fff;
}

/*================Recursos principais=================*/
.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  height: 100%;
  cursor: pointer;
  position: relative;
  z-index: 0;
  opacity: 0;
  transform: translateY(20px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.5s ease;
  transform-style: preserve-3d; /* necessário para efeito 3D */
  perspective: 1000px; /* profundidade */
}
/*.feature-card {
  display: flex;
  flex-direction: column;   /* elementos ficam um embaixo do outro *
  align-items: center;      /* centraliza horizontalmente *
  text-align: center;       /* centraliza textos *
  justify-content: center;  /* opcional: centraliza verticalmente também *
}*/

.feature-card.show {
  opacity: 1;
  transform: translateY(0);
}
/* restringe a imagem ao tamanho desejado dentro do card *
.feature-card img {
  width: 100%;        /* preenche a largura do container *
  max-width: 300px;   /* nunca maior que 200px (ajuste) *
  max-height: 300px;
  height: auto;
  display: block;
  margin: 0 auto;     /* centraliza se quiser *
  object-fit: cover;  /* útil se definir width/height fixos *
}*/

/* ====== DESKTOP (hover normal) ====== */
@media (min-width: 768px) {
  .feature-card:hover {
    transform: translateY(-10px) scale(1.25) rotateX(2deg) rotateY(5deg);
    box-shadow: 0 2.5rem 3rem rgba(0,0,0,0.3);
    z-index: 20;
  }

  .feature-card:hover img.feature-img {
    transform: scale(1.2);
  }
}

/* ====== MOBILE (sem hover e sem clique) ====== */
/* Apenas celular (até 768px) */
@media (max-width: 768px) {
  .feature-card {
    transition: transform 0.15s ease;
    cursor: pointer;
    user-select: none;
  }

  .feature-card:active {
    transform: scale(1.1);
  }
}


.feature-card img.feature-img {
  max-width: 80px;
  max-height: 80px;
  object-fit: contain;
  margin-bottom: 1rem;
  transition: transform 0.35s ease;
}

.feature-card:hover img.feature-img {
  transform: scale(1.2);
}

.row.g-4 {
  overflow: visible;
}
/* ====================Feature cards =========================*/

/* =====Inicio botao ver mais e menos Recursos/noticias ======*/
/* Botão Ver todas / Ver menos */
.btn-outline-laranja {
  background-color: transparent;
  color: var(--laranja-vivite);
  border: 2px solid var(--laranja-vivite);
  font-size: 0.9rem;       /* antes 1rem */
  border-radius: 50px;
  padding: 6px 20px;       /* antes 8px 24px */
  font-weight: 500;
  transition: all 0.25s ease;
}

.btn-outline-laranja:hover {
  background-color: var(--laranja-vivite);
  color: #fff;
}
.btn-outline-laranja {
  border-width: 1.5px;     /* menos pesado */
}
@media (max-width: 768px) {
  .btn-outline-laranja {
    width: 100%;
    max-width: 100%;
    border-radius: 12px; /* combina com card */
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }
  #noticias .btn,
  #recursos .btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.9rem;
  }
}
/* =======Fim botao ver mais e menos Recursos/noticias =======*/
/* ==================== Modal de Contato ==================== */
.modal-content {
  border-radius: 1rem;
  border: none;
  box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.2);
  transition: all 0.3s;
}

.modal-content p,
.modal-content label {
    font-size: 0.95rem; /* ou 0.85rem para ficar ainda menor */
}
.modal-content h5 {
    font-size: 1.40rem; /*Para títulos do modal:*/
}


#contactModal textarea[name="mensagem"] {
  min-height: 80px;
  max-height: 120px;
  resize: vertical;
}

.modal-header {
  background-color: #ec663b; /* Laranja Vivite */
  color: #fff;
  border-bottom: none;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.modal-title {
  font-weight: 600;
}

.modal-body {
  background-color: #ffffff; /* fundo branco para o formulário */
  padding: 2rem;
}

/* Campos de formulário */
.modal-body .form-control,
.modal-body .form-select,
.modal-body textarea {
  border-radius: 0.5rem;
  border: 1px solid #ccc;
  transition: all 0.3s;
}

.modal-body .form-control:focus,
.modal-body .form-select:focus,
.modal-body textarea:focus {
  border-color: #ed8019; /* Laranja light */
  box-shadow: 0 0 8px rgba(236,102,59,0.25);
  outline: none;
  transform: scale(1.02); /* leve efeito de destaque */
}

/* Botão enviar - menor */
.modal-body .btn-cta {
  background-color: #ec663b;
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  padding: 0.5rem 1.2rem; /* menor que antes */
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.modal-body .btn-cta:hover {
  background-color: #ed8019;
  color: #fff;
  transform: scale(1.05);
}

/* Mensagem de sucesso */
#successMessage {
  border-left: 4px solid #ec663b;
  background-color: #f9f9f9;
  color: #3f4548;
  padding: 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s;
}

/* Mensagem de erro */
#alerta {
  color: #d9534f; /* vermelho Bootstrap para alertas */
  transition: all 0.3s;
}

/* Ajuste para modal scrollable em telas pequenas */
@media (max-height: 400px) {
  .modal-dialog {
    max-height: 90%;
    margin: 1rem auto;
  }
}
@media (max-width: 768px) {
  #contactModal .btn-cta {
    width: 100%;
  }
}

.social-icon {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
  opacity: 0.8;
}
/* ================== Redes sociais padrão (desktop e mobile) ================== */
.social-footer {
  display: flex;
  justify-content: center;        /* centraliza horizontalmente */
  gap: 15px;                      /* espaço entre os ícones */
  margin-top: 20px;               /* distância do conteúdo acima */
}

.social-footer a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  text-decoration: none;          /* remove sublinhado */
  border-radius: 50%;             /* deixa os ícones circulares */
  background-color: rgba(0,0,0,0.05); /* leve fundo */
  transition: transform 0.3s, background-color 0.3s;
}

.social-footer a:hover {
  transform: scale(1.0);
  background-color: var(--laranja-light);
}

.social-footer i {
  font-size: 24px;                /* tamanho do ícone */
  color: #333;                    /* cor dos ícones */
}
.social-footer a:hover i {
  color: var(--bg-light); /* ícone fica laranja no hover */
}

/* ================== Responsivo ================== */
@media (max-width: 992px) {
  #contato .social-footer {
    position: static !important;   /* remove absolute */
    transform: none !important;    /* cancela translate-middle-x */
    flex-wrap: wrap;               /* permite quebrar linha se necessário */
    margin-top: 20px;              /* distância do botão WhatsApp */
  }
}


/*=========== INICIO SEÇÃO DE CONTATO ===============*/
#contato {
  position: relative;
  min-height: 400px;
  /*background: linear-gradient(90deg, #d9d9d9, #f9a071);*/
  /*background: linear-gradient(90deg, #3f4548, #d6d4d4, #dddada, #c1c7c9, #3f4548);*/
  background: linear-gradient(120deg, #b3aa9e, #dcd5ca, #e9e4dd);
  color: #333;
}

/* ========== Canais (meio da section) ========== */
.contato-tipo {
  display: inline-block;
  padding: 0.3rem 0.6rem;
  width: 90%;
  height: 35px;
  border-radius: 25px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
  text-align: center;
  text-decoration: none !important;
  color: inherit !important; /* mantém a cor herdada */
}

.contato-tipo:hover {
  background-color: rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

/* Centralização dos spans de canais */
#contato .col-lg-6 .row {
  justify-content: center;
  text-align: center;
  width: 80%;
  max-width: 500px;
  margin: 0 auto;
}

/* ========== Botões à direita ========== */
.btn-demo,
.btn-whats {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  /*white-space: nowrap;*/
  transition: all 0.3s ease;
}

/* Botão “Solicite uma Demonstração” */
.btn-demo {
  background-color: #ec663b;
  color: #fff;
  border-radius: 1rem 0.25rem 1rem 0.25rem;
  padding: 0.75rem 1rem;
}
.btn-demo:hover {
  background-color: #f3a55b;
  filter: brightness(1.1);
  transform: scale(1.05);
  color: #fff;
}

/* Botão “WhatsApp” */
.btn-whats {
  background: linear-gradient(90deg, #25d366, #128c7e);
  color: #fff;
  padding: 0.8rem 1.6rem;
  border: none;
  border-top-left-radius: 0;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-whats:hover {
  filter: brightness(1.1);
  transform: scale(1.05);
  color: #fff;
}

/* Ícone do WhatsApp */
#btnWhatsApp i.fab.fa-whatsapp {
  font-size: 34px;
  vertical-align: middle;
  transition: transform 0.3s ease;
}
#btnWhatsApp:hover i.fab.fa-whatsapp {
  transform: scale(1.2);
}
@media (max-width: 768px) {
  #contato .btn-demo,
  #contato .btn-whats  {
    width: 100% !important;
    max-width: 100% !important;
    justify-content: center;
    font-size: 0.85rem;
    padding: 0.75rem 1rem !important;
  }
}

/* ========== Responsividade ========== */
@media (max-width: 992px) {
  /* Canais: ficam em coluna e com espaçamento maior */
  #contato .col-lg-6 .row {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  #contato .col-lg-6 .col,
  #contato .col-lg-6 .col-6 {
    width: 100%;
    max-width: 280px;
    margin-bottom: 1.2rem; /* Aumenta o espaço entre os itens */
  }

  /* Remove margin-bottom do último item */
  #contato .col-lg-6 .row .col:last-child {
    margin-bottom: 0;
  }

  /* Bloco de contatos (direita): centraliza e espaça mais */
  #contato .col-lg-3.d-flex.flex-column {
    align-items: center;
    text-align: center;
  }

  #contato .col-lg-3.d-flex.flex-column .d-flex.align-items-center {
    flex-direction: column; /* itens ícone + texto em coluna */
    margin-bottom: 1.5rem;  /* espaço maior entre os blocos */
  }

  #contato .col-lg-3.d-flex.flex-column .d-flex.align-items-center:last-child {
    margin-bottom: 0;
  }

  /* Espaço extra antes dos botões */
  #contato .col-lg-3.d-flex.flex-column .mt-auto {
    margin-top: 2rem !important;
  }
}


/*=========== FIM SEÇÃO DE CONTATO ===============*/


/*=========== Toast Confirmação E-mail (LivePharma) ===========*/
#toastSuccess .toast {
  background: linear-gradient(135deg, #198754, #28a745); /* verde elegante */
  color: #fff;
  border-radius: 0.75rem;
  padding: 0.8rem 1.4rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.4s ease;
  min-width: 260px;
  max-width: 90vw;
  text-align: center;
}

/* Ícone de check animado */
#toastSuccess .toast-body::before {
  content: "✔";
  font-weight: bold;
  font-size: 1.4rem;
  margin-right: 0.5rem;
  background-color: rgba(255,255,255,0.2);
  padding: 0.35rem 0.65rem;
  border-radius: 50%;
  animation: popIcon 0.4s ease;
}

/* Exibir bonito */
#toastSuccess.show .toast {
  opacity: 1;
  transform: scale(1);
}

/* Botão de fechar */
#toastSuccess .btn-close {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
#toastSuccess .btn-close:hover {
  opacity: 1;
}

/* Animação leve no ícone */
@keyframes popIcon {
  0% { transform: scale(0); opacity: 0; }
  70% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); }
}
/*=========== Fim Toast Confirmação E-mail ===========*/


/* Garante que telefone e email fiquem sempre laranja */
#contato {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f9f9f9;
}
#contato i.fas.fa-phone,
#contato i.fas.fa-envelope {
  color: #ec663b !important;
}

#contato .text-laranja {
  color: #ec663b !important;  /* Laranja Vivite */
}

/* Botão WhatsApp */
#btnWhatsApp {
  background-color: #25D366; /* verde padrão WhatsApp */
  color: white;
}

#btnWhatsApp:hover {
  background-color: #1ebe5d;
}

/*===============carrosel do inicio (principal)==========================*/
/* Indicadores centralizados e visíveis */
#heroCarousel .carousel-indicators {
  position: absolute;
  bottom: 80px; /* sobe as bolinhas */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  margin: 0;
  z-index: 20;
  width: auto;
  padding: 0;
}
/*======contorno nas bolinhas=========*
#heroCarousel .carousel-indicators {
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
  padding: 0.5rem 1rem;
  border-radius: 20px;
}*/

/* Bolinhas padrão */
#heroCarousel .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: transparent;
  border: 1.5px solid #fff;
  box-shadow: 0 0 2px rgba(0,0,0,0.6); /* sombra para destacar sobre imagens claras */
  transition: all 0.3s ease;
  opacity: 1; /* garante visibilidade */
}

/* Bolinha ativa: preenchida em branco */
#heroCarousel .carousel-indicators .active {
  background-color: #fff !important;
  border-color: #fff !important;
  transform: scale(1.4);
  /*box-shadow: 0 0 8px rgba(255, 255, 255, 0.6); */
  box-shadow: 0 0 6px rgba(0,0,0,0.7); /* destaque maior na ativa */
}

/* Hover: destaca a borda */
#heroCarousel .carousel-indicators button:hover {
  transform: scale(1.2);
  border-color: #ed8019;
}

/* Responsivo */
@media (max-width: 768px) {
  #heroCarousel .carousel-indicators {
    bottom: 15px;
    gap: 0.6rem;
  }
}
#heroCarousel {
  position: relative;
}

/* === CROSSFADE REAL === */
#heroCarousel .carousel-item {
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  position: absolute;
  inset: 0;
  z-index: 1;
}

#heroCarousel .carousel-item.active {
  opacity: 1;
  z-index: 2;
  position: relative;
}

/* Impede movimento lateral */
#heroCarousel .carousel-item,
#heroCarousel .carousel-inner {
  transform: none !important;
}

.carousel-control-prev,
.carousel-control-next {
  z-index: 10 !important;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: none;
  color: #ffffff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-size: 60%;
}
.carousel-caption {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}

.carousel-item.active .carousel-caption {
  opacity: 1;
}

/*================= HERO SECTION FULLSCREEN DENTRO DO SITE (inicio e sobre) ================*/
#heroSection {
  height: 100vh;
  position: relative;
  margin: 0;  /* garante que não haja espaço extra */
  padding: 0; /* garante que não haja padding */
}

#heroSection .carousel-item {
  height: 100vh;
}

#heroSection .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#heroSection .carousel-caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}
#heroSection .carousel-caption h1 {
  font-size: 2.8rem;
  font-weight: 700;
}

#heroSection .carousel-caption h2 {
  font-size: 1.8rem;
  font-weight: 600;
}
#heroSection .carousel-caption h3 {
  font-size: 2rem;
  font-weight: 600;
  display: none;
}
#heroSection .carousel-caption h4 {
  font-size: 2rem;
  font-weight: 600;
  display: none;
}
#heroSection .carousel-caption p {
  font-size: 1.2rem;
  margin-top: 1rem;
}

/* Botão */
#heroSection .btn-cta {
  background: linear-gradient(135deg, #ec663b, #ed8019);
  color: #fff;
  border-radius: 50px;
  padding: 0.8rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

#heroSection .btn-cta:hover {
  background: linear-gradient(135deg, #ed8019, #ec663b);
  transform: scale(1.05);
  color: #fff;
}

/* Responsivo */
@media (max-width: 768px) {
  #heroSection .carousel-caption {
    padding: 1.5rem;
  }
  #heroSection .carousel-caption h1 {
    font-size: 2rem;
  }
  #heroSection .carousel-caption h2 {
    font-size: 1.4rem;
  }
  #heroSection .carousel-caption p {
    font-size: 1rem;
  }
}

/*===================Fim Carrosel INICIO====================*/

/*=================Inicio Novo Sobre============================*/
/* ===== SETAS EXCLUSIVAS DO CARROSSEL DO HERO CARROSSEL SOBRE===== */
#sobre .carousel-control-prev-icon,
#sobre .carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.4) !important;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  background-size: 60%;
  background-position: center;
  background-repeat: no-repeat;
}

/* ===== CONTAINER PRINCIPAL DO CARROSSEL ===== */
#sobre #carouselHero {
  height: 35vh; /*esse foi o ajuste que deu certo */
  width: 100%;
  max-width: 700px; /* ou o tamanho que quiser limitar */
  margin: 0 auto;
}

/* Container do carrossel com altura fixa */
#sobre .carousel-inner,
#sobre .carousel-item {
  height: auto; /* altura fixa desejada */
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

#sobre #carouselHero .carousel-item img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  background-color: transparent;
  display: block;
  margin: 0 auto; /* centraliza no caso de fallback */
  float: none !important;
}

/* Centraliza legenda e garante contraste */
/* Centraliza legenda e garante contraste */
#sobre #carouselHero .carousel-caption {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
  width: 100%;
  max-width: 700px;  /* mesma largura máxima do carrossel */
  margin: 0 auto;    /* garante centralização */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Responsivo */
@media (max-width: 768px) {
  #sobre #carouselHero .carousel-item img {
    max-height: 280px;
  }
  #sobre #carouselHero .carousel-caption {
    bottom: 5px;
  }
  #sobre #carouselHero {
  height: 30vh; /*esse foi o ajuste que deu certo */
  }
}

/* Ícones brancos personalizados */
#sobre .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 8 8'%3E%3Cpath d='M5.5 0l-4 4 4 4V0z'/%3E%3C/svg%3E") !important;
}

#sobre .carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 8 8'%3E%3Cpath d='M2.5 0l4 4-4 4V0z'/%3E%3C/svg%3E") !important;
}

#sobre .carousel-control-prev-icon:hover,
#sobre .carousel-control-next-icon:hover {
  background-color: rgba(0, 0, 0, 0.6) !important;
  transform: scale(1.1);
}

/* ---- INDICADORES DO CARROSSEL DO HERO  ----- */
#sobre .carousel-indicators {
  position: absolute;
  bottom: 15px; /* sobe um pouco para não encostar na borda */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 10;
  padding: 0;
  margin: 0;
  list-style: none;
}

/* Bolinhas inativas */
#sobre .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: transparent; /* fundo transparente */
  border: 1.5px solid #fff; /* contorno branco */
  box-shadow: 0 0 2px rgba(0,0,0,0.6); /* sombra para destacar sobre imagens claras */
  transition: all 0.3s ease;
  opacity: 1;
}

/* Bolinha ativa */
#sobre .carousel-indicators .active {
  background-color: #fff; /* ativa preenchida de branco */
  border-color: #fff;
  transform: scale(1.3); /* aumenta levemente a bolinha ativa */
  box-shadow: 0 0 4px rgba(0,0,0,0.7); /* destaque maior */
}

/* Hover das inativas */
#sobre .carousel-indicators [data-bs-target]:hover {
  background-color: rgba(255, 255, 255, 0.4); /* efeito hover sutil */
  transform: scale(1.2);
}
/*=================Fim Novo Sobre================================*/


/*=================barra fixa =====================*/
.m-fixed-bar-modern {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 65px;
  height: 250px;
  background: linear-gradient(160deg, #ec663b 0%, #3f4548 100%);
  border-radius: 50px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  z-index: 9999;
  overflow: hidden;
  transition: width 0.3s ease, background 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.m-fixed-bar-modern.expanded {
  width: 230px;
  background: linear-gradient(160deg, #ec663b 0%, #3f4548 100%);
}

/* Toggle seta + texto */
.m-fixed-bar-toggle {
  text-align: center;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.m-fixed-bar-toggle i {
  font-size: 22px;
  transition: transform 0.3s ease;
}

/* Seta correta: aponta para esquerda quando recolhida */
.m-fixed-bar-modern:not(.expanded) .m-fixed-bar-toggle i {
  transform: rotate(180deg);
}

/* Quando expandida seta aponta para baixo */
.m-fixed-bar-modern.expanded .m-fixed-bar-toggle i {
  transform: rotate(0deg);
}

/* Texto "Fale com a gente" só expandida */
.m-fixed-bar-toggle span {
  display: none;
  font-size: 14px;
}

.m-fixed-bar-modern.expanded .m-fixed-bar-toggle span {
  display: inline;
}

/* Lista dos botões */
.m-fixed-bar-list-modern {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Ícones recolhidos */
.m-fixed-bar-item {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Remove sublinhado azul de todos os links */
.m-fixed-bar-item a {
  text-decoration: none;
  color: inherit; /* mantém a cor branca */
}

.m-fixed-bar-modern:not(.expanded) .m-fixed-bar-item a {
  background: none;
  width: 100%;
  height: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Efeito pulsante no recolhido */
@keyframes pulse {
  0% { box-shadow: 0 0 0px rgba(255,255,255,0.3); }
  50% { box-shadow: 0 0 10px rgba(255,255,255,0.5); }
  100% { box-shadow: 0 0 0px rgba(255,255,255,0.3); }
}

.m-fixed-bar-modern:not(.expanded) .m-fixed-bar-item {
  animation: pulse 2.5s infinite ease-in-out;
}
.m-fixed-bar-modern:not(.expanded) .m-fixed-bar-item i {
  transform: translateY(-2px);
}

.m-fixed-bar-modern:not(.expanded) .m-fixed-bar-item:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

/* Ícones uniformes e brancos */
.m-fixed-bar-item i {
  font-size: 22px;
  width: 22px;
  text-align: center;
  color: #fff; /* cor branca original */
}

/* Expandido: todos os botões mesmos tamanho */
.m-fixed-bar-modern.expanded .m-fixed-bar-item {
  width: 90%;
  height: 45px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.3s ease, width 0.3s ease;
}

/* Botão <a> expandido */
.m-fixed-bar-modern.expanded .m-fixed-bar-item a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  padding-left: 15px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(20px);
  animation: slideInBtn 0.3s forwards;
}

/* Hover botões expandido */
.m-fixed-bar-modern.expanded .m-fixed-bar-item a:hover {
  background: rgba(255,255,255,0.25);
  box-shadow: 0 0 10px rgba(255,255,255,0.3);
  transform: translateX(0) scale(1.02);
}

/* Texto botão */
.m-fixed-bar-modern .btn-text {
  display: none;
  font-weight: 500;
}

.m-fixed-bar-modern.expanded .btn-text {
  display: inline;
  font-size: 15px;
}

/* Ícones expandido */
.m-fixed-bar-modern.expanded .m-fixed-bar-item i {
  width: 22px;
  font-size: 22px;
  text-align: center;
  color: #fff;
}

/* Animação de slide-in */
@keyframes slideInBtn {
  0% { opacity: 0; transform: translateX(20px); }
  100% { opacity: 1; transform: translateX(0); }
}

/*-----------------X fechar barra fixa ----------------  */
.m-fixed-bar-close {
  position: absolute;
  top: 45px; /* ajusta conforme a posição da seta */
  left: 50%;
  transform: translateX(-50%);
  color: #fff; /* mesma cor da seta */
  font-size: 18px;
  cursor: pointer;
  z-index: 9999;
  background: none;
  border: none;
  padding: 0;
  line-height: 1;
}

.m-fixed-bar-close:hover {
  opacity: 0.8;
}

/* === INICIO Corrige cursor piscando atrás da seta no Windows === */
.m-fixed-bar-toggle,
.m-fixed-bar-toggle *,
.m-fixed-bar-modern,
.m-fixed-bar-modern * {
  user-select: none !important;
  -webkit-user-select: none !important;
  -ms-user-select: none !important;
  caret-color: transparent !important; /* remove cursor de texto */
}

.m-fixed-bar-toggle:focus,
.m-fixed-bar-toggle *:focus {
  outline: none !important;
}
/* === FIM Corrige cursor piscando atrás da seta no Windows === */

@media (min-width: 769px) and (max-width: 1366px) {
  .m-fixed-bar-modern {
    width: 55px;
    height: 200px;
    bottom: 15px;
    right: 15px;
    padding: 8px 0;
  }

  .m-fixed-bar-modern.expanded {
    width: 190px;
    border-radius: 40px; /* exemplo */
  }
  
  .m-fixed-bar-item {
    width: 38px;
    height: 38px;
  }

  /* Deixar os botões um pouco mais finos */
  .m-fixed-bar-modern.expanded .m-fixed-bar-item {
    width: 85%;          /* antes 90% */
    height: 40px;        /* ANTES 38–45px → agora fica baixinho */
    border-radius: 18px; /* acompanha altura baixa */
    background: rgba(255, 255, 255, 0.12);
  }

  .m-fixed-bar-item i,
  .m-fixed-bar-modern.expanded .m-fixed-bar-item i {
    font-size: 18px;
    width: 18px;
  }

  .m-fixed-bar-toggle i {
    font-size: 18px;
  }

  .m-fixed-bar-toggle span {
    font-size: 12px;
  }

  .m-fixed-bar-modern.expanded .m-fixed-bar-item a {
    padding-left: 12px;
    gap: 8px;
  }

  .m-fixed-bar-modern.expanded .btn-text {
    font-size: 12px;
  }

  /* Sobe o X para não encostar no primeiro botão */
  .m-fixed-bar-close {
    top: 32px;
    font-size: 16px;
  }  
}
@media (min-width: 769px) and (max-width: 1280px) {
  .m-fixed-bar-modern {
    width: 50px;
    height: 180px;
  }

  .m-fixed-bar-modern.expanded {
    width: 170px;
    border-radius: 35px; /* exemplo */
  }

  .m-fixed-bar-item {
    width: 34px;
    height: 34px;
  }

  .m-fixed-bar-item i {
    font-size: 16px;
  }
  /* Sobe o X para não encostar no primeiro botão */
  .m-fixed-bar-close {
    top: 30px; /* ajuste fino — pode aumentar para 30–35 conforme o gosto */
  }
  /* Barra expandida mais estreita */
  .m-fixed-bar-modern.expanded {
    width: 180px; /* antes era ~170–190 */
  }

  /* Deixar os botões um pouco mais finos */
  .m-fixed-bar-modern.expanded .m-fixed-bar-item {
    width: 83%;          /* antes 90% */
    height: 32px;        /* ANTES 38–45px → agora fica baixinho */
    border-radius: 16px; /* acompanha altura baixa */
    background: rgba(255, 255, 255, 0.12);
  }

  /* Ajuste do conteúdo interno */
  /* Ajuste interno do link */
  .m-fixed-bar-modern.expanded .m-fixed-bar-item a {
    padding-left: 10px;
    gap: 6px;
  }
  
  /* Ícone reduzido para caber no novo contorno */
  .m-fixed-bar-modern.expanded .m-fixed-bar-item i {
    font-size: 16px;
    width: 16px;
  }
  /* Texto do botão menor */
  .m-fixed-bar-modern.expanded .btn-text {
    font-size: 11px;
  }
}

/* === CELULAR — SEMPRE VEM POR ÚLTIMO === */
@media (max-width: 768px) {
  .m-fixed-bar-modern {
    width: 60px !important;
    height: 220px !important;
    bottom: 15px;
    right: 15px;
    padding: 8px 0;
  }

  .m-fixed-bar-modern.expanded {
    width: 220px !important;
    border-radius: 40px !important;
  }

  .m-fixed-bar-modern.expanded .m-fixed-bar-item {
    width: 90% !important;
    height: 42px !important;
    border-radius: 18px;
  }
    
  /* Texto do botão menor */
  .m-fixed-bar-modern.expanded .btn-text {
    font-size: 15px;
  }
  /* Sobe o X para não encostar no primeiro botão */
  .m-fixed-bar-close {
    top: 35px; /* ajuste fino — pode aumentar para 30–35 conforme o gosto */
  }
  
}



/* ===== Botão 3D para Navbar ===== */
/* ===== Botão 3D Futurista com brilho animado ===== */
.btn-3d-futurista {
  position: relative;
  display: inline-block;
  padding: 0.6rem 1.8rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  text-align: center;
  border-radius: 12px;
  background: linear-gradient(145deg, #f48c42, #f3a55b);
  box-shadow: 0 6px 0 #d97c38, 0 6px 15px rgba(0,0,0,0.3);
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 0;
}

/* Efeito de brilho passando pelo botão */
.btn-3d-futurista::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: rgba(255,255,255,0.3);
  transform: rotate(25deg);
  transition: all 0.3s ease;
}

/* Hover: anima o brilho e o botão “afunda” */
.btn-3d-futurista:hover::before {
  left: 125%;
  transition: all 0.7s ease;
}

.btn-3d-futurista:hover {
  transform: translateY(2px);
  box-shadow: 0 4px 0 #d97c38, 0 8px 20px rgba(0,0,0,0.35);
  filter: brightness(1.15);
}

/* Active: efeito de clique */
.btn-3d-futurista:active {
  transform: translateY(6px);
  box-shadow: 0 2px 0 #d97c38, 0 4px 10px rgba(0,0,0,0.25);
}

/* ===== Botão LivePharma invertido ===== */
/* Botão original (telas grandes) */
.btn-livepharma {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(90deg, #ec663b, #ed8019);
  border: none;
  border-top-left-radius: 1.5rem;
  border-bottom-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 1.5rem;
  box-shadow: 0 5px 0 #d65a2a, 0 6px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  white-space: nowrap; /* impede quebra de linha */
  max-width: 100%; /* nunca ultrapassa o container */
}
.navbar .btn-livepharma {
  flex-shrink: 0; /* evita que ele force o menu a aumentar */
}

.btn-livepharma:hover {
  transform: translateY(2px);
  box-shadow: 0 3px 0 #d65a2a, 0 8px 20px rgba(0,0,0,0.25);
  filter: brightness(1.15);
}

.btn-livepharma:active {
  transform: translateY(5px);
  box-shadow: 0 1px 0 #d65a2a, 0 4px 10px rgba(0,0,0,0.2);
}
/* ===== Ajustes por tamanho de tela ===== */

/* Monitores grandes (até 1600px) */
@media (max-width: 1600px) {
  .btn-livepharma {
    padding: 0.7rem 1.6rem;
    font-size: 0.95rem;
  }
}

/* Monitores médios (até 1366px) */
@media (max-width: 1366px) {
  .btn-livepharma {
    padding: 0.6rem 1.3rem;
    font-size: 0.9rem;
  }
}

/* Notebooks pequenos (até 1200px) */
@media (max-width: 1200px) {
  .btn-livepharma {
    padding: 0.5rem 1.1rem;
    font-size: 0.85rem;
  }
}

/* Tablets horizontais (até 992px) */
@media (max-width: 992px) {
  .btn-livepharma {
    padding: 0.45rem 1rem;
    font-size: 0.8rem;
    margin: 6px 12px;   /* AQUI resolve */
    display: inline-block;
  }
}

/* Tablets verticais / celulares grandes (até 768px) */
@media (max-width: 768px) {
  .btn-livepharma {
    margin: 6px 12px;   /* AQUI resolve */
    display: inline-block;
    padding: 0.4rem 0.9rem;
    font-size: 0.75rem;
  }
}

/* Celulares pequenos (até 480px) */
@media (max-width: 480px) {
  .btn-livepharma {
    padding: 0.35rem 0.8rem;
    font-size: 0.7rem;
  }
}
/*===================INICIO Footer===================================== */
footer {
  background: var(--cinza-light);
  color: #fff;
  padding: 1.5rem 0;
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* permite quebrar em linhas menores */
  gap: 1rem;       /* espaço entre os elementos quando quebram */
}

footer div {
  flex: 1 1 auto;  /* permite que os blocos cresçam e encolham */
}

/* Texto pequeno alinhado à direita em telas grandes, centralizado em telas pequenas */
footer .text-end {
  text-align: right;
}

@media (max-width: 576px) {
  footer .text-end {
    text-align: center;
  }
  footer .container {
    justify-content: center;
    text-align: center;
  }
}
/*=====================FIM Footer===================================== */

/* ===========Ajuste de espaçamento para botões em telas pequenas =====*/
/* Ajuste para mobile */
@media (max-width: 768px) {
  #sobre .carousel-caption,
  #cashback .carousel-caption {
    position: relative;
    top: auto;
    transform: none;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
  }

  #sobre .btn-cta,
  #sobre .btn-outline-dark,
  #cashback .btn-cta {
    display: inline-block; /* mantém tamanho original */
    margin: 10px 5px;      /* distância entre botões */
  }
}
/* =======Fim Ajuste de espaçamento para botões em telas pequenas =====*/

/*=====================Inicio Politica Privacidade==========================*/
/*.btn-link.text-secondary {
  text-decoration: none;
  font-size: 0.9rem;
}*/
/*.btn-link.text-secondary:hover {
  text-decoration: underline;
  color: var(--laranja-vivite);
}*/
/*=====================Fim Politica Privacidade============================*/

/*=====================Live Storage============================*/
#livestorage {
  position: relative;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #f8f8f8 25%,
    #ffe3cc 55%,
    #ffc799 100%
  );
  color: #2c2c2c;
  overflow: hidden;
}

#livestorage h2,
#livestorage p,
#livestorage .card {
  position: relative;
  z-index: 1;
}

#livestorage h2 {
  font-size: 1.9rem;
  line-height: 1.25;
  font-weight: 600;
  color: #3f4548;
}

#livestorage p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #555;
  text-align: justify;
  text-justify: inter-word;
}
#livestorage .lead {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #3f4548;
  text-align: center;
}

#livestorage .card {
  background: #ffffff;
  color: #2c2c2c;
  border-radius: 12px;
  /* remove transições pesadas */
  transition: none;
}

#livestorage .card:hover {
  transform: none;
  box-shadow: none;
}

#livestorage .card-body h5 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cinza-light);
}

#livestorage .card-body p {
  color: #555;
}
#livestorage .card-body p,
.feature-card p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #555;
  text-align: justify;
}
@media (max-width: 768px) {

  #livestorage h2 {
    font-size: 1.6rem;
    text-align: center;
  }
  #livestorage h4 {
    text-align: center;
  }

  #livestorage p {
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: left; /* melhora leitura no mobile */
  }

  #livestorage .card-body h5 {
    font-size: 1rem;
  }

  #livestorage .card-body p {
    font-size: 0.88rem;
  }
  #livestorage .lead {
    font-size: 1rem;
    line-height: 1.55;
    text-align: center;
  }

}
/*=====================Fim Live Storage============================*/

/* ===== SEÇÃO FAQ ===== */
.faq-section {
  background: linear-gradient(135deg, #fff5ef, #ffece0, #ffe3d1);
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
}

/* efeito sutil de brilho diagonal */
.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(236, 102, 59, 0.05), rgba(237, 128, 25, 0.04));
  pointer-events: none;
}

/* título */
.faq-section .section-title {
  color: var(--cinza-light);
  font-size: 1.6rem; /* antes 1.8rem */
  font-weight: 700;
  text-align: center;
  position: relative;
  margin-bottom: 2.5rem;
}

.faq-section .section-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--laranja-light), var(--laranja-vivite));
  margin: 12px auto 0;
  border-radius: 10px;
  opacity: 0.8;
}

/* itens */
.accordion-item {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(72, 63, 69, 0.06);
  background: #fff;
  transition: all 0.25s ease-in-out;
  margin-bottom: 16px;
}

.accordion-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(63, 69, 72, 0.12);
}

/* botões */
.accordion-button {
  background-color: #fff;
  color: var(--cinza-light);
  font-size: 1rem;        /* antes 1.05rem */
  font-weight: 600;
  padding: 0.95rem 1.2rem; /* antes 1.1rem 1.25*/
  transition: all 0.25s ease;
  border-left: 5px solid transparent;
}

/* Seta customizada */
#faq .accordion-button::after {
  content: "";
  font-size: 1rem;
  color: var(--laranja-vivite);
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

/* Ao abrir */
#faq .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

/* Hover e ativo */
#faq .accordion-button:hover {
  background: linear-gradient(90deg, #fff 0%, #fdf8f6 100%);
  color: var(--laranja-vivite);
  border-left: 5px solid var(--laranja-light);
}

#faq .accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, #fff 0%, #fdf6f2 100%);
  color: var(--laranja-vivite);
  border-left: 5px solid var(--laranja-vivite);
}

/* corpo do item */
#faq .accordion-body {
  color: #555;
  font-size: 1rem;
  line-height: 1.65;
  background-color: #fff;
  border-top: 1px solid #eee;
  padding: 1.25rem 1.5rem;
  border-left: 5px solid var(--laranja-vivite);
}

/* transição suave */
.accordion-collapse {
  transition: all 0.3s ease;
}

/* Responsivo */
@media (max-width: 768px) {
  .faq-section .section-title {
    font-size: 1.4rem;
  }
  #faq .accordion-button {
    font-size: 0.95rem;
    padding: 0.85rem 1rem;
  }
  #faq .accordion-body {
    font-size: 0.95rem;
  }
}

/*=============== inicio modal perguntas frequentes==================*/
#faqModal h6 {
  color: #ed8019;
  font-weight: 600;
  margin-top: 1.5rem;
}
/*=============== fim modal perguntas frequentes====================*/

/*=============Inicio Sobre========================*/
#sobre {
  /*background-color: #f8f9fa;*/
  background: linear-gradient(135deg, #ffffff 0%, #fff8f5 35%, #fef1eb 100%)
}

#sobre h2 {
  color: var(--cinza-light);
  font-weight: 700;
}

#sobre .lead {
  max-width: 800px;
  margin: 0 auto;
}

#sobre ul li {
  font-size: 1rem;
  color: #3f4548;
  line-height: 1.6;
}

#sobre a.btn-outline-dark {
  border-color: var(--laranja-vivite);
  color: var(--laranja-vivite);
  transition: 0.3s ease;
}

#sobre a.btn-outline-dark:hover {
  background-color: var(--laranja-vivite);
  color: #fff;
}
/*=============fim  Sobre========================*/

/* ===== QUEM SOMOS ===== */
.quem-somos-section {
 background: linear-gradient(130deg, #f5f5f5, #ebebeb, #e0e0e0);
 /*border-top: 1px solid rgba(0,0,0,0.06);*/
 padding: 3rem 1rem; /* evita section “alta demais” */
 position: relative;
}

.quem-somos-section .section-title {
  color: var(--cinza-light);
  font-size: 1.7rem;     /* antes 2rem */
  letter-spacing: 0.5px; /* mais elegante */
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.quem-somos-section .section-title::after {
  content: "";
  display: block;
  width: 70px;   /* antes 100px */
  height: 2px;   /* antes 3px */
  margin-top: 10px;
  background: var(--laranja-vivite);
  margin: 14px auto 0;
  border-radius: 10px;
}

.card-mvv {
  padding: 1.25rem; /* se hoje estiver maior */
  border-radius: 18px;
  background: #fff;
  transition: all 0.3s ease-in-out;
  border-top: 4px solid transparent;
}

.card-mvv:hover {
  transform: translateY(-6px);
  border-top: 4px solid var(--laranja-vivite);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.card-mvv .icon {
  color: var(--laranja-light);
  background: rgba(236, 102, 59, 0.1);
  width: 56px;   /* antes 70px */
  height: 56px;  /* antes 70px */
  font-size: 1.3rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#quem-somos .btn-cta-qs {
  background: linear-gradient(135deg, #ec663b, #ed8019);
  color: #fff;
  padding: 0.6rem 1.5rem;   /* menor altura e largura */
  border-radius: 35px;      /* mantém arredondado, mas menos exagerado */
  font-weight: 600;         /* um pouco mais leve */
  font-size: 0.95rem;       /* ajusta tamanho da fonte */
  transition: transform 0.3s ease, background 0.3s ease;
}

#quem-somos .btn-cta-qs:hover {
  transform: scale(1.03);   /* escala mais sutil */
  background: linear-gradient(135deg, #ed8019, #ec663b);
  color: #fff;
}

@media (max-width: 768px) {
  .quem-somos-section {
    padding: 2.5rem 1rem;
  }
  .quem-somos-section .section-title {
    font-size: 1.6rem;
  }
  .quem-somos-section .card-mvv {
    margin-bottom: 1rem;
  }
  @media (max-width: 768px) {
  #quem-somos .btn-cta-qs {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    font-size: 0.85rem;
    padding: 0.75rem 1rem;
  }
}
}

/*==================Inicio Modal Noticias ============================*/
/* Ajustes gerais do modal de notícias */
/* Imagens dos cards de notícias */
#noticiasContainer .card-img-top {
  height: 160px; /* altura reduzida (padrão entre 140 e 180px fica ótimo) */
  /*object-fit: cover; /* mantém o enquadramento bonito */
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  object-fit: contain; /* ajusta sem cortar */
  height: 140px;
}

#noticiaModal .modal-dialog {
  max-width: 800px; /* largura reduzida, mais elegante */
}

#noticiaModal .modal-content {
  border-radius: 16px;
  border: none;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  overflow: hidden;
  max-height: 90vh; /* altura máxima responsiva */
  display: flex;
  flex-direction: column;
}

/* Cabeçalho fixo */
#noticiaModal .modal-header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 10;
  border-bottom: 2px solid #f0f0f0;
}

/* Corpo com rolagem */
#noticiaModal .modal-body {
  overflow-y: auto;
  padding: 2rem;
  flex: 1;
}

/* Rodapé fixo */
#noticiaModal .modal-footer {
  position: sticky;
  bottom: 0;
  background: #fff;
  z-index: 10;
  border-top: 2px solid #f0f0f0;
  padding: 1rem;
}

/* Estilo para os títulos */
#noticiaModal .modal-body h3 {
  color: #ec663b;
  font-weight: 700;
  margin-bottom: 1rem;
}

#noticiaModal .modal-body h4 {
  color: #ed8019;
  font-weight: 600;
  margin-top: 1.5rem;
}
/* Imagens dentro do modal de notícias */
#noticiaModal .modal-body img {
  width: 100%;
  max-height: 180px; /* imagem menor, proporcional */
  object-fit: contain; /* ajusta sem cortar */
  /*background-color: #f8f8f8; /* fundo neutro caso tenha bordas */
  border-radius: 8px;
  padding: 6px;
  margin-bottom: 1rem;
  display: block;
}
.modal-body a {
  color: var(--laranja-vivite);
  text-decoration: none;
  font-weight: 500;
}

.modal-body a:hover {
  text-decoration: underline;
}
.noticia-card img {
  padding: 10px;
  height: 180px;
  object-fit: cover;
}

.noticia-data {
  font-size: 0.85rem;
  opacity: 0.85;
}

.noticia-imagem {
  width: 100%;
  max-height: 250px;
  object-fit: contain;
  display: block;
  margin: 0 auto 1rem;
}

@media (max-width: 576px) {
  #noticiaModal .modal-body img {
    height: 200px;
  }
}
/*-------data publicacao card-------*/
/*.noticia-data-faixa {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #b3a39e, #a5988c);
  color: white;
  font-size: 0.85rem;
  text-align: center;
  padding: 4px 0;
  opacity: 0.95;
}*/
.noticia-data-faixa {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #8d817d, #a5988c);
  color: white;
  font-size: 0.85rem;
  text-align: center;
  padding: 4px 0;
  opacity: 0.95;
  font-weight: 500;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}
.noticia-data-interna {
  font-size: 0.7rem;
  color: #666;
  text-align: right;
  margin-top: auto;
  opacity: 0.9;
  font-style: italic;
}
/*==================fim Modal Noticias ============================*/

/* ================ Início SEÇÃO BI LIVEPHARMA ==================== */
.bi-section {
  position: relative;
  background: linear-gradient(180deg, #fff5ef 0%, #ffffff 100%);
  color: #3f4548;
  overflow: hidden;
}

.bi-title {
  color: #3f4548;
  font-family: "Exo 2", "Poppins", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== Galeria (item 4) ===== */
.bi-gallery {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  padding: 40px 10px;
  opacity: 0;
  transform: translateY(80px);
  transition: all 1.2s ease;
  max-width: 100%;
}

.bi-gallery.show {
  opacity: 1;
  transform: translateY(0);
}

/* === IMAGENS === */
.bi-gallery-img {
  width: 330px;
  height: 210px;
  object-fit: cover;
  border-radius: 14px;
  opacity: 0;
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

/* === ANIMAÇÕES DE ENTRADA + BOUNCE === */

/* vem da esquerda */
@keyframes flyInLeft {
  0% {
    transform: translateX(-120vw) translateY(-60px) rotate(-8deg) scale(0.8);
    opacity: 0;
    filter: blur(10px);
  }
  70% {
    transform: translateX(20px) translateY(5px) rotate(4deg);
    opacity: 1;
  }
  90% {
    transform: translateX(-6px) translateY(-3px) rotate(-2deg);
  }
  100% {
    transform: translateX(0) translateY(0) rotate(0) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}

/* vem de cima */
@keyframes flyInTop {
  0% {
    transform: translateY(-120vh) rotate(8deg) scale(0.8);
    opacity: 0;
    filter: blur(10px);
  }
  70% {
    transform: translateY(25px) rotate(-3deg);
    opacity: 1;
  }
  90% {
    transform: translateY(-8px) rotate(2deg);
  }
  100% {
    transform: translateY(0) rotate(0) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}

/* vem da direita */
@keyframes flyInRight {
  0% {
    transform: translateX(120vw) translateY(-50px) rotate(10deg) scale(0.8);
    opacity: 0;
    filter: blur(8px);
  }
  70% {
    transform: translateX(-25px) translateY(8px) rotate(-3deg);
    opacity: 1;
  }
  90% {
    transform: translateX(10px) translateY(-4px) rotate(1deg);
  }
  100% {
    transform: translateX(0) translateY(0) rotate(0) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}

/* aplica animações */
.bi-gallery-img.animate-left {
  animation: flyInLeft 2.8s cubic-bezier(0.22, 1.02, 0.36, 1) forwards;
}
.bi-gallery-img.animate-top {
  animation: flyInTop 2.8s cubic-bezier(0.22, 1.02, 0.36, 1) forwards;
}
.bi-gallery-img.animate-right {
  animation: flyInRight 2.8s cubic-bezier(0.22, 1.02, 0.36, 1) forwards;
}

/* hover */
.bi-gallery-img:hover {
  transform: scale(1.08);
  box-shadow: 0 0 25px rgba(236,102,59,0.4);
}

/* === EFEITO DE VENTO DIGITAL === */
.bi-gallery::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 120%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
  filter: blur(12px);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

.bi-gallery.show::before {
  animation: windSweep 2.8s ease-out forwards;
}

@keyframes windSweep {
  0% { left: -150%; opacity: 0; }
  25% { opacity: 0.8; }
  50% { left: 50%; opacity: 1; }
  100% { left: 150%; opacity: 0; }
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 992px) {
  .bi-item {
    display: flex;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 25px;
  }

  .bi-item .col-lg-6 {
    width: 100% !important;
    display: block !important;
    max-width: 100% !important;
  }

  #bi .row:nth-of-type(2),
  #bi .row:nth-of-type(5) {
    flex-direction: column-reverse !important;
  }

  .bi-gallery {
    flex-direction: column;
    gap: 18px;
  }

  .bi-gallery-img {
    width: 90%;
    height: auto;
  }

  .bi-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .bi-section {
    padding: 60px 15px;
  }

  .bi-item {
    margin-bottom: 50px;
  }

  .bi-gallery {
    padding-bottom: 30px;
  }
}

/* ================= Fim SEÇÃO BI LIVEPHARMA =================== */

/*=================destaque h4========================================*/
h4.frase-destaque {
  font-size: 20px;
  font-style: italic;
  color: #3f4548; /* tom da sua paleta */
}
/*=================destaque h4========================================*/

/* ============================
   NOVO HERO - SEM CORTAR NENHUMA IMAGEM
============================ */

#heroNovo {
  background: linear-gradient(135deg, #ffffff 0%, #fff4ee 40%, #fce8df 100%);
  padding-top: 6rem;
  padding-bottom: 6rem;
}

/* Wrapper fixo */
#heroNovo .carousel-wrapper {
  height: 380px;       /* altura fixa desktop */
  overflow: hidden;
  border-radius: 12px;
  background: #ffffff; /* fundo neutro para evitar "bordas feias" */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Mobile */
@media (max-width: 768px) {
  #heroNovo .carousel-wrapper {
    height: 260px;
  }
}

/* Imagens sem corte */
#heroNovo .carousel-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;     /* <-- AGORA NUNCA CORTA */
  object-position: center;
  background: #ffffff;     /* garante que áreas vazias fiquem limpas */
}
/* ======== REMOVE QUALQUER FUNDO DO CARROSSEL ======== */
#heroCarouselNovo,
#heroCarouselNovo .carousel-inner,
#heroCarouselNovo .carousel-item,
#heroCarouselNovo .carousel-wrapper,
#heroCarouselNovo .carousel-item.active,
#heroCarouselNovo .carousel-item-next,
#heroCarouselNovo .carousel-item-prev {
  background: transparent !important;
  box-shadow: none !important;
}

/* Remove fundo das imagens também */
#heroCarouselNovo img {
  background-color: transparent !important;
}
/* Títulos e botões */
#heroNovo .hero-title {
  font-size: 2.3rem;   /* antes 2.9rem */
  font-weight: 700;    /* antes 800 */
  line-height: 1.25;
  color: #3f4548; 
}

#heroNovo .hero-subtitle {
  font-size: 1.05rem;  /* antes 1.2rem */
  line-height: 1.55;
  color: #555;
  max-width: 540px;
  margin-top: 12px;
  margin-bottom: 3rem; /*Define distancia botoes do texto*/
}

#heroNovo .hero-buttons {
  margin-top: 0;
}

#heroNovo .btn-hero {
  background: linear-gradient(135deg, #ec663b, #ed8019);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  transition: .3s ease;
  font-size: 0.95rem;
  padding: 0.8rem 1.9rem;
}

#heroNovo .btn-hero:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #ed8019, #ec663b);
}

#heroNovo .btn-outline-hero {
  font-size: 0.95rem;
  padding: 0.8rem 1.9rem;
  border-radius: 50px;
  border: 2px solid #ec663b;
  color: #ec663b;
  font-weight: 700;
  transition: .3s;
}

#heroNovo .btn-outline-hero:hover {
  background: #ec663b;
  color: #fff;
}

/* Sombra leve nas setas */
#heroNovo .carousel-control-prev-icon,
#heroNovo .carousel-control-next-icon {
  filter: drop-shadow(0px 0px 4px #000);
}
/* garante que o navegador entregue gestos horizontais ao script
   sem quebrar o scroll vertical da página */
#heroCarouselNovo {
  touch-action: pan-y; /* permite rolagem vertical normal, captura gestos horizontais */
  -ms-touch-action: pan-y;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  user-select: none;
}
@media (max-width: 768px) {
  #heroNovo .hero-title {
    font-size: 1.9rem;
     text-align: center;
  }
  #heroNovo .hero-subtitle {
    font-size: .95rem;
     text-align: center;
  }
  #heroNovo .btn-hero,
  #heroNovo .btn-outline-hero {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    font-size: 0.85rem;
    padding: 0.75rem 1rem;
  }
}
/* ========================================
   FARMA SECTION — MODERNO, CLARO E PREMIUM
======================================== */

#farmaSection {
  padding: 80px 0;
  background: linear-gradient(135deg, #f7f7f7 0%, #f0ece8 50%, #f7f7f7 100%);
  position: relative;
  overflow: hidden;
}

/* Brilhos suaves */
#farmaSection::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: -120px;
  left: -120px;
  background: radial-gradient(circle, rgba(236,102,59,0.25), transparent 70%);
  filter: blur(50px);
}

#farmaSection::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  bottom: -100px;
  right: -120px;
  background: radial-gradient(circle, rgba(237,128,25,0.25), transparent 70%);
  filter: blur(50px);
}

/* Títulos */
.text-farma-title {
  color: #3f4548;
  font-size: 2rem;    /* antes 2.4rem */
  font-weight: 700;   /* antes 800 */
}
#farmaSection .lead {
  font-size: 1.05rem; /* antes ~1.25rem */
}

.text-farma-sub {
  color: #5a5a5a;
  font-size: 1.15rem;
}

.max-w-700 {
  max-width: 700px;
}

/* Lista */
.feature-item {
  font-size: 1rem;    /* antes 1.12rem */
  color: #3f4548;
  padding-left: 32px;
  position: relative;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateX(-20px);
  transition: all .6s ease;
}

.feature-item::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.3rem;
  font-weight: bold;
  color: #ec663b;
}

.feature-item.show {
  opacity: 1;
  transform: translateX(0);
}

/* Botão */
/*#farmaSection .btn-outline-hero {
  padding: 0.9rem 2.1rem;
  border-radius: 50px;
  border: 2px solid #ec663b;
  color: #ec663b;
  font-weight: 700;
  transition: .3s;
}

#farmaSection .btn-outline-hero:hover {
  background: linear-gradient(135deg, #ec663b, #ed8019);
  border-color: transparent;
  color: #fff;
  transform: scale(1.04);
}
#farmaSection .btn-outline-hero {
  position: relative;
  z-index: 10;
}*/

#farmaSection .btn-outline-hero {
  color: #fff;
  background: #ec663b;
  border: 2px solid transparent;
  padding: 0.65rem 1.8rem;
  font-size: 0.95rem;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

#farmaSection .btn-outline-hero:hover {
  background: transparent;
  border-color: #ec663b;
  color: #ec663b;
  box-shadow: 0 0 8px rgba(236,102,59,0.6);
}





#farmaSection::before,
#farmaSection::after {
  pointer-events: none; /* Impede que bloqueiem cliques */
}
@media (max-width: 768px) {
  .text-farma-title {
    font-size: 1.7rem;
  }
  #farmaSection .btn-outline-hero {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    font-size: 0.85rem;
    padding: 0.75rem 1rem;
  }
}

/* ========================================
   AVATAR ANIMADO — GIRAR + PULSAR
======================================== */

.avatar-wrapper {
  display: inline-block;
  position: relative;
}

.avatar-animated {
  width: 280px;
  animation: girar 12s linear infinite, pulsar 3.5s ease-in-out infinite;
}

/* Animação rodando no eixo */
@keyframes girar {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Animação de pulsar */
@keyframes pulsar {
  0% { transform: scale(1); }
  50% { transform: scale(1.06); }
  100% { transform: scale(1); }
}

/* Responsivo */
@media (max-width: 768px) {
  .avatar-animated {
    width: 180px;
    margin-top: 20px;
  }
}

/*====================grafico section sonbre========================================*/
/* ------------------------------
  VARIÁVEIS DE CORES (fácil trocar)
---------------------------------*/
:root {
  --cor-topo: rgba(255,200,161,0.95);   /* topo brilhante (semi-transparente p/ vidro) */
  --cor-base: rgba(236,102,59,0.98);    /* base laranja */
  --cor-glow: rgba(236,102,59,0.28);    /* glow geral */
  --cor-linha: #f07a2e;                 /* cor da linha principal */
  --cor-sombra-linha: rgba(63,69,72,0.22);
  --cor-texto: #3f4548;
  --glass-opacity: 0.92;
}

/* ------------------------------
  HERO base
---------------------------------*/
.hero-modern { background: #fff; padding-top: 18px; padding-bottom: 18px; }
.hero-title { font-size: 2.35rem; font-weight: 700; color: var(--cor-texto); margin-bottom: 6px; }
.hero-subtitle { font-size: 1.05rem; color: #6c757d; margin-top: 8px; max-width: 520px; }
.btn-hero { background: var(--cor-base); color:#fff; padding:10px 22px; border-radius:50px; font-weight:600; }
.btn-hero:hover { background: #ed8019; }
.btn-outline-hero { border:2px solid var(--cor-base); color:var(--cor-base); padding:10px 22px; border-radius:50px; font-weight:600; }
.btn-outline-hero:hover { background: var(--cor-base); color: #fff; }

/* ------------------------------
  CONTAINER DO GRÁFICO
---------------------------------*/
.hero-chart-container {
  position: relative;
  height: 260px;     /* espaço para curva forte (começa abaixo, termina acima) */
  width: 100%;
  overflow: visible;
  padding-top: 6px;
}

/* ------------------------------
  CURVA SVG (atrás das barras)
---------------------------------*/
.hero-curve {
  position: absolute;
  inset: 0 0 0 0;
  width: 100%;
  height: 120%;
  z-index: 1; /* atrás */
  pointer-events: none;
  overflow: visible;
}

/* shadow path (borrada por trás) */
.hero-curve .shadow-path {
  stroke: var(--cor-sombra-linha);
  stroke-width: 12;
  filter: blur(8px);
  stroke-linecap: round;
  fill: none;
}

/* main path */
.hero-curve .main-path {
  stroke: var(--cor-linha);
  stroke-width: 4;
  stroke-linecap: round;
  fill: none;
}

/* ------------------------------
  BARRAS 3D C — NEO GLASS
---------------------------------*/
.chart-bars {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 10px;
  z-index: 3; /* acima da curva */
}

/* cada coluna (wrapper) */
.chart-bars .bar {
  --w: 11%;
  width: var(--w);
  height: 0;
  border-radius: 10px;
  position: relative;
  transform-style: preserve-3d;
  overflow: visible;

  /* glass-like gradient */
  background:
    linear-gradient(180deg,
      rgba(255,255,255,0.18) 0%,
      rgba(255,255,255,0.06) 6%,
      rgba(255,255,255,0.02) 12%,
      rgba(236,102,59,0.06) 28%,
      rgba(236,102,59,0.95) 100%);
  backdrop-filter: blur(2px);
  opacity: var(--glass-opacity);
  box-shadow:
    0 10px 30px rgba(3,10,18,0.08),
    inset 0 2px 10px rgba(255,255,255,0.18);
  transition: transform 220ms ease, box-shadow 260ms ease;
}

/* lateral direita sutil para profundidade */
.chart-bars .bar::before {
  content: "";
  position: absolute;
  right: -10px;
  top: 0;
  width: 10px;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.18));
  transform: skewY(-30deg);
  border-radius: 0 8px 8px 0;
  pointer-events: none;
  opacity: 0.9;
}

/* topo iluminado */
.chart-bars .bar::after {
  content: "";
  position: absolute;
  left: 0;
  top: -10px;
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, rgba(255,255,255,0.9), rgba(255,255,255,0.55));
  transform: skewX(-30deg);
  border-radius: 6px 6px 0 0;
  pointer-events: none;
}

/* glow enquanto anima */
.chart-bars .bar.is-animating {
  box-shadow:
    0 26px 48px rgba(3,10,18,0.12),
    inset 0 8px 24px rgba(255,255,255,0.12),
    0 0 28px var(--cor-glow);
  transform: translateY(-6px);
}

/* number */
.chart-bars .bar span {
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cor-texto);
  opacity: 0;
  transition: opacity 200ms ease;
}

/* show numbers when animate class present */
.chart-bars.animate .bar span { opacity: 1; }

/* responsive adjustments */
@media (max-width: 992px) {
  .hero-chart-container { height: 220px; }
  .chart-bars { height: 150px; }
  .chart-bars .bar { --w: 13%; }
  .chart-bars .bar::before { right: -8px; width: 8px; transform: skewY(-28deg); }
  .chart-bars .bar::after { top: -8px; height: 8px; transform: skewX(-28deg); }
}

@media (max-width: 576px) {
  .hero-chart-container { height: 200px; }
  .chart-bars { height: 130px; }
  .chart-bars .bar { --w: 15%; }
  .chart-bars .bar span { top: -28px; font-size: 0. nine rem; } /* typo-safe adjust below if needed */
  .hero-title { font-size: 1.85rem; }
}
/*====================fim grafico section sobre==================================================*/

/* ============ inicio Multiloja cloud =================== */
/* SECTION */
#multilojascloud {
  position: relative;
  overflow-x: hidden;
}
.mlc-section {
  background: linear-gradient(180deg, #f2f3f5, #d7d9de);
}

/* --- TITLES --- */
/* TITLES */
.mlc-side-title {
  font-size: 1.05rem; /* era 1.2*/
  font-weight: 700;
  margin-bottom: 14px; /* era 18px*/
  color: #3f4548;
}
.mlc-title {
  font-size: 2.1rem; /* era 2.4*/
  font-weight: 700;
  line-height: 1.2;
  color: #3f4548;
}
.mlc-subtitle {
  font-size: 1.1rem; /* era 1.3*/
  line-height: 1.5;
  color: #555;
}

.mlc-text {
  font-size: 1rem; /* era 1.1*/
  line-height: 1.6;
  max-width: 720px; /* era 760px*/
  margin: 0 auto;
  color: #3f4548;
}

/* --- SIDE CARDS --- */
/* CARD UPGRADE */
.mlc-side-card {
  background: #ffffff;
  padding: 30px 26px;
  border-radius: 20px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: center;
}

.mlc-side-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.1);
}
.mlc-side-card-live { 
  border-top: 6px solid #ec663b;
}
.mlc-side-card-trad {
  border-top: 6px solid #fc1010;
}
/* Cores específicas */
.mlc-side-card-trad .mlc-list li i {
  color: #fc1010; /* vermelho do card tradicional */
}

.mlc-side-card-live .mlc-list li i {
  /*color: #ec663b; /* laranja da identidade */
  color: #23c16b; /* laranja da identidade */
}

.mlc-side-img {
  width: 110px;
  margin-bottom: 18px;
}

/* LISTA MODERNA COM ÍCONES */
.mlc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mlc-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem; /*era 0.96*/
  line-height: 1.45;
  color: #3f4548;
  line-height: 1.4rem;
}


.mlc-list li i {
  font-size: 1.25rem;
  color: #ec663b;
  margin-top: 1px;
}

/* Wrapper central */
.mlc-mockup-wrapper {
  position: relative;
  width: 100%;
  max-width: 330px; /* ajuste fino: diminui o conjunto sem perder proporção */
  margin: 0 auto;
}

/* Mockup desktop */
.mlc-mockup-desktop {
  width: 100%;
  height: auto;
  display: block;
}

/* Mockup mobile (sobreposto) */
.mlc-mockup-mobile {
  position: absolute;
  bottom: 0;
  right: 0px; /* ajuste lateral — pode ser 0, -5 ou -10 */
  width: 38%; /* antes devia estar maior; 38% fica perfeito */
  height: auto;
  object-fit: contain;
  border-radius: 14px; /* evita qualquer corte nos cantos */
}

/* FINAL TEXT */
.mlc-final-text {
  font-size: 1.4rem; /*era 1.7*/
  font-weight: 700; /* era 800*/
  line-height: 1.3; 
  letter-spacing: -0.5px;
  color: #3f4548;
}

/* --- RESPONSIVO --- */

/* Tablet */
@media (max-width: 992px) {
  .mlc-mockup-mobile {
    width: 28%;
    max-width: 140px;
    right: 10px;
    bottom: -12px;
  }
}
/* Ajuste para telas menores */
@media (max-width: 768px) {
  .mlc-mockup-wrapper {
    max-width: 260px; /* reduz tudo no mobile */
  }

  .mlc-mockup-mobile {
    width: 36%; /* fica proporcional no mobile */
    right: 0px; /* ajuste fino era -5*/
  }
  .mlc-title {
    font-size: 1.8rem;
  }

  .mlc-subtitle {
    font-size: 1rem;
  }

  .mlc-text {
    font-size: 0.95rem;
  }

  .mlc-final-text {
    font-size: 1.25rem;
    text-align: center;
  }
}

/* MOBILE — manter absoluto */
@media (max-width: 576px) {

  .mlc-mockup-wrapper {
    max-width: 230px;
    margin: 0 auto;
  }

  .mlc-mockup-desktop {
    width: 100%;
  }

  .mlc-mockup-mobile {
    position: absolute;  /* mantém a lógica e NÃO quebra o layout */
    width: 35%;
    right: -0px; /*era -5*/
    bottom: -8px;
    max-width: 120px;
    object-fit: contain;
    border-radius: 12px;
  }
}

#multilojascloud .btn-cta-ml {
  background: linear-gradient(135deg, #ec663b, #ed8019);
  color: #fff;
  padding: 0.6rem 1.5rem;   /* menor altura e largura */
  border-radius: 35px;      /* mantém arredondado, mas menos exagerado */
  font-weight: 600;         /* um pouco mais leve */
  font-size: 0.95rem;       /* ajusta tamanho da fonte */
  transition: transform 0.3s ease, background 0.3s ease;
}

#multilojascloud .btn-cta-ml:hover {
  transform: scale(1.03);   /* escala mais sutil */
  background: linear-gradient(135deg, #ed8019, #ec663b);
  color: #fff;
}
@media (max-width: 768px) {
  #multilojascloud .btn-cta-ml {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    font-size: 0.85rem;
    padding: 0.75rem 1rem;
  }
}



/* ============================
   MODAL – INFORMAÇÕES DE BUILD
   ============================ */

#buildInfoModal .modal-content {
  border-radius: 18px;
}

#buildInfoModal .modal-header {
  border-bottom: 1px solid rgba(0,0,0,.08);
}

#buildInfoModal .modal-title {
  font-size: 1rem;
  font-weight: 600;
}

#buildInfoModal .modal-body {
  background-color: #f9fafb;
  border-radius: 0 0 18px 18px;
}

/* Texto técnico */
#buildInfoModal pre {
  background: transparent;
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: #3f4548; /* cinza LivePharma */
}

/* Footer */
#buildInfoModal .modal-footer {
  border-top: 1px solid rgba(0,0,0,.08);
  gap: 8px;
}

/* Botões */
#buildInfoModal .btn {
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 12px;
}

/* Botão copiar */
#buildInfoModal .btn-outline-secondary {
  color: #3f4548;
  border-color: #3f4548;
}

#buildInfoModal .btn-outline-secondary:hover {
  background-color: #3f4548;
  color: #fff;
}

/* Botão fechar (principal) */
#buildInfoModal .btn-primary {
  background-color: #ec663b; /* laranja LivePharma */
  border-color: #ec663b;
}

#buildInfoModal .btn-primary:hover {
  background-color: #ed8019;
  border-color: #ed8019;
}

/*=============Inicio Avisaos Entrada Site===========================*/
/* MODAL BASE */
.aviso {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.aviso-ativo {
  display: flex;
}

/* CONTEÚDO */
.aviso-conteudo {
  background: #fff;
  padding: 2.5rem 2.8rem;
  border-radius: 16px;
  text-align: center;
  max-width: 480px;      /* ⬅ maior */
  width: 92%;
  position: relative;
  animation: popupAnim 0.5s ease;
  box-shadow: 0 0 28px rgba(0,0,0,0.35);
}

@keyframes popupAnim {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* FECHAR */
.fechar {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.8rem;
  cursor: pointer;
}

/* TEXTO */
.aviso-conteudo p {
  margin-top: 1rem;
  font-size: 1.1rem;
}
/* ===== AVISO GERAL / INSTITUCIONAL ===== */
.aviso-geral .aviso-conteudo,
.aviso-comunicado .aviso-conteudo {
  background: linear-gradient(135deg, #fff5ef, #ffffff);
  border: 2px solid #ec663b; /* Laranja LivePharma */
  color: #3f4548;           /* Cinza institucional */
  box-shadow:
    0 0 18px rgba(236, 102, 59, 0.35),
    inset 0 0 0 1px rgba(236, 102, 59, 0.08);
}

/* Título */
.aviso-geral h3,
.aviso-comunicado h3 {
  color: #ec663b !important;
  font-weight: 700;
  letter-spacing: -0.4px;
  font-size: 1.3rem;   /* antes ~1.55rem */
}

/* Texto */
.aviso-geral p,
.aviso-comunicado p {
  color: #3f4548;
  font-size: 1rem;     /* antes ~1.1rem */
  line-height: 1.1;
}

/* Natal */
.aviso-natal h3 { color: #b22222; }

/* Ano Novo */
.aviso-anoNovo h3 { color: #b8860b; }

/* Geral */
.aviso-geral h3,
.aviso-comunicado h3 { color: #3f4548; }

/* NATAL */
.aviso-natal .aviso-conteudo {
  background: linear-gradient(135deg, #ffefd5, #ffe4b5);
  border: 2px solid #ec663b;
  color: #a32f2f;
}

/* ANO NOVO */
.aviso-anoNovo .aviso-conteudo {
  background: linear-gradient(135deg, #fffacd, #fdf6e3);
  border: 2px solid #ffd700;
  color: #b8860b;
}

/* PARTÍCULAS (USADO NOS DOIS) */
.particula {
  position: absolute;
  top: -50px;
  pointer-events: none;
  user-select: none;
  animation: cair linear infinite;
}

@keyframes cair {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) translateX(var(--x-mov));
    opacity: 0;
  }
}

/* MOBILE */
@media (max-width: 480px) {
  .aviso-conteudo {
    padding: 1.5rem;
  }
  .fechar {
    font-size: 1.6rem;
  }
}
/* ===== FOGOS DE ARTIFÍCIO – ANO NOVO ===== */

.fogo {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: transparent;
  pointer-events: none;
  animation: explodir 1.8s ease-out forwards;
}

.fogo span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  animation: particula 1.8s ease-out forwards;
}

/* explosão invisível (container) */
@keyframes explodir {
  from { transform: scale(0.2); opacity: 1; }
  to   { transform: scale(1); opacity: 0; }
}

/* partículas */
@keyframes particula {
  from {
    transform: translate(0, 0);
    opacity: 1;
  }
  to {
    transform: translate(var(--x), var(--y));
    opacity: 0;
  }
}
/* ===== FOGOS COM TRILHA – ANO NOVO ===== */

.foguete {
  position: absolute;
  width: 4px;
  height: 12px;
  background: linear-gradient(to top, #fff, transparent);
  animation: subir 1s ease-out forwards;
  pointer-events: none;
}

@keyframes subir {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-180px);
    opacity: 0;
  }
}

.fogo {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: transparent;
  pointer-events: none;
}

.fogo span {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  animation: particulaForte 2.2s ease-out forwards;
}

@keyframes particulaForte {
  from {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  to {
    transform: translate(var(--x), var(--y)) scale(0.6);
    opacity: 0;
  }
}
/*=============Inicio Avisaos Entrada Site===========================*/

/*======================Inicio logs =================================*/
.build-section {
  margin-bottom: 12px;
}

.build-title {
  font-weight: 600;
  font-size: 0.8rem;
  color: #ec663b;
  margin-bottom: 4px;
  letter-spacing: .04em;
}

.build-line {
  font-size: 0.8rem;
  color: #212529;
  margin-left: 8px;
}
.build-info-box {
  max-height: 340px;
  overflow-y: auto;
  font-family: monospace;
  white-space: normal;
}

/* LOGS */
.log-item {
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 10px;
  background: #f8f9fa;
  border-left: 4px solid #adb5bd;
}

.log-head {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #6c757d;
  margin-bottom: 4px;
}

.log-code {
  font-weight: 600;
}

.log-msg {
  font-size: 0.8rem;
  color: #212529;
  word-break: break-word;
}

.log-error {
  border-left-color: #dc3545;
  background: #fff5f5;
}

.log-warn {
  border-left-color: #fd7e14;
  background: #fff8f1;
}

.log-info {
  border-left-color: #0d6efd;
  background: #f1f6ff;
}
/*======================Fim logs ====================================*/