/** @format */

@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&family=Passion+One:wght@400;700;900&family=Paytone+One&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Zen+Dots&display=swap');

.linha-bar {
  position: fixed;
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(to left, #ff8a00, #27314a);
  z-index: 999999; /* por cima de tudo */
  transition: width 0.1s linear;
}

body {
  font-family: var(--font-family);
  background-color: var(--body);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  font-family: var(--font-family);
}

html {
  scroll-behavior: smooth;
  user-select: none;
  overflow-x: hidden;
}

/* ============================================
   ||            CSS - HEADER/ROOT            ||
   ||  Variáveis e estilos do cabeçalho/menu  ||
   ============================================ */

:root {
  --primary-branco: #fff;
  --scrolled-color: #333f5e;
  --border-top: 1px solid #fff;
  --border-bottom: 1px solid #ffffff1e;
  --verde-amarelo: #bbff67;
  --azul-50: #27314a;
  --azul-100: #1c2539;
  --cinza: #a1a3ae;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --box-shadow-verde: 0 0 0 0 #ffc400, 0 0 0 0 #d39625;
  --color-hover: #ffffffd0;
  --background-card: #333f5ec5;
  --body-geral: #27314af6;
}

:root {
  --body: #27314a;
  --Cor-Laranja: #ff6800;
  --Cor-Lilas-1: #4a0c78;
  --Cor-Lilas-2: #23135d;
  --Cor-Lilas-3: #5432d1;
  --Cor-Lilas-4: #8361ff;
  --Cor-cinza: #c0bfbf;
  --Cor-ZAP: #009e35;
  --posicao-atual: 0;
  --font-family: 'Poppins', sans-serif;
  --border-h2: 1px solid #ff6800;
}

:root {
  --background-degrade-larenja: linear-gradient(to left, #ff8800, #e52e71);
  --background-degrade-larenja-inverso: linear-gradient(to left, #e52e71, #ff8a00);
  --background-degrade-verde-1: linear-gradient(to top, #00ffd1, #44bcff);
  --background-degrade-verde-2: linear-gradient(132deg, #00a788 0%, #44bcff 100%);
  --background-degrade-escuro: linear-gradient(132deg, #000816 0%, #071e3e 100%);
}

::-webkit-scrollbar {
  width: 8px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #ac95ff;
}

::-webkit-scrollbar-thumb {
  background: var(--background-degrade-larenja-top);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--background-degrade-larenja-inverso);
}

/* //////////////////////////////
 // PÁGINA INICIAL //
////////////////////////////// */

#pag-inicial {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
  background: url('/criacao-de-sites-em-Belem.jpg') no-repeat center center / cover;
  isolation: isolate;
  position: relative;
  background-attachment: fixed;
}

#pag-inicial::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--body-geral);
  z-index: -1;
}

#pag-inicial .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

#pag-inicial .container .container-textoInicio h2 {
  max-width: 700px;
  color: var(--primary-branco);
  font-size: 48px;
  font-weight: 600;
  line-height: 3rem;
}

#pag-inicial .container .container-textoInicio h2 span {
  color: transparent !important;
  background: var(--background-degrade-larenja);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#pag-inicial .container .container-textoInicio p {
  max-width: 600px;
  color: var(--primary-branco);
  padding: 30px;
}

#pag-inicial .container .container-textoInicio a button {
  cursor: pointer;
  max-width: 500px;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  background: var(--background-degrade-larenja);
  color: var(--primary-branco);
  font-weight: 500;
  border: none;
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 10px;
  animation: pulse-verde 2s infinite;
}

#pag-inicial .container .container-textoInicio .imagensClientes {
  display: flex;
  justify-content: center;
  align-items: center;
}

#pag-inicial .container .container-textoInicio .imagensClientes img {
  width: 150px;
  height: auto;
}

#pag-inicial #top {
  top: 0;
  left: 0;
  width: 200vw;
  height: 100vh;
  object-fit: cover;
  opacity: 0.3;
  position: absolute;
  z-index: -1;
}

#pag-inicial .logo {
  display: none;
  position: relative;
  width: 100%;
  height: 100%;
}

#pag-inicial .logo img {
  display: none;
  width: 400px;
  height: auto;
  animation: flutuar 4s alternate infinite;
}

#pag-inicial .seta {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
}

#pag-inicial .seta .icon {
  color: var(--primary-branco);
  font-size: 52px;
  animation: flutuar-3 3s ease-in-out infinite;
  cursor: pointer;
}

@keyframes flutuar-3 {
  0%,
  100% {
    transform: translateY(-5px) rotate(-3deg);
  }

  50% {
    transform: translateY(0px) rotate(3deg);
  }
}

@keyframes subirDescer {
  0%,
  100% {
    transform: translateY(0%);
  }

  50% {
    transform: translateY(200%);
  }
}

@keyframes flutuar-astronauta {
  0% {
    transform: translateY(-15px) translateX(-50px);
  }

  100% {
    transform: translateY(-15px);
    transform: translateX(-8px);
  }
}

