@charset "UTF-8";
:root {
  --azul: #5170ff;
  --roxo: #976ce7a2;
  --preto: #000;
  --branco: #fff;
  --rosa: #ff66c4;
  --amarelo: #feba16;
}

:root {
  --bg-dark: hsl(0 0% 0%);
  --bg: hsl(0 0% 9%);
  --bg-light: hsl(0 0% 18%);
  --bg-lighter: hsl(0 0% 26%);
  --bg-morelighter: hsl(0 0% 33%);
  --text: hsl(0 0% 95%);
  --text-muted: hsl(0, 0%, 70%);
  --text-strong-muted: hsl(309, 70%, 70%);
  --text-strong-muteder: hsl(309, 34%, 53%);
  --titulo: font-size: 24px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  color: white;
  text-align: center;
  background-color: var(--bg);
  overflow-x: hidden;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 70px;
}

.profile-img {
  width: 40px;
  height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
}

.aberto {
  display: block;
}

.roboto {
  font-family: "Roboto", sans-serif;
}

.hammersmith-one {
  font-family: "Hammersmith One", sans-serif;
}

.open-sans {
  font-family: "Open Sans", sans-serif;
}

.icon-grande {
  font-size: 30px !important;
  margin-left: 10px;
}

.word-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.bg-black {
  background-color: var(--bg);
  color: white;
}

.modal-backdrop {
  z-index: 100 !important;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  animation: zoomIn 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
}

/* ===========================
      MENSAGENS
=========================== */
.message-success,
.message-danger {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: min(700px, 90%);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  background: rgba(0, 0, 0, 0.55);
  border-left: 4px solid;
  color: #fff;
  z-index: 9999;
  animation: slideDown 0.4s ease;
}

/* CORES */
.message-success {
  border-color: #00ff6a;
  box-shadow: 0 0 12px rgba(0, 255, 120, 0.4);
}

.message-danger {
  border-color: #ff3b3b;
  box-shadow: 0 0 12px rgba(255, 60, 60, 0.4);
}

/* TEXTO */
.message-success strong,
.message-danger strong {
  font-size: 1rem;
  font-family: "Opens Sans", sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-message {
  font-size: 1.3rem;
}

/* BOTÃO FECHAR */
.btn-close {
  background: transparent;
  border: none;
  cursor: pointer;
  filter: invert(100%);
  width: 22px;
  height: 22px;
  opacity: 0.7;
  transition: 0.3s;
}

.btn-close:hover {
  opacity: 1;
  transform: scale(1.15);
}

/* ===========================
         ANIMAÇÕES
=========================== */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translate(-50%, -20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
@keyframes zoomIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* ANIMAÇÃO PARA SUMIR (apenas ALERTAS) */
.fade-out {
  animation: fadeOutAlert 0.4s ease forwards;
}

@keyframes fadeOutAlert {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate(-50%, -20px);
  }
}
/* ===========================
        RESPONSIVIDADE
=========================== */
@media (max-width: 550px) {
  .message-success,
  .message-danger {
    top: 50px;
    padding: 15px 18px;
    border-radius: 8px;
  }
  .message-success strong,
  .message-danger strong {
    font-size: 0.9rem;
  }
  .icon-message {
    font-size: 1.1rem;
  }
}
/* ===========================
        LOADING FIXED
=========================== */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000000;
  opacity: 1;
  transform: none !important;
  transition: opacity 0.6s ease;
}
#loading.fade-out {
  opacity: 0;
}
#loading .loader-content {
  text-align: center;
  animation: fadeIn 0.8s ease forwards;
}
#loading .loader-content .loading-img {
  width: 200px;
  margin-bottom: 25px;
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.1));
  animation: pulse 2s infinite ease-in-out;
}
#loading .loader-content .spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-top-color: white;
  border-radius: 50%;
  margin: 0 auto;
  animation: spin 1s linear infinite;
}

/* Animations */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.07);
    opacity: 0.85;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.h1-Hammersmith {
  font-family: "Hammersmith One", sans-serif;
  font-size: 20px;
  font-weight: bold;
}

@media (max-width: 550px) {
  .h1-Hammersmith {
    font-family: "Hammersmith One", sans-serif;
    font-size: 16px;
    font-weight: bold;
  }
}
@media (max-width: 800px) {
  .h1-Hammersmith {
    font-family: "Hammersmith One", sans-serif;
    font-size: 18px;
    font-weight: bold;
  }
}
.h2-Hammersmith {
  font-family: "Hammersmith One", sans-serif;
  font-size: 14px;
  font-weight: bold;
}

@media (max-width: 550px) {
  .h2-Hammersmith {
    font-family: "Hammersmith One", sans-serif;
    font-size: 12px;
    font-weight: bold;
  }
}
@media (max-width: 800px) {
  .h2-Hammersmith {
    font-family: "Hammersmith One", sans-serif;
    font-size: 13px;
    font-weight: bold;
  }
}
.p-Hammersmith {
  font-family: "Hammersmith One", sans-serif;
  font-size: 14px;
}

@media (max-width: 550px) {
  .p-Hammersmith {
    font-family: "Hammersmith One", sans-serif;
    font-size: 12px;
  }
}
@media (max-width: 800px) {
  .p-Hammersmith {
    font-family: "Hammersmith One", sans-serif;
    font-size: 13px;
  }
}
header {
  position: relative;
  background: transparent;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0px;
  max-width: 1920px;
  z-index: 100;
}
header .header-font {
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
}
header .header-font li a {
  color: var(--branco);
  transition: all 0.8s ease;
}
header .header-font li li a {
  color: var(--branco);
}
header .mobile-menu-top {
  display: none;
}
header .logo-mobile {
  display: none;
}
header .nav-desktop {
  width: 100%;
  margin-left: 50px;
  margin-right: 50px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.2vw;
}
header .nav-desktop .logo-desktop img {
  width: 100px;
  max-width: 100%;
  height: auto;
}
header .nav-desktop .nav-links {
  display: flex;
  flex-direction: row;
}
header .nav-desktop .nav-links li {
  margin-left: 40px;
}
header .nav-desktop .nav-links li ul.dropdown-menu li {
  margin-left: 5px !important;
}
header .nav-desktop .nav-links li a {
  background: linear-gradient(90deg, var(--rosa), var(--azul));
  background-size: 150%;
  background-clip: text;
  -webkit-background-clip: text;
  color: var(--branco);
  -webkit-text-fill-color: var(--branco);
  transition: all 0.4s ease-in-out;
}
header .nav-desktop .nav-links li a:hover {
  -webkit-text-fill-color: transparent;
}
header .nav-desktop .nav-links a.active {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: var(--rosa);
  color: var(--rosa);
}
header .nav-desktop .nav-links a.active:hover {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: var(--rosa);
  color: var(--rosa);
}
header .nav-desktop .div-login-user {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 800px) {
  header .nav-desktop {
    justify-content: space-between;
    margin-top: 10px;
    font-size: 15px;
  }
  header .nav-desktop .logo-desktop img {
    width: 70px;
  }
  header .nav-desktop .nav-links li {
    margin-left: 20px;
  }
  header .nav-desktop .div-login-user .profile-img {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 550px) {
  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header .mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    color: var(--roxo);
    font-size: 25px;
  }
  header .logo-mobile {
    display: inline;
    margin-top: 8px;
    margin-right: 10px;
  }
  header .logo-mobile img {
    width: 75px;
    height: auto;
  }
  header .nav-desktop {
    display: none;
  }
}
@keyframes wave {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(0.97);
    opacity: 1;
  }
  50% {
    transform: scale(1);
    opacity: 0.8;
  }
}
@keyframes aparecer {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.hero {
  max-width: 1920px;
  width: 100%;
  height: 680px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: radial-gradient(rgba(0, 0, 0, 0.5), var(--bg)), url("../img/inicio-hero.webp") center/cover no-repeat;
  margin-bottom: -80px;
  top: -100px;
}
.hero .hero-text {
  width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero .hero-text h1 {
  font-size: 5vw;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  letter-spacing: 0.2rem;
  margin: 5% 0 30px 0;
  display: flex;
  justify-content: center;
}
.hero .hero-text h1.wave-hover span {
  display: inline-block;
  background: linear-gradient(900deg, var(--rosa), var(--azul));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.5s ease-in-out;
}
.hero .hero-text h1.wave-hover.active span:nth-child(1) {
  animation: wave 0.5s ease-in-out 0.1s;
}
.hero .hero-text h1.wave-hover.active span:nth-child(2) {
  animation: wave 0.5s ease-in-out 0.2s;
}
.hero .hero-text h1.wave-hover.active span:nth-child(3) {
  animation: wave 0.5s ease-in-out 0.3s;
}
.hero .hero-text h1.wave-hover.active span:nth-child(4) {
  animation: wave 0.5s ease-in-out 0.4s;
}
.hero .hero-text h1.wave-hover.active span:nth-child(5) {
  animation: wave 0.5s ease-in-out 0.5s;
}
.hero .hero-text h1.wave-hover.active span:nth-child(6) {
  animation: wave 0.5s ease-in-out 0.6s;
}
.hero .hero-text h1.wave-hover.active span:nth-child(7) {
  animation: wave 0.5s ease-in-out 0.7s;
}
.hero .hero-text h1.wave-hover.active span:nth-child(8) {
  animation: wave 0.5s ease-in-out 0.8s;
}
.hero .hero-text h1.wave-hover.active span:nth-child(9) {
  animation: wave 0.5s ease-in-out 0.9s;
}
.hero .hero-text h1.wave-hover.active span:nth-child(10) {
  animation: wave 0.5s ease-in-out 1s;
}
.hero .hero-text p {
  color: white;
  font-size: 1.6vw;
  letter-spacing: 0.1rem;
  font-family: "Roboto", sans-serif;
  max-width: 850px;
  margin-bottom: 30px;
}
.hero .hero-text .btn-agende {
  margin-top: 20px;
  padding: 12px 28px;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  color: white;
  background: linear-gradient(to right, rgba(81, 112, 255, 0.3), rgba(255, 102, 196, 0.3));
  border: 2px solid transparent;
  -o-border-image: linear-gradient(to right, var(--azul), var(--rosa)) 1;
     border-image: linear-gradient(to right, var(--azul), var(--rosa)) 1;
  border-radius: 10px;
  cursor: pointer;
  font-family: "Hammersmith One", sans-serif;
  position: relative;
  animation: pulse 2.5s infinite ease-in-out;
  transition: all 0.3s ease-in-out;
}
.hero .hero-text .btn-agende:hover {
  transform: scale(1.05);
  background: linear-gradient(to right, rgba(81, 112, 255, 0.6), rgba(255, 102, 196, 0.6));
}
.hero .hero-text .btn-agende::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid;
  -o-border-image: linear-gradient(to right, var(--azul), var(--rosa)) 1;
     border-image: linear-gradient(to right, var(--azul), var(--rosa)) 1;
  filter: blur(4px);
  opacity: 0.8;
  z-index: -1;
  border-radius: inherit;
  animation: pulse 2.5s infinite ease-in-out;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  justify-content: center;
  align-items: center;
}
.modal.ativo {
  display: flex;
}
.modal .modal-content {
  background: #1e1e1e;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 5px;
  color: #f1f1f1;
  border: 1px solid #444;
  text-align: center;
  width: 90%;
  max-width: 400px;
  position: relative;
  animation: aparecer 0.3s ease;
}
.modal .modal-content h2 {
  font-family: "Hammersmith One", sans-serif;
  margin-bottom: 15px;
  color: #ffffff;
}
.modal .modal-content p {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #bebebe;
  margin-bottom: 20px;
}
.modal .modal-content .fechar {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
  color: #555;
  transition: all 0.3s ease;
}
.modal .modal-content .fechar:hover {
  color: white;
}
.modal .modal-content .botoes-modal {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.modal .modal-content .botoes-modal .btn-modal {
  padding: 10px 20px;
  border-radius: 8px;
  background: var(--rosa);
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}
.modal .modal-content .botoes-modal .btn-modal:hover {
  background: #be3d8d;
}
.modal .modal-content .botoes-modal .btn-modal.btn-secundario {
  background: #818080;
}
.modal .modal-content .botoes-modal .btn-modal.btn-secundario:hover {
  background: #4e4e4e;
}

.sobre {
  max-width: 1920px;
  width: 100%;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 20px;
  color: white;
  letter-spacing: 0.1rem;
  position: relative;
}
.sobre .imagem {
  position: relative;
  justify-self: end;
}
.sobre .imagem img {
  width: 100%;
  max-width: 450px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}
.sobre .imagem::after {
  content: "";
  position: absolute;
  top: 15px;
  right: 0;
  transform: translateX(15px);
  width: 95%;
  height: 100%;
  background: linear-gradient(110deg, var(--azul), var(--rosa));
  border-radius: 5px;
  z-index: 1;
}
.sobre .conteudo {
  display: flex;
  flex-direction: column;
  justify-content: start;
  text-align: start;
}
.sobre .conteudo h3 {
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
}
.sobre .conteudo .linha {
  width: 240px;
  margin: 1px 0 5px 0;
}
.sobre .conteudo .linha::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--azul), var(--rosa));
}
.sobre .conteudo h2 {
  font-family: "Hammersmith One", sans-serif;
  font-size: 2rem;
  margin: 5px 0 10px 0;
}
.sobre .conteudo .texto p {
  text-align: justify;
  font-family: "Open Sans", sans-serif;
  line-height: 1.9;
  margin-bottom: 10px;
}
.sobre .conteudo .texto p span {
  color: var(--rosa);
  font-weight: bold;
}
@media (max-width: 900px) {
  .sobre {
    text-align: center;
  }
  .sobre .imagem {
    order: -1;
    margin-bottom: 20px;
  }
  .sobre .imagem::after {
    left: 0;
  }
}

.servicos {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 0 5%;
  letter-spacing: 0.1rem;
  color: white;
}
.servicos h2 {
  font-family: "Hammersmith One", sans-serif;
  font-size: 2rem;
}
.servicos .linha {
  width: 280px;
}
.servicos .linha::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--azul), var(--rosa));
}
.servicos p {
  max-width: 100%;
  margin-top: 10px;
  font-family: "Open Sans", sans-serif;
  text-align: justify;
  line-height: 1.9;
}
.servicos .cards {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 20px 0;
}
.servicos .cards .card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.servicos .cards .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.25);
}
.servicos .cards .card img {
  display: block;
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.servicos .cards .card span {
  position: absolute;
  width: 85%;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  padding: 8px 15px;
  border-radius: 8px;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.servicos .botao-servicos {
  margin: 20px auto 0;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  color: white;
  background: linear-gradient(to right, rgba(81, 112, 255, 0.3), rgba(255, 102, 196, 0.3));
  border: 2px solid transparent;
  -o-border-image: linear-gradient(to right, var(--azul), var(--rosa)) 1;
     border-image: linear-gradient(to right, var(--azul), var(--rosa)) 1;
  border-radius: 10px;
  cursor: pointer;
  font-family: "Open Sans", sans-serif;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.servicos .botao-servicos:hover {
  transform: scale(1.05);
  background: linear-gradient(to right, rgba(81, 112, 255, 0.6), rgba(255, 102, 196, 0.6));
}
.servicos .botao-servicos::before {
  content: "";
  position: absolute;
  inset: -6px;
  border: 2px solid;
  -o-border-image: linear-gradient(to right, var(--azul), var(--rosa)) 1;
     border-image: linear-gradient(to right, var(--azul), var(--rosa)) 1;
  filter: blur(4px);
  opacity: 0.8;
  z-index: -1;
  border-radius: 12px;
  animation: pulse 2s infinite ease-in-out;
}

.localizacao {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 0 5%;
  letter-spacing: 0.1rem;
  color: white;
  font-family: "Open Sans", sans-serif;
}
.localizacao h2 {
  font-size: 28px;
  font-weight: 700;
}
.localizacao .linha {
  width: 400px;
  height: 3px;
  background: linear-gradient(to right, var(--azul), var(--rosa));
  margin: 0 0 20px 0;
}
.localizacao .descricao {
  text-align: justify;
  line-height: 1.9;
  margin-bottom: 20px;
  color: #eaeaea;
}
.localizacao .conteudo {
  display: flex;
  align-items: flex-start;
  width: 100%;
  gap: 40px;
}
.localizacao .mapa {
  flex: 1.3;
}
.localizacao .mapa iframe {
  width: 100%;
  height: 280px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}
.localizacao .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 280px;
}
.localizacao .info .informacoes {
  align-self: flex-start;
  text-align: start;
}
.localizacao .info .contatos {
  align-self: flex-end;
  text-align: end;
}
.localizacao .info h3 {
  font-family: "Hammersmith One", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 8px;
  text-transform: uppercase;
  background: linear-gradient(var(--azul), var(--rosa));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  gap: 8px;
}
.localizacao .info h3 i {
  font-size: 1rem;
}
.localizacao .info .contatos h3 {
  justify-content: flex-end;
}
.localizacao .info p {
  font-size: 0.95rem;
  color: #e1e1e1;
  line-height: 1.6;
}
.localizacao .info p strong {
  color: #fff;
}
.localizacao .info p i {
  margin-right: 6px;
  color: var(--rosa);
}
@media (max-width: 900px) {
  .localizacao .conteudo {
    flex-direction: column;
  }
  .localizacao .info {
    height: auto;
    text-align: left;
  }
  .localizacao .info .contatos {
    margin-left: 0;
    align-self: flex-start;
    text-align: left;
  }
  .localizacao .mapa iframe {
    height: 220px;
  }
}

.faqs {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 0 5%;
  letter-spacing: 0.1rem;
  margin-bottom: 2%;
  color: white;
}
.faqs .faqs-text {
  width: 100%;
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  color: #fff;
}
.faqs .faqs-text h1 {
  font-size: 2.5vw;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  letter-spacing: 0.2rem;
}
.faqs .faqs-text .linha {
  width: 450px;
  margin: 1px 0 20px 0;
}
.faqs .faqs-text .linha::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--azul), var(--rosa));
  border-radius: 10px;
}
.faqs .faqs-text .accordions-box {
  display: flex !important;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  max-width: none;
}
.faqs .faqs-text .accordions-box .accordion {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.faqs .faqs-text .accordions-box .accordion:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
.faqs .faqs-text .accordions-box .accordion .accordion-item {
  background: transparent;
  border: none;
}
.faqs .faqs-text .accordions-box .accordion .accordion-item .accordion-header .accordion-button {
  background: transparent;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  padding: 15px 20px;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.faqs .faqs-text .accordions-box .accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none !important;
  outline: none !important;
}
.faqs .faqs-text .accordions-box .accordion .accordion-item .accordion-header .accordion-button::after {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin-left: auto;
  content: "";
  background-repeat: no-repeat;
  background-size: 1rem;
  transition: transform 0.3s ease;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");
}
.faqs .faqs-text .accordions-box .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
}
.faqs .faqs-text .accordions-box .accordion .accordion-item .accordion-header .accordion-button:hover {
  background: rgba(255, 255, 255, 0.05);
}
.faqs .faqs-text .accordions-box .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  font-weight: 600;
  background: linear-gradient(to right, rgba(0, 122, 255, 0.1), rgba(255, 0, 128, 0.1));
  border-left: 4px solid transparent;
  -o-border-image: linear-gradient(to bottom, var(--azul), var(--rosa)) 1;
     border-image: linear-gradient(to bottom, var(--azul), var(--rosa)) 1;
}
.faqs .faqs-text .accordions-box .accordion .accordion-item .accordion-body {
  font-family: "Open Sans", sans-serif;
  letter-spacing: 0.05rem;
  padding: 15px 25px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

/* iPads (até o Pro 12.9”) */
@media (max-width: 1024px) {
  .sobre {
    max-width: 800px;
    width: 90%;
    display: flex;
    flex-direction: column;
    margin: 10px;
  }
  .sobre .imagem {
    margin: 0 auto;
    margin-top: 20px;
  }
  .servicos .cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .servicos .card {
    width: 280px; /* ajuste como preferir */
    text-align: center;
  }
}
@media (max-width: 800px) {
  .hero .hero-text {
    padding: 10px;
    justify-content: center;
    align-items: center;
  }
  .hero .hero-text h1 {
    font-size: 6vw;
    letter-spacing: 0.05rem;
    margin-bottom: 20px;
  }
  .hero .hero-text p {
    color: white;
    font-size: 2.5vw;
  }
  .servicos .img img {
    -o-object-position: right;
       object-position: right;
  }
  .servicos .img .servicos-text ul {
    margin-left: 0px;
  }
  .sobre {
    max-width: 800px;
    width: 90%;
    display: flex;
    flex-direction: column;
    -o-border-image: linear-gradient(to right, var(--rosa), var(--azul)) 1;
       border-image: linear-gradient(to right, var(--rosa), var(--azul)) 1;
    border-width: 2px;
    border-style: solid;
    margin: 10px;
  }
  .sobre .imagem {
    margin: 0 auto;
    margin-top: 20px;
  }
  .sobre .imagem img {
    width: 85%;
    max-width: 450px;
  }
  .sobre .imagem::after {
    content: "";
    position: absolute;
    top: 0;
    width: 90%;
    height: calc(100% + 10px);
    background: linear-gradient(110deg, var(--azul), var(--rosa));
    border-radius: 5px;
    z-index: 1;
    left: 12px;
  }
  .localizacao {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 600px;
    gap: 0px;
  }
  .localizacao h1 {
    background-color: #e1e1e1;
    font-size: 25px;
    margin-left: 0;
  }
  .localizacao .linha {
    background-color: #1e1e1e;
  }
  .localizacao .linha::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--azul), var(--rosa));
    margin-left: 0px;
  }
  .localizacao .conteudo {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
  }
  .localizacao .conteudo p {
    width: 100%;
    margin: 0;
  }
  .localizacao .conteudo h3 {
    width: 100%;
    margin-left: 0;
    justify-content: flex-start !important;
    text-align: left;
  }
  .localizacao .conteudo .mapa {
    width: 100%;
  }
  .localizacao .conteudo .mapa iframe {
    width: 90%;
    transition: transform 0.5s ease;
    border: 2px solid;
  }
  .localizacao .conteudo .info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    height: auto;
  }
  .localizacao .conteudo .info .contatos {
    align-self: flex-start;
    text-align: left;
    width: 100%;
  }
  .faqs {
    margin-bottom: 50px;
  }
}
@media (max-width: 550px) {
  .hero {
    height: 440px;
    margin-bottom: -100px;
  }
  .hero .hero-text {
    margin-top: 80px;
    padding: 10px;
    justify-content: center;
    align-items: center;
  }
  .hero .hero-text h1 {
    font-size: 8vw;
    letter-spacing: 0.05rem;
    margin-bottom: 20px;
  }
  .hero .hero-text p {
    color: white;
    font-size: 3vw;
  }
  .servicos {
    align-items: center;
  }
  .servicos .linha {
    width: 100%;
  }
  .servicos .linha::after {
    width: 100%;
  }
  .sobre {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 90%;
    flex-direction: column;
  }
  .sobre .imagem {
    margin-top: 20px;
  }
  .sobre .imagem img {
    width: 85%;
    max-width: 450px;
  }
  .sobre .imagem::after {
    content: "";
    position: absolute;
    top: 0;
    width: 90%;
    height: calc(100% + 10px);
    background: linear-gradient(110deg, var(--azul), var(--rosa));
    border-radius: 5px;
    z-index: 1;
  }
  .localizacao {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 550px;
    width: 100%;
    height: 600px;
    gap: 0px;
  }
  .localizacao h1 {
    background-color: #e1e1e1;
    text-align: center;
    font-size: 25px;
    margin-left: 0;
  }
  .localizacao .linha {
    background-color: #1e1e1e;
    width: 100%;
  }
  .localizacao .linha::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--azul), var(--rosa));
    margin-left: 0px;
  }
  .localizacao .conteudo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s ease;
  }
  .localizacao .conteudo .mapa {
    flex: 1;
  }
  .localizacao .conteudo .mapa iframe {
    transition: transform 0.5s ease;
    border: 2px solid;
  }
  .localizacao .conteudo .overlay h1 {
    color: white;
    font-size: 28px;
    text-align: center;
  }
  .localizacao .conteudo .info .contatos {
    display: none;
  }
  .faqs {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .faqs .faqs-text {
    align-items: center;
    margin: 10px;
  }
  .faqs .faqs-text .linha {
    width: 100%;
  }
  .faqs .faqs-text .linha::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--azul), var(--rosa));
    margin-left: 0px;
  }
  .faqs .faqs-text h1 {
    text-align: center;
    font-size: 25px;
    margin-left: 0;
  }
  .faqs .faqs-text .accordions-box {
    gap: 30px;
    padding: 10px;
    width: 100%;
    margin-left: 0;
  }
  .faqs .faqs-text .accordions-box .accordion {
    width: 100%;
    background: transparent;
  }
  .faqs .faqs-text .accordions-box .accordion .accordion-item {
    background: transparent;
  }
  .faqs .faqs-text .accordions-box .accordion .accordion-item .accordion-header .accordion-button {
    background-color: transparent;
    color: white;
    font-size: 14px;
    transition: all 0.35s ease;
  }
  .faqs .faqs-text .accordions-box .accordion .accordion-item .accordion-header .accordion-button:hover {
    padding: 20px;
    font-size: 17px;
  }
  .faqs .faqs-text .accordions-box .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    font-size: 16px;
    border: 3px solid;
    -o-border-image: linear-gradient(to right, var(--azul), var(--rosa)) 1;
       border-image: linear-gradient(to right, var(--azul), var(--rosa)) 1;
  }
  .faqs .faqs-text .accordions-box .accordion .accordion-item .accordion-collapse .accordion-body {
    color: white;
    background-color: var(--bg);
    transition: all 0.5s ease;
    font-size: 13px;
  }
  .faqs .faqs-text .accordions-box .accordion .accordion-item .accordion-collapse .accordion-body:hover {
    color: white;
    background-color: var(--bg-light);
    font-size: 15px;
  }
}
.animar {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.animar.fade-up.ativo {
  opacity: 1;
  transform: translateY(0);
}

.animar.fade-left {
  transform: translateX(-50px);
}

.animar.fade-left.ativo {
  opacity: 1;
  transform: translateX(0);
}

.animar.fade-right {
  transform: translateX(50px);
}

.animar.fade-right.ativo {
  opacity: 1;
  transform: translateX(0);
}

.animar.zoom-in {
  transform: scale(0.8);
}

.animar.zoom-in.ativo {
  opacity: 1;
  transform: scale(1);
}

.cards .card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease-out;
}