@keyframes flutuar {
  0% {
    transform: translateY(-8px);
  }

  50% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-8px);
  }
}

@keyframes pulse-verde {
  0% {
    transform: scale(1);
    box-shadow: var(--box-shadow-verde);
  }

  70% {
    transform: scale(1.01);
    box-shadow: 0 0 0 10px transparent, 0 0 0 20px transparent;
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 transparent, 0 0 0 0 transparent;
  }
}

/* Header */
.menu-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  color: var(--primary-branco);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.menu-item.active .menu-text {
  border-bottom: 3px solid var(--Cor-Laranja);
  width: 100%;
  padding: 5px;
}

/* Classe para quando o scroll é acionado */
.menu-nav.scrolled {
  background: rgba(80, 80, 80, 0.603);
  backdrop-filter: blur(17px);
  --webkit-backdrop-filter: blur(17px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.199);
  transition: width 0.3s ease;
}

/* Logo e título */
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-logo img {
  width: 40px;
  height: 40px;
}

.header-title {
  font-size: 25px;
  margin: 0;
  color: transparent !important;
  background: var(--background-degrade-larenja);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Menu de navegação */
.menu-links {
  display: flex;
  gap: 20px;
}

.menu-item {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--primary-branco);
  font-size: 12px;
  transition: color 0.3s ease, transform 0.3s ease;
  gap: 5px;
}

.menu-icon {
  font-size: 24px;
  margin-bottom: 5px;
}

.menu-text {
  margin: 0;
  color: var(--primary-color);
  font-size: 17px;
}

.menu-item:hover {
  color: var(--color-hover);
  transform: scale(1.1);
}

.contratar {
  font-size: 15px;
  font-weight: 400;
  color: var(--primary-branco);
  border-radius: 50px;
  padding: 12px 20px;
  border: 3px solid var(--Cor-Laranja);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.contratar:hover {
  background-color: var(--primary-branco);
  color: var(--azul-100);
  border: 3px solid var(--primary-branco);
}

/* Responsividade */
@media (max-width: 768px) {
  .menu-links {
    display: none;
  }

  .header-title {
    font-size: 18px;
  }
}

/* ============================================
   ||         CSS - MENU HAMBÚRGUER          ||
   || Estilos para navbar, menu e animações  ||
   ============================================ */

button {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.navbar,
.menu {
  position: fixed;
}

body.open .background {
  filter: blur(10px);
}

.navbar {
  z-index: 99991;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 72px;
  padding: 0 20px;
  background-color: var(--azul-100);
}

.navbar-burger {
  display: none;
  place-items: center;
  z-index: 9999;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: background 0.3s ease;
  top: 30px;
  right: 30px;
}

.navbar-burger:hover {
  background: var(--azul-100);
}

.navbar-burger i {
  font-size: 24px;
  color: var(--primary-branco);
  transition: transform 0.3s ease;
}

body.open .navbar-burger i {
  transform: rotate(90deg);
}

.menu {
  z-index: 9991;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  background: #000000cc;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

body.open .menu {
  opacity: 1;
  visibility: visible;
}

.menu nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.menu a {
  color: var(--primary-branco);
  font-size: 32px;
  padding: 20px 0;
  width: 300px;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.menu a:hover {
  opacity: 0.8;
  transform: scale(1.1);
}

.menu a::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 5px;
  background: var(--primary-branco);
  transform: scaleX(0);
  transform-origin: 0% 50%;
  transition: transform 0.4s ease;
}

.menu a:hover::after {
  transform: scaleX(1);
}

body.open .menu a {
  animation: appear 0.3s ease forwards;
}

@keyframes appear {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .navbar-burger {
    display: flex;
    position: fixed;
    width: 60px;
    height: 60px;
    right: 0px;
  }

  .menu a {
    font-size: 24px;
    padding: 15px 0;
  }
}

@media (max-width: 480px) {
  .navbar-burger {
    width: 50px;
    height: 50px;
    top: 3px;
    right: 30px;
  }

  .menu a {
    font-size: 20px;
    padding: 10px 0;
  }
}

@media (min-width: 769px) {
  .navbar-burger {
    display: none;
  }
}

/* ===============================================
   ||             CSS - CHAT FLUTUANTE           ||
   ||      Estilos do botão, mensagens e modal   ||
   =============================================== */

#preLoader {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100vh;
  padding: 20px;
}

#preLoader .chat-bubble .time p {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #939393;
  margin: 0;
  gap: 5px;
}

#preLoader .chat-bubble .time svg {
  width: 15px;
}

.chat-bubble .text h2 {
  color: #939393 !important;
  font-size: 15px !important;
}

.chat-bubble .text p span {
  color: #757474 !important;
  font-size: 13px !important;
}

.chat-bubble {
  position: relative;
  background-color: var(--primary-branco);
  color: var(--azul-100);
  padding: 15px;
  border-radius: 5px;
  max-width: 250px;
  height: auto;
  word-wrap: break-word;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.chat-bubble::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 15px 10px 0;
  border-color: transparent var(--primary-branco) transparent transparent;
  transform: translateY(-50%);
}

.chat-bubble .text {
  text-align: left;
}

#preLoader .chat-bubble .time {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
  margin-left: auto;
}

.loader {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.loader span {
  display: block;
  width: 8px;
  height: 8px;
  background-color: #0288d1;
  border-radius: 50%;
  animation: bounce 1.5s infinite ease-in-out;
}

.loader span:nth-child(1) {
  animation-delay: 0s;
}

.loader span:nth-child(2) {
  animation-delay: 0.2s;
}

.loader span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  0%,
  80%,
  100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}

.hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.visible {
  opacity: 1;
  visibility: visible;
}

.whatsAppButton {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.chat-Open {
  background: var(--background-degrade-larenja);
  border-radius: 50px;
  padding: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.chat-Open .icon {
  color: var(--primary-branco);
}
.tooltip {
  position: absolute;
  top: 50%;
  right: 110%;
  transform: translateY(-50%);
  background: var(--background-degrade-larenja);
  color: var(--primary-branco);
  padding: 8px;
  border-radius: 5px;
  white-space: nowrap;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 10;
}

.tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent #ff8a00;
}

.whatsAppButton:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

.tooltip.show {
  opacity: 1;
  visibility: visible;
}

.whatsAppButton {
  position: fixed;
  bottom: 30px;
  right: 30px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.whatsAppButton img {
  display: block;
}

.topBackgound {
  background: var(--background-degrade-larenja);
  padding: 10px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  gap: 15px;
}

.topBackgound .logomarca-online {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  position: relative;
}

.topBackgound .online {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #4fbe86;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  position: absolute;
  bottom: 2px;
  right: 0px;
}

.custom-modal-content h2 {
  position: relative;
  z-index: 2;
  font-weight: 600;
  font-size: 20px;
  color: var(--primary-branco);
  margin: 0;
  text-align: left;
}

.custom-modal-content span {
  display: block;
  font-weight: 400;
  font: 400 12px var(--font-family);
}

.bottomBackgound {
  display: flex;
  justify-content: space-between;
  background: var(--background-degrade-larenja);
  padding: 10px;
  display: flex;
  align-items: center;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  gap: 10px;
}

.topBackgound img {
  width: 50px;
}

textarea {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 40px;
  margin: 2px 0;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 50px;
  font-size: 14px;
  line-height: 20px;
  resize: none;
  overflow: hidden;
  white-space: normal;
  word-wrap: break-word;
  transition: border 0.1s ease;
  border: none;
}

textarea::-webkit-scrollbar {
  width: 0;
  height: 0;
}
textarea {
  scrollbar-width: none;
}

textarea:focus {
  border: 2px solid var(--Cor-Laranja);
  outline: none;
}

textarea::placeholder {
  color: #9c9ea7;
}

/* Estilo do modal */
.custom-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  bottom: 90px;
  right: 30px;
  background: var(--background-degrade-larenja);
  padding: 5px;
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: scale(0.9);
  overflow: hidden;
}

/* Conteúdo do modal */
.custom-modal-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  background-color: #ece8e2;
  background-image: url('https://i.ibb.co/D7Mbs4v/gi-Dck-OUM5a.png');
  padding: 20px;
  width: 350px;
  height: 350px;
  border-radius: 10px;
  position: relative;
  text-align: center;
}

/* Mostrar o modal com efeito de desvanecimento */
.custom-modal.show {
  display: block;
  opacity: 1;
  transform: scale(1);
}

/* Estilo do botão dentro do modal */
.custom-modal-content .bottomBackgound button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--transparent);
  color: var(--primary-branco);
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 50px;
  transition: background 0.3s ease;
}

.custom-modal-content .bottomBackgound button:hover {
  background: #182658;
}

svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 480px) {
  .custom-modal {
    right: 12px;
  }
}

/* ============================================
   ||             CSS - NOSSOS PLANOS         ||
   ||        Estilos relacionados aos planos  ||
   ============================================ */

#plano {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: var(--primary-branco);
  padding-top: 10px;
}

#plano .cards .ativar::after {
  content: 'MELHOR CUSTO BENEFÍCIO';
  position: absolute;
  background: var(--background-degrade-larenja);

  font-weight: 500;
  top: -12px;
  padding: 0 20px;
  border-radius: 50px;
}

#plano .cards .card .card-content ul li {
  font-weight: 300;
  padding: 3px;
  font-size: 13px;
}

#plano .cards .card .card-content .separador {
  border-bottom: 1px solid var(--Cor-Laranja);
  width: 90%;
  margin: 20px;
}

#plano .cards .card h2 {
  width: 80%;
  border: 2px solid var(--Cor-Laranja);
  border-radius: 100px;
  text-align: center;
  font-size: 15px;
  padding: 5px;
  margin: 10px;
  text-transform: uppercase;
}