.cards .card.ativo {
  opacity: 1;
  transform: translateY(0);
}

@keyframes wave {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-projetos {
  max-width: 1920px;
  width: 100%;
  height: 680px;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 0;
  margin-bottom: -80px;
  top: -100px;
  background-image: radial-gradient(rgba(0, 0, 0, 0.5), var(--bg)), url("../img/projetos-hero.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-projetos .projetos-text {
  display: flex;
  width: 1000px;
  flex-direction: column;
}
.hero-projetos .projetos-text h1 {
  color: white;
  font-size: 5vw;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  letter-spacing: 0.2rem;
  margin-bottom: 30px;
}
.hero-projetos .projetos-text .pop span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.9s ease;
  background: linear-gradient(20deg, var(--rosa), var(--azul));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: rgba(134, 1, 117, 0.253) 2px 3px 4px;
}
.hero-projetos .projetos-text p {
  color: white;
  font-size: 1.6vw;
  letter-spacing: 0.1rem;
  font-family: "Roboto", sans-serif;
}

.projetos-about {
  max-width: 1920px;
  width: 100%;
  height: auto;
  padding: 0 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.projetos-about .about-text {
  width: 100%;
  height: auto;
  text-align: left;
}
.projetos-about .about-text h1 {
  width: 500px;
  font-family: "Hammersmith One", sans-serif;
}
.projetos-about .about-text .wave-hover {
  display: flex;
}
.projetos-about .about-text .wave-hover span {
  display: inline-block;
  transition: transform 0.5s ease-in-out, color 0.5s ease-in-out;
  color: white;
}
.projetos-about .about-text .wave-hover.active span:nth-child(1) {
  animation: wave 0.5s linear;
  animation-delay: 0.1s;
}
.projetos-about .about-text .wave-hover.active span:nth-child(2) {
  animation: wave 0.5s linear;
  animation-delay: 0.2s;
}
.projetos-about .about-text .wave-hover.active span:nth-child(3) {
  animation: wave 0.5s linear;
  animation-delay: 0.3s;
}
.projetos-about .about-text .wave-hover.active span:nth-child(4) {
  animation: wave 0.5s linear;
  animation-delay: 0.4s;
}
.projetos-about .about-text .wave-hover.active span:nth-child(5) {
  animation: wave 0.5s linear;
  animation-delay: 0.5s;
}
.projetos-about .about-text .wave-hover.active span:nth-child(6) {
  animation: wave 0.5s linear;
  animation-delay: 0.6s;
}
.projetos-about .about-text .wave-hover.active span:nth-child(7) {
  animation: wave 0.5s linear;
  animation-delay: 0.7s;
}
.projetos-about .about-text .wave-hover.active span:nth-child(8) {
  animation: wave 0.5s linear;
  animation-delay: 0.8s;
}
.projetos-about .about-text .wave-hover.active span:nth-child(9) {
  animation: wave 0.5s linear;
  animation-delay: 0.9s;
}
.projetos-about .about-text .wave-hover.active span:nth-child(10) {
  animation: wave 0.5s linear;
  animation-delay: 1s;
}
.projetos-about .about-text .wave-hover.active span:nth-child(11) {
  animation: wave 0.5s linear;
  animation-delay: 1.1s;
}
.projetos-about .about-text .wave-hover.active span:nth-child(12) {
  animation: wave 0.5s linear;
  animation-delay: 1.2s;
}
.projetos-about .about-text .wave-hover.active span:nth-child(13) {
  animation: wave 0.5s linear;
  animation-delay: 1.3s;
}
.projetos-about .about-text .wave-hover.active span:nth-child(14) {
  animation: wave 0.5s linear;
  animation-delay: 1.4s;
}
.projetos-about .about-text .wave-hover.active span:nth-child(15) {
  animation: wave 0.5s linear;
  animation-delay: 1.5s;
}
.projetos-about .about-text .linha {
  width: 0;
  height: 3px;
  margin-top: 10px;
  background: linear-gradient(90deg, var(--azul), var(--rosa));
  border-radius: 2px;
  transition: width 1.9s ease-in-out;
}
.projetos-about .about-text .linha.active {
  width: 300px;
}
.projetos-about .about-text p {
  margin-top: 10px;
  font-family: "Open Sans", sans-serif;
  text-align: justify;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.projetos-about .about-text p.active {
  opacity: 1;
  transform: translateY(0);
}
.projetos-about .about-text p span {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}
.projetos-about .about-text p.animate span {
  opacity: 1;
  transform: translateY(0);
}

.projetos {
  padding: 0 5% 30px 5%;
  color: #fff;
  text-align: center;
}
.projetos .titulo {
  font-size: 2.5rem;
  margin-bottom: 5px;
  background: linear-gradient(90deg, var(--rosa), var(--azul));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.projetos .descricao {
  font-size: 1.1rem;
  margin-bottom: 50px;
  color: #ddd;
}
.projetos .grade-projetos {
  -moz-columns: 3 300px;
       columns: 3 300px;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.projetos .projeto {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.projetos .projeto.animate {
  opacity: 1;
  transform: translateY(0);
}
.projetos .projeto img {
  width: 100%;
  display: block;
  border-radius: 12px;
  transition: transform 0.4s ease, filter 0.4s ease;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}
.projetos .projeto:nth-child(5n+1) img {
  height: 300px;
}
.projetos .projeto:nth-child(5n+2) img {
  height: 350px;
}
.projetos .projeto:nth-child(5n+3) img {
  height: 400px;
}
.projetos .projeto:nth-child(5n+4) img {
  height: 450px;
}
.projetos .projeto:nth-child(5n+5) img {
  height: 500px;
}
.projetos .projeto:hover img {
  transform: scale(1.05);
  filter: brightness(60%);
}
.projetos .projeto .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.4s ease;
  text-align: center;
  padding: 20px;
}
.projetos .projeto .overlay h2 {
  font-family: "Hammersmith One", sans-serif;
  font-size: 1.2rem;
  background: linear-gradient(90deg, var(--rosa), var(--azul));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
.projetos .projeto .overlay p {
  font-family: "Open Sans", sans-serif;
  color: #fff;
  font-size: 1rem;
}
.projetos .projeto:hover .overlay {
  opacity: 1;
}

/* iPads (até o Pro 12.9”) */
@media (max-width: 1024px) {
  .hero-projetos .projetos-text {
    padding: 10px;
    justify-content: center;
    align-items: center;
  }
  .hero-projetos .projetos-text h1 {
    font-size: 5vw;
  }
  .hero-projetos .projetos-text .pop {
    white-space: nowrap;
    /*Mantem a palavra projetos em um bloco continuo*/
  }
  .hero-projetos .projetos-text p {
    color: white;
    font-size: 2vw;
  }
}
@media (max-width: 800px) {
  .hero-projetos .projetos-text {
    padding: 10px;
    justify-content: center;
    align-items: center;
  }
  .hero-projetos .projetos-text h1 {
    font-size: 6vw;
    letter-spacing: 0.05rem;
    margin-bottom: 20px;
  }
  .hero-projetos .projetos-text .pop {
    white-space: nowrap;
    /*Mantem a palavra projetos em um bloco continuo*/
  }
  .hero-projetos .projetos-text p {
    color: white;
    font-size: 2.5vw;
  }
  .projetos-about .about-text h1 {
    font-size: 5vw;
  }
  .projetos-about .about-text .linha.active {
    width: 350px;
  }
  .projetos-about .about-text p {
    font-size: 2.8vw;
    margin-top: 15px;
  }
}
@media (max-width: 550px) {
  .hero-projetos {
    height: 440px;
    margin-bottom: -100px;
  }
  .hero-projetos .projetos-text {
    padding: 10px;
    justify-content: center;
    align-items: center;
  }
  .hero-projetos .projetos-text h1 {
    font-size: 8vw;
    letter-spacing: 0.05rem;
    margin-bottom: 20px;
  }
  .hero-projetos .projetos-text .pop {
    white-space: nowrap;
    /*Mantem a palavra projetos em um bloco continuo*/
  }
  .hero-projetos .projetos-text p {
    color: white;
    font-size: 3vw;
  }
  .projetos-about .about-text h1 {
    width: 50px;
    font-size: 7vw;
  }
  .projetos-about .about-text h1 {
    font-size: 6vw;
  }
  .projetos-about .about-text .linha.active {
    width: 55%;
  }
  .projetos-about .about-text p {
    font-size: 3.5vw;
    margin-top: 15px;
    line-height: 1.8;
  }
}
.container-projetos {
  background: #0d0d0d;
  min-height: 100vh;
  width: 100%;
  padding: 40px;
  color: #fff;
}
.container-projetos .card-projetos {
  background: #1c1c1c;
  padding: 35px;
  border-radius: 16px;
  margin: 0 auto 40px auto;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}
.container-projetos .card-projetos .cabecalho {
  text-align: center;
}
.container-projetos .card-projetos .cabecalho h2 {
  font-family: "Hammersmith One", sans-serif;
  font-size: 2.3rem;
}
.container-projetos .card-projetos .cabecalho .linha {
  margin: 5px auto 0 auto;
  height: 3px;
  align-items: center;
  width: 55%;
  background: linear-gradient(to right, var(--azul), var(--rosa));
}
.container-projetos .card-projetos form {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.container-projetos .card-projetos form .input-grupo {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.container-projetos .card-projetos form .input-grupo label {
  font-size: 1rem;
  letter-spacing: 0.1rem;
  text-align: start;
}
.container-projetos .card-projetos form .input-grupo input,
.container-projetos .card-projetos form .input-grupo textarea {
  background: #2b2b2b;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 10px;
  color: #fff;
}
.container-projetos .card-projetos form .input-grupo input:focus,
.container-projetos .card-projetos form .input-grupo textarea:focus {
  outline: none;
  border-color: var(--rosa);
  box-shadow: 0 0 4px var(--rosa);
}
.container-projetos .card-projetos form .input-grupo textarea {
  height: 120px;
  resize: vertical;
}
.container-projetos .card-projetos form .custom-file-upload {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #2b2b2b;
  border: 1px solid #333;
  padding: 10px;
  border-radius: 8px;
}
.container-projetos .card-projetos form .custom-file-upload .btn-file {
  background: linear-gradient(20deg, var(--rosa), var(--azul));
  padding: 8px 15px;
  border-radius: 6px;
  cursor: pointer;
  font-family: "Hammersmith One";
}
.container-projetos .card-projetos form .custom-file-upload #fileName {
  color: #ccc;
  max-width: 230px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.container-projetos .card-projetos form .custom-file-upload input[type=file] {
  display: none;
}
.container-projetos .card-projetos form .preview-img {
  text-align: center;
}
.container-projetos .card-projetos form .preview-img img {
  width: 250px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  margin-top: 10px;
  padding: 3px;
  background: linear-gradient(to right, var(--rosa), var(--azul));
}
.container-projetos .card-projetos form .botoes {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
.container-projetos .card-projetos form .botoes button, .container-projetos .card-projetos form .botoes a {
  padding: 10px 20px;
  border-radius: 8px;
  background: var(--rosa);
  font-family: "Open Sans", sans-serif;
  color: #fff;
  text-decoration: none;
  transition: 0.2s;
}
.container-projetos .card-projetos form .botoes button:hover, .container-projetos .card-projetos form .botoes a:hover {
  transform: scale(1.05);
}
.container-projetos .card-projetos form .botoes a {
  background: #333;
}
.container-projetos .titulo-lista {
  text-align: center;
  margin-bottom: 20px;
  font-family: "Hammersmith One";
}
.container-projetos .titulo-lista .linha {
  margin: 5px auto 0 auto;
  height: 3px;
  align-items: center;
  width: 55%;
  background: linear-gradient(to right, var(--azul), var(--rosa));
}
.container-projetos .lista-projetos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  width: 100%;
}
.container-projetos .lista-projetos .item-projeto {
  background: #1c1c1c;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}
.container-projetos .lista-projetos .item-projeto img {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
.container-projetos .lista-projetos .item-projeto h3 {
  margin-top: 10px;
  font-size: 1.2rem;
}
.container-projetos .lista-projetos .item-projeto p {
  color: #ccc;
  font-size: 0.9rem;
  margin: 8px 0;
}
.container-projetos .lista-projetos .item-projeto .acoes {
  display: flex;
  justify-content: space-between;
}
.container-projetos .lista-projetos .item-projeto .acoes a {
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  transition: 0.2s;
}
.container-projetos .lista-projetos .item-projeto .acoes .edit {
  background: var(--rosa);
  font-family: "Open Sans", sans-serif;
}
.container-projetos .lista-projetos .item-projeto .acoes .delete {
  background: #b30000;
  font-family: "Open Sans", sans-serif;
}
.container-projetos .lista-projetos .item-projeto .acoes a:hover {
  transform: scale(1.05);
}

@keyframes wave {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-servicos {
  max-width: 1920px;
  width: 100%;
  height: 680px;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 0;
  margin-bottom: -80px;
  top: -100px;
  background-image: radial-gradient(rgba(0, 0, 0, 0.5), var(--bg)), url("../img/servicos-hero.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-servicos .servicos-text {
  display: flex;
  width: 1000px;
  flex-direction: column;
}
.hero-servicos .servicos-text h1 {
  color: white;
  font-size: 5vw;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  letter-spacing: 0.2rem;
  margin-bottom: 30px;
  line-height: 1.2;
}
.hero-servicos .servicos-text .pop span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.9s ease;
  background: linear-gradient(20deg, var(--rosa), var(--azul));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: rgba(134, 1, 117, 0.253) 2px 3px 4px;
}
.hero-servicos .servicos-text p {
  color: white;
  font-size: 1.6vw;
  letter-spacing: 0.1rem;
  font-family: "Roboto", sans-serif;
  line-height: 1.5;
}

.servicos-about {
  max-width: 1920px;
  width: 100%;
  height: auto;
  padding: 0 5%;
  display: flex;
  align-items: start;
  gap: 10px;
}
.servicos-about .about-text {
  width: 100%;
  text-align: left;
}
.servicos-about .about-text h1 {
  font-family: "Hammersmith One", sans-serif;
  font-size: 2.5rem;
  line-height: 1.2;
}
.servicos-about .about-text .wave-hover {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
}
.servicos-about .about-text .wave-hover span {
  display: inline-block;
  transition: transform 0.5s ease-in-out, color 0.5s ease-in-out;
  color: white;
}
.servicos-about .about-text .wave-hover.active span:nth-child(1) {
  animation: wave 0.5s linear;
  animation-delay: 0.1s;
}
.servicos-about .about-text .wave-hover.active span:nth-child(2) {
  animation: wave 0.5s linear;
  animation-delay: 0.2s;
}
.servicos-about .about-text .wave-hover.active span:nth-child(3) {
  animation: wave 0.5s linear;
  animation-delay: 0.3s;
}
.servicos-about .about-text .wave-hover.active span:nth-child(4) {
  animation: wave 0.5s linear;
  animation-delay: 0.4s;
}
.servicos-about .about-text .wave-hover.active span:nth-child(5) {
  animation: wave 0.5s linear;
  animation-delay: 0.5s;
}
.servicos-about .about-text .wave-hover.active span:nth-child(6) {
  animation: wave 0.5s linear;
  animation-delay: 0.6s;
}
.servicos-about .about-text .wave-hover.active span:nth-child(7) {
  animation: wave 0.5s linear;
  animation-delay: 0.7s;
}
.servicos-about .about-text .wave-hover.active span:nth-child(8) {
  animation: wave 0.5s linear;
  animation-delay: 0.8s;
}
.servicos-about .about-text .wave-hover.active span:nth-child(9) {
  animation: wave 0.5s linear;
  animation-delay: 0.9s;
}
.servicos-about .about-text .wave-hover.active span:nth-child(10) {
  animation: wave 0.5s linear;
  animation-delay: 1s;
}
.servicos-about .about-text .wave-hover.active span:nth-child(11) {
  animation: wave 0.5s linear;
  animation-delay: 1.1s;
}
.servicos-about .about-text .wave-hover.active span:nth-child(12) {
  animation: wave 0.5s linear;
  animation-delay: 1.2s;
}
.servicos-about .about-text .wave-hover.active span:nth-child(13) {
  animation: wave 0.5s linear;
  animation-delay: 1.3s;
}
.servicos-about .about-text .wave-hover.active span:nth-child(14) {
  animation: wave 0.5s linear;
  animation-delay: 1.4s;
}
.servicos-about .about-text .wave-hover.active span:nth-child(15) {
  animation: wave 0.5s linear;
  animation-delay: 1.5s;
}
.servicos-about .about-text .linha {
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--azul), var(--rosa));
  border-radius: 2px;
  transition: width 1.9s ease-in-out;
}
.servicos-about .about-text .linha.active {
  width: 300px;
}
.servicos-about .about-text p {
  margin-top: 10px;
  font-family: "Open Sans", sans-serif;
  text-align: justify;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.servicos-about .about-text p.active {
  opacity: 1;
  transform: translateY(0);
}
.servicos-about .about-text p span {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}
.servicos-about .about-text p.animate span {
  opacity: 1;
  transform: translateY(0);
}

/* ================================
   GALERIA
================================ */
.servicos-galeria {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 230px;
  gap: 10px;
  padding: 0 5%;
  margin-bottom: 5%;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}
.servicos-galeria.show {
  animation: fadeUp 1s ease forwards;
}
.servicos-galeria .galeria-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}
.servicos-galeria .galeria-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.9);
  transition: transform 0.5s ease, filter 0.5s ease;
}
.servicos-galeria .galeria-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 8px 15px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}
.servicos-galeria .galeria-card .overlay h3 {
  font-size: 0.95rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1rem;
  color: #fff;
  margin: 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.842);
}
.servicos-galeria .galeria-card:hover img {
  transform: scale(1.05);
  filter: brightness(1.05);
}
.servicos-galeria .galeria-card.large {
  grid-row: span 2;
}
.servicos-galeria .galeria-card.wide {
  grid-column: span 2;
}

/* --- até 1200px --- */
@media (max-width: 1200px) {
  .servicos-galeria {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
  }
}
/* --- até 1024px (iPads grandes) --- */
@media (max-width: 1024px) {
  .hero-servicos {
    height: 500px;
    top: -60px;
  }
  .hero-servicos .servicos-text {
    width: 90%;
  }
  .hero-servicos .servicos-text h1 {
    font-size: 6vw;
  }
  .hero-servicos .servicos-text p {
    font-size: 1.6vw;
  }
  .servicos-about .about-text h1 {
    font-size: 2rem;
  }
}
/* --- até 800px (tablets médios) --- */
@media (max-width: 800px) {
  .hero-servicos {
    height: 440px;
  }
  .hero-servicos .servicos-text h1 {
    font-size: 6vw;
    letter-spacing: 0.05rem;
    margin-bottom: 20px;
  }
  .hero-servicos .servicos-text p {
    font-size: 2.5vw;
  }
  .servicos-about .about-text h1 {
    font-size: 5vw;
  }
  .servicos-about .about-text .linha.active {
    width: 350px;
  }
  .servicos-about .about-text p {
    font-size: 2.8vw;
    margin-top: 15px;
  }
  .servicos-galeria {
    grid-template-columns: span 2;
    grid-auto-rows: 240px;
  }
  .galeria-card.large,
  .galeria-card.wide {
    grid-column: span 1;
    grid-row: auto;
  }
}
/* --- até 550px (mobile) --- */
@media (max-width: 550px) {
  .hero-servicos {
    height: 440px;
    margin-bottom: -100px;
  }
  .hero-servicos .servicos-text {
    width: 90%;
  }
  .hero-servicos .servicos-text h1 {
    font-size: 9vw;
    letter-spacing: 0.05rem;
    margin-bottom: 20px;
  }
  .hero-servicos .servicos-text p {
    font-size: 4vw;
    text-align: justify;
  }
  .servicos-about .about-text h1 {
    font-size: 6vw;
  }
  .servicos-about .about-text .linha.active {
    width: 55%;
  }
  .servicos-about .about-text p {
    font-size: 3.5vw;
    margin-top: 15px;
    line-height: 1.8;
  }
  .servicos-galeria {
    grid-auto-rows: 200px;
  }
  .galeria-card .overlay h3 {
    font-size: 0.85rem;
    text-align: center;
  }
}
.fundo-gerenciar-conta {
  width: 100%;
  min-height: calc(100vhd - 80px);
  color: #f5f5f5;
  padding: 0;
  display: flex;
  justify-content: center;
}
.fundo-gerenciar-conta .box {
  background-color: var(--bg);
  font-family: "Hammersmith One", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
  width: 100%;
  margin-bottom: 20px;
  margin-top: 15px;
}
.fundo-gerenciar-conta .box .imgbox {
  width: 300px;
  height: 300px;
  background: linear-gradient(90deg, var(--rosa), var(--azul));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 50%;
  padding: 3px;
  cursor: pointer;
}
.fundo-gerenciar-conta .box .imgbox:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}
.fundo-gerenciar-conta .box .imgbox img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fundo-gerenciar-conta .box h2 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.fundo-gerenciar-conta .box .linksbox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 10px;
}
.fundo-gerenciar-conta .box .linksbox a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-decoration: none;
  color: #f5f5f5;
  background: #2a2a2a;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.2s ease;
}
.fundo-gerenciar-conta .box .linksbox a i {
  font-size: 1.1rem;
  color: var(--rosa, #e83e8c);
  width: 25px;
  text-align: center;
}
.fundo-gerenciar-conta .box .linksbox a:hover {
  background: #383838;
  color: #fff;
  transform: translateY(-2px);
}
.fundo-gerenciar-conta .box .linksbox a strong {
  color: #ff4d4d;
}

/* 🔹 Responsividade */
@media (max-width: 800px) {
  .fundo-gerenciar-conta .box {
    max-width: 90%;
    padding: 1.5rem;
  }
  .fundo-gerenciar-conta .box .imgbox {
    width: 160px;
    height: 160px;
  }
  .fundo-gerenciar-conta .box h2 {
    font-size: 1.4rem;
  }
  .fundo-gerenciar-conta .box .linksbox a {
    font-size: 0.95rem;
    padding: 10px 12px;
  }
}
@media (max-width: 500px) {
  .fundo-gerenciar-conta {
    padding: 1rem;
  }
  .fundo-gerenciar-conta .box {
    gap: 1rem;
  }
  .fundo-gerenciar-conta .box .imgbox {
    width: 130px;
    height: 130px;
  }
  .fundo-gerenciar-conta .box h2 {
    font-size: 1.5rem;
  }
  .fundo-gerenciar-conta .box .linksbox a {
    font-size: 1rem;
  }
}
body {
  background-color: #0d0d0d;
  color: #e0e0e0;
  font-family: "Poppins", "Inter", sans-serif;
  margin: 0;
  padding: 0;
}

.termos-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 5rem 2rem;
  min-height: 100vh;
}
.termos-container h1 {
  font-family: "Hammersmith One", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.termos-container h3 {
  font-family: "Open Sans", sans-serif;
  color: #ff64d8;
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}
.termos-container .linha {
  width: 400px;
  margin: 0;
}
.termos-container .linha::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--azul), var(--rosa));
}
.termos-container p {
  font-size: 1.15rem;
  font-family: "Open Sans", sans-serif;
  color: #e0e0e0;
  margin-bottom: 1.5rem;
  line-height: 1.9;
  text-align: justify;
}
.termos-container strong {
  color: #fff;
  font-weight: 600;
}
.termos-container a {
  color: #ff64d8;
  text-decoration: none;
  font-weight: 500;
}
.termos-container a:hover {
  text-decoration: underline;
  color: rgb(255, 125.5, 222.4161290323);
}