h2,
h3 {
  color: var(--primary-branco);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 32px;
  width: 80%;
}

.cards:hover .card {
  background: radial-gradient(800px circle at var(--xPos) var(--yPos), rgba(0, 255, 241, 0.4), transparent 15%);
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: radial-gradient(400px circle at 0 0, #00fff100, transparent 0%);
  border-radius: 8px;
  transition: 0.15s;
  padding: 0;
  height: calc(100% - 2px);
  width: calc(100% - 2px);
  max-width: 100%;
}

.cards .card:hover::before {
  opacity: 1;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background: radial-gradient(500px circle at var(--xPos) var(--yPos), rgba(0, 255, 241, 0.1), transparent 35%);
  opacity: 0;
  transition: all 0.15s ease-in-out;
  z-index: -1;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--background-card);
  border-radius: inherit;
  transition: all 0.25s;
  height: calc(100% - 2px);
  width: calc(100% - 2px);
  padding: 16px;
  gap: 10px;
  box-sizing: border-box;
}

.card ul {
  list-style: none;
  padding: 0;
}

.card ul li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.card .card-content ul li .icon {
  font-size: 5px !important;
}

.card h2 {
  margin: 0;
  font-weight: 400;
  font-size: 22px;
}

.card h3 {
  font-size: 24px;
  margin-top: 16px;
}

.card .plano-button > button {
  cursor: pointer;
  text-align: center;
  max-width: 500px;
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  background: var(--background-degrade-larenja);
  border: none;
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 10px;
  transition: color 0.3s ease;
  color: var(--primary-branco);
}

.card .plano-button button:hover {
  background-color: var(--background-degrade-larenja-inverso);
}

.negativo {
  color: #ff6481;
}

.destaque {
  color: #00c897;
}

.card :is(i, h2, h3) {
  opacity: 0.45;
  transition: 0.3s;
}

.card:hover :is(i, h2, h3) {
  opacity: 1;
}

@media (max-width: 768px) and (min-width: 481px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
}

@media (max-width: 480px) {
  .cards {
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
  }
}

/* ============================================
   ||              CSS - WIDGET               ||
   ||     Estilos relacionados ao Widget      ||
   ============================================ */
@keyframes rotate {
  100% {
    background-position: 0% 50%;
  }
}

button {
  border: 0;
}

.widget {
  display: flex;
  justify-content: center;
  padding: 30px;
  width: 100%;
  border-radius: 20px;
}

.widget-value {
  font-size: 38px;
  line-height: 1;
}

.widget-label {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  padding-bottom: 20px;
}

.avatar-list {
  display: flex;
}

.avatar {
  position: relative;
  z-index: 1;
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-size: cover;
  cursor: pointer;
}

.avatar:not(:first-child) {
  margin-left: -10px;
}

.avatar:hover {
  z-index: 2;
}

.avatar::before {
  content: attr(data-content);
  position: absolute;
  bottom: 48px;
  left: 50%;
  translate: -50% 10px;
  opacity: 0;
  visibility: hidden;
  font-size: 13px;
  padding: 6px;
  border-radius: 3px;
  white-space: nowrap;
  background: rgba(248, 246, 246, 0.25);
  color: var(--primary-branco);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 10px;
  transition: 0.3s;
}

.avatar:not(.plus):hover::before {
  opacity: 1;
  visibility: visible;
  translate: -50% 0;
}

.avatar.plus {
  display: grid;
  place-items: center;
  background: var(--primary-branco);
  color: var(--azul-100);
  font-size: 12px;
  font-weight: 500;
}

/* ===============================================
   ||                CSS - GERAL                ||
   ||     Estilos base aplicados ao projeto     ||
   =============================================== */

.triangle {
  position: relative;
}

.triangle::after {
  content: '';
  width: 200%;
  height: 100vh;
  background: url('/bg-features.png') no-repeat center center / cover;
  clip-path: polygon(100% 50%, 0 100%, 0 0);
  position: absolute;
  z-index: -1;
}

.plano-texto {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 20px;
}

.plano-texto h1 {
  padding: 5px 30px;
  font-size: 30px;
  font-weight: 600;
  color: var(--primary-branco);
  text-transform: uppercase;
}

.plano-texto h2 {
  max-width: 500px;
  padding: 10px 10px 10px 20px;
  border-style: solid;
  border-width: 1px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 10px;
  text-align: center;
  text-transform: uppercase;
  color: var(--primary-branco);
  border: var(--border-h2);
}

/* //////////////////////////////
 // Carrousel //
////////////////////////////// */

#portfolio {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  padding-top: 30px;
}

.titulo-h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.veja-projeto {
  color: var(--primary-branco);
  text-decoration: none;
  margin-bottom: 30px;
}

.swiper-container {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
  align-items: center;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 30px;
  box-sizing: border-box;
}

.carousel {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 98%;
  height: 400px;
  align-items: center;
  padding: 40px;
  border-radius: 10px;
  background: var(--background-card);
  transition: background 0.5s ease-in-out, transform 0.5s ease-in-out;
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.image {
  flex: 0 0 40%;
  padding: 10px;
  box-sizing: border-box;
}

.image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.text-content {
  flex: 1;
  padding: 20px;
  box-sizing: border-box;
}

.info {
  padding: 40px 0;
}

.text h3 {
  font-size: 1.5rem;
  color: var(--primary-branco);
  margin-bottom: 10px;
  font-weight: 400;
}

.text .nome {
  font-size: 25px;
  color: #44bcff;
  font-weight: bold;
  text-transform: uppercase;
}

.sobreProjeto {
  margin-bottom: 20px;
}

.nome {
  max-width: 500px;
}

.sobreProjeto p {
  max-width: 500px;
  text-align: justify;
  font-size: 15px;
}

.sobreProjeto h4 {
  font-size: 1.2rem;
  color: var(--primary-branco);
  margin-bottom: 10px;
  font-weight: 400;
}

.paragrafo-projeto {
  font-size: 1rem;
  color: #dcdcdc;
}

.veja-projeto {
  font-size: 1rem;
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.veja-projeto:hover {
  color: #0056b3;
}

.swiper-navigation {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 10;
}
.custom-prev:hover,
.custom-next:hover {
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.custom-next {
  margin-right: 10px;
}

.custom-prev {
  margin-left: 10px;
}

.swiper-pagination {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
  z-index: 10;
  display: flex;
  justify-content: center;
}

.swiper-pagination .swiper-pagination-bullet {
  background: #007bff;
  opacity: 0.8;
}

.swiper-pagination .swiper-pagination-bullet-active {
  background: #0056b3;
}

@media (max-width: 480px) {
  .swiper-slide .content {
    flex-direction: column-reverse;
  }

  .carousel {
    width: 100%;
    height: 700px;
  }

  .custom-prev,
  .custom-next {
    display: none;
  }
}

/* //////////////////////////////
 /// SECTION - SERVIÇOS E MODELOS ///
////////////////////////////// */

#servico {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  text-align: center;
  overflow-x: hidden;
}

#servico h1 {
  color: var(--primary-branco);
  font-size: 45px;
  text-transform: uppercase;
  line-height: 3rem;
  padding-top: 40px;
}

#servico h1 span {
  background: var(--background-degrade-larenja);
  -webkit-background-clip: text;
  color: transparent;
  font-size: 53px;
  display: block;
}

#servico .paragrafo-1 {
  max-width: 550px;
  color: var(--primary-branco);
  font-size: 18px;
  margin: 20px;
}

.icon-txt {
  display: flex; /* FALTAVA ISSO */
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
  align-items: flex-start; /* força left */
}

.icone {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  font-size: 50px;
  color: var(--Cor-Laranja);
}

.icone-text {
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
  max-width: 520px;
}

#servico .compra {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.apartir {
  font-size: 12px;
  text-transform: uppercase;
}

#servico .quero-comprar {
  cursor: pointer;
  text-align: center;
  max-width: 500px;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  background: var(--background-degrade-larenja);
  color: var(--primary-branco);
  font-weight: 500;
  border: none;
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 10px;
  animation: pulse-verde 2s infinite;
}

#servico .quero-comprar:hover {
  animation: pulsar 0.5s alternate infinite;
}

#servico .quero-comprar span {
  margin-left: 20px;
}

@keyframes pulsar {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.05);
  }
}

#servico .itemMotivos {
  padding: 10px 0;
  width: 200px;
  height: 350px;
  margin: 30px 2px auto;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  overflow: hidden;
  transition: width 0.3s ease;
  position: relative;
  max-height: 600px;
  cursor: move;
}

#servico .itemMotivos .text-motivos {
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#servico .itemMotivos .text-motivos i {
  font-size: 30px;
  margin-bottom: 10px;
  color: var(--Cor-Laranja);
}

#servico .itemMotivos .text-motivos h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

#servico .itemMotivos .text-motivos .motivo-p {
  font-size: 15px;
  max-height: 800px;
  overflow-wrap: break-word;
}

#servico #modelo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 30px;
  text-align: left;
}

#servico #modelo #metodologia {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#servico #modelo #metodologia .metodo-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

#servico #modelo #metodologia .metodo-content img {
  margin-right: 20px;
}

#servico #modelo #metodologia .metodo-content .metodo-text h1 {
  color: var(--primary-branco);
  max-width: 400px;
  text-align: left;
  font-size: 30px;

  padding: 10px 0;
}

#servico #modelo #metodologia .metodo-content .metodo-text .lista {
  display: flex;
  flex-direction: column;
  text-align: left;
}

#servico #modelo #metodologia .metodo-content .metodo-text .lista ul {
  display: flex;
  flex-direction: column;
}

#servico #modelo #metodologia .metodo-content .metodo-text .lista ul li {
  color: var(--primary-branco);
}

#servico #modelo #metodologia .metodo-content .metodo-text .lista ul li .icon {
  color: var(--Cor-Laranja);
  font-size: 20px;
}