.termos-conteudo {
  max-width: 950px;
  width: 100%;
  background: transparent;
  text-align: left;
}
.termos-conteudo p, .termos-conteudo h1, .termos-conteudo h2, .termos-conteudo h3 {
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.05);
}

.assinatura {
  margin-top: 4rem;
  font-size: 1rem;
  color: #aaa;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  text-align: left;
  opacity: 0.85;
}

body {
  background-color: #0d0d0d;
  color: #e0e0e0;
  font-family: "Poppins", "Inter", sans-serif;
  margin: 0;
  padding: 0;
}

.politica-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 5rem 2rem;
  min-height: 100vh;
}
.politica-container h1 {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: "Hammersmith One", sans-serif;
  color: white;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.politica-container h3 {
  color: #ff26b7;
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}
.politica-container p {
  font-size: 1.15rem;
  color: #e0e0e0;
  margin-bottom: 1.5rem;
  line-height: 1.9;
  text-align: left;
}
.politica-container ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
  list-style-type: disc;
}
.politica-container ul li {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #ccc;
  line-height: 1.8;
}
.politica-container strong {
  color: #fff;
  font-weight: 600;
}
.politica-container a {
  color: #ff26b7;
  text-decoration: none;
  font-weight: 500;
}
.politica-container a:hover {
  text-decoration: underline;
  color: rgb(255, 63.5, 191.4608294931);
}

.politica-conteudo {
  max-width: 950px;
  width: 100%;
  background: transparent;
  text-align: left;
}
.politica-conteudo p, .politica-conteudo h1, .politica-conteudo h2, .politica-conteudo h3 {
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.05);
}

.assinatura {
  margin-top: 4rem;
  font-size: 1rem;
  color: #999;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  text-align: left;
  opacity: 0.85;
}

.page-gerenciar-solicitacoes, .gerenciar-pendentes, .gerenciar-marcadas, .gerenciar-recusadas {
  margin-bottom: 10%;
  margin-top: 5%;
}