#servico #modelo #metodologia .metodo-content .metodo-text .lista p {
  color: var(--primary-branco);
  font-size: 15px;
  padding: 20px 0;

  max-width: 550px;
}

#servico #modelo #metodologia .metodo-content .metodo-text .lista a button {
  cursor: pointer;
  max-width: 500px;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  background: var(--background-degrade-larenja);
  color: #ffffff;
  font-weight: 500;
  border: none;
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 10px;
  animation: pulse-verde 2s infinite;
}

#servico #modelo #metodologia .container-inf {
  position: relative;
}

#servico #modelo #metodologia .container-inf .pc {
  width: 500px;
  height: auto;
}

#servico #modelo #metodologia .container-inf .pc-inf {
  position: absolute;
  width: 250px;
  height: auto;
  left: 0;
  bottom: 80px;
  animation: levantar 4s ease infinite;
}

#servico #modelo #mais-modelos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 20px;
}

#servico #modelo #mais-modelos h1 {
  color: transparent !important;
  background: linear-gradient(180deg, #ffffff 0%, #f0bca5 90%);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 20px;
  text-transform: uppercase;
  margin: 30px;
}

@keyframes levantar {
  0% {
    transform: translateY(20px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(20px);
  }
}

@media (max-width: 480px) {
  #servico {
    padding: 10px;
    max-width: 350px !important;
  }

  #servico h1 {
    font-size: 30px;
    padding-top: 0px;
  }

  #servico h1 span {
    font-size: 30px;
    line-height: 2rem;
  }

  #servico .icon-txt .icon-h {
    font-size: 20px;
  }

  #servico .icon-txt .icon-h p {
    font-size: 15px;
  }

  #servico .card {
    height: 500px;
  }

  #servico .motivos-3 {
    flex-direction: column;
    line-height: 1rem;
  }

  #servico #modelo {
    display: flex;
    flex-direction: column;
  }

  #servico #modelo #metodologia {
    display: flex;
  }

  #servico #modelo #metodologia .metodo-content {
    display: flex;
    flex-direction: column;
  }

  #servico #modelo #metodologia .metodo-content .metodo-text {
    width: 100%;
  }

  #servico #modelo #metodologia .metodo-content .metodo-text .lista {
    display: flex;
    flex-direction: column;
  }

  #servico #modelo #metodologia .metodo-content .metodo-text .lista ul {
    display: flex;
    flex-direction: column;
  }

  #servico #modelo #metodologia .metodo-content .metodo-text .lista ul li {
    color: var(--primary-branco);
  }

  #servico #modelo #metodologia .container-inf .pc {
    width: 300px;
  }

  #servico #modelo #metodologia .container-inf .pc-inf {
    width: 180px;
    /*     bottom: 50px; */
  }
}

@media (max-width: 768px) and (min-width: 481px) {
  #servico {
    padding: 10px 0;
  }

  #servico .motivos-3 {
    flex-direction: column;
    line-height: 1rem;
  }

  #servico #modelo {
    display: flex;
    flex-direction: column;
  }

  #servico #modelo #metodologia {
    display: flex;
  }

  #servico #modelo #metodologia .metodo-content {
    display: flex;
    flex-direction: column;
  }

  #servico #modelo #metodologia .metodo-content .metodo-text {
    margin: 50px;
    width: 100%;
  }

  #servico #modelo #metodologia .metodo-content .metodo-text .lista {
    display: flex;
    flex-direction: column;
  }

  #servico #modelo #metodologia .metodo-content .metodo-text .lista ul {
    display: flex;
    flex-direction: column;
  }

  #servico #modelo #metodologia .metodo-content .metodo-text .lista ul li {
    color: var(--primary-branco);
  }

  #servico #modelo #metodologia .container-inf .pc-inf {
    width: 180px;
    bottom: 50px;
  }
}

.meuVideoPlayer {
  position: relative;
  width: 100%;
  height: 360px;
  max-width: 640px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 25px;
  border: 8px solid var(--Cor-Laranja);
}

#player-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  cursor: pointer;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff81;
  transition: background-image 0.3s ease, color 0.3s ease;
  z-index: 2;
  cursor: pointer;
}

.play-icon .icon {
  font-size: 100px;
  transition: all 0.3s ease;
}

.video-thumbnail:hover + .play-icon .icon,
.video-thumbnail + .play-icon .icon:hover {
  color: var(--primary-branco);
}

@media (max-width: 480px) {
  .meuVideoPlayer {
    width: 100%;
    max-width: 90%;
  }
}

/* //////////////////////////////
 /// SECTION - OUTROS SERVIÇOS ///
////////////////////////////// */

#outrosSevicos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding: 2%;
}

#outrosSevicos .conteudoSevico {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

@media (max-width: 768px) {
  #outrosSevicos .conteudoSevico {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
  }
}

#outrosSevicos .conteudoSevico .itemServico {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  border-radius: 25px;
  background: var(--background-card);
  backdrop-filter: blur(17px);
  --webkit-backdrop-filter: blur(17px);
  border: 1px solid rgba(255, 255, 255, 0.267);
  transition: width 0.3s ease;
  color: var(--primary-branco);
  transition: background 0.5s ease-in-out, border-color 0.5s ease-in-out, color 0.5s ease-in-out, transform 0.5s ease-in-out;
}

#outrosSevicos .conteudoSevico .itemServico:hover .icon {
  transform: translateY(-10px);
  animation: levantar-icon 2s infinite;
}

@keyframes levantar-icon {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

#outrosSevicos .conteudoSevico .itemServico .icon {
  font-size: 100px;
  margin: 10px;
  --background-degrade-laranja: linear-gradient(to left, #ff8a00, #e52e71);
  background: var(--background-degrade-laranja);
  display: inline-block;
  transition: transform 0.3s ease;
}

/* //////////////////////////////
 /// SECTION - SOBRE NÓS ///
////////////////////////////// */

#sobre-nos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
}

#sobre-nos .container {
  margin: 0 auto;
  padding: 0 15px;
}

#sobre-nos p {
  font-size: 1rem;
  line-height: 1.6;
  text-align: justify;
  margin: 0 auto 20px;
  max-width: 700px;
  color: #b9b9b9;
}

@keyframes icon-animation {
  0% {
    stroke-dashoffset: 1000;
  }

  50% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: -1000;
  }
}

@media (max-width: 480px) {
  #sobre-nos p {
    max-width: 450px;
  }
  .logoSobre {
    width: 300px;
  }
}

@media (max-width: 768px) and (min-width: 481px) {
  #sobre-nos p {
    max-width: 600px;
  }
  .logoSobre {
    width: 300px;
  }
}

@media (max-width: 480px) {
  #pag-inicial .container {
    flex-direction: column-reverse;
    margin-top: 60px;
  }

  #pag-inicial .container .logo img {
    width: 230px;
  }

  #pag-inicial .container .container-textoInicio h2 {
    font-size: 30px;
  }

  #pag-inicial .container .container-textoInicio a button {
    cursor: pointer;
    max-width: 500px;
    width: 80%;
  }

  #pag-inicial .container .container-textoInicio .imagensClientes img {
    width: 150px;
    height: auto;
  }

  #pag-inicial .logo img {
    display: block;
  }
}

@media (max-width: 768px) and (min-width: 481px) {
  #pag-inicial .container {
    flex-direction: column-reverse;
    margin-top: 60px;
  }

  #pag-inicial .container .logo img {
    width: 230px;
  }

  #pag-inicial .container .container-textoInicio h2 {
    max-width: 550px;
    font-size: 40px;
  }

  #pag-inicial .container .container-textoInicio a button {
    cursor: pointer;
    max-width: 500px;
    width: 80%;
  }

  #pag-inicial .container .container-textoInicio .imagensClientes img {
    width: 150px;
    height: auto;
  }

  #pag-inicial .logo img {
    display: block;
  }

  //////////////////////////////
  /* PLANOS */
  //////////////////////////////

  #plano {
    padding: 30px;
  }

  #plano .planos-container .planos-planos ul li {
    font-size: 12px;
  }

  #plano .planos-container {
    grid-template-columns: repeat(1, 1fr);
  }
}

.faq-section {
  padding: 50px;
  width: 100%;
  margin-bottom: 50px;
}

.container-faq {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.container-faq img {
  width: 45%;
  max-width: 500px;
  border-radius: 10px;
  object-fit: cover;
}

.faq-item {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.faq-item h1 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--primary-branco);
  text-align: center;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  border: 1px solid var(--Cor-Laranja);
  cursor: pointer;
  margin-bottom: 5px;
  padding: 10px;
  border-radius: 7px;
  transition: background-color 0.3s ease, transform 0.5s ease;
  font-weight: 400;
}

.faq-question:hover {
  background-color: var(--Cor-Laranja);
  transform: scale(1.02);
}

.bi-chevron-right {
  color: var(--Cor-Laranja);
}

.faq-answer {
  font-size: 16px;
  margin-bottom: 15px;
  display: none;
  background-color: var(--primary-branco);
  padding: 10px;
  border: var(--border-h2);
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  text-align: center;
}

/* Expandir resposta ao clicar */
.faq-item.active .faq-answer {
  display: block;
}

/* Responsividade */
@media (max-width: 768px) {
  .container-faq {
    flex-direction: column;
  }

  .faq-section {
    padding: 20px;
  }

  .container-faq img {
    width: 80%;
    margin-bottom: 20px;
  }

  .faq-item {
    width: 100%;
  }
}

/*////////////////////////
// scroll Up Btn
////////////////////////*/

.scroll-up-btn {
  display: none;
  position: fixed;
  bottom: -50px;
  left: 20px;
  background: var(--background-degrade-larenja);
  color: var(--primary-branco);
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 99;
  transition: 0.5s ease;
}

.scroll-up-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  text-align: center;
}