.page-gerenciar-solicitacoes .container, .gerenciar-pendentes .container {
  max-width: 1400px;
  padding-top: 3rem;
  height: auto;
}
.page-gerenciar-solicitacoes h2, .gerenciar-pendentes h2 {
  font-weight: 600;
  background: linear-gradient(90deg, #7a3fff, #ff4fd8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 1.5rem;
}
.page-gerenciar-solicitacoes .pagination, .gerenciar-pendentes .pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.page-gerenciar-solicitacoes .pagination .page-item .page-link, .gerenciar-pendentes .pagination .page-item .page-link {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fdfdfd;
  border-radius: 8px;
  padding: 0.5rem 0.9rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.page-gerenciar-solicitacoes .pagination .page-item .page-link:hover, .gerenciar-pendentes .pagination .page-item .page-link:hover {
  background: linear-gradient(90deg, #7a3fff, #ff4fd8);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 16px rgba(122, 63, 255, 0.7);
}
.page-gerenciar-solicitacoes .pagination .page-item.active .page-link, .gerenciar-pendentes .pagination .page-item.active .page-link {
  background: linear-gradient(90deg, #7a3fff, #ff4fd8);
  color: #fff;
  border: none;
  box-shadow: 0 0 18px rgba(122, 63, 255, 0.8);
}
.page-gerenciar-solicitacoes .btn-outline-primary, .gerenciar-pendentes .btn-outline-primary {
  margin-right: 10px;
}
.page-gerenciar-solicitacoes .btn-remover-servico, .gerenciar-pendentes .btn-remover-servico {
  border-radius: 0 6px 6px 0;
}
.page-gerenciar-solicitacoes .btn-outline-primary, .gerenciar-pendentes .btn-outline-primary {
  font-size: 0.95rem;
  padding: 0.55rem 1rem;
  font-weight: 600;
  border-radius: 10px;
  background-color: #1a1a27;
  border: 1px solid transparent;
  -o-border-image: linear-gradient(90deg, #7a3fff, #ff4fd8) 1;
     border-image: linear-gradient(90deg, #7a3fff, #ff4fd8) 1;
  color: #fdfdfd;
  transition: all 0.3s ease;
}
.page-gerenciar-solicitacoes .btn-outline-primary:hover, .gerenciar-pendentes .btn-outline-primary:hover {
  background: linear-gradient(90deg, #7a3fff, #ff4fd8);
  color: #fff;
  box-shadow: 0 0 20px rgba(122, 63, 255, 0.8);
}
.page-gerenciar-solicitacoes .btn, .gerenciar-pendentes .btn {
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.page-gerenciar-solicitacoes .btn.btn-success, .gerenciar-pendentes .btn.btn-success {
  background-color: #25d366;
  border: none;
  color: #fff;
}
.page-gerenciar-solicitacoes .btn.btn-success:hover, .gerenciar-pendentes .btn.btn-success:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 14px rgba(37, 211, 102, 0.6);
}
.page-gerenciar-solicitacoes .btn-contato, .gerenciar-pendentes .btn-contato {
  padding: 0.45rem 0.9rem !important;
  min-width: 48px !important;
  font-size: 1rem !important;
  border-radius: 10px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}
.page-gerenciar-solicitacoes .btn-contato i, .gerenciar-pendentes .btn-contato i {
  font-size: 1.3rem;
}
.page-gerenciar-solicitacoes .btn.btn-success.btn-sm.btn-contato, .gerenciar-pendentes .btn.btn-success.btn-sm.btn-contato {
  padding: 0.45rem 0.9rem !important;
  min-width: 48px !important;
  height: auto !important;
}
.page-gerenciar-solicitacoes .btn-roxo, .gerenciar-pendentes .btn-roxo {
  background: linear-gradient(90deg, #a93aff, #bf57ff);
  color: #fff !important;
  padding: 8px 20px;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
  box-shadow: 0 0 10px rgba(186, 85, 255, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.page-gerenciar-solicitacoes .btn-roxo:hover, .gerenciar-pendentes .btn-roxo:hover {
  background: linear-gradient(90deg, #b54dff, #d47aff);
  box-shadow: 0 0 16px rgba(200, 100, 255, 0.7);
  transform: scale(1.04);
}
.page-gerenciar-solicitacoes .btn-roxo:active, .gerenciar-pendentes .btn-roxo:active {
  transform: scale(0.97);
}
.page-gerenciar-solicitacoes .card, .gerenciar-pendentes .card {
  background-color: #16161d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  padding: 1rem;
  width: 100%;
  max-width: 1100px;
}
.page-gerenciar-solicitacoes .card .card-body, .gerenciar-pendentes .card .card-body {
  padding: 1.5rem;
}
.page-gerenciar-solicitacoes .table, .gerenciar-pendentes .table {
  background-color: #121219;
  color: #fdfdfd;
  border: none;
  font-size: 0.95rem;
  table-layout: fixed;
  width: 100%;
}
.page-gerenciar-solicitacoes .table thead, .gerenciar-pendentes .table thead {
  background: linear-gradient(90deg, #7a3fff, #ff4fd8);
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.page-gerenciar-solicitacoes .table thead th, .gerenciar-pendentes .table thead th {
  border: none;
  padding: 0.8rem 0.5rem;
  text-align: center;
}
.page-gerenciar-solicitacoes .table tbody tr, .gerenciar-pendentes .table tbody tr {
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.page-gerenciar-solicitacoes .table tbody tr:hover, .gerenciar-pendentes .table tbody tr:hover {
  background-color: rgba(122, 63, 255, 0.08);
  transform: none;
}
.page-gerenciar-solicitacoes .table tbody td, .gerenciar-pendentes .table tbody td {
  vertical-align: middle;
  border: none;
  color: #ffffff;
  text-align: center;
}
.page-gerenciar-solicitacoes .table .form-select,
.page-gerenciar-solicitacoes .table .form-control, .gerenciar-pendentes .table .form-select,
.gerenciar-pendentes .table .form-control {
  background-color: #1e1e27;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fdfdfd;
  font-size: 0.95rem;
  padding: 0.35rem 0.5rem;
  transition: all 0.3s ease;
}
.page-gerenciar-solicitacoes .table .form-select:focus,
.page-gerenciar-solicitacoes .table .form-control:focus, .gerenciar-pendentes .table .form-select:focus,
.gerenciar-pendentes .table .form-control:focus {
  border-color: #7a3fff;
  box-shadow: 0 0 0 0.2rem rgba(122, 63, 255, 0.25);
  background-color: #262631;
}
.page-gerenciar-solicitacoes .table .form-select option,
.page-gerenciar-solicitacoes .table .form-control option, .gerenciar-pendentes .table .form-select option,
.gerenciar-pendentes .table .form-control option {
  background-color: #1b1b23;
  color: #fdfdfd;
}
.page-gerenciar-solicitacoes .modal-content, .gerenciar-pendentes .modal-content {
  background-color: #16161d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 30px rgba(122, 63, 255, 0.25);
  border-radius: 12px;
}
.page-gerenciar-solicitacoes .modal-content .modal-header, .gerenciar-pendentes .modal-content .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}
.page-gerenciar-solicitacoes .modal-content .modal-footer, .gerenciar-pendentes .modal-content .modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.page-gerenciar-solicitacoes .modal-content textarea, .gerenciar-pendentes .modal-content textarea {
  background-color: #1b1b23;
  color: #fdfdfd;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  resize: none;
}
.page-gerenciar-solicitacoes .modal-content textarea:focus, .gerenciar-pendentes .modal-content textarea:focus {
  border-color: #7a3fff;
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(122, 63, 255, 0.25);
}
@media (max-width: 1024px) {
  .page-gerenciar-solicitacoes .container, .gerenciar-pendentes .container {
    padding-top: 1.5rem;
    width: 98%;
    height: auto;
  }
  .page-gerenciar-solicitacoes h2, .gerenciar-pendentes h2 {
    font-size: 1.6rem;
  }
  .page-gerenciar-solicitacoes .table, .gerenciar-pendentes .table {
    font-size: 0.9rem;
  }
  .page-gerenciar-solicitacoes .form-control,
  .page-gerenciar-solicitacoes .form-select, .gerenciar-pendentes .form-control,
  .gerenciar-pendentes .form-select {
    font-size: 0.9rem;
  }
}
@media (max-width: 768px) {
  .page-gerenciar-solicitacoes .container, .gerenciar-pendentes .container {
    padding-top: 1rem;
    width: 100%;
  }
  .page-gerenciar-solicitacoes h2, .gerenciar-pendentes h2 {
    font-size: 1.4rem;
  }
  .page-gerenciar-solicitacoes .d-flex.flex-column.flex-md-row, .gerenciar-pendentes .d-flex.flex-column.flex-md-row {
    flex-direction: column;
    gap: 1rem;
  }
  .page-gerenciar-solicitacoes .table-responsive, .gerenciar-pendentes .table-responsive {
    overflow-x: visible;
  }
  .page-gerenciar-solicitacoes .table, .gerenciar-pendentes .table {
    display: block;
    width: 100%;
    border: none;
  }
  .page-gerenciar-solicitacoes .table thead, .gerenciar-pendentes .table thead {
    display: none;
  }
  .page-gerenciar-solicitacoes .table tbody, .page-gerenciar-solicitacoes .table tr, .page-gerenciar-solicitacoes .table td, .gerenciar-pendentes .table tbody, .gerenciar-pendentes .table tr, .gerenciar-pendentes .table td {
    display: block;
    width: 100%;
    text-align: left;
  }
  .page-gerenciar-solicitacoes .table tr, .gerenciar-pendentes .table tr {
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    background: rgba(22, 22, 29, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }
  .page-gerenciar-solicitacoes .table tr:hover, .gerenciar-pendentes .table tr:hover {
    background-color: rgba(122, 63, 255, 0.1);
  }
  .page-gerenciar-solicitacoes .table td, .gerenciar-pendentes .table td {
    border: none;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 45%;
  }
  .page-gerenciar-solicitacoes .table td:before, .gerenciar-pendentes .table td:before {
    content: attr(data-label);
    position: absolute;
    left: 0.5rem;
    width: 40%;
    font-weight: 600;
    color: #c0c0c0;
    text-transform: uppercase;
    font-size: 0.8rem;
  }
  .page-gerenciar-solicitacoes .table td:nth-of-type(2), .gerenciar-pendentes .table td:nth-of-type(2) {
    padding-left: 0;
    text-align: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0.5rem;
  }
  .page-gerenciar-solicitacoes .table td:nth-of-type(2):before, .gerenciar-pendentes .table td:nth-of-type(2):before {
    display: none;
  }
  .page-gerenciar-solicitacoes .table td:nth-of-type(2) .nome-usuario, .gerenciar-pendentes .table td:nth-of-type(2) .nome-usuario {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(90deg, #7a3fff, #ff4fd8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 0.25rem;
  }
  .page-gerenciar-solicitacoes .table td:nth-of-type(2) .info-adicional, .gerenciar-pendentes .table td:nth-of-type(2) .info-adicional {
    font-size: 0.85rem;
    color: #c0c0c0;
    display: block;
  }
  .page-gerenciar-solicitacoes .table td:nth-of-type(1), .gerenciar-pendentes .table td:nth-of-type(1) {
    display: none;
  }
  .page-gerenciar-solicitacoes .table td:nth-of-type(3), .gerenciar-pendentes .table td:nth-of-type(3) {
    display: none;
  }
  .page-gerenciar-solicitacoes .table td:nth-of-type(7), .gerenciar-pendentes .table td:nth-of-type(7) {
    padding-left: 45%;
    display: block !important;
  }
  .page-gerenciar-solicitacoes .table td:nth-of-type(7):before, .gerenciar-pendentes .table td:nth-of-type(7):before {
    content: "hora:";
  }
  .page-gerenciar-solicitacoes .table td:nth-of-type(7) .hora-visita, .gerenciar-pendentes .table td:nth-of-type(7) .hora-visita {
    width: 100% !important;
    min-width: 140px !important;
    max-width: 180px !important;
    padding: 0.5rem 0.75rem !important;
    font-size: 0.95rem !important;
    display: block !important;
    position: relative !important;
    z-index: 1 !important;
    background: #1e1e27 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 6px !important;
    height: auto !important;
    margin: 0.25rem 0 !important;
  }
  .page-gerenciar-solicitacoes .table td:nth-of-type(8), .page-gerenciar-solicitacoes .table td:nth-of-type(9), .gerenciar-pendentes .table td:nth-of-type(8), .gerenciar-pendentes .table td:nth-of-type(9) {
    display: inline-block !important;
    width: calc(50% - 2px) !important;
    padding-left: 0 !important;
    text-align: center;
    float: left;
    margin-bottom: 0.5rem;
  }
  .page-gerenciar-solicitacoes .table td:nth-of-type(8):before, .page-gerenciar-solicitacoes .table td:nth-of-type(9):before, .gerenciar-pendentes .table td:nth-of-type(8):before, .gerenciar-pendentes .table td:nth-of-type(9):before {
    display: none;
  }
  .page-gerenciar-solicitacoes .table td:nth-of-type(8), .gerenciar-pendentes .table td:nth-of-type(8) {
    margin-right: 4px !important;
  }
  .page-gerenciar-solicitacoes .table td:nth-of-type(9), .gerenciar-pendentes .table td:nth-of-type(9) {
    margin-right: 0 !important;
  }
  .page-gerenciar-solicitacoes .table tr:after, .gerenciar-pendentes .table tr:after {
    content: "";
    display: table;
    clear: both;
  }
  .page-gerenciar-solicitacoes .table td:nth-of-type(1):before, .gerenciar-pendentes .table td:nth-of-type(1):before {
    content: "ID:";
  }
  .page-gerenciar-solicitacoes .table td:nth-of-type(2):before, .gerenciar-pendentes .table td:nth-of-type(2):before {
    content: "Usuário:";
  }
  .page-gerenciar-solicitacoes .table td:nth-of-type(3):before, .gerenciar-pendentes .table td:nth-of-type(3):before {
    content: "CEP:";
  }
  .page-gerenciar-solicitacoes .table td:nth-of-type(5):before, .gerenciar-pendentes .table td:nth-of-type(5):before {
    content: "Status:";
  }
  .page-gerenciar-solicitacoes .table td:nth-of-type(4):before, .gerenciar-pendentes .table td:nth-of-type(4):before {
    content: "CEP:";
  }
  .page-gerenciar-solicitacoes .table td:nth-of-type(6):before, .gerenciar-pendentes .table td:nth-of-type(6):before {
    content: "data:";
  }
  .page-gerenciar-solicitacoes .table td:nth-of-type(7):before, .gerenciar-pendentes .table td:nth-of-type(7):before {
    content: "hora:";
  }
  .page-gerenciar-solicitacoes .table td:nth-of-type(8):before, .gerenciar-pendentes .table td:nth-of-type(8):before {
    content: "Contato:";
  }
  .page-gerenciar-solicitacoes .table td:nth-of-type(9):before, .gerenciar-pendentes .table td:nth-of-type(9):before {
    content: "Ações:";
  }
  .page-gerenciar-solicitacoes .table .btn-excluir-mobile, .gerenciar-pendentes .table .btn-excluir-mobile {
    display: block !important;
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .page-gerenciar-solicitacoes .table .btn-excluir-mobile .excluir-btn, .gerenciar-pendentes .table .btn-excluir-mobile .excluir-btn {
    background: linear-gradient(90deg, #dc3545, #c82333);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
  .page-gerenciar-solicitacoes .table .btn-excluir-mobile .excluir-btn:hover, .gerenciar-pendentes .table .btn-excluir-mobile .excluir-btn:hover {
    background: linear-gradient(90deg, #c82333, #bd2130);
    box-shadow: 0 0 12px rgba(220, 53, 69, 0.5);
    transform: scale(1.02);
  }
  .page-gerenciar-solicitacoes .form-select, .page-gerenciar-solicitacoes .form-control, .gerenciar-pendentes .form-select, .gerenciar-pendentes .form-control {
    width: 100% !important;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0.75rem !important;
    font-size: 0.95rem !important;
    height: auto !important;
    min-height: 42px !important;
  }
  .page-gerenciar-solicitacoes .hora-visita, .gerenciar-pendentes .hora-visita {
    min-width: 140px !important;
    padding: 0.5rem 0.75rem !important;
    font-size: 0.95rem !important;
  }
  .page-gerenciar-solicitacoes .data-visita, .gerenciar-pendentes .data-visita {
    min-width: 140px !important;
    padding: 0.5rem 0.75rem !important;
    font-size: 0.95rem !important;
  }
  .page-gerenciar-solicitacoes .btn, .gerenciar-pendentes .btn {
    width: 100%;
    margin-bottom: 0;
    white-space: nowrap;
    padding: 0.6rem 0.8rem !important;
    font-size: 0.95rem !important;
    min-height: 42px !important;
  }
  .page-gerenciar-solicitacoes .pagination, .gerenciar-pendentes .pagination {
    gap: 0.3rem;
  }
  .page-gerenciar-solicitacoes .pagination .page-link, .gerenciar-pendentes .pagination .page-link {
    padding: 0.4rem 0.7rem;
    font-size: 0.85rem;
  }
  .page-gerenciar-solicitacoes .btn-outline-primary, .gerenciar-pendentes .btn-outline-primary {
    padding: 0.45rem 0.8rem;
    font-size: 0.9rem;
  }
  .page-gerenciar-solicitacoes .card, .gerenciar-pendentes .card {
    padding: 0.5rem;
  }
  .page-gerenciar-solicitacoes .card-body, .gerenciar-pendentes .card-body {
    padding: 1rem 0.5rem;
  }
}
@media (max-width: 480px) {
  .page-gerenciar-solicitacoes .container, .gerenciar-pendentes .container {
    height: auto;
  }
  .page-gerenciar-solicitacoes h2, .gerenciar-pendentes h2 {
    font-size: 1.2rem;
  }
  .page-gerenciar-solicitacoes .table, .gerenciar-pendentes .table {
    font-size: 0.85rem;
  }
  .page-gerenciar-solicitacoes .table td, .gerenciar-pendentes .table td {
    padding-left: 50%;
  }
  .page-gerenciar-solicitacoes .table td:before, .gerenciar-pendentes .table td:before {
    width: 45%;
    font-size: 0.75rem;
  }
  .page-gerenciar-solicitacoes .table td:nth-of-type(2) .nome-usuario, .gerenciar-pendentes .table td:nth-of-type(2) .nome-usuario {
    font-size: 1.2rem;
  }
  .page-gerenciar-solicitacoes .table td:nth-of-type(2) .info-adicional, .gerenciar-pendentes .table td:nth-of-type(2) .info-adicional {
    font-size: 0.8rem;
  }
  .page-gerenciar-solicitacoes .table td:nth-of-type(7), .page-gerenciar-solicitacoes .table td:nth-of-type(8), .gerenciar-pendentes .table td:nth-of-type(7), .gerenciar-pendentes .table td:nth-of-type(8) {
    width: 48% !important;
  }
  .page-gerenciar-solicitacoes .table td:nth-of-type(7), .gerenciar-pendentes .table td:nth-of-type(7) {
    margin-right: 2%;
  }
  .page-gerenciar-solicitacoes .btn-outline-primary, .gerenciar-pendentes .btn-outline-primary {
    font-size: 0.85rem;
    padding: 0.4rem 0.7rem;
  }
  .page-gerenciar-solicitacoes .pagination .page-link, .gerenciar-pendentes .pagination .page-link {
    font-size: 0.8rem;
    padding: 0.35rem 0.6rem;
  }
}
@media (max-width: 360px) {
  .page-gerenciar-solicitacoes .table td:nth-of-type(7), .page-gerenciar-solicitacoes .table td:nth-of-type(8), .gerenciar-pendentes .table td:nth-of-type(7), .gerenciar-pendentes .table td:nth-of-type(8) {
    width: 48% !important;
  }
  .page-gerenciar-solicitacoes .table td:nth-of-type(7) .btn, .page-gerenciar-solicitacoes .table td:nth-of-type(8) .btn, .gerenciar-pendentes .table td:nth-of-type(7) .btn, .gerenciar-pendentes .table td:nth-of-type(8) .btn {
    font-size: 0.8rem;
    padding: 0.35rem 0.5rem;
  }
}

.page-gerenciar-solicitacoes select.status-select {
  font-weight: 700;
  color: #fff !important;
  border-radius: 8px;
  border: none !important;
  padding: 6px 10px;
  text-transform: capitalize;
}

/* PENDENTE = AMARELO */
.page-gerenciar-solicitacoes select.status-select.pendente {
  color: #6e6e6e !important;
}

/* MARCADO = VERDE */
.page-gerenciar-solicitacoes select.status-select.marcado {
  color: #8031ca !important;
}

/* RECUSADO = VERMELHO */
.page-gerenciar-solicitacoes select.status-select.recusado {
  color: #d83232 !important;
}

.gerenciar-pendentes select.status-select {
  font-weight: 700;
  color: #fff !important;
  border-radius: 8px;
  border: none !important;
  padding: 6px 10px;
  text-transform: capitalize;
}

/* PENDENTE = AMARELO */
.gerenciar-pendentes select.status-select.pendente {
  color: #6e6e6e !important;
}

/* MARCADO = VERDE */
.gerenciar-pendentes select.status-select.marcado {
  color: #8031ca !important;
}

/* RECUSADO = VERMELHO */
.gerenciar-pendentes select.status-select.recusado {
  color: #d83232 !important;
}

.gerenciar-recusadas .container {
  max-width: 1400px;
  padding-top: 3rem;
  height: auto;
}
.gerenciar-recusadas h2 {
  font-weight: 600;
  background: linear-gradient(90deg, #7a3fff, #ff4fd8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 1.5rem;
}
.gerenciar-recusadas .pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  position: relative;
  right: 200px;
}
.gerenciar-recusadas .pagination .page-item .page-link {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fdfdfd;
  border-radius: 8px;
  padding: 0.5rem 0.9rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.gerenciar-recusadas .pagination .page-item .page-link:hover {
  background: linear-gradient(90deg, #7a3fff, #ff4fd8);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 16px rgba(122, 63, 255, 0.7);
}
.gerenciar-recusadas .pagination .page-item.active .page-link {
  background: linear-gradient(90deg, #7a3fff, #ff4fd8);
  color: #fff;
  border: none;
  box-shadow: 0 0 18px rgba(122, 63, 255, 0.8);
}
.gerenciar-recusadas .btn-outline-primary {
  font-size: 0.95rem;
  padding: 0.55rem 1rem;
  font-weight: 600;
  border-radius: 10px;
  background-color: #1a1a27;
  border: 1px solid transparent;
  -o-border-image: linear-gradient(90deg, #7a3fff, #ff4fd8) 1;
     border-image: linear-gradient(90deg, #7a3fff, #ff4fd8) 1;
  color: #fdfdfd;
  transition: all 0.3s ease;
  position: relative;
  right: 200px;
}
.gerenciar-recusadas .btn-outline-primary:hover {
  background: linear-gradient(90deg, #7a3fff, #ff4fd8);
  color: #fff;
  box-shadow: 0 0 20px rgba(122, 63, 255, 0.8);
}
.gerenciar-recusadas .btn {
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.gerenciar-recusadas .btn.btn-success {
  background-color: #25d366;
  border: none;
  color: #fff;
}
.gerenciar-recusadas .btn.btn-success:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 14px rgba(37, 211, 102, 0.6);
}
.gerenciar-recusadas .card {
  background-color: #16161d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  width: 100%;
  max-width: 1100px;
  padding: 1rem;
}
.gerenciar-recusadas .card .card-body {
  padding: 1.5rem;
}
.gerenciar-recusadas .table {
  background-color: #121219;
  color: #fdfdfd;
  border: none;
  font-size: 0.95rem;
  table-layout: fixed;
  width: 100%;
  margin: 0 auto;
}
.gerenciar-recusadas .table thead {
  background: linear-gradient(90deg, #7a3fff, #ff4fd8);
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.gerenciar-recusadas .table thead th {
  border: none;
  padding: 0.8rem 0.5rem;
  text-align: center;
}
.gerenciar-recusadas .table tbody tr {
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.gerenciar-recusadas .table tbody tr:hover {
  background-color: rgba(122, 63, 255, 0.08);
  transform: none;
}
.gerenciar-recusadas .table tbody td {
  vertical-align: middle;
  border: none;
  color: #ffffff;
  text-align: center;
}
.gerenciar-recusadas .table .form-select,
.gerenciar-recusadas .table .form-control {
  background-color: #1e1e27;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fdfdfd;
  font-size: 0.95rem;
  padding: 0.35rem 0.5rem;
  transition: all 0.3s ease;
}
.gerenciar-recusadas .table .form-select:focus,
.gerenciar-recusadas .table .form-control:focus {
  border-color: #7a3fff;
  box-shadow: 0 0 0 0.2rem rgba(122, 63, 255, 0.25);
  background-color: #262631;
}
.gerenciar-recusadas .table .form-select option,
.gerenciar-recusadas .table .form-control option {
  background-color: #1b1b23;
  color: #fdfdfd;
}
.gerenciar-recusadas .modal-content {
  background-color: #16161d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 30px rgba(122, 63, 255, 0.25);
  border-radius: 12px;
}
.gerenciar-recusadas .modal-content .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}
.gerenciar-recusadas .modal-content .modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.gerenciar-recusadas .modal-content textarea {
  background-color: #1b1b23;
  color: #fdfdfd;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  resize: none;
}
.gerenciar-recusadas .modal-content textarea:focus {
  border-color: #7a3fff;
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(122, 63, 255, 0.25);
}
@media (max-width: 1024px) {
  .gerenciar-recusadas .container {
    padding-top: 1.5rem;
    width: 98%;
  }
  .gerenciar-recusadas h2 {
    font-size: 1.6rem;
  }
  .gerenciar-recusadas .table {
    font-size: 0.9rem;
  }
  .gerenciar-recusadas .form-control,
  .gerenciar-recusadas .form-select {
    font-size: 0.9rem;
  }
}
@media (max-width: 768px) {
  .gerenciar-recusadas .container {
    padding-top: 1rem;
    width: 100%;
  }
  .gerenciar-recusadas h2 {
    font-size: 1.4rem;
  }
  .gerenciar-recusadas .d-flex.flex-column.flex-md-row {
    flex-direction: column;
    gap: 1rem;
  }
  .gerenciar-recusadas .table-responsive {
    overflow-x: visible;
  }
  .gerenciar-recusadas .table {
    display: block;
    width: 100%;
    border: none;
  }
  .gerenciar-recusadas .table thead {
    display: none;
  }
  .gerenciar-recusadas .table tbody, .gerenciar-recusadas .table tr, .gerenciar-recusadas .table td {
    display: block;
    width: 100%;
    text-align: left;
  }
  .gerenciar-recusadas .table tr {
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    background: rgba(22, 22, 29, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }
  .gerenciar-recusadas .table tr:hover {
    background-color: rgba(122, 63, 255, 0.1);
  }
  .gerenciar-recusadas .table td {
    border: none;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 45%;
  }
  .gerenciar-recusadas .table td:before {
    content: attr(data-label);
    position: absolute;
    left: 0.5rem;
    width: 40%;
    font-weight: 600;
    color: #c0c0c0;
    text-transform: uppercase;
    font-size: 0.8rem;
  }
  .gerenciar-recusadas .table td:nth-of-type(2) {
    padding-left: 0;
    text-align: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0.5rem;
  }
  .gerenciar-recusadas .table td:nth-of-type(2):before {
    display: none;
  }
  .gerenciar-recusadas .table td:nth-of-type(2) .nome-usuario {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(90deg, #7a3fff, #ff4fd8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 0.25rem;
  }
  .gerenciar-recusadas .table td:nth-of-type(2) .info-adicional {
    font-size: 0.85rem;
    color: #c0c0c0;
    display: block;
  }
  .gerenciar-recusadas .table td:nth-of-type(1) {
    display: none;
  }
  .gerenciar-recusadas .table td:nth-of-type(3) {
    display: none;
  }
  .gerenciar-recusadas .table td:nth-of-type(7), .gerenciar-recusadas .table td:nth-of-type(8) {
    display: inline-block !important;
    width: 48% !important;
    padding-left: 0 !important;
    text-align: center;
    margin-bottom: 0;
    float: left;
  }
  .gerenciar-recusadas .table td:nth-of-type(7):before, .gerenciar-recusadas .table td:nth-of-type(8):before {
    display: none;
  }
  .gerenciar-recusadas .table td:nth-of-type(7) {
    margin-right: 4%;
  }
  .gerenciar-recusadas .table td:nth-of-type(8) {
    float: right;
    margin-right: 0;
  }
  .gerenciar-recusadas .table tr:after {
    content: "";
    display: table;
    clear: both;
  }
  .gerenciar-recusadas .table td:nth-of-type(1):before {
    content: "ID:";
  }
  .gerenciar-recusadas .table td:nth-of-type(2):before {
    content: "Usuário:";
  }
  .gerenciar-recusadas .table td:nth-of-type(3):before {
    content: "CEP:";
  }
  .gerenciar-recusadas .table td:nth-of-type(4):before {
    content: "Status:";
  }
  .gerenciar-recusadas .table td:nth-of-type(5):before {
    content: "Data Visita:";
  }
  .gerenciar-recusadas .table td:nth-of-type(6):before {
    content: "Hora:";
  }
  .gerenciar-recusadas .table td:nth-of-type(7):before {
    content: "Contato:";
  }
  .gerenciar-recusadas .table td:nth-of-type(8):before {
    content: "Ações:";
  }
  .gerenciar-recusadas .table .form-select, .gerenciar-recusadas .table .form-control {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .gerenciar-recusadas .table .btn {
    width: 100%;
    margin-bottom: 0;
    white-space: nowrap;
  }
  .gerenciar-recusadas .pagination {
    gap: 0.3rem;
    right: 0;
  }
  .gerenciar-recusadas .pagination .page-link {
    padding: 0.4rem 0.7rem;
    font-size: 0.85rem;
  }
  .gerenciar-recusadas .btn-outline-primary {
    padding: 0.45rem 0.8rem;
    font-size: 0.9rem;
    right: 0;
  }
  .gerenciar-recusadas .card {
    padding: 0.5rem;
  }
  .gerenciar-recusadas .card-body {
    padding: 1rem 0.5rem;
  }
}
@media (max-width: 480px) {
  .gerenciar-recusadas h2 {
    font-size: 1.2rem;
  }
  .gerenciar-recusadas .table {
    font-size: 0.85rem;
  }
  .gerenciar-recusadas .table td {
    padding-left: 50%;
  }
  .gerenciar-recusadas .table td:before {
    width: 45%;
    font-size: 0.75rem;
  }
  .gerenciar-recusadas .table td:nth-of-type(2) .nome-usuario {
    font-size: 1.2rem;
  }
  .gerenciar-recusadas .table td:nth-of-type(2) .info-adicional {
    font-size: 0.8rem;
  }
  .gerenciar-recusadas .table td:nth-of-type(7), .gerenciar-recusadas .table td:nth-of-type(8) {
    width: 48% !important;
  }
  .gerenciar-recusadas .table td:nth-of-type(7) {
    margin-right: 2%;
  }
  .gerenciar-recusadas .btn-outline-primary {
    font-size: 0.85rem;
    padding: 0.4rem 0.7rem;
  }
  .gerenciar-recusadas .pagination .page-link {
    font-size: 0.8rem;
    padding: 0.35rem 0.6rem;
  }
}
@media (max-width: 360px) {
  .gerenciar-recusadas .table td:nth-of-type(7), .gerenciar-recusadas .table td:nth-of-type(8) {
    width: 48% !important;
  }
  .gerenciar-recusadas .table td:nth-of-type(7) .btn, .gerenciar-recusadas .table td:nth-of-type(8) .btn {
    font-size: 0.8rem;
    padding: 0.35rem 0.5rem;
  }
}

.gerenciar-marcadas .container {
  max-width: 1400px;
  padding-top: 3rem;
  height: auto;
}
.gerenciar-marcadas h2 {
  font-weight: 600;
  background: linear-gradient(90deg, #7a3fff, #ff4fd8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 2rem;
  width: 100%;
}
.gerenciar-marcadas .pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  position: relative;
}
.gerenciar-marcadas .pagination .page-item .page-link {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fdfdfd;
  border-radius: 8px;
  padding: 0.5rem 0.9rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.gerenciar-marcadas .pagination .page-item .page-link:hover {
  background: linear-gradient(90deg, #7a3fff, #ff4fd8);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 16px rgba(122, 63, 255, 0.7);
}
.gerenciar-marcadas .pagination .page-item.active .page-link {
  background: linear-gradient(90deg, #7a3fff, #ff4fd8);
  color: #fff;
  border: none;
  box-shadow: 0 0 18px rgba(122, 63, 255, 0.8);
}
.gerenciar-marcadas .btn-outline-primary {
  font-size: 0.95rem;
  padding: 0.55rem 1rem;
  font-weight: 600;
  border-radius: 10px;
  background-color: #1a1a27;
  border: 1px solid transparent;
  -o-border-image: linear-gradient(90deg, #7a3fff, #ff4fd8) 1;
     border-image: linear-gradient(90deg, #7a3fff, #ff4fd8) 1;
  color: #fdfdfd;
  transition: all 0.3s ease;
  position: relative;
}
.gerenciar-marcadas .btn-outline-primary:hover {
  background: linear-gradient(90deg, #7a3fff, #ff4fd8);
  color: #fff;
  box-shadow: 0 0 20px rgba(122, 63, 255, 0.8);
}
.gerenciar-marcadas .btn {
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.gerenciar-marcadas .btn.btn-success {
  background-color: #25d366;
  border: none;
  color: #fff;
}
.gerenciar-marcadas .btn.btn-success:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 14px rgba(37, 211, 102, 0.6);
}
.gerenciar-marcadas .btn-contato {
  padding: 0.45rem 0.9rem !important;
  min-width: 48px !important;
  font-size: 1rem !important;
  border-radius: 10px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}
.gerenciar-marcadas .btn-contato i {
  font-size: 1.3rem;
}
.gerenciar-marcadas .btn.btn-success.btn-sm.btn-contato {
  padding: 0.45rem 0.9rem !important;
  min-width: 48px !important;
  height: auto !important;
}
.gerenciar-marcadas .btn-roxo {
  background: linear-gradient(90deg, #a93aff, #bf57ff);
  color: #fff !important;
  padding: 8px 20px;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
  box-shadow: 0 0 10px rgba(186, 85, 255, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.gerenciar-marcadas .btn-roxo:hover {
  background: linear-gradient(90deg, #b54dff, #d47aff);
  box-shadow: 0 0 16px rgba(200, 100, 255, 0.7);
  transform: scale(1.04);
}
.gerenciar-marcadas .btn-roxo:active {
  transform: scale(0.97);
}
.gerenciar-marcadas .card {
  background-color: #16161d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  width: 100%;
  max-width: 1100px;
  padding: 1rem;
}
.gerenciar-marcadas .card .card-body {
  padding: 1.5rem;
}
.gerenciar-marcadas .table {
  background-color: #121219;
  color: #fdfdfd;
  border: none;
  font-size: 0.95rem;
  table-layout: fixed;
  width: 100%;
  margin: 0 auto;
}
.gerenciar-marcadas .table thead {
  background: linear-gradient(90deg, #7a3fff, #ff4fd8);
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.gerenciar-marcadas .table thead th {
  border: none;
  padding: 0.8rem 0.5rem;
  text-align: center;
}
.gerenciar-marcadas .table tbody tr {
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.gerenciar-marcadas .table tbody tr:hover {
  background-color: rgba(122, 63, 255, 0.08);
  transform: none;
}
.gerenciar-marcadas .table tbody td {
  vertical-align: middle;
  border: none;
  color: #ffffff;
  text-align: center;
}
.gerenciar-marcadas .table .form-select,
.gerenciar-marcadas .table .form-control {
  background-color: #1e1e27;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fdfdfd;
  font-size: 0.95rem;
  padding: 0.35rem 0.5rem;
  transition: all 0.3s ease;
}
.gerenciar-marcadas .table .form-select:focus,
.gerenciar-marcadas .table .form-control:focus {
  border-color: #7a3fff;
  box-shadow: 0 0 0 0.2rem rgba(122, 63, 255, 0.25);
  background-color: #262631;
}
.gerenciar-marcadas .table .form-select option,
.gerenciar-marcadas .table .form-control option {
  background-color: #1b1b23;
  color: #fdfdfd;
}
.gerenciar-marcadas .modal-content {
  background-color: #16161d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 30px rgba(122, 63, 255, 0.25);
  border-radius: 12px;
}
.gerenciar-marcadas .modal-content .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}
.gerenciar-marcadas .modal-content .modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.gerenciar-marcadas .modal-content textarea {
  background-color: #1b1b23;
  color: #fdfdfd;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  resize: none;
}
.gerenciar-marcadas .modal-content textarea:focus {
  border-color: #7a3fff;
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(122, 63, 255, 0.25);
}
@media (max-width: 1024px) {
  .gerenciar-marcadas .container {
    padding-top: 1.5rem;
    width: 98%;
  }
  .gerenciar-marcadas h2 {
    font-size: 1.6rem;
  }
  .gerenciar-marcadas .table {
    font-size: 0.9rem;
  }
  .gerenciar-marcadas .form-control,
  .gerenciar-marcadas .form-select {
    font-size: 0.9rem;
  }
}
@media (max-width: 768px) {
  .gerenciar-marcadas .container {
    padding-top: 1rem;
    width: 100%;
    height: auto;
  }
  .gerenciar-marcadas .container .pagination {
    right: 0;
  }
  .gerenciar-marcadas .container .btn-outline-primary {
    right: 0;
  }
  .gerenciar-marcadas .footer {
    display: none;
  }
  .gerenciar-marcadas h2 {
    font-size: 1.4rem;
  }
  .gerenciar-marcadas .d-flex.flex-column.flex-md-row {
    flex-direction: column;
    gap: 1rem;
  }
  .gerenciar-marcadas .table-responsive {
    overflow-x: visible;
  }
  .gerenciar-marcadas .table {
    display: block;
    width: 100%;
    border: none;
  }
  .gerenciar-marcadas .table thead {
    display: none;
  }
  .gerenciar-marcadas .table tbody, .gerenciar-marcadas .table tr, .gerenciar-marcadas .table td {
    display: block;
    width: 100%;
    text-align: left;
  }
  .gerenciar-marcadas .table tr {
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    background: rgba(22, 22, 29, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }
  .gerenciar-marcadas .table tr:hover {
    background-color: rgba(122, 63, 255, 0.1);
  }
  .gerenciar-marcadas .table td {
    border: none;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 45%;
  }
  .gerenciar-marcadas .table td:before {
    content: attr(data-label);
    position: absolute;
    left: 0.5rem;
    width: 40%;
    font-weight: 600;
    color: #c0c0c0;
    text-transform: uppercase;
    font-size: 0.8rem;
  }
  .gerenciar-marcadas .table td:nth-of-type(2) {
    padding-left: 0;
    text-align: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0.5rem;
  }
  .gerenciar-marcadas .table td:nth-of-type(2):before {
    display: none;
  }
  .gerenciar-marcadas .table td:nth-of-type(2) .nome-usuario {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(90deg, #7a3fff, #ff4fd8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 0.25rem;
  }
  .gerenciar-marcadas .table td:nth-of-type(2) .info-adicional {
    font-size: 0.85rem;
    color: #c0c0c0;
    display: block;
  }
  .gerenciar-marcadas .table td:nth-of-type(1) {
    display: none;
  }
  .gerenciar-marcadas .table td:nth-of-type(3) {
    display: none;
  }
  .gerenciar-marcadas .table td:nth-of-type(7), .gerenciar-marcadas .table td:nth-of-type(8) {
    display: inline-block !important;
    width: 48% !important;
    padding-left: 0 !important;
    text-align: center;
    margin-bottom: 0;
    float: left;
  }
  .gerenciar-marcadas .table td:nth-of-type(7):before, .gerenciar-marcadas .table td:nth-of-type(8):before {
    display: none;
  }
  .gerenciar-marcadas .table td:nth-of-type(7) {
    margin-right: 4%;
  }
  .gerenciar-marcadas .table td:nth-of-type(8) {
    float: right;
    margin-right: 0;
  }
  .gerenciar-marcadas .table tr:after {
    content: "";
    display: table;
    clear: both;
  }
  .gerenciar-marcadas .table td:nth-of-type(1):before {
    content: "ID:";
  }
  .gerenciar-marcadas .table td:nth-of-type(2):before {
    content: "Usuário:";
  }
  .gerenciar-marcadas .table td:nth-of-type(3):before {
    content: "CEP:";
  }
  .gerenciar-marcadas .table td:nth-of-type(4):before {
    content: "Status:";
  }
  .gerenciar-marcadas .table td:nth-of-type(5):before {
    content: "Data Visita:";
  }
  .gerenciar-marcadas .table td:nth-of-type(6):before {
    content: "Hora:";
  }
  .gerenciar-marcadas .table td:nth-of-type(7):before {
    content: "Contato:";
  }
  .gerenciar-marcadas .table td:nth-of-type(8):before {
    content: "Ações:";
  }
  .gerenciar-marcadas .table .form-select, .gerenciar-marcadas .table .form-control {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .gerenciar-marcadas .table .btn {
    width: 100%;
    margin-bottom: 0;
    white-space: nowrap;
  }
  .gerenciar-marcadas .pagination {
    gap: 0.3rem;
  }
  .gerenciar-marcadas .pagination .page-link {
    padding: 0.4rem 0.7rem;
    font-size: 0.85rem;
  }
  .gerenciar-marcadas .btn-outline-primary {
    padding: 0.45rem 0.8rem;
    font-size: 0.9rem;
  }
  .gerenciar-marcadas .card {
    padding: 0.5rem;
  }
  .gerenciar-marcadas .card-body {
    padding: 1rem 0.5rem;
  }
}
@media (max-width: 480px) {
  .gerenciar-marcadas h2 {
    font-size: 1.2rem;
  }
  .gerenciar-marcadas .table {
    font-size: 0.85rem;
  }
  .gerenciar-marcadas .table td {
    padding-left: 50%;
  }
  .gerenciar-marcadas .table td:before {
    width: 45%;
    font-size: 0.75rem;
  }
  .gerenciar-marcadas .table td:nth-of-type(2) .nome-usuario {
    font-size: 1.2rem;
  }
  .gerenciar-marcadas .table td:nth-of-type(2) .info-adicional {
    font-size: 0.8rem;
  }
  .gerenciar-marcadas .table td:nth-of-type(7), .gerenciar-marcadas .table td:nth-of-type(8) {
    width: 48% !important;
  }
  .gerenciar-marcadas .table td:nth-of-type(7) {
    margin-right: 2%;
  }
  .gerenciar-marcadas .btn-outline-primary {
    font-size: 0.85rem;
    padding: 0.4rem 0.7rem;
  }
  .gerenciar-marcadas .pagination .page-link {
    font-size: 0.8rem;
    padding: 0.35rem 0.6rem;
  }
}
@media (max-width: 360px) {
  .gerenciar-marcadas .table td:nth-of-type(7), .gerenciar-marcadas .table td:nth-of-type(8) {
    width: 48% !important;
  }
  .gerenciar-marcadas .table td:nth-of-type(7) .btn, .gerenciar-marcadas .table td:nth-of-type(8) .btn {
    font-size: 0.8rem;
    padding: 0.35rem 0.5rem;
  }
}

.gerenciar-marcadas select.status-select {
  font-weight: 700;
  color: #fff !important;
  border-radius: 8px;
  border: none !important;
  padding: 6px 10px;
  text-transform: capitalize;
}

/* PENDENTE = AMARELO */
.gerenciar-marcadas select.status-select.pendente {
  color: #6e6e6e !important;
}

/* MARCADO = VERDE */
.gerenciar-marcadas select.status-select.marcado {
  color: #8031ca !important;
}

/* RECUSADO = VERMELHO */
.gerenciar-marcadas select.status-select.recusado {
  color: #d83232 !important;
}

.gerenciar-marcadas-user {
  /* Telas muito pequenas */
}
.gerenciar-marcadas-user .container {
  max-width: 1400px;
  margin-top: 200px;
  margin: 2rem auto;
  padding: 0 1rem;
  height: auto;
}
.gerenciar-marcadas-user .alert {
  border: none;
  border-radius: 12px;
  font-weight: 500;
}
.gerenciar-marcadas-user .alert.alert-success {
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25d366;
}
.gerenciar-marcadas-user .alert.alert-danger {
  background: rgba(255, 79, 111, 0.15);
  border: 1px solid rgba(255, 79, 111, 0.3);
  color: #ff4f6f;
}
.gerenciar-marcadas-user .alert.alert-warning {
  background: rgba(255, 193, 7, 0.15);
  border: 1px solid rgba(255, 193, 7, 0.3);
  color: #ffc107;
}
.gerenciar-marcadas-user .alert.alert-info {
  background: rgba(122, 63, 255, 0.15);
  border: 1px solid rgba(122, 63, 255, 0.3);
  color: #7a3fff;
}
.gerenciar-marcadas-user .alert .btn-close {
  filter: invert(1) brightness(2);
}
.gerenciar-marcadas-user h2 {
  color: #ffffff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 2rem;
  font-family: "Hammersmith One", sans-serif !important;
  letter-spacing: 0.2rem;
  margin-bottom: 0 !important;
}
.gerenciar-marcadas-user .input-group .input-group-text {
  background: #16161d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-right: none;
  color: #c0c0c0;
  border-radius: 10px 0 0 10px;
}
.gerenciar-marcadas-user .input-group .form-control {
  background: #16161d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: none;
  border-radius: 0 10px 10px 0;
  color: #fdfdfd;
  padding: 0.75rem 1rem;
}
.gerenciar-marcadas-user .input-group .form-control:focus {
  background: rgba(38, 38, 49, 0.9);
  border-color: #7a3fff;
  box-shadow: 0 0 0 0.2rem rgba(122, 63, 255, 0.25);
  color: #ffffff;
}
.gerenciar-marcadas-user .input-group .form-control::-moz-placeholder {
  color: #c0c0c0;
  opacity: 0.7;
}
.gerenciar-marcadas-user .input-group .form-control::placeholder {
  color: #c0c0c0;
  opacity: 0.7;
}
.gerenciar-marcadas-user .btn {
  font-weight: 600;
  border-radius: 10px;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.gerenciar-marcadas-user .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}
.gerenciar-marcadas-user .btn:hover::before {
  left: 100%;
}
.gerenciar-marcadas-user .btn.btn-outline-primary {
  background: transparent;
  border: 1px solid #7a3fff;
  color: #7a3fff;
}
.gerenciar-marcadas-user .btn.btn-outline-primary:hover {
  background: linear-gradient(90deg, #7a3fff, #ff4fd8);
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(122, 63, 255, 0.3);
}
.gerenciar-marcadas-user .btn.btn-outline-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #c0c0c0;
}
.gerenciar-marcadas-user .btn.btn-outline-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #c0c0c0;
  color: #ffffff;
}
.gerenciar-marcadas-user .btn.btn-success {
  background: #25d367;
  border: none;
}
.gerenciar-marcadas-user .btn.btn-success:hover {
  background: rgb(53.7842741935, 219.7157258065, 116.7237903226);
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.gerenciar-marcadas-user .btn.btn-info {
  background: rgba(122, 63, 255, 0.2);
  border: 1px solid rgba(122, 63, 255, 0.5);
  color: #7a3fff;
}
.gerenciar-marcadas-user .btn.btn-info:hover {
  background: linear-gradient(90deg, #7a3fff, #ff4fd8);
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-2px);
}
.gerenciar-marcadas-user .dropdown-menu {
  background: #16161d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.gerenciar-marcadas-user .dropdown-menu .dropdown-item {
  color: #fdfdfd;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}
.gerenciar-marcadas-user .dropdown-menu .dropdown-item:hover, .gerenciar-marcadas-user .dropdown-menu .dropdown-item.active {
  background: linear-gradient(90deg, #7a3fff, #ff4fd8);
  color: #ffffff;
}
.gerenciar-marcadas-user .card {
  background: #16161d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.gerenciar-marcadas-user .card .card-body {
  padding: 2rem;
}
.gerenciar-marcadas-user .table {
  background: transparent;
  color: #fdfdfd;
  border: none;
  margin-bottom: 0;
  color: white !important;
  --bs-table-striped-color: #ffffff !important;
}
.gerenciar-marcadas-user .table thead {
  background: linear-gradient(90deg, #7a3fff, #ff4fd8);
}
.gerenciar-marcadas-user .table thead th {
  border: none;
  padding: 1rem 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white !important;
}
.gerenciar-marcadas-user .table tbody tr {
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.gerenciar-marcadas-user .table tbody tr:hover {
  background: rgba(122, 63, 255, 0.05);
  transform: translateX(5px);
}
.gerenciar-marcadas-user .table tbody tr:last-child {
  border-bottom: none;
}
.gerenciar-marcadas-user .table tbody tr td {
  border: none;
  padding: 1rem 0.75rem;
  vertical-align: middle;
  color: white !important;
}
.gerenciar-marcadas-user .table tbody tr td.text-center {
  text-align: center;
}
.gerenciar-marcadas-user .status-cell {
  font-weight: 700;
  text-transform: capitalize;
}
.gerenciar-marcadas-user .status-cell.status-pendente {
  color: #ffc107 !important;
}
.gerenciar-marcadas-user .status-cell.status-marcado {
  color: #25d366 !important;
}
.gerenciar-marcadas-user .status-cell.status-recusado {
  color: #ff4f6f !important;
}
.gerenciar-marcadas-user .modal-content {
  background: #16161d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.gerenciar-marcadas-user .modal-content .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
}
.gerenciar-marcadas-user .modal-content .modal-header .modal-title {
  color: #ffffff;
  font-weight: 600;
}
.gerenciar-marcadas-user .modal-content .modal-header .modal-title i {
  color: #7a3fff;
}
.gerenciar-marcadas-user .modal-content .modal-header .btn-close {
  filter: invert(1) brightness(2);
}
.gerenciar-marcadas-user .modal-content .modal-body {
  padding: 1.5rem;
  color: #fdfdfd;
}
.gerenciar-marcadas-user .modal-content .modal-body strong {
  color: #ffffff;
  display: block;
  margin-bottom: 0.5rem;
}
.gerenciar-marcadas-user .modal-content .modal-body p {
  color: #c0c0c0;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 3px solid #7a3fff;
}
.gerenciar-marcadas-user .modal-content .modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
}
.gerenciar-marcadas-user .servico-badge {
  background: linear-gradient(90deg, #7a3fff, #ff4fd8) !important;
  color: #ffffff !important;
  border-radius: 12px;
  font-weight: 600;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.gerenciar-marcadas-user .servico-badge i {
  color: white !important;
  font-size: 0.95em;
}
.gerenciar-marcadas-user .servico-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(122, 63, 255, 0.2);
}
@media (max-width: 768px) {
  .gerenciar-marcadas-user .d-flex.justify-content-between {
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: wrap;
  }
  .gerenciar-marcadas-user .d-flex.justify-content-between .flex-grow-1 {
    margin-bottom: 0;
    margin-right: 1rem;
    flex: 1 1 auto;
  }
  .gerenciar-marcadas-user .d-flex.justify-content-between .d-flex.gap-2 {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}
@media (max-width: 768px) {
  .gerenciar-marcadas-user .d-flex.justify-content-between {
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: wrap;
  }
  .gerenciar-marcadas-user .d-flex.justify-content-between .flex-grow-1 {
    margin-bottom: 0;
    margin-right: 1rem;
    flex: 1 1 auto;
  }
  .gerenciar-marcadas-user .d-flex.justify-content-between .d-flex.gap-2 {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}
@media (max-width: 768px) {
  .gerenciar-marcadas-user {
    /* Header da página */
    /* Campo de pesquisa = metade da linha */
    /* Botões = metade da linha */
    /* Input ocupa toda a largura dentro do container */
    /* ============================
       CORREÇÃO DO BUG DOS TÍTULOS
       ============================ */
    /* ============================ */
  }
  .gerenciar-marcadas-user .minhas-solicitacoes-page .d-flex.justify-content-between {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
  .gerenciar-marcadas-user .minhas-solicitacoes-page .flex-grow-1 {
    flex: 1 1 48% !important;
    margin: 0 !important;
  }
  .gerenciar-marcadas-user .minhas-solicitacoes-page .d-flex.gap-2 {
    flex: 1 1 48% !important;
    margin: 0 !important;
    justify-content: end !important;
  }
  .gerenciar-marcadas-user .minhas-solicitacoes-page .input-group {
    width: 100% !important;
  }
  .gerenciar-marcadas-user .container {
    margin: 1rem auto;
    padding: 0 0.5rem;
    height: auto;
  }
  .gerenciar-marcadas-user .card .card-body {
    padding: 1rem;
  }
  .gerenciar-marcadas-user table thead {
    display: none;
  }
  .gerenciar-marcadas-user table,
  .gerenciar-marcadas-user tbody,
  .gerenciar-marcadas-user tr,
  .gerenciar-marcadas-user td {
    display: block;
    width: 100%;
  }
  .gerenciar-marcadas-user tr {
    margin-bottom: 1rem;
    background: #0e0d14;
    padding: 1.2rem;
    border-radius: 12px;
    position: relative;
  }
  .gerenciar-marcadas-user td {
    padding-left: 0 !important;
    padding-top: 28px !important;
    padding-bottom: 10px !important;
    text-align: left !important;
    border: none !important;
    position: relative;
    font-size: 0.95rem;
    color: #e4e4e4;
    word-break: break-word;
  }
  .gerenciar-marcadas-user td::before {
    content: attr(data-label);
    position: absolute;
    top: 5px;
    left: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #bbb;
    font-size: 0.75rem;
    width: calc(100% - 24px);
    line-height: 1.1;
    white-space: normal;
  }
  .gerenciar-marcadas-user td .btn,
  .gerenciar-marcadas-user td a {
    margin-top: 6px;
    width: 100%;
    justify-content: center;
  }
  .gerenciar-marcadas-user .input-group {
    width: 100% !important;
  }
  .gerenciar-marcadas-user .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 576px) {
  .gerenciar-marcadas-user h2 {
    font-size: 1.5rem;
    text-align: center;
  }
  .gerenciar-marcadas-user .table tr td {
    padding-left: 0 !important;
  }
  .gerenciar-marcadas-user .table tr td:before {
    width: 45%;
    font-size: 0.75rem;
  }
}
.gerenciar-marcadas-user .card {
  animation: fadeInUp 0.6s ease-out;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-gerenciar-usuarios .container {
  max-width: 1400px;
  width: 95%;
  padding-top: 5rem;
  margin: 0 auto;
  min-height: 450px;
  height: 600px;
}
.page-gerenciar-usuarios h2 {
  font-weight: 600;
  background: linear-gradient(90deg, #7a3fff, #ff4fd8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 1.5rem;
}
.page-gerenciar-usuarios .container > .d-flex.justify-content-between {
  gap: 2rem;
  flex-wrap: wrap;
}
.page-gerenciar-usuarios .container > .d-flex.justify-content-between h2 {
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(90deg, #9d4edd, #e04aff, #ff4fd8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  letter-spacing: 1.5px;
  text-shadow: 0 0 20px rgba(157, 78, 221, 0.4);
  margin: 0;
  padding: 0.5rem 0;
  flex: 1;
  min-width: 280px;
}
.page-gerenciar-usuarios .container > .d-flex.justify-content-between > div.d-flex {
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.page-gerenciar-usuarios .container > .d-flex.justify-content-between > div.d-flex form.d-flex {
  background: rgba(22, 22, 29, 0.7);
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.page-gerenciar-usuarios .container > .d-flex.justify-content-between > div.d-flex form.d-flex:hover, .page-gerenciar-usuarios .container > .d-flex.justify-content-between > div.d-flex form.d-flex:focus-within {
  border-color: #9d4edd;
  box-shadow: 0 0 25px rgba(157, 78, 221, 0.5);
  transform: translateY(-2px);
}
.page-gerenciar-usuarios .container > .d-flex.justify-content-between > div.d-flex form.d-flex .form-control {
  background: transparent;
  border: none;
  color: #ffffff;
  padding: 0.9rem 1.2rem;
  font-size: 1rem;
  width: 260px;
  transition: all 0.3s ease;
}
.page-gerenciar-usuarios .container > .d-flex.justify-content-between > div.d-flex form.d-flex .form-control:focus {
  box-shadow: none;
  color: #fff;
}
.page-gerenciar-usuarios .container > .d-flex.justify-content-between > div.d-flex form.d-flex .form-control::-moz-placeholder {
  color: #b0b0ff;
  font-style: italic;
}
.page-gerenciar-usuarios .container > .d-flex.justify-content-between > div.d-flex form.d-flex .form-control::placeholder {
  color: #b0b0ff;
  font-style: italic;
}
.page-gerenciar-usuarios .container > .d-flex.justify-content-between > div.d-flex form.d-flex .btn-primary {
  background: linear-gradient(135deg, #9d4edd, #e04aff);
  border: none;
  padding: 0 1.6rem;
  font-weight: 600;
  border-radius: 0;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(157, 78, 221, 0.4);
}
.page-gerenciar-usuarios .container > .d-flex.justify-content-between > div.d-flex form.d-flex .btn-primary:hover {
  background: linear-gradient(135deg, #b055ff, #ff4fd8);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(224, 74, 255, 0.6);
}
.page-gerenciar-usuarios .container > .d-flex.justify-content-between > div.d-flex form.d-flex .btn-primary i {
  font-size: 1.2rem;
}
.page-gerenciar-usuarios .container > .d-flex.justify-content-between > div.d-flex .btn-outline-primary {
  background: rgba(22, 22, 29, 0.7);
  border: 1.5px solid transparent;
  -o-border-image: linear-gradient(90deg, #9d4edd, #ff4fd8) 1;
     border-image: linear-gradient(90deg, #9d4edd, #ff4fd8) 1;
  color: #e0aaff;
  border-radius: 16px;
  padding: 0.9rem 1.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.page-gerenciar-usuarios .container > .d-flex.justify-content-between > div.d-flex .btn-outline-primary:hover {
  background: linear-gradient(90deg, #9d4edd, #ff4fd8);
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(157, 78, 221, 0.6);
  -o-border-image: none;
     border-image: none;
}
.page-gerenciar-usuarios .container > .d-flex.justify-content-between > div.d-flex .btn-outline-primary i {
  margin-right: 0.5rem;
}
@media (max-width: 768px) {
  .page-gerenciar-usuarios .container > .d-flex.justify-content-between h2 {
    font-size: 2rem;
  }
  .page-gerenciar-usuarios .container > .d-flex.justify-content-between form.d-flex .form-control {
    width: 200px;
  }
}
.page-gerenciar-usuarios .pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.page-gerenciar-usuarios .pagination .page-item .page-link {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fdfdfd;
  border-radius: 8px;
  padding: 0.5rem 0.9rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.page-gerenciar-usuarios .pagination .page-item .page-link:hover {
  background: linear-gradient(90deg, #7a3fff, #ff4fd8);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 16px rgba(122, 63, 255, 0.7);
}
.page-gerenciar-usuarios .pagination .page-item.active .page-link {
  background: linear-gradient(90deg, #7a3fff, #ff4fd8);
  color: #fff;
  border: none;
  box-shadow: 0 0 18px rgba(122, 63, 255, 0.8);
}
.page-gerenciar-usuarios .btn-outline-primary {
  font-size: 0.95rem;
  padding: 0.55rem 1rem;
  font-weight: 600;
  border-radius: 10px;
  background-color: #1a1a27;
  border: 1px solid transparent;
  -o-border-image: linear-gradient(90deg, #7a3fff, #ff4fd8) 1;
     border-image: linear-gradient(90deg, #7a3fff, #ff4fd8) 1;
  color: #fdfdfd;
  transition: all 0.3s ease;
}
.page-gerenciar-usuarios .btn-outline-primary:hover {
  background: linear-gradient(90deg, #7a3fff, #ff4fd8);
  color: #fff;
  box-shadow: 0 0 20px rgba(122, 63, 255, 0.8);
}
.page-gerenciar-usuarios .btn {
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.page-gerenciar-usuarios .btn.btn-success {
  background-color: #25d366;
  border: none;
  color: #fff;
}
.page-gerenciar-usuarios .btn.btn-success:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 14px rgba(37, 211, 102, 0.6);
}
.page-gerenciar-usuarios .card {
  background-color: #16161d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  padding: 1rem;
}
.page-gerenciar-usuarios .card .card-body {
  padding: 1.5rem;
}
.page-gerenciar-usuarios .table {
  background-color: #121219;
  color: #fdfdfd;
  border: none;
  font-size: 0.95rem;
  table-layout: fixed;
  width: 100%;
}
.page-gerenciar-usuarios .table thead {
  background: linear-gradient(90deg, #7a3fff, #ff4fd8);
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.page-gerenciar-usuarios .table thead th {
  border: none;
  padding: 0.8rem 0.5rem;
  text-align: center;
}
.page-gerenciar-usuarios .table tbody tr {
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.page-gerenciar-usuarios .table tbody tr:hover {
  background-color: rgba(122, 63, 255, 0.08);
}
.page-gerenciar-usuarios .table tbody td {
  vertical-align: middle;
  border: none;
  color: #ffffff;
  text-align: center;
}
.page-gerenciar-usuarios .table .form-select,
.page-gerenciar-usuarios .table .form-control {
  background-color: #1e1e27;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fdfdfd;
  font-size: 0.95rem;
  padding: 0.35rem 0.5rem;
  transition: all 0.3s ease;
}
.page-gerenciar-usuarios .table .form-select:focus,
.page-gerenciar-usuarios .table .form-control:focus {
  border-color: #7a3fff;
  box-shadow: 0 0 0 0.2rem rgba(122, 63, 255, 0.25);
  background-color: #262631;
}
.page-gerenciar-usuarios .table .form-select option,
.page-gerenciar-usuarios .table .form-control option {
  background-color: #1b1b23;
  color: #fdfdfd;
}
.page-gerenciar-usuarios .modal-content {
  background-color: #16161d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 30px rgba(122, 63, 255, 0.25);
  border-radius: 12px;
}
.page-gerenciar-usuarios .modal-content .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}
.page-gerenciar-usuarios .modal-content .modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.page-gerenciar-usuarios .modal-content textarea {
  background-color: #1b1b23;
  color: #fdfdfd;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  resize: none;
}
.page-gerenciar-usuarios .modal-content textarea:focus {
  border-color: #7a3fff;
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(122, 63, 255, 0.25);
}

@media (max-width: 768px) {
  .page-gerenciar-usuarios .d-flex.justify-content-between {
    flex-direction: column !important;
    gap: 15px;
    align-items: stretch !important;
  }
  /* Linha dos botões e formulário */
  .page-gerenciar-usuarios .d-flex.gap-2 {
    width: 100%;
    flex-direction: column !important;
    gap: 10px !important;
  }
  /* FORMULÁRIO SEM VAZAR */
  .page-gerenciar-usuarios form.d-flex {
    width: 100%;
    display: flex;
    gap: 8px;
  }
  .page-gerenciar-usuarios form.d-flex .form-control {
    flex: 1 1 auto;
    min-width: 0 !important; /* impede vazamento */
  }
  .page-gerenciar-usuarios form.d-flex .btn-primary {
    white-space: nowrap;
    width: auto;
    padding: 6px 10px;
    font-size: 0.75rem;
  }
  /* Botão de recarregar ocupa largura total */
  .page-gerenciar-usuarios .btn-outline-primary {
    width: 100%;
    padding: 10px;
    font-size: 0.9rem;
  }
  /* 🔥 SUAS CONFIGURAÇÕES EXISTENTES DO MOBILE */
  .page-gerenciar-usuarios {
    height: auto !important;
    margin-bottom: 200px;
  }
  .page-gerenciar-usuarios .table thead {
    display: none;
  }
  .page-gerenciar-usuarios .table tbody tr {
    display: block;
    background: #1a1a23;
    border-radius: 16px;
    padding: 1.4rem;
    margin-bottom: 1.4rem;
    border: 1px solid rgba(122, 63, 255, 0.25);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .page-gerenciar-usuarios .table tbody tr:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(122, 63, 255, 0.3);
  }
  .page-gerenciar-usuarios .table td {
    display: block;
    width: 100%;
    text-align: right !important;
    padding: 0.7rem 0;
    padding-left: 50%;
    position: relative;
    color: #fdfdfd !important;
    font-weight: 500;
    font-size: 1.05rem;
    border: none;
  }
  .page-gerenciar-usuarios .table td:nth-of-type(1)::before {
    content: "ID: ";
  }
  .page-gerenciar-usuarios .table td:nth-of-type(2)::before {
    content: "Nome: ";
  }
  .page-gerenciar-usuarios .table td:nth-of-type(3)::before {
    content: "Email: ";
  }
  .page-gerenciar-usuarios .table td:nth-of-type(4)::before {
    content: "Contato: ";
  }
  .page-gerenciar-usuarios .table td::before {
    position: absolute;
    left: 1.2rem;
    width: 45%;
    font-weight: 700;
    color: #c8aaff;
    text-align: left;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.8px;
  }
  .page-gerenciar-usuarios .table td:last-child {
    padding-left: 0;
    text-align: center;
    margin-top: 1rem;
  }
  .page-gerenciar-usuarios .table td:last-child::before {
    display: none;
  }
  .page-gerenciar-usuarios .table td:last-child .btn-success {
    width: 100%;
    max-width: 240px;
    padding: 0.9rem;
    font-size: 1.1rem;
    border-radius: 14px;
    font-weight: 600;
  }
}
@media (max-width: 480px) {
  .page-gerenciar-usuarios .container {
    height: auto;
    width: 80%;
  }
  .page-gerenciar-usuarios .table td {
    padding-left: 48%;
    font-size: 1rem;
  }
  .page-gerenciar-usuarios .table td::before {
    font-size: 0.8rem;
  }
}
#alertBonito {
  position: fixed;
  top: 20px;
  right: -350px;
  padding: 15px 25px;
  background: #ff4d4d;
  color: #fff;
  border-radius: 12px;
  font-weight: 500;
  font-size: 15px;
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 9999;
}
#alertBonito.show {
  right: 20px;
  opacity: 1;
}

.solicitar-visita-page {
  display: flex;
  margin-top: 50px;
  flex-direction: column;
  justify-content: center;
  /* Mostra normalmente quando CEP está vazio */
}
.solicitar-visita-page .container {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
  height: auto;
}
.solicitar-visita-page .input-hover-area {
  position: relative;
}
.solicitar-visita-page .tooltip-auto {
  position: absolute;
  top: 100%;
  left: 0;
  background: #8940ff;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 13px;
  margin-top: 6px;
  white-space: nowrap;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.solicitar-visita-page .tooltip-auto::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 10px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #0d6efd;
}
.solicitar-visita-page .input-hover-area:hover .tooltip-auto {
  opacity: 1;
  transform: translateY(0);
}
.solicitar-visita-page .alert {
  border: none;
  border-radius: 12px;
  font-weight: 500;
}
.solicitar-visita-page .alert.alert-success {
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25d366;
}
.solicitar-visita-page .alert.alert-danger {
  background: rgba(255, 79, 111, 0.15);
  border: 1px solid rgba(255, 79, 111, 0.3);
  color: #ff4f6f;
}
.solicitar-visita-page .alert.alert-warning {
  background: rgba(255, 193, 7, 0.15);
  border: 1px solid rgba(255, 193, 7, 0.3);
  color: #ffc107;
}
.solicitar-visita-page .alert.alert-info {
  background: rgba(122, 63, 255, 0.15);
  border: 1px solid rgba(122, 63, 255, 0.3);
  color: #7a3fff;
}
.solicitar-visita-page .alert .btn-close {
  filter: invert(1) brightness(2);
}
.solicitar-visita-page form {
  background: #16161d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.solicitar-visita-page form .row {
  margin: 0 -0.75rem;
}
.solicitar-visita-page form .form-label {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 0.5rem;
  text-align: left !important;
  display: block !important;
  width: 100% !important;
}
.solicitar-visita-page form .form-label::after {
  content: " *";
  color: #ff4f6f;
  opacity: 0.8;
}
.solicitar-visita-page form .form-label:has(+ input:not([required]))::after {
  content: "";
}
.solicitar-visita-page form .form-control {
  background: rgba(30, 30, 39, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #fdfdfd;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  height: auto;
}
.solicitar-visita-page form .form-control:focus {
  background: rgba(38, 38, 49, 0.9);
  border-color: #7a3fff;
  box-shadow: 0 0 0 0.2rem rgba(122, 63, 255, 0.25);
  color: #ffffff;
}
.solicitar-visita-page form .form-control::-moz-placeholder {
  color: #c0c0c0;
  opacity: 0.7;
}
.solicitar-visita-page form .form-control::placeholder {
  color: #c0c0c0;
  opacity: 0.7;
}
.solicitar-visita-page form .form-control:-moz-read-only {
  background: rgba(27, 27, 35, 0.6);
  color: #c0c0c0;
  cursor: not-allowed;
}
.solicitar-visita-page form .form-control:read-only {
  background: rgba(27, 27, 35, 0.6);
  color: #c0c0c0;
  cursor: not-allowed;
}
.solicitar-visita-page form .form-control:-moz-read-only:focus {
  background: rgba(27, 27, 35, 0.8);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}
.solicitar-visita-page form .form-control:read-only:focus {
  background: rgba(27, 27, 35, 0.8);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}
.solicitar-visita-page form .btn {
  font-weight: 600;
  border-radius: 10px;
  padding: 0.75rem 1.5rem;
  font-family: "Open Sans", sans-serif;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.solicitar-visita-page form .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}
.solicitar-visita-page form .btn:hover::before {
  left: 100%;
}
.solicitar-visita-page form .btn.btn-outline-primary {
  background: transparent;
  border: 1px solid #7a3fff;
  color: #7a3fff;
}
.solicitar-visita-page form .btn.btn-outline-primary:hover {
  background: linear-gradient(90deg, var(--azul), var(--rosa));
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(122, 63, 255, 0.3);
}
.solicitar-visita-page form .btn.btn-outline-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #c0c0c0;
  font-family: "Open Sans", sans-serif;
}
.solicitar-visita-page form .btn.btn-outline-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #c0c0c0;
  color: #ffffff;
}
.solicitar-visita-page form .btn.btn-success {
  background: #25d366;
  border: none;
}
.solicitar-visita-page form .btn.btn-success:hover {
  background: rgb(53.7842741935, 219.7157258065, 115.7701612903);
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.solicitar-visita-page form .btn.btn-info {
  background: rgba(122, 63, 255, 0.2);
  border: 1px solid rgba(122, 63, 255, 0.5);
  color: #7a3fff;
  font-family: "Open Sans", sans-serif;
}
.solicitar-visita-page form .btn.btn-info:hover {
  background: linear-gradient(90deg, var(--azul), var(--rosa));
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-2px);
}
.solicitar-visita-page form .text-end {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .solicitar-visita-page form .text-end {
    justify-content: center;
  }
}
.solicitar-visita-page form .form-control:focus ~ .form-label {
  color: #7a3fff;
}
.solicitar-visita-page h1, .solicitar-visita-page h2 {
  color: #ffffff;
  text-align: center;
  font-family: "Hammersmith One", sans-serif;
  letter-spacing: 0.2rem;
  margin-bottom: 0 !important;
  font-weight: 700;
}
.solicitar-visita-page .linha {
  width: 55%;
  height: 3px;
  margin: 0 auto 0 auto;
  background: linear-gradient(90deg, var(--azul), var(--rosa));
  border-radius: 2px;
}
.solicitar-visita-page .linha.active {
  width: 300px;
}
@media (max-width: 768px) {
  .solicitar-visita-page .container {
    margin: 1rem auto;
    padding: 0 0.5rem;
  }
  .solicitar-visita-page form {
    padding: 1.5rem;
    border-radius: 12px;
  }
  .solicitar-visita-page form .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .solicitar-visita-page form .text-end {
    flex-direction: column;
  }
  .solicitar-visita-page form .text-end .btn {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .solicitar-visita-page form {
    padding: 1rem;
  }
  .solicitar-visita-page form .form-control {
    padding: 0.65rem 0.85rem;
    font-size: 0.9rem;
  }
  .solicitar-visita-page form .form-label {
    font-size: 0.9rem;
  }
}
.solicitar-visita-page form {
  animation: fadeInUp 0.6s ease-out;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.solicitar-visita-page .form-control.is-valid {
  border-color: #25d366;
  background: rgba(37, 211, 102, 0.1);
}
.solicitar-visita-page .form-control.is-invalid {
  border-color: #ff4f6f;
  background: rgba(255, 79, 111, 0.1);
}
.solicitar-visita-page form {
  background: linear-gradient(135deg, rgba(22, 22, 29, 0.9), rgba(18, 18, 25, 0.9));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

@media (max-width: 992px) {
  .solicitar-visita-page {
    height: auto !important;
    min-height: 100vh;
    padding: 2rem 0;
    margin-top: 0 !important;
  }
  .solicitar-visita-page .container {
    margin: 2rem auto !important;
    padding: 0 1rem;
  }
  .solicitar-visita-page h1, .solicitar-visita-page h2 {
    font-size: 2.1rem;
  }
  .solicitar-visita-page form {
    padding: 2rem;
  }
}
@media (max-width: 768px) {
  .solicitar-visita-page {
    padding: 1rem 0;
  }
  .solicitar-visita-page .container {
    margin: 1rem auto;
    padding: 0 1rem;
    width: 100%;
  }
  .solicitar-visita-page h1, .solicitar-visita-page h2 {
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
  }
  .solicitar-visita-page form {
    padding: 1.8rem 1.4rem;
    border-radius: 18px;
    /* Todos os campos em coluna */
    /* Input group (select + remover serviço) */
    /* Botão + Adicionar Serviço */
    /* BOTÕES PRINCIPAIS (Enviar e Voltar) — TAMANHO IDEAL NO CELULAR */
  }
  .solicitar-visita-page form .col-md-12, .solicitar-visita-page form .col-md-9, .solicitar-visita-page form .col-md-8, .solicitar-visita-page form .col-md-4, .solicitar-visita-page form .col-md-3, .solicitar-visita-page form .col-12 {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding: 0 0 1rem 0 !important;
  }
  .solicitar-visita-page form .input-group {
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1rem;
  }
  .solicitar-visita-page form .input-group select.form-control,
  .solicitar-visita-page form .input-group .btn-remover-servico {
    width: 100%;
    border-radius: 12px !important;
  }
  .solicitar-visita-page form .input-group .btn-remover-servico {
    padding: 0.75rem;
    font-size: 0.95rem;
  }
  .solicitar-visita-page form #btn-add-servico {
    width: 100%;
    padding: 0.85rem;
    font-size: 1rem;
  }
  .solicitar-visita-page form .text-end {
    flex-direction: column;
    gap: 0.9rem;
    margin-top: 1.2rem;
  }
  .solicitar-visita-page form .text-end .btn {
    width: 100%;
    max-width: 380px; /* não fica gigante */
    margin: 0 auto; /* centraliza */
    padding: 0.9rem 1.5rem; /* altura perfeita */
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 12px;
  }
}
@media (max-width: 480px) {
  .solicitar-visita-page h1, .solicitar-visita-page h2 {
    font-size: 1.7rem;
  }
  .solicitar-visita-page form {
    padding: 1.6rem 1.2rem;
    /* Botões ainda menores e mais confortáveis no celular pequeno */
  }
  .solicitar-visita-page form .form-label {
    font-size: 0.92rem;
  }
  .solicitar-visita-page form .form-control,
  .solicitar-visita-page form select.form-control {
    font-size: 1rem;
    padding: 0.85rem;
  }
  .solicitar-visita-page form .text-end .btn {
    max-width: 320px;
    padding: 0.85rem 1.4rem;
    font-size: 1rem;
  }
  .solicitar-visita-page form #btn-add-servico,
  .solicitar-visita-page form .btn-remover-servico {
    padding: 0.75rem;
    font-size: 0.95rem;
  }
}
.minhas-solicitacoes-page, .gerenciar-marcadas-user {
  padding: 100px;
}
@media (max-width: 768px) {
  .minhas-solicitacoes-page, .gerenciar-marcadas-user {
    padding: 10px;
  }
}

.minhas-solicitacoes-page {
  /* Telas muito pequenas */
}
.minhas-solicitacoes-page .container {
  max-width: 1400px;
  margin-top: 200px;
  margin: 2rem auto;
  padding: 0 1rem;
  height: auto;
}
.minhas-solicitacoes-page .alert {
  border: none;
  border-radius: 12px;
  font-weight: 500;
}
.minhas-solicitacoes-page .alert.alert-success {
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25d366;
}
.minhas-solicitacoes-page .alert.alert-danger {
  background: rgba(255, 79, 111, 0.15);
  border: 1px solid rgba(255, 79, 111, 0.3);
  color: #ff4f6f;
}
.minhas-solicitacoes-page .alert.alert-warning {
  background: rgba(255, 193, 7, 0.15);
  border: 1px solid rgba(255, 193, 7, 0.3);
  color: #ffc107;
}
.minhas-solicitacoes-page .alert.alert-info {
  background: rgba(122, 63, 255, 0.15);
  border: 1px solid rgba(122, 63, 255, 0.3);
  color: #7a3fff;
}
.minhas-solicitacoes-page .alert .btn-close {
  filter: invert(1) brightness(2);
}
.minhas-solicitacoes-page h1 {
  color: white !important;
  font-weight: 700;
  font-size: 2rem;
  font-family: "Hammersmith One", sans-serif;
  letter-spacing: 0.2rem;
  margin-bottom: 0 !important;
}
.minhas-solicitacoes-page .linha {
  width: 48%;
  height: 3px;
  margin: 0 auto 0 auto;
  background: linear-gradient(90deg, var(--azul), var(--rosa));
  border-radius: 2px;
}
.minhas-solicitacoes-page .linha.active {
  width: 300px;
}
.minhas-solicitacoes-page .input-group .input-group-text {
  background: #16161d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-right: none;
  color: #c0c0c0;
  border-radius: 10px 0 0 10px;
}
.minhas-solicitacoes-page .input-group .form-control {
  background: #16161d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: none;
  border-radius: 0 10px 10px 0;
  color: #fdfdfd;
  padding: 0.75rem 1rem;
}
.minhas-solicitacoes-page .input-group .form-control:focus {
  background: rgba(38, 38, 49, 0.9);
  border-color: #7a3fff;
  box-shadow: 0 0 0 0.2rem rgba(122, 63, 255, 0.25);
  color: #ffffff;
}
.minhas-solicitacoes-page .input-group .form-control::-moz-placeholder {
  color: #c0c0c0;
  opacity: 0.7;
}
.minhas-solicitacoes-page .input-group .form-control::placeholder {
  color: #c0c0c0;
  opacity: 0.7;
}
.minhas-solicitacoes-page .btn {
  font-weight: 600;
  border-radius: 10px;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.minhas-solicitacoes-page .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}
.minhas-solicitacoes-page .btn:hover::before {
  left: 100%;
}
.minhas-solicitacoes-page .btn.btn-outline-primary {
  background: transparent;
  border: 1px solid #7a3fff;
  color: #7a3fff;
}
.minhas-solicitacoes-page .btn.btn-outline-primary:hover {
  background: linear-gradient(90deg, #7a3fff, #ff4fd8);
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(122, 63, 255, 0.3);
}
.minhas-solicitacoes-page .btn.btn-outline-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #c0c0c0;
}
.minhas-solicitacoes-page .btn.btn-outline-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #c0c0c0;
  color: #ffffff;
}
.minhas-solicitacoes-page .btn.btn-success {
  background: #25d367;
  border: none;
}
.minhas-solicitacoes-page .btn.btn-success:hover {
  background: rgb(53.7842741935, 219.7157258065, 116.7237903226);
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.minhas-solicitacoes-page .btn.btn-info {
  background: rgba(122, 63, 255, 0.2);
  border: 1px solid rgba(122, 63, 255, 0.5);
  color: #7a3fff;
}
.minhas-solicitacoes-page .btn.btn-info:hover {
  background: linear-gradient(90deg, #7a3fff, #ff4fd8);
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-2px);
}
.minhas-solicitacoes-page .dropdown-menu {
  background: #16161d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.minhas-solicitacoes-page .dropdown-menu .dropdown-item {
  color: #fdfdfd;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}
.minhas-solicitacoes-page .dropdown-menu .dropdown-item:hover, .minhas-solicitacoes-page .dropdown-menu .dropdown-item.active {
  background: linear-gradient(90deg, #7a3fff, #ff4fd8);
  color: #ffffff;
}
.minhas-solicitacoes-page .card {
  background: #16161d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.minhas-solicitacoes-page .card .card-body {
  padding: 2rem;
}
.minhas-solicitacoes-page .table {
  background: transparent;
  color: #fdfdfd;
  border: none;
  margin-bottom: 0;
  color: white !important;
  --bs-table-striped-color: #ffffff !important;
}
.minhas-solicitacoes-page .table thead {
  background: linear-gradient(90deg, #7a3fff, #ff4fd8);
}
.minhas-solicitacoes-page .table thead th {
  border: none;
  padding: 1rem 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white !important;
}
.minhas-solicitacoes-page .table tbody tr {
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.minhas-solicitacoes-page .table tbody tr:hover {
  background: rgba(122, 63, 255, 0.05);
  transform: translateX(5px);
}
.minhas-solicitacoes-page .table tbody tr:last-child {
  border-bottom: none;
}
.minhas-solicitacoes-page .table tbody tr td {
  border: none;
  padding: 1rem 0.75rem;
  vertical-align: middle;
  color: white !important;
}
.minhas-solicitacoes-page .table tbody tr td.text-center {
  text-align: center;
}
.minhas-solicitacoes-page .status-cell {
  font-weight: 700;
  text-transform: capitalize;
}
.minhas-solicitacoes-page .status-cell.status-pendente {
  color: #ffc107 !important;
}
.minhas-solicitacoes-page .status-cell.status-marcado {
  color: #25d366 !important;
}
.minhas-solicitacoes-page .status-cell.status-recusado {
  color: #ff4f6f !important;
}
.minhas-solicitacoes-page .modal-content {
  background: #16161d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.minhas-solicitacoes-page .modal-content .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
}
.minhas-solicitacoes-page .modal-content .modal-header .modal-title {
  color: #ffffff;
  font-weight: 600;
}
.minhas-solicitacoes-page .modal-content .modal-header .modal-title i {
  color: #7a3fff;
}
.minhas-solicitacoes-page .modal-content .modal-header .btn-close {
  filter: invert(1) brightness(2);
}
.minhas-solicitacoes-page .modal-content .modal-body {
  padding: 1.5rem;
  color: #fdfdfd;
}
.minhas-solicitacoes-page .modal-content .modal-body strong {
  color: #ffffff;
  display: block;
  margin-bottom: 0.5rem;
}
.minhas-solicitacoes-page .modal-content .modal-body p {
  color: #c0c0c0;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 3px solid #7a3fff;
}
.minhas-solicitacoes-page .modal-content .modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
}
.minhas-solicitacoes-page .servico-badge {
  background: linear-gradient(90deg, #7a3fff, #ff4fd8) !important;
  color: #ffffff !important;
  border-radius: 12px;
  font-weight: 600;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.minhas-solicitacoes-page .servico-badge i {
  color: white !important;
  font-size: 0.95em;
}
.minhas-solicitacoes-page .servico-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(122, 63, 255, 0.2);
}
@media (max-width: 768px) {
  .minhas-solicitacoes-page .d-flex.justify-content-between {
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: wrap;
  }
  .minhas-solicitacoes-page .d-flex.justify-content-between .flex-grow-1 {
    margin-bottom: 0;
    margin-right: 1rem;
    flex: 1 1 auto;
  }
  .minhas-solicitacoes-page .d-flex.justify-content-between .d-flex.gap-2 {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}
@media (max-width: 768px) {
  .minhas-solicitacoes-page .d-flex.justify-content-between {
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: wrap;
  }
  .minhas-solicitacoes-page .d-flex.justify-content-between .flex-grow-1 {
    margin-bottom: 0;
    margin-right: 1rem;
    flex: 1 1 auto;
  }
  .minhas-solicitacoes-page .d-flex.justify-content-between .d-flex.gap-2 {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}
@media (max-width: 768px) {
  .minhas-solicitacoes-page {
    /* Header da página */
    /* Campo de pesquisa = metade da linha */
    /* Botões = metade da linha */
    /* Input ocupa toda a largura dentro do container */
    /* ============================
       CORREÇÃO DO BUG DOS TÍTULOS
       ============================ */
    /* ============================ */
  }
  .minhas-solicitacoes-page .minhas-solicitacoes-page .d-flex.justify-content-between {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
  .minhas-solicitacoes-page .linha {
    width: 80%;
  }
  .minhas-solicitacoes-page .minhas-solicitacoes-page .flex-grow-1 {
    flex: 1 1 48% !important;
    margin: 0 !important;
  }
  .minhas-solicitacoes-page .minhas-solicitacoes-page .d-flex.gap-2 {
    flex: 1 1 48% !important;
    margin: 0 !important;
    justify-content: end !important;
  }
  .minhas-solicitacoes-page .minhas-solicitacoes-page .input-group {
    width: 100% !important;
  }
  .minhas-solicitacoes-page .container {
    margin: 1rem auto;
    padding: 0 0.5rem;
    height: auto;
  }
  .minhas-solicitacoes-page .card .card-body {
    padding: 1rem;
  }
  .minhas-solicitacoes-page table thead {
    display: none;
  }
  .minhas-solicitacoes-page table,
  .minhas-solicitacoes-page tbody,
  .minhas-solicitacoes-page tr,
  .minhas-solicitacoes-page td {
    display: block;
    width: 100%;
  }
  .minhas-solicitacoes-page tr {
    margin-bottom: 1rem;
    background: #0e0d14;
    padding: 1.2rem;
    border-radius: 12px;
    position: relative;
  }
  .minhas-solicitacoes-page td {
    padding-left: 0 !important;
    padding-top: 28px !important;
    padding-bottom: 10px !important;
    text-align: left !important;
    border: none !important;
    position: relative;
    font-size: 0.95rem;
    color: #e4e4e4;
    word-break: break-word;
  }
  .minhas-solicitacoes-page td::before {
    content: attr(data-label);
    position: absolute;
    top: 5px;
    left: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #bbb;
    font-size: 0.75rem;
    width: calc(100% - 24px);
    line-height: 1.1;
    white-space: normal;
  }
  .minhas-solicitacoes-page td .btn,
  .minhas-solicitacoes-page td a {
    margin-top: 6px;
    width: 100%;
    justify-content: center;
  }
  .minhas-solicitacoes-page .input-group {
    width: 100% !important;
  }
  .minhas-solicitacoes-page .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 576px) {
  .minhas-solicitacoes-page h2 {
    font-size: 1.5rem;
    text-align: center;
  }
  .minhas-solicitacoes-page .table tr td {
    padding-left: 0 !important;
  }
  .minhas-solicitacoes-page .table tr td:before {
    width: 45%;
    font-size: 0.75rem;
  }
}
.minhas-solicitacoes-page .card {
  animation: fadeInUp 0.6s ease-out;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.container-editar-dados {
  background-color: #0d0d0d;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}
.container-editar-dados .card-editar {
  background-color: #1c1c1c;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 350px;
  max-width: 600px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}
.container-editar-dados .card-editar .cabecalho {
  text-align: center;
  margin-bottom: 10px;
}
.container-editar-dados .card-editar .cabecalho h2 {
  color: #fff;
  font-family: "Hammersmith One", sans-serif;
  font-size: 2.5rem;
}
.container-editar-dados .card-editar .cabecalho .linha {
  width: 100%;
  margin: 1px 0 5px 0;
}
.container-editar-dados .card-editar .cabecalho .linha::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--azul), var(--rosa));
}
.container-editar-dados .card-editar .cabecalho p {
  color: #bbb;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.4;
}
.container-editar-dados .card-editar form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.container-editar-dados .card-editar form .input-grupo {
  display: flex;
  flex-direction: column;
  text-align: start;
  gap: 8px;
}
.container-editar-dados .card-editar form .input-grupo label {
  font-family: "Hammersmith One", sans-serif;
  letter-spacing: 0.1rem;
  color: #ccc;
  font-size: 1rem;
}
.container-editar-dados .card-editar form .input-grupo input[type=text] {
  background: #2b2b2b;
  border: 1px solid #333;
  font-family: "Open Sans", sans-serif;
  border-radius: 8px;
  padding: 10px;
  color: #fff;
  font-size: 1rem;
}
.container-editar-dados .card-editar form .input-grupo input[type=text]:focus {
  outline: none;
  border-color: var(--rosa);
  box-shadow: 0 0 4px var(--rosa);
}
.container-editar-dados .card-editar form .custom-file-upload {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #2b2b2b;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 10px;
}
.container-editar-dados .card-editar form .custom-file-upload .btn-file {
  background: linear-gradient(20deg, var(--rosa), var(--azul));
  color: #fff;
  text-shadow: rgba(0, 0, 0, 0.473) 1px 2px 4px;
  padding: 8px 15px;
  border-radius: 6px;
  cursor: pointer;
  font-family: "Hammersmith One", sans-serif;
  font-size: 1rem;
  transition: 0.3s;
}
.container-editar-dados .card-editar form .custom-file-upload .btn-file:hover {
  transform: scale(1.05);
}
.container-editar-dados .card-editar form .custom-file-upload #file-name {
  font-family: "Open Sans", sans-serif;
  color: #ccc;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 250px;
}
.container-editar-dados .card-editar form input[type=file] {
  display: none;
}
.container-editar-dados .card-editar form .preview-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background-color: #111;
  padding: 10px;
  border-radius: 10px;
}
.container-editar-dados .card-editar form .preview-box .img-box {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container-editar-dados .card-editar form .preview-box .img-box img {
  width: 130px;
  height: 130px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  padding: 3px;
  background: linear-gradient(45deg, var(--rosa), var(--azul));
}
.container-editar-dados .card-editar form .confirmacao {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ccc;
}
.container-editar-dados .card-editar form .confirmacao input[type=checkbox] {
  accent-color: #d300b7;
  width: 18px;
  height: 18px;
}
.container-editar-dados .card-editar form .botoes {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}
.container-editar-dados .card-editar form .botoes button, .container-editar-dados .card-editar form .botoes a {
  background: var(--rosa);
  font-family: "Open Sans", sans-serif;
  color: #fff;
  text-decoration: none;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.container-editar-dados .card-editar form .botoes button:hover, .container-editar-dados .card-editar form .botoes a:hover {
  transform: scale(1.05);
}
.container-editar-dados .card-editar form .botoes a {
  background-color: #333;
}
.container-editar-dados .card-editar form .botoes a:hover {
  background-color: #555;
}

/* Telas até 1024px (tablets) */
@media (max-width: 1024px) {
  .container-editar-dados {
    padding: 20px;
  }
  .card-editar {
    width: 90%;
    max-width: 500px;
    padding: 30px;
  }
  .custom-file-upload #file-name {
    max-width: 180px;
  }
}
/* Telas até 768px (celulares grandes) */
@media (max-width: 768px) {
  .card-editar {
    padding: 25px;
  }
  .cabecalho h2 {
    font-size: 2rem;
  }
  .cabecalho p {
    font-size: 1rem;
  }
  .preview-box {
    flex-direction: column;
    text-align: center;
  }
  .img-box img {
    width: 120px;
    height: 120px;
  }
  .custom-file-upload {
    flex-direction: column;
    align-items: flex-start;
  }
  .custom-file-upload #file-name {
    max-width: 100%;
  }
  .botoes {
    flex-direction: column;
    gap: 10px;
  }
  .botoes a,
  .botoes button {
    width: 100%;
    text-align: center;
  }
}
/* Telas até 480px (celulares pequenos) */
@media (max-width: 480px) {
  .card-editar {
    padding: 20px;
    min-width: unset;
  }
  .cabecalho h2 {
    font-size: 2rem !important;
  }
  .cabecalho p {
    font-size: 1.2rem !important;
    text-align: justify !important;
  }
  label {
    font-size: 1rem !important;
  }
  input[type=text] {
    font-size: 1.1rem !important;
    padding: 12px !important;
  }
  .confirmacao {
    align-items: center !important;
  }
  input[type=checkbox] {
    width: 14px !important;
    height: 14px !important;
  }
  .img-box img {
    width: 150px !important;
    height: 150px !important;
  }
  .preview-box {
    padding: 5px;
  }
  .botoes button, a {
    font-size: 1.2rem !important;
  }
}
@media (max-width: 500px) {
  /* Responsividade para telas até 500px */
  .container-editar-dados {
    padding: 20px;
  }
  .container-editar-dados .card-editar {
    width: 100%;
    min-width: unset;
    padding: 25px;
    box-shadow: none;
    border-radius: 10px;
  }
  .container-editar-dados .card-editar .cabecalho h2 {
    font-size: 1.4rem;
  }
  .container-editar-dados .card-editar .cabecalho p {
    font-size: 0.85rem;
  }
  .container-editar-dados .card-editar form {
    gap: 15px;
  }
  .container-editar-dados .card-editar form .input-grupo label {
    font-size: 0.85rem;
  }
  .container-editar-dados .card-editar form .input-grupo input[type=text],
  .container-editar-dados .card-editar form .input-grupo input[type=file] {
    font-size: 0.9rem;
    padding: 8px;
  }
  .container-editar-dados .card-editar form .preview-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }
  .container-editar-dados .card-editar form .preview-box .input-grupo {
    width: 100%;
  }
  .container-editar-dados .card-editar form .preview-box .img-box {
    width: 100%;
  }
  .container-editar-dados .card-editar form .preview-box .img-box img {
    width: 100px;
    height: 100px;
  }
  .container-editar-dados .card-editar form .confirmacao {
    align-items: flex-start;
    gap: 6px;
    font-size: 0.85rem;
  }
  .container-editar-dados .card-editar form .confirmacao input[type=checkbox] {
    width: 16px;
    height: 16px;
  }
  .container-editar-dados .card-editar form .botoes {
    flex-direction: column;
    gap: 10px;
  }
  .container-editar-dados .card-editar form .botoes button,
  .container-editar-dados .card-editar form .botoes a {
    width: 100%;
    text-align: center;
    padding: 12px;
    font-size: 0.95rem;
  }
}
.container-edit-senha, .container-senha {
  background-color: #0d0d0d;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 4%;
  padding: 20px 0 40px 0;
}
.container-edit-senha h1, .container-senha h1 {
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 0 !important;
  font-family: "Hammersmith One", sans-serif;
}
.container-edit-senha .linha, .container-senha .linha {
  margin-bottom: 3%;
  width: 30%;
  height: 3px;
  background: linear-gradient(90deg, var(--azul), var(--rosa));
  border-radius: 2px;
}
.container-edit-senha .icon-eye, .container-edit-senha .icon-eye-confirmar, .container-senha .icon-eye, .container-senha .icon-eye-confirmar {
  position: absolute;
  right: 10px;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  color: #aaa;
  cursor: pointer;
  font-size: 1.2rem;
}
.container-edit-senha form, .container-senha form {
  background-color: #1c1c1c;
  padding: 30px 35px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: -moz-fit-content;
  width: fit-content;
  width: 50%;
  min-height: 300px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
  justify-content: space-between;
}
.container-edit-senha form .input-grupo, .container-senha form .input-grupo {
  display: flex;
  align-items: center;
  background-color: #2b2b2b;
  border-radius: 10px;
  padding: 8px 10px;
  position: relative;
  border: 1px solid #333;
}
.container-edit-senha form .input-grupo input[type=password], .container-edit-senha form .input-grupo input[type=text], .container-senha form .input-grupo input[type=password], .container-senha form .input-grupo input[type=text] {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  padding: 10px;
}
.container-edit-senha form label, .container-senha form label {
  color: #ccc;
  font-size: 0.9rem;
  margin-bottom: 5px;
  display: block;
}
.container-edit-senha form .botao-verificar, .container-edit-senha form .botao-salvar, .container-senha form .botao-verificar, .container-senha form .botao-salvar {
  background: linear-gradient(20deg, var(--rosa), var(--azul));
  align-items: bottom;
  color: #fff;
  border: none;
  padding: 12px 20px;
  width: 50%;
  border-radius: 8px;
  font-size: 1.2rem !important;
  font-family: "Open Sans", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  margin: 0 auto;
  display: block;
}
.container-edit-senha form .botao-verificar:hover, .container-edit-senha form .botao-salvar:hover, .container-senha form .botao-verificar:hover, .container-senha form .botao-salvar:hover {
  transform: scale(1.05);
}

/* Tablets – 1024px para baixo */
@media (max-width: 1024px) {
  .container-edit-senha, .container-senha {
    height: 100vw;
    margin-bottom: 0;
  }
  .container-edit-senha form,
  .container-senha form {
    width: 80%;
  }
  .container-edit-senha .linha,
  .container-senha .linha {
    width: 40%;
  }
}
/* Celulares grandes – 768px para baixo */
@media (max-width: 768px) {
  .container-edit-senha, .container-senha {
    height: 100vw;
    margin-bottom: 0;
  }
  .container-edit-senha form,
  .container-senha form {
    width: 85%;
    padding: 25px 25px;
  }
  .botao-verificar,
  .botao-salvar {
    width: 75% !important;
    font-size: 1.1rem !important;
  }
  .container-edit-senha .linha,
  .container-senha .linha {
    width: 50%;
  }
}
/* Celulares pequenos – 480px para baixo */
@media (max-width: 480px) {
  .container-edit-senha, .container-senha {
    height: 100vw;
    margin-bottom: 0;
  }
  .container-edit-senha h1,
  .container-senha h1 {
    font-size: 1.9rem !important;
  }
  .container-edit-senha form,
  .container-senha form {
    width: 95% !important;
    padding: 20px !important;
  }
  .input-grupo input {
    font-size: 1rem !important;
  }
  .botao-verificar,
  .botao-salvar {
    width: 90% !important;
    font-size: 1rem !important;
  }
  .container-edit-senha .linha,
  .container-senha .linha {
    width: 85% !important;
  }
}
.login-container {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-wrap: wrap;
}
.login-container .login-img {
  width: 50%;
  height: 100vh;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.438)), url("../img/login-fundo.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.login-container .login-img .titulo-img {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 4rem;
  font-family: "Hammersmith One", sans-serif;
  color: var(--branco);
  text-shadow: 1px 1px 0 black, -1px 1px 0 black, 1px -1px 0 black, -1px -1px 0 black;
}
.login-container .login-img .titulo-img span.zu {
  color: var(--rosa);
}
.login-container .login-img::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, #0d0d0d);
  pointer-events: none;
}
.login-container .login-img a.btn-voltar {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to right, rgba(81, 112, 255, 0.5), rgba(255, 102, 196, 0.5));
  color: #fff;
  font-family: "Open Sans", sans-serif;
  text-decoration: none;
  font-size: 1.4rem;
  padding: 10px 20px;
  border-radius: 2px;
  letter-spacing: 1px;
  transition: 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}
.login-container .login-img a.btn-voltar:hover {
  opacity: 0.9;
  transform: translateX(-50%) scale(1.03);
}
.login-container .icon-eye, .login-container .icon-eye-confirmar {
  position: absolute;
  right: 10px;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  color: #aaa;
  cursor: pointer;
  font-size: 1.2rem;
}
.login-container .login-content {
  width: 50%;
  height: 100vh;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0d0d0d;
}
.login-container .login-content .login-box {
  width: 100%;
  max-width: 600px;
  background-color: #111;
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
  text-align: center;
  width: 90%;
}
.login-container .login-content .login-box h1 {
  color: #fff;
  font-size: 2.3rem;
  font-family: "Hammersmith One", sans-serif;
}
.login-container .login-content .login-box .linha {
  margin-top: 5px;
}
.login-container .login-content .login-box .linha::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--azul), var(--rosa));
}
.login-container .login-content .login-box .login-form {
  display: flex;
  flex-direction: column;
  margin-top: 10%;
  gap: 3.5rem;
}
.login-container .login-content .login-box .login-form .input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.login-container .login-content .login-box .login-form .input-wrapper:focus-within {
  padding: 4px;
  box-shadow: 0 0 6px var(--rosa);
}
.login-container .login-content .login-box .login-form .input-wrapper input {
  width: 100%;
  margin-left: 3%;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  font-size: 1.2rem;
  padding: 10px;
  color: #fff;
  outline: none;
  transition: all 0.3s ease;
}
.login-container .login-content .login-box .login-form .input-wrapper input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px #121212 inset !important;
  -webkit-text-fill-color: #fff !important;
}
.login-container .login-content .login-box .login-form .input-wrapper::after {
  content: "";
  position: absolute;
  border: none;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--azul), var(--rosa));
  z-index: 1;
}
.login-container .login-content .login-box .login-form .icon {
  position: absolute;
  top: 50%;
  margin-right: 1%;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 1.2rem;
}
.login-container .login-content .login-box .login-form .login-button {
  background: linear-gradient(90deg, var(--azul), var(--rosa));
  font-family: "Hammersmith One", sans-serif;
  font-size: 1.4rem;
  border: none;
  color: white;
  padding: 10px 0;
  border-radius: 5px;
  letter-spacing: 0.1rem;
  margin-top: 3%;
  cursor: pointer;
  transition: 0.3s ease;
}
.login-container .login-content .login-box .login-form .login-button:hover {
  opacity: 0.9;
  transform: scale(1.02);
}
.login-container .login-content .login-box p {
  font-family: "Open Sans", sans-serif;
  color: #ccc;
  margin-top: 1rem;
}
.login-container .login-content .login-box p a {
  color: var(--rosa);
  text-decoration: none;
}
.login-container .login-content .login-box p a:hover {
  color: var(--roxo);
  transition: 0.5s;
}

.cadastro-form {
  display: flex;
  flex-direction: column;
  margin-top: 10%;
  gap: 1.2rem;
}
.cadastro-form .input-wrapper {
  position: relative;
  width: 100%;
}
.cadastro-form .input-wrapper input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  font-size: 1.2rem;
  padding: 10px;
  color: #fff;
  outline: none;
  position: relative;
  z-index: 1;
}
.cadastro-form .input-wrapper input:focus {
  box-shadow: none;
}
.cadastro-form .input-wrapper input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px #121212 inset !important;
  -webkit-text-fill-color: #fff !important;
}
.cadastro-form .input-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #272727;
  z-index: 1;
}
.cadastro-form .input-wrapper:has(input:focus)::after {
  background: linear-gradient(to right, var(--azul), var(--rosa));
}
.cadastro-form small {
  position: relative;
  z-index: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 0.9rem;
  color: #b1160e;
  display: none;
}
.cadastro-form .icon-eye {
  position: absolute;
  z-index: 5;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  cursor: pointer;
  font-size: 1.2rem;
}
.cadastro-form .login-button {
  background: linear-gradient(90deg, var(--azul), var(--rosa));
  font-family: "Hammersmith One", sans-serif;
  font-size: 1.4rem;
  border: none;
  color: white;
  padding: 10px 0;
  border-radius: 5px;
  letter-spacing: 0.1rem;
  margin-top: 5%;
  cursor: pointer;
  transition: 0.3s ease;
}
.cadastro-form .login-button:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

p {
  font-family: "Open Sans", sans-serif;
  color: #ccc;
  margin-top: 1rem;
}
p a {
  color: var(--rosa);
  text-decoration: none;
}
p a:hover {
  color: var(--roxo);
  transition: 0.5s;
}

/* --- MOBILE (até 768px) --- */
@media (max-width: 768px) {
  .login-container {
    max-height: 100vh;
    display: block;
  }
  .login-container .login-img {
    width: 100%;
    height: 40vh;
    display: flex;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url("../img/login-fundo.webp") center/cover no-repeat;
    position: relative;
  }
  .login-container .login-img .titulo-img {
    top: 8%;
    font-size: 3.5rem;
  }
  .login-container .login-img a.btn-voltar {
    font-size: 1rem;
    position: fixed;
    bottom: 2%;
    left: 50%;
    transform: translateX(-50%);
    background: transparent !important;
    box-shadow: none;
    border: none;
    font-size: 1rem;
    padding: 0;
  }
  .login-container .login-img a.btn-voltar:hover {
    color: var(--rosa);
    transition: 0.5s;
  }
  .login-container .login-img a.btn-voltar svg.svg-inline--fa {
    display: none !important;
  }
  .login-container .login-img::before {
    background: linear-gradient(to bottom, transparent, #0d0d0d);
  }
  .login-container .login-content {
    align-items: center;
    width: 100%;
    height: 55vh;
    padding: 1rem 2rem;
    z-index: 10;
  }
  .login-container .login-content .login-box {
    background: transparent;
    box-shadow: none;
    padding: 0;
    width: 100%;
    max-width: 400px;
    text-align: center;
  }
  .login-container .login-content .login-box h1 {
    font-size: 1.8rem;
    margin-bottom: 0 !important;
  }
  .login-container .login-content .login-box .linha {
    margin-top: 0;
  }
  .login-container .login-content .login-box .linha::after {
    width: 95%;
    margin: 0 auto;
    display: block;
  }
  .login-container .login-content .login-box .login-form {
    margin-top: 1.5rem;
    gap: 1.8rem;
  }
  .login-container .login-content .login-box .login-form input {
    font-size: 1rem;
    margin-left: 5% !important;
  }
  .login-container .login-content .login-box .login-form .login-button {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    padding: 5px;
  }
  .login-container .login-content .login-box p {
    font-size: 1rem;
    color: var(--branco);
    margin-top: 0.5rem;
  }
  .login-container .cadastro-form {
    margin-top: 0;
    gap: 0;
  }
  .login-container .cadastro-form input {
    font-size: 1rem;
    padding: 6px;
    margin-top: 2%;
  }
  .login-container .cadastro-form .login-button {
    font-size: 1.2rem;
    padding: 5px;
  }
}
/* --- TABLET (769px a 1024px) --- */
@media (min-width: 769px) and (max-width: 1190px) {
  .login-container {
    flex-direction: row;
  }
  .login-container .login-img {
    width: 50%;
    min-height: 100vh;
    border-radius: 0;
  }
  .login-container .login-img a.btn-voltar {
    padding: 6px;
    width: 65%;
  }
  .login-container .login-content {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .login-container .login-content .login-box {
    padding: 2.5rem;
    max-width: 420px;
  }
  .login-container .login-content .login-box input {
    margin-left: 8% !important;
  }
}
.intocavel {
  display: none;
}

@media (max-width: 550px) {
  .intocavel {
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 101;
    background-color: rgba(0, 0, 0, 0.6);
    top: 0;
    right: 0;
  }
  .intocavel .sidebar {
    display: flex;
    flex-direction: column;
    width: 300px;
    height: 100dvh;
    background: linear-gradient(to top, #111, #1a1a1a);
    border-right: 1px solid #1a1717;
    position: fixed;
    left: -300;
    top: 0;
    overflow-y: auto;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    z-index: 200;
    font-family: "Open Sans", sans-serif;
  }
  .intocavel .sidebar .header-sidebar {
    width: 100%;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .intocavel .sidebar .header-sidebar::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    bottom: 0;
    background: linear-gradient(270deg, var(--rosa), var(--azul), var(--rosa));
    background-size: 200% 100%;
    animation: moveGradient 3s ease-in-out infinite;
  }
  .intocavel .sidebar .header-sidebar .empresa {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 5px;
  }
  .intocavel .sidebar .header-sidebar .empresa h1 {
    margin: 0;
    font-size: 2rem;
    font-family: "Hammersmith One", sans-serif;
    font-weight: 700;
    color: var(--branco);
    text-shadow: 1px 1px 0 black, -1px 1px 0 black, 1px -1px 0 black, -1px -1px 0 black;
    letter-spacing: 1px;
  }
  .intocavel .sidebar .header-sidebar .empresa h1 span {
    color: var(--rosa);
  }
  .intocavel .sidebar .header-sidebar .close-button {
    position: absolute;
    top: 0;
    right: 0;
    border: none;
    padding: 0;
    font-size: 27px;
    background-color: var(--bg);
    color: var(--branco);
  }
  .intocavel .sidebar .menu-section {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
    width: 100%;
    padding: 10px 20px;
    font-family: "Hammersmith One", sans-serif;
  }
  .intocavel .sidebar .menu-section .opc {
    display: inline-block;
    font-size: 1.1rem;
    color: var(--text);
    font-family: "Hammersmith One", sans-serif;
    letter-spacing: 0.05rem;
  }
  .intocavel .sidebar .menu-section hr {
    width: 80%;
    height: 1.2px;
    background-color: var(--branco);
    margin-top: 0;
    margin-bottom: 5px;
  }
  .intocavel .sidebar .menu-section h4 {
    font-size: 15px;
    color: var(--rosa);
    margin-top: 2px;
    font-weight: 600;
  }
  .intocavel .sidebar .menu-section a {
    text-decoration: none;
    color: var(--branco);
    margin-bottom: 10px;
    margin-left: 9px;
    font-size: 1.1rem;
  }
  .intocavel .sidebar .menu-section-1 {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
    width: 100%;
    padding: 10px 20px;
    font-family: "Hammersmith One", sans-serif;
  }
  .intocavel .sidebar .menu-section-1 .div-login-user img {
    width: 27px;
    height: 27px;
  }
  .intocavel .sidebar .menu-section-1 span a {
    color: var(--rosa);
  }
  .intocavel .sidebar .menu-section-1 a {
    text-decoration: none;
    font-weight: 500;
    font-size: 1.19rem;
    color: var(--branco);
    text-transform: uppercase;
    gap: 10px;
  }
  .intocavel .sidebar .rodape {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: auto;
  }
  .intocavel .sidebar .rodape .logo {
    width: 100%;
    border-top: var(--bg-lighter) 1px solid;
    padding: 10px;
  }
  .intocavel .sidebar .rodape .logo p {
    margin: 0;
    padding: 0;
    font-size: 13px !important;
  }
}
.userbar {
  background-color: var(--bg-light);
  position: relative;
  display: flex;
  width: 350px;
  height: 77vh;
  position: fixed;
  bottom: 100px;
  z-index: 110;
  right: -400px;
  align-items: center;
  border-radius: 20px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  justify-content: flex-start;
  flex-direction: column;
  gap: 30px;
}
.userbar .body .header {
  display: flex;
  flex-direction: row;
}
.userbar .body {
  width: 100%;
  height: 500px;
  margin-top: 15px;
  background-color: var(--bg-light);
  color: var(--text);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: start;
}
.userbar .body .links-userbar {
  display: flex;
  flex-direction: column;
  background-color: var(--bg-light);
  height: 290px;
  margin-top: -90px;
  width: 100%;
  font-family: "Hammersmith One", sans-serif;
  font-size: 19px;
}
.userbar .body .links-userbar .icon a:hover {
  background-color: var(--bg-morelighter);
  color: white;
  transition: 0.5s ease-out;
}
.userbar .body .links-userbar .icon a:hover strong {
  color: white;
}
.userbar .body .links-userbar .icon a:hover strong .deleta {
  color: rgb(231, 117, 220);
}
.userbar .body .links-userbar a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px;
  text-decoration: none;
  color: var(--text);
  text-align: start;
  letter-spacing: 0.02rem;
}
.userbar .body .links-userbar strong {
  color: rgb(227, 146, 219);
}
.userbar .body .links-userbar #icon1 {
  display: flex;
  /* inline mas com flex para centralizar */
  flex-direction: row;
  align-items: center;
  width: 17px;
  height: 17px;
  padding: 13px;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--bg-lighter);
  flex-shrink: 0;
}
.userbar .body .links-userbar #icon2 {
  display: flex;
  flex-direction: row;
  /* inline mas com flex para centralizar */
  margin-left: auto;
  flex-shrink: 0;
  font-size: 20px;
}
.userbar .body .links-userbar .icon i {
  color: red;
}
.userbar .body .links-userbar a:last-child {
  border-bottom: none;
}
.userbar .body .img-userbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  order: -1;
  /* manda a imagem para cima */
  margin-top: -60px;
  margin-left: 3%;
  padding: 10px;
  gap: 15px;
}
.userbar .body .img-userbar img {
  width: 60px;
  height: 58px;
  -o-object-fit: cover;
     object-fit: cover;
  /* garante que a imagem não distorça */
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
}
.userbar .body .img-userbar h2 {
  margin: 0;
  color: var(--text);
  font-size: 20px;
  align-items: center;
  padding-top: 10px;
  font-family: "Hammersmith One", sans-serif;
  text-align: center;
  width: 200px;
  max-width: 200px;
}
.userbar .body .img-userbar button {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  font-size: 32px;
  color: var(--text);
  margin-top: -10px;
  margin-left: auto;
}
.userbar .body .img-userbar button :hover {
  transition: 0.2s ease-out;
  color: rgb(227, 146, 219);
}
.userbar .body .img-userbar button {
  margin-left: auto;
}
.userbar .footer {
  background-color: var(--bg-light);
  color: var(--text-muted);
  width: 100%;
  padding: 15px;
  border-radius: 20px;
  margin-top: -40px;
  font-size: 15px;
}

@media (max-width: 500px) {
  .userbar {
    display: none;
  }
}
@keyframes moveGradient {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 0%;
  }
}
@keyframes waveZap {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.15;
  }
}
.whatsapp-fixo {
  position: fixed;
  top: 85%;
  right: 2%;
  background: linear-gradient(145deg, #25d366, #20ba5a);
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px !important;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.whatsapp-fixo::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid #25d366;
  animation: waveZap 2.2s infinite ease-out;
  z-index: -1;
}
.whatsapp-fixo i {
  transition: transform 0.3s ease;
}
.whatsapp-fixo:hover {
  transform: scale(1.2);
  color: white;
}
.whatsapp-fixo:hover i {
  transform: rotate(-20deg) scale(1.1);
}

.footer-desktop {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  width: 100%;
  min-height: 220px;
  padding: 30px 50px;
  background: transparent;
  color: #f5f5f5;
  font-family: "Open Sans", sans-serif;
  z-index: 1;
  overflow: hidden;
}
.footer-desktop::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(270deg, var(--rosa), var(--azul), var(--rosa));
  background-size: 200% 100%;
  animation: moveGradient 3s ease-in-out infinite;
}
.footer-desktop .zu-v-mobile {
  display: none;
  font-size: 1.8rem;
  font-family: "Hammersmith One", sans-serif;
  font-weight: 700;
  color: var(--branco);
  text-shadow: 1px 1px 0 black, -1px 1px 0 black, 1px -1px 0 black, -1px -1px 0 black;
  letter-spacing: 1px;
}
.footer-desktop .zu {
  color: var(--rosa);
}
.footer-desktop a {
  color: #f5f5f5;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-desktop a:hover {
  color: var(--rosa);
  transform: translateY(-2px);
}
.footer-desktop a.v-mobile:hover {
  color: inherit;
}
.footer-desktop .footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 45%;
}
.footer-desktop .footer-left h1 {
  font-size: 1.8rem;
  font-family: "Hammersmith One", sans-serif;
  font-weight: 700;
  color: var(--branco);
  text-shadow: 1px 1px 0 black, -1px 1px 0 black, 1px -1px 0 black, -1px -1px 0 black;
  letter-spacing: 1px;
}
.footer-desktop .footer-left span.zu {
  color: var(--rosa);
}
.footer-desktop .footer-left p {
  color: #ccc;
  font-size: 0.85rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.footer-desktop .footer-left .footer-icons {
  display: flex;
  gap: 15px;
  margin-top: 6px;
}
.footer-desktop .footer-left .footer-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}
.footer-desktop .footer-left .footer-icons a:hover {
  background: var(--rosa);
  color: #fff;
  transform: scale(1.08);
}
.footer-desktop .footer-right {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 20px;
  position: relative;
}
.footer-desktop .footer-right .footer-links ul {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
}
.footer-desktop .footer-right .footer-links ul a.active {
  color: var(--rosa);
}
.footer-desktop .footer-right .footer-links ul a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2.5px;
  background: linear-gradient(90deg, var(--azul), var(--rosa));
}
.footer-desktop .footer-right .footer-links ul li a {
  font-size: 0.95rem !important;
  font-weight: 500;
  position: relative;
  text-transform: uppercase;
}
.footer-desktop .footer-right .footer-links ul li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -4px;
  background: linear-gradient(90deg, var(--rosa), var(--azul));
  transition: width 0.3s ease;
}
.footer-desktop .footer-right .footer-links ul li a:hover::after {
  width: 100%;
}
.footer-desktop .footer-right .footer-links ul li a.v-mobile-romove {
  display: inline;
}
.footer-desktop .footer-right .footer-links ul li a.v-mobile {
  display: none;
}
.footer-desktop .footer-right .footer-links ul li a.v-mobile::after {
  content: none;
}
.footer-desktop .footer-right .footer-links ul li a.v-mobile:hover::after {
  width: 0;
}
.footer-desktop .footer-right .footer-links ul li a.span.responsivo {
  display: inline;
}
.footer-desktop .footer-right .footer-links2 .termos {
  font-size: 0.8rem;
  color: #aaa;
}
.footer-desktop .footer-right .footer-links2 .termos a {
  color: #aaa;
  margin-left: 4px;
}
.footer-desktop .footer-right .footer-links2 .termos a:hover {
  color: var(--rosa);
}

/* Notebooks menores | Ipads grandes */
@media (max-width: 1013px) {
  .footer-desktop .footer-left {
    gap: 5px;
    width: 50%;
  }
  .footer-desktop .footer-right .footer-links ul li a.v-mobile-romove {
    display: none;
  }
  .footer-desktop .footer-right .footer-links ul li a.v-mobile {
    display: inline;
  }
}
@media (max-width: 800px) {
  .footer-desktop {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  .footer-desktop .zu-v-mobile {
    display: inline;
  }
  .footer-desktop .footer-left {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    order: 2;
  }
  .footer-desktop .footer-left h1 {
    display: none;
  }
  .footer-desktop .footer-left p {
    font-size: 0.7rem;
    order: 2;
  }
  .footer-desktop .footer-left .footer-icons {
    order: 1;
  }
  .footer-desktop .footer-left .footer-icons a {
    font-size: 1.6rem;
  }
  .footer-desktop .footer-right {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    order: 1;
    gap: 15px;
  }
  .footer-desktop .footer-right .footer-links {
    order: 1;
  }
  .footer-desktop .footer-right .footer-links ul li a.v-mobile-romove {
    display: none;
  }
  .footer-desktop .footer-right .footer-links ul li a.v-mobile {
    display: inline;
  }
  .footer-desktop .footer-right .footer-links ul li a.pergunta-mobile {
    position: relative;
  }
  .footer-desktop .footer-right .footer-links ul li a.pergunta-mobile::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -4px;
    background: linear-gradient(90deg, var(--rosa), var(--azul));
    transition: width 0.3s ease;
  }
  .footer-desktop .footer-right .footer-links ul li a.pergunta-mobile.cliked::after {
    width: 100%;
  }
  .footer-desktop .footer-right .footer-links ul li a.pergunta-mobile.cor {
    color: var(--rosa);
    transform: translateY(-2px);
  }
  .footer-desktop .footer-right .footer-links2 {
    order: 2;
  }
  .footer-desktop .footer-right .footer-links2 .termos a {
    font-size: 0.85rem !important;
  }
}/*# sourceMappingURL=style.css.map */