.scroll-up-btn.show {
  bottom: 50px;
}

@keyframes pulsar {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.05);
  }
}

.scroll-up-btn:hover {
  background: var(--background-degrade-larenja-inverso);
}

.scroll-up-btn i {
  display: block;
  margin: 0 auto;
  font-size: 25px;
}

.scroll-up-btn.show {
  display: block;
}

@media (max-width: 480px) {
  .scroll-up-btn {
    bottom: -70px;
  }
}

@media (max-width: 768px) and (min-width: 481px) {
  .scroll-up-btn {
    bottom: -70px;
  }
}

/*///////////////////////////////////////////
//  Galeria de Modelos - Carrossel
///////////////////////////////////////////*/

h1 {
  color: var(--primary-branco);
  margin: 40px 20px;
  font-size: 36px;
}

/* ================= CATEGORIAS ================= */
.mds-categorias-wrapper {
  max-width: 1200px;
  margin: 0 auto 30px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mds-categorias-wrapper .mds-cat-prev,
.mds-categorias-wrapper .mds-cat-next {
  background: none;
  border: none;
  cursor: pointer;
  background-color: var(--primary-branco);
  font-size: 18px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--Cor-Laranja);
}

.mds-categorias-wrapper .icon {
  font-size: 50px;
}

.mds-cat-arrow {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary-branco);
  font-size: 18px;
}

.mds-cat-arrow:hover {
  color: #ff9800;
}

.mds-categorias-carousel {
  flex: 1;
  background-color: #007bff;
  padding: 10px;
  border-radius: 50px;
}

.mds-categoria-cell {
  margin-right: 10px;
}

.mds-categoria-cell button {
  background: #1e1e1e;
  border: none;
  color: var(--primary-branco);
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 12px;
  text-transform: uppercase;
}

.mds-categoria-cell button.active {
  background: #ff9800;
}

/* ================= IMAGENS ================= */
.mds-images-wrapper {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mds-img-arrow {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary-branco);
  font-size: 20px;
}

.mds-img-arrow:hover {
  color: #ff9800;
}

.mds-carousel {
  flex: 1;
}

.mds-carousel-cell {
  width: 300px;
  height: 400px;
  margin-right: 16px;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: #000;
}

.mds-carousel-cell img {
  width: 100%;
  height: auto;
  transform: translateY(0);
  transition: transform 5s linear;
}

.mds-carousel-cell:hover img {
  transform: translateY(calc(-100% + 400px));
}

/* ================= MODAL ================= */
.mds-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.mds-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}

.mds-modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  cursor: pointer;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  h1 {
    font-size: 28px;
  }

  .mds-carousel-cell {
    width: 240px;
    height: 340px;
  }

  .mds-carousel-cell:hover img {
    transform: translateY(calc(-100% + 340px));
  }
}

@media (max-width: 480px) {
  .mds-carousel-cell {
    width: 100%; /* só 1 imagem */
    height: 360px;
    margin-right: 0;
  }

  .mds-carousel {
    padding: 0;
  }

  .mds-carousel-cell:hover img {
    transform: translateY(calc(-100% + 360px));
  }
}

/*////////////////////////
//  FOOTER
////////////////////////*/

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.25)), var(--background-card);

  color: #e5e5e5;
  padding: 50px 24px 36px;
  border-radius: 40px 40px 0 0;

  border-top: 1px solid rgba(255, 255, 255, 0.486);

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* LOGOMARCA */
.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-logo .icon {
  font-size: 48px;
  background: linear-gradient(to left, #ff8800, #e52e71) !important;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-logo p {
  font-size: 14px;
  color: #bdbdbd;
  line-height: 1.7;
}

/* TITULOS */
.footer h3 {
  font-size: 17px;
  margin-bottom: 15px;
  color: var(--primary-branco);
  position: relative;
}

.footer h3::after {
  content: '';
  width: 35px;
  height: 2px;
  background: var(--primary-branco);
  position: absolute;
  left: 0;
  bottom: -6px;
}

/* LINKS */
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer a {
  text-decoration: none;
  color: #bdbdbd;
  font-size: 14px;
  line-height: 2;
  transition: 0.3s;
}

.footer a:hover {
  color: var(--primary-branco);
}

/* SOCIAL */
.social {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social a {
  width: 42px;
  height: 42px;
  border: 1px solid #222;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #bdbdbd;
  transition: 0.3s;
}

.social a .icon {
  font-size: 18px;
}

.social a:hover {
  background: var(--background-degrade-larenja);
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #979797;
  font-size: 13px;
  color: var(--primary-branco);
}

.footer-contato a {
  color: var(--primary-branco);
  font-size: 20px;
  transition: 0.3s;
  font-weight: bold;
  transition: color 0.3s ease;
}

.footer-contato a:hover {
  color: var(--Cor-Laranja);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .footer {
    text-align: center;
  }

  .footer-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-logo {
    align-items: center;
  }

  .social {
    justify-content: center;
  }
}
