/* =========================
   DESIGN TOKENS / VARIÁVEIS
   ========================= */
:root{
  /* Cores de marca */
  --brand-bg:        #EFE6DD;
  --brand-dark:      #333333;
  --brand-carousel:  #222222;
  --brand-light:     #ffffff;
  --brand-accent:    #d35e8f; /* Rosa */
  --brand-accent-2:  #c80053; /* Terciária */
  --brand-card-bg:   #D4CCC5; /* Background dos cards de login/cadastro */
  --brand-text:      #474747; /* Cor dos textos em forms */

  /* Texto */
  --text-dark:  var(--brand-dark);
  --text-light: var(--brand-light);

  /* Layout / efeitos */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 13px;
  --shadow-sm: 0 4px 12px rgba(0,0,0,.1);
  --shadow-md: 0 5px 15px rgba(0,0,0,.08);
  --transition: .3s ease;
}

/* Paleta de referência:
   #FFFFFF branco / #000000 preto / #D35E8F rosa */

/* =============
   BASE GLOBAL
   ============= */
html, body{
  min-height: 100%;
}
body{
  background: var(--brand-bg);
  color: var(--text-dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
main{ flex: 1; }

/* Tipografia extra */
@font-face{
  font-family: 'Vintage';
  font-display: swap;
  src: url('Fontes/Vintage.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

/* Reduz animações para quem prefere */
@media (prefers-reduced-motion: reduce){
  *{ animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* Ajustes para telas monocromáticas */
@media (monochrome: 1){
  body{ filter: contrast(1.2) brightness(1.1); }
  .btn-primary, .btn-secondary{ filter: brightness(.9); }
}

/* ======================
   BARRA DE NAVEGAÇÃO
   ====================== */
header {
  background: linear-gradient(135deg, var(--brand-dark) 0%, #2a2a2a 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .3);
  animation: headerSlideDown .6s ease-out;
  position: relative;
}

header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-accent), transparent);
  opacity: .6;
}

nav{
  background: transparent;
  padding: 1vh 0 0 0;
  min-height: 15vh;
  margin-bottom: 0;
  position: relative;
}

@keyframes headerSlideDown {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bg-alert{
  background: transparent !important;
}

.navbar-brand{
  /* Tipografia fluida com clamp em vez de vh */
  font-family: 'Vintage', sans-serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 1rem + 1.2vw, 2rem);
  line-height: 1;
  color: var(--text-light);
  margin-right: 5vh;
  transition: all var(--transition);
  position: relative;
}
.navbar-brand::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-accent), var(--brand-accent-2));
  transition: width var(--transition);
}
.navbar-brand:hover{
  color: var(--brand-accent);
  transform: translateY(-2px);
}
.navbar-brand:hover::after {
  width: 100%;
}

.navbar-toggler{
  border: 2px solid rgba(255, 255, 255, .1);
  transition: all var(--transition);
  border-radius: 8px;
  padding: .5rem;
}
.navbar-toggler:hover {
  border-color: var(--brand-accent);
  background: rgba(211, 94, 143, .1);
  transform: scale(1.05);
}
.navbar-toggler:focus {
  box-shadow: 0 0 0 .25rem rgba(211, 94, 143, .25);
}

.navbar-collapse{ justify-content: flex-end; }

nav .nav-link{
  text-decoration: underline;
  color: var(--text-light);
  /* Tipografia fluida com clamp em vez de vh */
  font-size: clamp(.95rem, .8rem + .5vw, 1.2rem);
  margin-right: 2.5vh;
  transition: all var(--transition);
  position: relative;
}
nav .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--brand-accent);
  transform: translateX(-50%);
  transition: width var(--transition);
}
nav .nav-link:hover{
  text-decoration: none;
  color: var(--brand-accent);
  transform: translateY(-2px);
}
nav .nav-link:hover::before {
  width: 80%;
}

/* ==============================
   CONTAINERS / LAYOUT GERAL
   ============================== */
.container-custom{
  display: flex;
  align-items: center;
  gap: 5vh;
  margin: 10vh auto;
  border-radius: 9px;
  padding: 2vh;
}

/* ===============================
   LOGO / TEXTO / LABELS / CAMPOS
   =============================== */
#logotext{
  font-family: 'Vintage', sans-serif;
  /* Tipografia fluida com clamp em vez de vh */
  font-size: clamp(1rem, .7rem + .9vw, 1.4rem);
  color: var(--text-light);
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .3);
  transition: all var(--transition);
}
.logo-container{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  animation: logoFadeIn .8s ease-out .3s both;
}

@keyframes logoFadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) scale(.8);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}

#logo{
  height: auto;
  max-height: 80px;
  width: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .3));
  transition: all var(--transition);
}

.navbar-brand:hover #logo{
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 6px 12px rgba(211, 94, 143, .4));
}

.navbar-brand:hover #logotext{
  color: var(--brand-accent);
  transform: scale(1.05);
  text-shadow: 0 4px 8px rgba(211, 94, 143, .4);
}

label,
#preco{
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1vh;
  display: block;
}
label{ font-size: 2vh; }
#preco{ font-size: 2.5vh; }

/* Estados de input */
input:invalid{
  border: 1px solid red;
  border-radius: var(--radius-sm);
  outline: 0;
}
input[type="text"]:valid,
input[type="number"]:valid,
input[type="email"]:valid,
input[type="tel"]:valid{
  border: 1px solid green;
  border-radius: var(--radius-sm);
  outline: 0;
}

/* Utilidades */
.ms-custom{ margin-left: 5rem; }
.mb-4{ color: var(--text-dark); }

/* Manter clique acima do overlay de imagem no card do produto */
.produto-card .btn,
.produto-card form{
  position: relative; z-index: 2;
}

/* ===============================
   AVATAR / USUÁRIO
   =============================== */
.avatar-container {
  position: relative;
  z-index: 2;
}
.avatar-container .link{ text-decoration: none; }
.avatar-container .avatar{
  position: relative;
  border: 3px solid transparent;
  transition: all var(--transition);
}

.avatar-container:hover .avatar {
  border-color: var(--brand-accent);
  box-shadow: 0 0 15px rgba(211, 94, 143, .5);
  transform: scale(1.1);
}

.avatar-container .user-name{
  opacity: 0;
  visibility: hidden;
  font-size: 1rem;
  color: var(--text-light);
  margin-right: .5vw;
  font-weight: 600;
  text-transform: capitalize;
  transition: all var(--transition);
  transform: translateX(10px);
}
.avatar-container:hover .user-name{
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  text-shadow: 0 2px 4px rgba(0, 0, 0, .3);
}

/* Dropdown */
.dropdown-toggle{
  transition: all var(--transition);
}
.dropdown-toggle:hover {
  filter: brightness(1.2);
}
.dropdown-toggle:focus{
  box-shadow: none;
  outline: 0;
}
.dropdown-toggle::after{ border-top-color: transparent; }

/* ===============================
   SIDEBAR (Offcanvas)
   =============================== */
.offcanvas{
  background: linear-gradient(180deg, var(--brand-dark) 0%, #1a1a1a 100%);
  width: 280px;
  border-right: 4px solid var(--brand-accent);
  box-shadow: 4px 0 20px rgba(0, 0, 0, .5);
  backdrop-filter: blur(10px);
}

.offcanvas-header{
  border-bottom: 2px solid rgba(211, 94, 143, .3);
  padding: 1.5rem;
  background: rgba(211, 94, 143, .1);
  position: relative;
  z-index: 2;
}

.offcanvas-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-accent), transparent);
}

.offcanvas-title{
  color: var(--text-light);
  font-family: 'Vintage', sans-serif;
  font-size: 1.75rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .3);
  animation: titlePulse 2s ease-in-out infinite;
}

@keyframes titlePulse {
  0%, 100% {
    text-shadow: 0 2px 4px rgba(0, 0, 0, .3);
  }
  50% {
    text-shadow: 0 2px 8px rgba(211, 94, 143, .5);
  }
}

.offcanvas .nav-link{
  color: var(--text-light);
  font-size: 1.1rem;
  padding: .85rem 1.25rem;
  margin: .5rem .75rem;
  border-radius: 12px;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.offcanvas .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(211, 94, 143, .3), transparent);
  transition: left .5s;
}

.offcanvas .nav-link:hover::before {
  left: 100%;
}

.offcanvas .nav-link:hover{
  background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-accent-2) 100%);
  color: var(--brand-light);
  transform: translateX(8px) scale(1.03);
  box-shadow: 0 4px 12px rgba(211, 94, 143, .4);
  border-color: rgba(255, 255, 255, .2);
}

.offcanvas .nav-link.active{
  background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-accent-2) 100%);
  color: var(--brand-light);
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(211, 94, 143, .5);
  border-color: rgba(255, 255, 255, .3);
}

.offcanvas-body{
  padding: 1.5rem .5rem;
  display: flex;
  flex-direction: column;
}

.offcanvas-body .navbar-nav {
  animation: menuFadeIn .6s ease-out .2s both;
}

@keyframes menuFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.offcanvas-body .nav-item {
  animation: itemSlideIn .4s ease-out both;
}

.offcanvas-body .nav-item:nth-child(1) { animation-delay: .1s; }
.offcanvas-body .nav-item:nth-child(2) { animation-delay: .2s; }
.offcanvas-body .nav-item:nth-child(3) { animation-delay: .3s; }
.offcanvas-body .nav-item:nth-child(4) { animation-delay: .4s; }
.offcanvas-body .nav-item:nth-child(5) { animation-delay: .5s; }

@keyframes itemSlideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.btn-close-white{
  filter: invert(1) grayscale(100%) brightness(200%);
  transition: all var(--transition);
  border-radius: 50%;
  padding: .5rem;
}

.btn-close-white:hover {
  background: rgba(211, 94, 143, .3);
  transform: rotate(90deg) scale(1.1);
}

.sidebar-icon{
  width: 24px;
  height: 24px;
  margin-right: 14px;
  display: inline-block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .3));
  transition: all var(--transition);
}

.offcanvas .nav-link:hover .sidebar-icon {
  transform: scale(1.2) rotate(5deg);
  filter: drop-shadow(0 4px 8px rgba(255, 255, 255, .5));
}

/* ===============================
   CARROSSEL
   =============================== */
.carousel{ margin: 0 0 2rem; }
.carousel-item{
  /* Menos vh pra evitar jumps */
  height: clamp(200px, 35vh, 520px);
  overflow: hidden;
}
.carousel-item img{ object-fit: cover; width: 100%; height: 100%; }

.carousel-caption{
  border-radius: var(--radius-md);
  padding: 20px; bottom: 30px;
  background: rgba(0,0,0,.3);
}
.carousel-caption h3,
.carousel-caption p{
  color: var(--text-light);
}
.carousel-caption h3{ font-size: 2rem; font-weight: 700; margin-bottom: 10px; }
.carousel-caption p{ font-size: 1.2rem; }

.carousel-control-prev,
.carousel-control-next{ width: 5%; }
.carousel-indicators{ bottom: 10px; }

@media (max-width: 768px){
  .carousel-item{ height: 200px; }
  .carousel-caption h3{ font-size: 1.5rem; }
  .carousel-caption p{ font-size: 1rem; }
}

/* ===============================
   CARDS / LISTA DE PRODUTOS
   =============================== */
#productsContainer{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
}

#productsContainer.single-card {
  display: flex;
  justify-content: center;
}

#productsContainer.single-card .produto-card {
  max-width: 350px;
}

.produto-card{
  display: flex; flex-direction: column;
  width: 100%;
  height: 100%;
  transition: transform var(--transition), border var(--transition), border-radius var(--transition);
}

.produto-card .card-body{
  flex: 1 1 auto;
  display: flex; flex-direction: column; justify-content: space-between; align-items: stretch;
  padding: 16px; min-height: 0;
}

/* Texto do card */
.card-text{
  color: var(--text-dark);
  max-height: 4.5rem; /* ~3 linhas */
  overflow: hidden; text-overflow: ellipsis;
  margin-bottom: 1rem;
}

.produto-card .card-body .d-flex{ margin-top: .5rem; gap: .75rem; }
.produto-card .btn{ width: auto; }

.card{
  border: none;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  background: var(--text-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(211, 94, 143, .03) 0%, rgba(200, 0, 83, .03) 100%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.card:hover{
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 12px 24px rgba(0,0,0,.15), 0 0 0 2px var(--brand-accent);
}
.card:hover::before {
  opacity: 1;
}

/* Animação de entrada do card */
@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card {
  animation: cardFadeIn .5s ease-out;
}

.card-title{
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom:.5rem;
}

.card-img-top{
  width: 100%;
  aspect-ratio: 16 / 10; /* Evita pulo de layout */
  object-fit: cover; object-position: center;
  display: block; margin: 0 auto;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

/* Badge de preço sempre visível, consistente */
#preco{ margin:.25rem 0 .5rem; }

/* ===============================
   BOTÕES
   =============================== */
.btn-primary{
  background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-accent-2) 100%);
  border: none;
  color: white;
  font-weight: 700;
  padding: .75rem 2rem;
  border-radius: 8px;
  transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(211, 94, 143, .3);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .3);
  transform: translate(-50%, -50%);
  transition: width .6s, height .6s;
}
.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}
.btn-primary:hover,
.btn-primary:focus{
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 20px rgba(211, 94, 143, .4);
  color: white;
}
.btn-primary:active {
  transform: translateY(0) scale(.98);
}

.btn-secondary{
  background: white;
  border: 2px solid var(--brand-accent);
  color: var(--brand-accent);
  font-weight: 600;
  padding: .65rem 1.75rem;
  border-radius: 8px;
  transition: all var(--transition);
}
.btn-secondary:hover,
.btn-secondary:focus{
  background: var(--brand-accent);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(211, 94, 143, .3);
}

/* Efeito de pulse para botões importantes */
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(211, 94, 143, .3);
  }
  50% {
    box-shadow: 0 4px 20px rgba(211, 94, 143, .5);
  }
}

.btn-primary:not(:disabled):not(.disabled) {
  animation: pulse 2s infinite;
}

/* ===============================
   FORMULÁRIOS
   =============================== */
.form-control,
.form-select{
  border: 1px solid #ddd;
  border-radius: 8px;
  padding:.75rem 1rem;
  font-size: 1rem;
  transition: all var(--transition);
  background-color: #fff;
}
.form-control:hover{
  border-color: var(--brand-accent);
  box-shadow: 0 2px 8px rgba(211, 94, 143, .1);
}
.form-control:focus,
.form-select:focus{
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 .25rem rgba(211, 94, 143, .15), 0 4px 12px rgba(211, 94, 143, .1);
  transform: translateY(-1px);
}

/* Feedback visual para campos válidos/inválidos */
.form-control:valid:not(:placeholder-shown) {
  border-color: #28a745;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(.375em + .1875rem) center;
  background-size: calc(.75em + .375rem) calc(.75em + .375rem);
  padding-right: calc(1.5em + .75rem);
}

.form-control:invalid:not(:placeholder-shown) {
  border-color: #dc3545;
}

/* Animação de foco nos inputs */
@keyframes inputFocus {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

.form-control:focus {
  animation: inputFocus .3s ease;
}

.form-select{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23D4AA7D' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.form-label{
  color: var(--brand-dark);
  font-weight: 600;
  margin-bottom:.5rem;
}

.form-check-input:checked{
  background-color: var(--brand-accent);
  border-color: var(--brand-accent);
}

.card.p-4{
  background: var(--text-light);
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  background-color: #D4CCC5;
}

/* Auth Cards e Formulários */
.auth-card {
  background-color: var(--brand-dark);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 2rem;
  margin: 2rem auto;
  max-width: 500px;
  color: white;
}

.auth-card .form-label {
  color: white;
  font-weight: 600;
  margin-bottom: .5rem;
}

.auth-card .form-control {
  background-color: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: white;
}

.auth-card .form-control::placeholder {
  color: rgba(255, 255, 255, .5);
}

.auth-card .form-control:focus {
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 .25rem rgba(211, 94, 143, .25);
  background-color: rgba(255, 255, 255, .15);
}

.auth-card .btn-success {
  background-color: var(--brand-accent);
  border-color: var(--brand-accent);
  transition: var(--transition);
  font-weight: 600;
}

.auth-card .btn-success:hover {
  background-color: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: translateY(-2px);
}

.auth-links {
  margin-top: 1.5rem;
  text-align: center;
}

.auth-links a {
  color: var(--brand-accent);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  margin: .5rem;
}

.auth-card .auth-links a {
  color: var(--brand-accent);
}

.auth-card .auth-links a:hover {
  color: var(--brand-accent-2);
}

.auth-links a:hover {
  color: var(--brand-dark);
  text-decoration: underline;
}

.form-check-label {
  color: var(--brand-text);
}

.form-floating > label {
  color: var(--brand-text);
}

fieldset{
  border-color: var(--brand-accent-2);
  background: rgba(144,169,183,.1);
}
legend{
  font-weight: 600;
  color: var(--brand-dark);
}

/* ===============================
   DROPDOWNS
   =============================== */
.dropdown-menu{
  background: linear-gradient(135deg, var(--brand-dark) 0%, #2a2a2a 100%);
  border: 2px solid var(--brand-accent);
  border-radius: 12px;
  padding: .75rem .5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .4);
  animation: dropdownSlideIn .3s ease-out;
  backdrop-filter: blur(10px);
  min-width: 200px;
}

@keyframes dropdownSlideIn {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.dropdown-item{
  color: var(--text-light);
  padding: .75rem 1rem;
  margin: .25rem 0;
  border-radius: 8px;
  transition: all var(--transition);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown-item img {
  transition: all var(--transition);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .3));
}

.dropdown-item:hover{
  background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-accent-2) 100%);
  color: var(--brand-light);
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(211, 94, 143, .3);
}

.dropdown-item:hover img {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 4px 8px rgba(255, 255, 255, .5));
}

.dropdown-item:active {
  transform: translateX(3px) scale(.98);
}

.dropdown-divider {
  border-top: 1px solid rgba(211, 94, 143, .3);
  margin: .5rem 0;
  box-shadow: 0 1px 2px rgba(211, 94, 143, .1);
}

.dropdown-item.text-danger {
  color: #ff6b6b !important;
  font-weight: 600;
}

.dropdown-item.text-danger:hover {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
  color: white !important;
}

/* ===============================
   FOOTER
   =============================== */
.footer{
  background: linear-gradient(135deg, var(--brand-dark) 0%, #1a1a1a 100%);
  color: var(--text-light);
  padding: 3rem 0 2rem;
  width: 100%;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, .3);
  position: relative;
  margin-top: auto;
  border-top: 3px solid var(--brand-accent);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-accent), var(--brand-accent-2), var(--brand-accent));
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .6;
  }
}

.footer .container {
  animation: footerFadeIn .8s ease-out;
}

@keyframes footerFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer h5{
  font-weight: 700;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  color: var(--brand-accent);
  text-shadow: 0 2px 4px rgba(0, 0, 0, .3);
  position: relative;
  padding-bottom: .75rem;
}

.footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-accent), transparent);
  border-radius: 2px;
}

.footer p{
  margin-bottom:.75rem;
  font-size: 1rem;
  line-height: 1.6;
  transition: all var(--transition);
}

.footer p:hover {
  transform: translateX(5px);
  color: var(--brand-accent);
}

.footer a{
  color: var(--brand-accent);
  text-decoration: none;
  transition: all var(--transition);
  position: relative;
  font-weight: 600;
}

.footer a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-accent);
  transition: width var(--transition);
}

.footer a:hover {
  color: var(--brand-accent-2);
  text-shadow: 0 0 10px rgba(211, 94, 143, .5);
}

.footer a:hover::after {
  width: 100%;
}

.footer .col-md-4 {
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 8px;
  transition: all var(--transition);
}

.footer .col-md-4:hover {
  background: rgba(211, 94, 143, .05);
  transform: translateY(-5px);
}

.footer .btn-outline-secondary {
  border-color: var(--brand-accent);
  color: var(--brand-accent);
  transition: all var(--transition);
  font-size: .9rem;
  padding: .4rem .8rem;
  border-radius: 6px;
}

.footer .btn-outline-secondary:hover {
  background: var(--brand-accent);
  color: white;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(211, 94, 143, .4);
}

/* Responsividade do footer */
@media (max-width: 768px) {
  .footer {
    padding: 2rem 0 1.5rem;
  }

  .footer h5 {
    font-size: 1.25rem;
  }

  .footer p {
    font-size: .95rem;
  }

  .footer .col-md-4 {
    margin-bottom: 1rem;
  }
}

/* ===============================
   BARRA DE PESQUISA
   =============================== */
.search-bar{
  height: auto;
  width: 100%;
  max-width: 500px;
  position: relative;
  animation: searchBarSlideUp .6s ease-out .4s both;
}

@keyframes searchBarSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.search-input{
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, .2);
  border-radius: 25px;
  color: var(--text-light);
  height: 45px;
  padding: .75rem 1.25rem;
  font-size: 1rem;
  transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
}

.search-input::placeholder{
  color: rgba(255,255,255,.7);
  font-weight: 500;
}

.search-input:focus{
  background: rgba(255, 255, 255, .15);
  border: 2px solid var(--brand-accent);
  box-shadow: 0 0 20px rgba(211, 94, 143, .4), 0 4px 12px rgba(0, 0, 0, .3);
  outline: 0;
  transform: translateY(-2px);
}

.search-input:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(211, 94, 143, .5);
}

.btn-search-icon {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-search-icon:hover {
  transform: scale(1.1);
}

.btn-search-icon:active {
  transform: scale(.95);
}

.search-button{
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-2));
  border: none;
  padding:.6rem;
  border-radius: 50%;
  transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(211, 94, 143, .3);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-button img{
  filter: brightness(0) invert(1);
  transition: transform var(--transition);
}

.search-button:hover{
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(211, 94, 143, .5);
  cursor: pointer;
}

.search-button:active {
  transform: scale(.95);
}

/* Container da barra de pesquisa - unificado com header */
.container.my-3.d-flex.justify-content-center{
  background: transparent;
  border-radius: 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding: 1rem 0 2rem 0;
  width: 100%;
  max-width: 100%;
  z-index: 1;
  position: relative;
  border: none;
}

/* ===============================
   FORMULÁRIOS DE LOGIN E CADASTRO
   =============================== */

/* Password Toggle Button */
.password-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-input-wrapper .form-control {
  padding-right: 3rem;
}

.password-toggle-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  padding: .5rem .75rem;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: 0 8px 8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.password-toggle-btn:hover {
  background: rgba(211, 94, 143, .1);
}

.password-toggle-btn:active {
  transform: translateY(-50%) scale(.95);
}

.password-toggle-btn .eye-icon {
  width: 24px;
  height: 24px;
  transition: all var(--transition);
  filter: grayscale(1) opacity(.6);
}

.password-toggle-btn:hover .eye-icon {
  filter: grayscale(0) opacity(1);
  transform: scale(1.1);
}

/* Stepper */
.stepper-wrapper {
  display: flex;
  justify-content: space-between;
  margin: 2rem 0;
  position: relative;
}

.stepper-wrapper::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 0;
  right: 0;
  height: 3px;
  background: #e0e0e0;
  z-index: 0;
}

.stepper-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  z-index: 1;
}

.stepper-counter {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e0e0e0;
  border: 3px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #999;
  transition: all var(--transition);
  position: relative;
  z-index: 2;
}

.stepper-name {
  margin-top: .75rem;
  font-size: .9rem;
  color: #666;
  font-weight: 600;
  text-align: center;
  transition: all var(--transition);
}

.stepper-item.active .stepper-counter {
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-2));
  border-color: var(--brand-accent);
  color: white;
  box-shadow: 0 4px 12px rgba(211, 94, 143, .4);
  transform: scale(1.1);
}

.stepper-item.active .stepper-name {
  color: var(--brand-accent);
  font-weight: 700;
}

.stepper-item.completed .stepper-counter {
  background: var(--brand-accent);
  border-color: var(--brand-accent);
  color: white;
}

.stepper-item.completed .stepper-counter::after {
  content: '✓';
  position: absolute;
  font-size: 1.4rem;
  font-weight: 700;
}

.stepper-item.completed .stepper-name {
  color: var(--brand-accent);
}

/* Form Steps */
.form-step {
  display: none;
  animation: fadeSlideIn .4s ease-out;
}

.form-step.active {
  display: block;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Form Navigation */
.form-navigation {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: space-between;
}

.form-navigation .btn {
  flex: 1;
  max-width: 200px;
  font-weight: 600;
  padding: .75rem 1.5rem;
  transition: all var(--transition);
}

.form-navigation .btn:hover {
  transform: translateY(-2px);
}

.form-navigation .btn:active {
  transform: translateY(0);
}

/* Auth Card Melhorias */
.auth-card {
  animation: authCardFadeIn .6s ease-out;
}

@keyframes authCardFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.auth-card h2 {
  color: white;
  font-weight: 700;
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.auth-card h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-accent), var(--brand-accent-2));
  border-radius: 2px;
}

.auth-card .form-control:focus {
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 .25rem rgba(211, 94, 143, .15);
  transform: translateY(-1px);
  background-color: rgba(255, 255, 255, .15);
}

.auth-card .form-label {
  font-weight: 600;
  color: white;
  margin-bottom: .5rem;
}

.auth-card .btn-success {
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-2));
  border: none;
  font-weight: 700;
  padding: .75rem;
  transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(211, 94, 143, .3);
}

.auth-card .btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(211, 94, 143, .4);
}

.auth-card .btn-success:active {
  transform: translateY(0);
}

.cadastro-card {
  max-width: 100%;
}

/* Elementos de texto dentro do auth-card */
.auth-card h3,
.auth-card h4,
.auth-card h5,
.auth-card h6 {
  color: white;
}

.auth-card .text-muted {
  color: rgba(255, 255, 255, .7) !important;
}

.auth-card .form-text {
  color: rgba(255, 255, 255, .6);
}

.auth-card .form-check-label {
  color: white;
}

.auth-card .form-check-label a {
  color: var(--brand-accent);
  text-decoration: underline;
}

.auth-card .form-check-label a:hover {
  color: var(--brand-accent-2);
}

.auth-card .invalid-feedback {
  color: #ff6b6b;
}

.auth-card .form-control.is-invalid {
  border-color: #ff6b6b;
  background-color: rgba(255, 107, 107, .1);
}

.auth-card select.form-control option {
  background-color: var(--brand-dark);
  color: white;
}

.auth-card .btn-secondary {
  background-color: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .3);
  color: white;
}

.auth-card .btn-secondary:hover {
  background-color: rgba(255, 255, 255, .2);
  border-color: rgba(255, 255, 255, .4);
}

.auth-card .btn-primary {
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-2));
  border: none;
  color: white;
}

.auth-card .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(211, 94, 143, .4);
}

.auth-card .btn-outline-secondary {
  border-color: rgba(255, 255, 255, .3);
  color: white;
  background-color: transparent;
}

.auth-card .btn-outline-secondary:hover {
  background-color: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .4);
  color: white;
}

.auth-card input[type="date"],
.auth-card input[type="time"],
.auth-card input[type="datetime-local"] {
  color-scheme: dark;
}

.auth-card .alert {
  background-color: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .2);
  color: white;
}

.auth-card .alert-danger {
  background-color: rgba(255, 107, 107, .2);
  border-color: #ff6b6b;
  color: #ffcccc;
}

.auth-card .alert-success {
  background-color: rgba(76, 175, 80, .2);
  border-color: #4caf50;
  color: #c8e6c9;
}

.auth-card .alert-info {
  background-color: rgba(33, 150, 243, .2);
  border-color: #2196f3;
  color: #bbdefb;
}

/* ===== Área do Cliente ===== */
.area-cliente-container {
  animation: fadeIn .6s ease-out;
}

/* Profile Card */
.profile-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
  overflow: hidden;
  transition: all var(--transition);
  animation: slideInLeft .6s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.profile-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
  transform: translateY(-4px);
}

.profile-card-header {
  background: linear-gradient(135deg, var(--brand-dark), #2a2a2a);
  padding: 3rem 2rem 2rem;
  text-align: center;
  position: relative;
}

.profile-avatar-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.profile-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 5px solid white;
  object-fit: cover;
  transition: all var(--transition);
}

.profile-avatar-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, .5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all var(--transition);
  cursor: pointer;
}

.profile-avatar-wrapper:hover .profile-avatar-overlay {
  opacity: 1;
}

.avatar-edit-btn {
  color: white;
  cursor: pointer;
  margin: 0;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-edit-btn svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .3));
}

.profile-name {
  color: white;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.profile-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-2));
  color: white;
  padding: .4rem 1rem;
  border-radius: 20px;
  font-size: .85rem;
  font-weight: 600;
  margin-top: .5rem;
}

.profile-info {
  padding: 2rem 1.5rem;
}

.profile-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  margin-bottom: .75rem;
  background: var(--brand-light);
  border-radius: 12px;
  transition: all var(--transition);
}

.profile-info-item:hover {
  background: #e8e3df;
  transform: translateX(4px);
}

.profile-info-item svg {
  color: var(--brand-accent);
  flex-shrink: 0;
}

.profile-info-item span {
  color: var(--brand-dark);
  font-size: .95rem;
  word-break: break-word;
}

.profile-actions {
  padding: 0 1.5rem 2rem;
}

.btn-profile-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-2));
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(211, 94, 143, .3);
}

.btn-profile-action:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(211, 94, 143, .4);
}

/* Cliente Card */
.cliente-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
  overflow: hidden;
  transition: all var(--transition);
  animation: slideInRight .6s ease-out;
}

.cliente-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
}

.cliente-card-header {
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-2));
  padding: 1.5rem 2rem;
}

.cliente-card-header.admin-header {
  background: linear-gradient(135deg, var(--brand-dark), #2a2a2a);
}

.cliente-card-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: .75rem;
}

.cliente-form {
  padding: 2rem;
}

.cliente-form .form-label {
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: .5rem;
}

.cliente-form .form-control {
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: .75rem 1rem;
  transition: all var(--transition);
}

.cliente-form .form-control:focus {
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 .25rem rgba(211, 94, 143, .15);
  transform: translateY(-1px);
}

.form-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
}

.btn-save-changes {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-2));
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(211, 94, 143, .3);
}

.btn-save-changes:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(211, 94, 143, .4);
}

.btn-save-changes:active {
  transform: translateY(0);
}

/* Panel Links */
.panel-links {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.panel-link-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--brand-light);
  border-radius: 12px;
  text-decoration: none;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.panel-link-item:hover {
  background: white;
  border-color: var(--brand-accent);
  transform: translateX(8px);
  box-shadow: 0 4px 16px rgba(211, 94, 143, .2);
}

.panel-link-item.admin-link:hover {
  border-color: var(--brand-dark);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
}

.panel-link-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  transition: all var(--transition);
}

.admin-link .panel-link-icon {
  background: linear-gradient(135deg, var(--brand-dark), #2a2a2a);
}

.panel-link-item:hover .panel-link-icon {
  transform: scale(1.1) rotate(5deg);
}

.panel-link-content {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.panel-link-title {
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 1.1rem;
}

.panel-link-desc {
  color: #666;
  font-size: .9rem;
}

/* Responsividade - Área do Cliente */
@media (max-width: 992px) {
  .profile-card,
  .cliente-card {
    animation: fadeIn .6s ease-out;
  }

  .profile-avatar {
    width: 120px;
    height: 120px;
  }

  .profile-name {
    font-size: 1.5rem;
  }

  .cliente-card-title {
    font-size: 1.3rem;
  }

  .panel-link-item {
    padding: 1.25rem;
  }

  .panel-link-icon {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 768px) {
  .profile-card-header {
    padding: 2.5rem 1.5rem 1.5rem;
  }

  .profile-avatar {
    width: 100px;
    height: 100px;
    border-width: 4px;
  }

  .profile-name {
    font-size: 1.35rem;
  }

  .profile-info {
    padding: 1.5rem 1rem;
  }

  .profile-info-item {
    padding: .85rem;
    font-size: .9rem;
  }

  .cliente-form {
    padding: 1.5rem;
  }

  .cliente-card-title {
    font-size: 1.2rem;
  }

  .btn-save-changes {
    width: 100%;
    justify-content: center;
    padding: .85rem 1.5rem;
    font-size: 1rem;
  }

  .panel-links {
    padding: 1.5rem;
  }

  .panel-link-item {
    padding: 1rem;
    gap: 1rem;
  }

  .panel-link-icon {
    width: 40px;
    height: 40px;
  }

  .panel-link-icon svg {
    width: 18px;
    height: 18px;
  }

  .panel-link-title {
    font-size: 1rem;
  }

  .panel-link-desc {
    font-size: .85rem;
  }
}

@media (max-width: 576px) {
  .profile-badge {
    font-size: .75rem;
    padding: .3rem .75rem;
  }

  .profile-info-item {
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
    text-align: left;
  }

  .cliente-card-header {
    padding: 1.25rem 1.5rem;
  }

  .cliente-card-title {
    font-size: 1.1rem;
    gap: .5rem;
  }

  .cliente-card-title svg {
    width: 18px;
    height: 18px;
  }

  .form-actions {
    margin-top: 1.5rem;
  }

  .panel-link-item:hover {
    transform: translateX(4px);
  }
}

/* ===== Página ODS ===== */
.ods-container {
  background: var(--brand-light);
}

/* Hero Section */
.ods-hero {
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
  animation: fadeIn .8s ease-out;
}

.ods-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M50 0L100 50L50 100L0 50Z" fill="rgba(255,255,255,.05)"/></svg>');
  background-size: 100px 100px;
  opacity: .3;
}

.ods-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  animation: slideInUp .8s ease-out;
}

.ods-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: rgba(255, 255, 255, .2);
  backdrop-filter: blur(10px);
  color: white;
  padding: .75rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  border: 2px solid rgba(255, 255, 255, .3);
}

.ods-hero-title {
  color: white;
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, .2);
}

.ods-hero-subtitle {
  color: rgba(255, 255, 255, .95);
  font-size: 1.4rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.ods-hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.ods-stat-item {
  text-align: center;
}

.ods-stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: white;
  text-shadow: 0 4px 20px rgba(0, 0, 0, .2);
  margin-bottom: .5rem;
}

.ods-stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .9);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Sections */
.ods-section {
  padding: 5rem 0;
}

.ods-section-alt {
  background: white;
}

.ods-section-title {
  color: var(--brand-dark);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
}

/* Intro Card */
.ods-intro-card {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
  animation: slideInLeft .8s ease-out;
}

.ods-intro-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.ods-intro-content {
  flex: 1;
}

.ods-text {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0;
}

.ods-text strong {
  color: var(--brand-dark);
  font-weight: 700;
}

/* Content Cards */
.ods-content-card {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
  transition: all var(--transition);
  animation: slideInUp .8s ease-out;
}

.ods-content-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, .12);
}

.ods-card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-2));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 2rem;
}

.ods-card-icon-green {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.ods-card-title {
  color: var(--brand-dark);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

/* Model Cards */
.ods-model-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition);
  border: 3px solid transparent;
  height: 100%;
  animation: fadeIn .8s ease-out;
}

.ods-model-card:hover {
  border-color: #2ecc71;
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(46, 204, 113, .2);
}

.ods-model-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto 1.5rem;
  transition: all var(--transition);
}

.ods-model-card:hover .ods-model-icon {
  transform: scale(1.1) rotate(10deg);
}

.ods-model-title {
  color: var(--brand-dark);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.ods-model-desc {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Mission Section */
.ods-mission {
  background: linear-gradient(135deg, var(--brand-dark) 0%, #2a2a2a 100%);
  position: relative;
  overflow: hidden;
}

.ods-mission::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,.03)"/></svg>');
  background-size: 100px 100px;
}

.ods-mission-card {
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
  animation: fadeIn .8s ease-out;
}

.ods-mission-content {
  flex: 1;
}

.ods-mission-title {
  color: white;
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 2rem;
}

.ods-mission-text {
  color: rgba(255, 255, 255, .9);
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.ods-mission-text strong {
  color: white;
  font-weight: 700;
}

.ods-mission-actions {
  display: flex;
  gap: 1rem;
}

.btn-ods-primary {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: 1.25rem 2.5rem;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 6px 20px rgba(46, 204, 113, .4);
}

.btn-ods-primary:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(46, 204, 113, .5);
}

.ods-mission-icon {
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .5);
  animation: float 3s ease-in-out infinite;
}

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

/* Credits */
.ods-credits {
  background: white;
  padding: 3rem 0;
  border-top: 1px solid #e0e0e0;
}

.ods-credits-content {
  text-align: center;
}

.ods-credits-text {
  color: #666;
  font-size: .95rem;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  flex-wrap: wrap;
}

.ods-credits-text svg {
  color: var(--brand-accent);
  flex-shrink: 0;
}

.ods-credits-text strong {
  color: var(--brand-dark);
}

/* Responsividade - ODS */
@media (max-width: 992px) {
  .ods-hero {
    padding: 5rem 0 4rem;
  }

  .ods-hero-title {
    font-size: 3rem;
  }

  .ods-hero-subtitle {
    font-size: 1.2rem;
  }

  .ods-stat-number {
    font-size: 3rem;
  }

  .ods-intro-card {
    gap: 1.5rem;
    padding: 2.5rem;
  }

  .ods-intro-icon {
    width: 70px;
    height: 70px;
  }

  .ods-content-card {
    padding: 2.5rem;
  }

  .ods-mission-card {
    gap: 3rem;
  }

  .ods-mission-title {
    font-size: 2.5rem;
  }

  .ods-mission-icon {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 768px) {
  .ods-hero {
    padding: 4rem 0 3rem;
  }

  .ods-hero-title {
    font-size: 2.5rem;
  }

  .ods-hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .ods-hero-stats {
    gap: 2rem;
  }

  .ods-stat-number {
    font-size: 2.5rem;
  }

  .ods-stat-label {
    font-size: 1rem;
  }

  .ods-section {
    padding: 3rem 0;
  }

  .ods-section-title {
    font-size: 2rem;
  }

  .ods-intro-card {
    flex-direction: column;
    padding: 2rem;
  }

  .ods-intro-icon {
    width: 60px;
    height: 60px;
  }

  .ods-text {
    font-size: 1rem;
  }

  .ods-content-card {
    padding: 2rem;
  }

  .ods-card-icon {
    width: 70px;
    height: 70px;
  }

  .ods-card-title {
    font-size: 1.75rem;
  }

  .ods-model-card {
    padding: 2rem 1.5rem;
  }

  .ods-model-icon {
    width: 70px;
    height: 70px;
  }

  .ods-model-title {
    font-size: 1.3rem;
  }

  .ods-model-desc {
    font-size: .95rem;
  }

  .ods-mission-card {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .ods-mission-title {
    font-size: 2rem;
  }

  .ods-mission-text {
    font-size: 1.1rem;
  }

  .ods-mission-actions {
    justify-content: center;
  }

  .ods-mission-icon {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 576px) {
  .ods-hero {
    padding: 3rem 0 2rem;
  }

  .ods-hero-badge {
    font-size: 1rem;
    padding: .6rem 1.25rem;
  }

  .ods-hero-badge svg {
    width: 24px;
    height: 24px;
  }

  .ods-hero-title {
    font-size: 2rem;
  }

  .ods-hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .ods-hero-stats {
    gap: 1.5rem;
  }

  .ods-stat-number {
    font-size: 2rem;
  }

  .ods-stat-label {
    font-size: .9rem;
  }

  .ods-section {
    padding: 2.5rem 0;
  }

  .ods-section-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }

  .ods-intro-card {
    padding: 1.5rem;
  }

  .ods-intro-icon {
    width: 50px;
    height: 50px;
  }

  .ods-intro-icon svg {
    width: 32px;
    height: 32px;
  }

  .ods-content-card {
    padding: 1.5rem;
  }

  .ods-card-icon {
    width: 60px;
    height: 60px;
  }

  .ods-card-icon svg {
    width: 32px;
    height: 32px;
  }

  .ods-card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .ods-model-card {
    padding: 1.5rem;
  }

  .ods-model-icon {
    width: 60px;
    height: 60px;
  }

  .ods-model-icon svg {
    width: 24px;
    height: 24px;
  }

  .ods-model-title {
    font-size: 1.2rem;
  }

  .ods-model-desc {
    font-size: .9rem;
  }

  .ods-mission-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }

  .ods-mission-text {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .btn-ods-primary {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .ods-mission-icon {
    width: 120px;
    height: 120px;
  }

  .ods-mission-icon svg {
    width: 80px;
    height: 80px;
  }

  .ods-credits-text {
    font-size: .85rem;
    flex-direction: column;
  }
}

/* Responsividade do Stepper */
@media (max-width: 768px) {
  .stepper-counter {
    width: 40px;
    height: 40px;
    font-size: .95rem;
  }

  .stepper-name {
    font-size: .75rem;
    margin-top: .5rem;
  }

  .stepper-wrapper::before {
    top: 20px;
  }

  .form-navigation {
    flex-direction: column;
  }

  .form-navigation .btn {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .stepper-counter {
    width: 35px;
    height: 35px;
    font-size: .85rem;
  }

  .stepper-name {
    font-size: .7rem;
    display: none;
  }

  .stepper-wrapper {
    margin: 1.5rem 0;
  }

  .password-toggle-btn .eye-icon {
    width: 20px;
    height: 20px;
  }
}

/* ===============================
   PÁGINA DE PRODUTOS
   =============================== */

/* Sidebar de Filtros */
.filters-sidebar {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 20px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  animation: slideInLeft .5s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.filters-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--brand-accent);
}

.filters-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin: 0;
}

.btn-clear-filters {
  background: transparent;
  border: 1px solid var(--brand-accent);
  color: var(--brand-accent);
  padding: .4rem .8rem;
  border-radius: 6px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-clear-filters:hover {
  background: var(--brand-accent);
  color: white;
  transform: translateY(-1px);
}

.filter-section {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.filter-section:last-of-type {
  border-bottom: none;
}

.filter-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 1rem;
}

.filter-select {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: .6rem;
  font-size: .95rem;
  transition: all var(--transition);
}

.filter-select:hover {
  border-color: var(--brand-accent);
}

.filter-select:focus {
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 .2rem rgba(211, 94, 143, .15);
}

.filter-apply-btn {
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-2));
  border: none;
  font-weight: 700;
  padding: .75rem;
  transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(211, 94, 143, .3);
}

.filter-apply-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(211, 94, 143, .4);
}

/* Range Slider de Preço */
.price-range-container {
  padding: .5rem 0;
}

.price-inputs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding: .75rem;
  background: var(--brand-bg);
  border-radius: 8px;
}

.price-label {
  font-weight: 700;
  color: var(--brand-accent);
  font-size: 1rem;
}

.price-separator {
  color: #999;
  margin: 0 .5rem;
}

.range-slider-wrapper {
  position: relative;
  height: 40px;
}

.range-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(to right, var(--brand-accent), var(--brand-accent-2));
  outline: none;
  position: absolute;
  pointer-events: none;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--brand-accent);
  cursor: pointer;
  pointer-events: all;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
  transition: all var(--transition);
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 12px rgba(211, 94, 143, .4);
}

.range-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--brand-accent);
  cursor: pointer;
  pointer-events: all;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
  transition: all var(--transition);
}

.range-slider::-moz-range-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 12px rgba(211, 94, 143, .4);
}

#preco_min {
  z-index: 1;
}

#preco_max {
  z-index: 2;
}

/* Toolbar de Produtos */
.products-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  animation: fadeSlideIn .5s ease-out;
}

.toolbar-left {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.products-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin: 0;
}

.products-count {
  font-size: .95rem;
  color: #666;
  font-weight: 500;
}

.toolbar-right {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.ordenacao-label {
  font-weight: 600;
  color: var(--brand-dark);
  margin: 0;
  font-size: .95rem;
}

.ordenacao-select {
  min-width: 200px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: .6rem;
  font-size: .95rem;
  transition: all var(--transition);
}

.ordenacao-select:hover {
  border-color: var(--brand-accent);
}

.ordenacao-select:focus {
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 .2rem rgba(211, 94, 143, .15);
}

/* Grid de Produtos */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  animation: fadeIn .6s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.product-description {
  font-size: .9rem;
  color: #666;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1rem;
}

.product-details {
  display: flex;
  gap: .5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.product-details .badge {
  font-size: .75rem;
  padding: .35rem .65rem;
  font-weight: 600;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.product-actions {
  display: flex;
  gap: .5rem;
  align-items: stretch;
}

.product-actions form {
  flex: 1;
  display: flex;
}

.product-actions .btn {
  flex: 1;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}

.product-actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(211, 94, 143, .3);
}

.product-actions .btn-outline-primary:hover {
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-2));
  border-color: var(--brand-accent);
  color: white;
}

/* Empty State */
.no-products {
  grid-column: 1 / -1;
  padding: 4rem 2rem;
}

.empty-state {
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
}

.empty-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 1.5rem;
  opacity: .6;
}

.empty-state h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: .75rem;
}

.empty-state p {
  color: #666;
  margin-bottom: 1.5rem;
}

/* Responsividade - Produtos */
@media (max-width: 992px) {
  .filters-sidebar {
    position: static;
    max-height: none;
    margin-bottom: 2rem;
  }

  .products-toolbar {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .toolbar-left {
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
  }

  .toolbar-right {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .ordenacao-select {
    width: 100%;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }

  /* Snackbar responsivo para tablets landscape */
  .snackbar {
    min-width: 280px;
    max-width: 450px;
    margin-left: -140px;
  }
}

@media (max-width: 768px) {
  .filters-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .btn-clear-filters {
    width: 100%;
  }

  .products-title {
    font-size: 1.5rem;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }

  .product-actions {
    flex-direction: column;
  }

  .product-actions form {
    width: 100%;
  }

  /* Snackbar responsivo para tablets portrait */
  .snackbar {
    min-width: 85%;
    max-width: 85%;
    margin-left: -42.5%;
    font-size: .95rem;
    padding: .9rem 1.3rem;
  }
}

@media (max-width: 576px) {
  .filters-sidebar {
    padding: 1rem;
  }

  .products-toolbar {
    padding: 1rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .price-inputs {
    flex-direction: column;
    gap: .5rem;
    align-items: flex-start;
  }

  .price-separator {
    display: none;
  }
}

/* ===============================
   BOTÕES DE ÁUDIO
   =============================== */
.audio-button {
  transition: all var(--transition);
}

/* Controle de visibilidade de acessibilidade */
.audio-buttons-hidden .audio-button,
.accessibility-hidden .audio-button {
  display: none !important;
}

.toggle-audio-btn {
  background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-accent-2) 100%);
  color: var(--brand-light);
  border: none;
  padding: .85rem 1.25rem;
  margin: .5rem .75rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 12px rgba(211, 94, 143, .3);
  position: relative;
  overflow: hidden;
}

.toggle-audio-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
  transition: left .5s;
}

.toggle-audio-btn:hover::before {
  left: 100%;
}

.toggle-audio-btn:hover {
  transform: translateX(8px) scale(1.03);
  box-shadow: 0 6px 20px rgba(211, 94, 143, .5);
}

.toggle-audio-btn:active {
  transform: translateX(5px) scale(.98);
}

.toggle-audio-btn .icon {
  margin-right: 10px;
  font-size: 1.2rem;
  transition: transform var(--transition);
}

.toggle-audio-btn:hover .icon {
  transform: scale(1.2) rotate(10deg);
}

/* ===============================
   MELHORIAS DE RESPONSIVIDADE
   =============================== */

/* Tablets e dispositivos médios */
@media (max-width: 992px) {
  .navbar-brand {
    font-size: 1.5rem;
  }

  nav .nav-link {
    font-size: 1rem;
  }

  .card-body {
    padding: 1.5rem !important;
  }

  .section-header {
    flex-direction: row;
    gap: .5rem;
  }

  .section-icon {
    width: 28px;
    height: 28px;
    font-size: .9rem;
  }

  .offcanvas {
    width: 260px;
  }

  .search-bar {
    max-width: 450px;
  }

  nav {
    min-height: 12vh;
  }
}

/* Smartphones */
@media (max-width: 768px) {
  :root {
    --radius-md: 6px;
    --radius-lg: 10px;
  }

  body {
    font-size: 14px;
  }

  header {
    box-shadow: 0 3px 15px rgba(0, 0, 0, .3);
  }

  nav {
    min-height: 10vh;
    padding: .5vh 0 0 0;
  }

  .navbar-brand {
    font-size: 1.25rem;
    margin-right: 1rem;
  }

  .navbar-brand::after {
    display: none;
  }

  .navbar-toggler {
    padding: .4rem;
  }

  #logo {
    max-height: 50px;
  }

  #logotext {
    font-size: 1rem;
  }

  .logo-container {
    animation: logoFadeIn .5s ease-out .2s both;
  }

  .avatar-container .user-name {
    display: none;
  }

  .avatar-container .avatar {
    width: 35px;
    height: 35px;
  }

  .offcanvas {
    width: 240px;
  }

  .offcanvas-title {
    font-size: 1.5rem;
  }

  .offcanvas .nav-link {
    font-size: 1rem;
    padding: .75rem 1rem;
    margin: .4rem .5rem;
  }

  .sidebar-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }

  .toggle-audio-btn {
    font-size: 1rem;
    padding: .75rem 1rem;
  }

  .search-bar {
    max-width: 90%;
  }

  .search-input {
    height: 40px;
    padding: .6rem 1rem;
    font-size: .95rem;
  }

  .search-button {
    width: 35px;
    height: 35px;
  }

  .container.my-3.d-flex.justify-content-center {
    padding: .75rem 0 1.5rem 0;
  }

  .dropdown-menu {
    min-width: 180px;
  }

  .dropdown-item {
    padding: .6rem .85rem;
    font-size: .95rem;
  }

  .card {
    margin-bottom: 1rem;
  }

  .card-body {
    padding: 1rem !important;
  }

  .section-header {
    margin-bottom: 1rem;
    padding-bottom: .5rem;
  }

  .section-header h5 {
    font-size: 1rem;
  }

  .section-icon {
    width: 24px;
    height: 24px;
    font-size: .8rem;
  }

  .form-control,
  .form-select {
    padding: .625rem .875rem;
    font-size: .95rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: .625rem 1.25rem;
    font-size: .95rem;
  }

  .carousel-caption h3 {
    font-size: 1.25rem;
  }

  .carousel-caption p {
    font-size: .875rem;
  }

  .form-progress {
    padding: .75rem 0;
  }

  /* Melhor espaçamento entre campos no mobile */
  .row.g-3 {
    gap: .75rem !important;
  }
}

/* Smartphones pequenos */
@media (max-width: 576px) {
  .container-fluid {
    padding-left: .75rem;
    padding-right: .75rem;
  }

  header {
    box-shadow: 0 2px 12px rgba(0, 0, 0, .3);
  }

  header::after {
    width: 80%;
  }

  nav {
    min-height: 9vh;
  }

  .navbar-brand {
    font-size: 1.1rem;
  }

  #logo {
    max-height: 45px;
  }

  #logotext {
    font-size: .9rem;
  }

  .navbar-toggler {
    padding: .35rem;
  }

  .avatar-container .avatar {
    width: 32px;
    height: 32px;
  }

  .offcanvas {
    width: 220px;
  }

  .offcanvas-title {
    font-size: 1.3rem;
  }

  .offcanvas .nav-link {
    font-size: .95rem;
    padding: .65rem .85rem;
    margin: .3rem .4rem;
  }

  .sidebar-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
  }

  .toggle-audio-btn {
    font-size: .95rem;
    padding: .65rem .85rem;
    margin: .4rem .5rem;
  }

  .toggle-audio-btn .icon {
    font-size: 1rem;
  }

  .search-bar {
    max-width: 95%;
  }

  .search-input {
    height: 38px;
    padding: .5rem .85rem;
    font-size: 14px;
  }

  .search-button {
    width: 32px;
    height: 32px;
  }

  .dropdown-menu {
    min-width: 160px;
  }

  .dropdown-item {
    padding: .55rem .75rem;
    font-size: .9rem;
  }

  .dropdown-item img {
    max-width: 24px;
  }

  .footer {
    padding: 1.5rem 0 1rem;
  }

  .footer h5 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .footer p {
    font-size: .9rem;
  }

  .footer .btn-outline-secondary {
    font-size: .8rem;
    padding: .35rem .7rem;
  }

  .card {
    border-radius: var(--radius-sm);
  }

  .card-body {
    padding: .875rem !important;
  }

  .form-control,
  .form-select {
    font-size: 16px; /* Previne zoom no iOS */
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    padding: .75rem;
  }

  .section-header {
    padding-bottom: .5rem;
    border-bottom-width: 1px;
  }

  /* Stack inputs em telas pequenas */
  .row > [class*="col-"] {
    margin-bottom: .75rem;
  }
}

/* ===============================
   ACESSIBILIDADE E UX
   =============================== */

/* Melhor foco para teclado */
*:focus-visible {
  outline: 3px solid var(--brand-accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Remover outline padrão mas manter para teclado */
*:focus:not(:focus-visible) {
  outline: none;
}

/* Loading states */
.btn:disabled,
.btn.disabled {
  opacity: .6;
  cursor: not-allowed;
  animation: none;
}

/* Transição suave para alertas */
.alert {
  animation: slideInDown .4s ease-out;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tooltip customizado */
[data-tooltip] {
  position: relative;
  cursor: help;
}

[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: .5rem .75rem;
  background: var(--brand-dark);
  color: white;
  border-radius: 6px;
  font-size: .875rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  margin-bottom: .5rem;
  z-index: 10;
}

[data-tooltip]:hover::after {
  opacity: 1;
}

/* Scrollbar customizada para webkit */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--brand-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--brand-accent);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--brand-accent-2);
}

/* Seleção de texto customizada */
::selection {
  background: var(--brand-accent);
  color: white;
}

::-moz-selection {
  background: var(--brand-accent);
  color: white;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Foco em checkboxes e radios */
.form-check-input:focus {
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 .25rem rgba(211, 94, 143, .15);
}

/* ===============================
   ESTILOS ESPECÍFICOS PARA PÁGINAS
   =============================== */

/* Empty state */
.empty-state {
  padding: 3rem 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  animation: fadeIn .5s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Texto destacado */
.text-primary {
  color: var(--brand-accent) !important;
}

/* Gap utility para flex */
.gap-2 {
  gap: .5rem;
}

/* Flex grow utility */
.flex-grow-1 {
  flex-grow: 1;
}

/* Melhorias específicas para cards de produtos */
.produto-card .card-img-top {
  transition: transform var(--transition);
  height: 250px;
  object-fit: cover;
}

.produto-card:hover .card-img-top {
  transform: scale(1.05);
}

/* Botões dentro de cards */
.card .btn {
  font-size: .9rem;
  padding: .625rem 1rem;
  white-space: nowrap;
}

/* Títulos de card */
.card-title {
  font-size: 1.25rem;
  line-height: 1.4;
  margin-bottom: .75rem;
  min-height: 2.8rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Descrição de card */
.card-text {
  font-size: .95rem;
  color: #666;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Preço destacado */
.fw-bold.fs-4 {
  font-size: 1.5rem !important;
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Loading skeleton (opcional para futuro) */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Fade in para imagens lazy load */
img.fade-in {
  animation: imageFadeIn .5s ease-out;
}

@keyframes imageFadeIn {
  from {
    opacity: 0;
    filter: blur(5px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

/* Responsividade adicional para botões em cards */
@media (max-width: 576px) {
  .produto-card .card-img-top {
    height: 200px;
  }

  .card .btn {
    font-size: .85rem;
    padding: .5rem .75rem;
  }

  .card-title {
    font-size: 1.1rem;
    min-height: auto;
  }

  .card-text {
    font-size: .875rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .fw-bold.fs-4 {
    font-size: 1.25rem !important;
  }
}

/* ===============================
   SNACKBAR / NOTIFICAÇÕES
   =============================== */
.snackbar {
  visibility: hidden;
  min-width: 300px;
  max-width: 500px;
  margin-left: -150px;
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-2));
  color: white;
  text-align: center;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  position: fixed;
  z-index: 10;
  left: 50%;
  bottom: 30px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(211, 94, 143, .4), 0 4px 12px rgba(0, 0, 0, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  transform: translateY(100px);
  opacity: 0;
  transition: all .4s cubic-bezier(.68, -.55, .265, 1.55);
}

.snackbar.show {
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
}

.snackbar.error {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  box-shadow: 0 8px 24px rgba(231, 76, 60, .4), 0 4px 12px rgba(0, 0, 0, .2);
}

.snackbar.success {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  box-shadow: 0 8px 24px rgba(46, 204, 113, .4), 0 4px 12px rgba(0, 0, 0, .2);
}

.snackbar::before {
  content: '✓';
  font-size: 1.5rem;
  font-weight: bold;
}

.snackbar.error::before {
  content: '✕';
}

/* Animação de progresso */
.snackbar-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: rgba(255, 255, 255, .3);
  border-radius: 0 0 12px 12px;
  animation: snackbarProgress 3s linear forwards;
}

@keyframes snackbarProgress {
  from {
    width: 100%;
  }
  to {
    width: 0%;
  }
}

/* Responsividade da snackbar */
@media (max-width: 576px) {
  .snackbar {
    min-width: 90%;
    max-width: 90%;
    margin-left: -45%;
    font-size: .95rem;
    padding: .875rem 1.25rem;
    bottom: 20px;
  }

  .snackbar::before {
    font-size: 1.25rem;
  }
}

/* ===============================
   PÁGINA DE CARRINHO
   =============================== */
.cart-container {
  max-width: 1200px;
  margin: 0 auto;
  animation: fadeIn .5s ease-out;
}

.cart-header {
  background: linear-gradient(135deg, var(--brand-dark), #2a2a2a);
  color: white;
  padding: 2rem;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
  margin-bottom: 0;
}

.cart-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-header h2::before {
  content: '🛒';
  font-size: 2.5rem;
}

.cart-table-wrapper {
  background: white;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
  overflow: hidden;
}

.cart-table {
  margin: 0;
}

.cart-table thead {
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-2));
  color: white;
}

.cart-table thead th {
  border: none;
  padding: 1.25rem 1rem;
  font-weight: 600;
  text-transform: uppercase;
  font-size: .875rem;
  letter-spacing: .5px;
}

.cart-table tbody tr {
  border-bottom: 1px solid #e9ecef;
  transition: all var(--transition);
}

.cart-table tbody tr:hover {
  background: rgba(211, 94, 143, .05);
  transform: scale(1.01);
}

.cart-table tbody tr:last-child {
  border-bottom: none;
}

.cart-table tbody td {
  padding: 1.5rem 1rem;
  vertical-align: middle;
}

.cart-product-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
  transition: transform var(--transition);
}

.cart-product-image:hover {
  transform: scale(1.1);
}

.cart-product-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cart-product-details .fw-semibold {
  font-size: 1.1rem;
  color: var(--brand-dark);
  margin-bottom: .25rem;
  font-weight: 600;
}

.cart-product-details .text-muted {
  font-size: .9rem;
  color: #6c757d;
}

.cart-quantity {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brand-dark);
}

.cart-price {
  font-size: 1.1rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cart-subtotal {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.btn-remove-cart {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  border: none;
  color: white;
  padding: .5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(231, 76, 60, .3);
}

.btn-remove-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(231, 76, 60, .5);
  background: linear-gradient(135deg, #c0392b, #a93226);
  color: white;
}

.cart-footer {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  animation: slideInUp .5s ease-out;
}

.cart-total {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.cart-total span {
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2rem;
}

.btn-checkout {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  border: none;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(46, 204, 113, .4);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.btn-checkout:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(46, 204, 113, .6);
  background: linear-gradient(135deg, #27ae60, #229954);
  color: white;
}

.cart-empty {
  text-align: center;
  padding: 4rem 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
}

.cart-empty-icon {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  opacity: .5;
}

.cart-empty p {
  font-size: 1.5rem;
  color: #6c757d;
  margin: 0;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===============================
   PÁGINA DE DETALHES DO PRODUTO
   =============================== */
.product-details-container {
  max-width: 1200px;
  margin: 0 auto;
  animation: fadeIn .5s ease-out;
}

.btn-back {
  background: rgba(211, 94, 143, .1);
  border: 2px solid var(--brand-accent);
  color: var(--brand-accent);
  padding: .75rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.btn-back:hover {
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-2));
  color: white;
  transform: translateX(-5px);
  box-shadow: 0 4px 12px rgba(211, 94, 143, .3);
}

.product-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .15);
  background: white;
  padding: 1rem;
}

.product-image-wrapper img {
  width: 100%;
  border-radius: 12px;
  transition: transform var(--transition);
}

.product-image-wrapper:hover img {
  transform: scale(1.05);
}

.product-info-wrapper {
  background: white;
  padding: 1.75rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .1);
}

.product-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: .75rem;
  line-height: 1.2;
}

.product-description {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.product-price-label {
  font-size: .95rem;
  color: #6c757d;
  font-weight: 600;
  margin-bottom: .35rem;
}

.product-price-value {
  font-size: 2.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-bottom: 1.25rem;
}

.product-specs {
  background: linear-gradient(135deg, rgba(211, 94, 143, .05), rgba(200, 0, 83, .05));
  padding: 1.25rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--brand-accent);
}

.product-specs li {
  padding: .75rem 0;
  border-bottom: 1px solid rgba(211, 94, 143, .1);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.product-specs li:last-child {
  border-bottom: none;
}

.product-specs li strong {
  color: var(--brand-dark);
  font-weight: 700;
  min-width: 100px;
}

.product-specs li strong::after {
  content: ':';
}

.btn-add-to-cart-large {
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-2));
  border: none;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(211, 94, 143, .4);
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
}

.btn-add-to-cart-large::before {
  content: '🛒';
  font-size: 1.35rem;
}

.btn-add-to-cart-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(211, 94, 143, .6);
  background: linear-gradient(135deg, var(--brand-accent-2), var(--brand-accent));
}

.btn-add-to-cart-large:active {
  transform: translateY(-1px);
}

/* ===============================
   RESPONSIVIDADE - CARRINHO E DETALHES
   =============================== */

/* Tablets - 992px */
@media (max-width: 992px) {
  .cart-header h2 {
    font-size: 1.75rem;
  }

  .cart-header h2::before {
    font-size: 2rem;
  }

  .cart-table thead th {
    font-size: .8rem;
    padding: 1rem .75rem;
  }

  .cart-table tbody td {
    padding: 1.25rem .75rem;
  }

  .product-title {
    font-size: 2rem;
  }

  .product-price-value {
    font-size: 2rem;
  }

  .product-info-wrapper {
    padding: 1.5rem;
  }

  .btn-add-to-cart-large {
    padding: .875rem 2rem;
    font-size: 1rem;
  }
}

/* Tablets Portrait - 768px */
@media (max-width: 768px) {
  .cart-header {
    padding: 1.5rem;
    border-radius: 12px;
  }

  .cart-header h2 {
    font-size: 1.5rem;
  }

  .cart-header h2::before {
    font-size: 1.75rem;
  }

  .cart-table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
  }

  .cart-table {
    min-width: 700px;
  }

  .cart-product-image {
    width: 60px;
    height: 60px;
  }

  .cart-product-details .fw-semibold {
    font-size: 1rem;
  }

  .cart-quantity,
  .cart-price,
  .cart-subtotal {
    font-size: 1rem;
  }

  .cart-footer {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .cart-total {
    font-size: 1.5rem;
    text-align: center;
  }

  .cart-total span {
    font-size: 1.75rem;
  }

  .btn-checkout {
    width: 100%;
    padding: 1rem 2rem;
  }

  .product-title {
    font-size: 1.75rem;
  }

  .product-description {
    font-size: .95rem;
  }

  .product-price-value {
    font-size: 1.85rem;
  }

  .product-info-wrapper {
    padding: 1.5rem;
  }

  .btn-add-to-cart-large {
    padding: .875rem 1.75rem;
    font-size: 1rem;
  }
}

/* Mobile - 576px */
@media (max-width: 576px) {
  .cart-container {
    padding: 0;
  }

  .cart-header {
    padding: 1.25rem 1rem;
    border-radius: 8px 8px 0 0;
  }

  .cart-header h2 {
    font-size: 1.25rem;
    gap: .5rem;
  }

  .cart-header h2::before {
    font-size: 1.5rem;
  }

  .cart-table-wrapper {
    border-radius: 0 0 8px 8px;
  }

  .cart-table {
    min-width: 600px;
  }

  .cart-table thead th {
    font-size: .75rem;
    padding: .875rem .5rem;
  }

  .cart-table tbody td {
    padding: 1rem .5rem;
  }

  .cart-product-info {
    gap: .75rem;
  }

  .cart-product-image {
    width: 50px;
    height: 50px;
  }

  .cart-product-details .fw-semibold {
    font-size: .9rem;
  }

  .cart-product-details .text-muted {
    font-size: .8rem;
  }

  .cart-quantity,
  .cart-price,
  .cart-subtotal {
    font-size: .9rem;
  }

  .btn-remove-cart {
    padding: .4rem .75rem;
    font-size: .85rem;
  }

  .cart-footer {
    padding: 1.25rem 1rem;
    gap: 1.25rem;
    border-radius: 8px;
    margin-top: 1rem;
  }

  .cart-total {
    font-size: 1.25rem;
  }

  .cart-total span {
    font-size: 1.5rem;
  }

  .btn-checkout {
    padding: .875rem 1.5rem;
    font-size: 1rem;
  }

  .cart-empty {
    padding: 3rem 1.5rem;
    border-radius: 8px;
  }

  .cart-empty-icon {
    font-size: 4rem;
  }

  .cart-empty p {
    font-size: 1.25rem;
  }

  /* Product Details Mobile */
  .product-details-container {
    padding: 0 !important;
  }

  .btn-back {
    padding: .625rem 1.25rem;
    font-size: .95rem;
    margin-bottom: 1rem !important;
  }

  .product-image-wrapper {
    border-radius: 12px;
    padding: .75rem;
  }

  .product-info-wrapper {
    padding: 1.5rem 1.25rem;
    border-radius: 12px;
  }

  .product-title {
    font-size: 1.5rem;
    margin-bottom: .75rem;
  }

  .product-description {
    font-size: .95rem;
    margin-bottom: 1.25rem;
  }

  .product-price-label {
    font-size: .9rem;
  }

  .product-price-value {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
  }

  .product-specs {
    padding: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .product-specs li {
    padding: .625rem 0;
    font-size: .9rem;
    flex-direction: column;
    align-items: flex-start;
    gap: .25rem;
  }

  .product-specs li strong {
    min-width: auto;
  }

  .btn-add-to-cart-large {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    letter-spacing: .5px;
  }

  .btn-add-to-cart-large::before {
    font-size: 1.25rem;
  }
}

/* ===============================
   PÁGINA DE PERFIL DO VENDEDOR
   =============================== */
.seller-profile-container {
  max-width: 1200px;
  margin: 0 auto;
  animation: fadeIn .5s ease-out;
}

.seller-profile-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.seller-profile-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-2));
  z-index: 0;
}

.seller-profile-content {
  position: relative;
  z-index: 1;
}

.seller-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 5px solid white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
  object-fit: cover;
  margin: 0 auto 1.5rem;
  transition: transform var(--transition);
}

.seller-avatar:hover {
  transform: scale(1.05);
}

.seller-name {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: .5rem;
}

.seller-email {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}

.seller-email::before {
  content: '📧';
  font-size: 1.2rem;
}

.seller-products-section {
  margin-top: 3rem;
}

.seller-products-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--brand-accent);
}

.seller-products-header h4 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin: 0;
}

.seller-products-header::before {
  content: '🛍️';
  font-size: 2rem;
}

.seller-product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
  transition: all var(--transition);
  height: 100%;
  position: relative;
}

.seller-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(211, 94, 143, .3);
}

.seller-product-card .card-img-top {
  height: 220px;
  object-fit: cover;
  transition: transform var(--transition);
}

.seller-product-card:hover .card-img-top {
  transform: scale(1.1);
}

.seller-product-card .card-body {
  padding: 1.5rem;
}

.seller-product-card .card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: .75rem;
}

.seller-product-card .card-text {
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.seller-no-products {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(211, 94, 143, .05);
  border-radius: 12px;
  border: 2px dashed var(--brand-accent);
}

.seller-no-products-icon {
  font-size: 4rem;
  opacity: .5;
  margin-bottom: 1rem;
}

.seller-no-products p {
  font-size: 1.25rem;
  color: #6c757d;
  margin: 0;
}

/* ===============================
   PÁGINA ÁREA DO VENDEDOR
   =============================== */
.vendor-dashboard {
  animation: fadeIn .5s ease-out;
}

.vendor-dashboard-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 2rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.vendor-dashboard-title::before {
  content: '👨‍💼';
  font-size: 3rem;
}

.vendor-add-product-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
  padding: 2rem;
  height: 100%;
  animation: slideInLeft .5s ease-out;
}

.vendor-add-product-card h5 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}

.vendor-add-product-card h5::before {
  content: '➕';
  font-size: 1.75rem;
  color: var(--brand-accent);
}

.vendor-add-product-card .form-label {
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: .5rem;
  font-size: .95rem;
}

.vendor-add-product-card .form-control,
.vendor-add-product-card .form-select {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: .75rem;
  transition: all var(--transition);
}

.vendor-add-product-card .form-control:focus,
.vendor-add-product-card .form-select:focus {
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 .25rem rgba(211, 94, 143, .15);
}

.vendor-add-product-card .btn-primary {
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-2));
  border: none;
  padding: .875rem 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(211, 94, 143, .3);
}

.vendor-add-product-card .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(211, 94, 143, .5);
}

.vendor-accordion-wrapper {
  animation: fadeIn .6s ease-out;
}

.vendor-accordion .accordion-item {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
  margin-bottom: 1rem;
}

.vendor-accordion .accordion-button {
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-2));
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 1.25rem 1.5rem;
  border: none;
  display: flex;
  align-items: center;
  gap: .75rem;
}

.vendor-accordion .accordion-button::before {
  content: '📦';
  font-size: 1.5rem;
}

.vendor-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--brand-accent-2), var(--brand-accent));
  box-shadow: none;
}

.vendor-accordion .accordion-button::after {
  filter: brightness(0) invert(1);
}

.vendor-accordion .accordion-body {
  padding: 1.5rem;
  background: #f8f9fa;
}

.vendor-product-mini-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
  transition: all var(--transition);
  margin-bottom: 1rem;
}

.vendor-product-mini-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(211, 94, 143, .3);
}

.vendor-product-mini-card .card-img-top {
  height: 180px;
  object-fit: cover;
}

.vendor-product-mini-card .card-body {
  padding: 1.25rem;
}

.vendor-product-mini-card .card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .5rem;
}

.vendor-product-mini-card .card-text {
  font-size: 1.1rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vendor-recent-products-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
  padding: 2rem;
  height: 100%;
  animation: slideInRight .5s ease-out;
}

.vendor-recent-products-card .card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}

.vendor-recent-products-card .card-title::before {
  content: '🕒';
  font-size: 1.75rem;
}

.vendor-recent-products-card .list-group-item {
  border: none;
  border-left: 3px solid var(--brand-accent);
  padding: 1rem 1.25rem;
  margin-bottom: .75rem;
  border-radius: 8px;
  background: rgba(211, 94, 143, .05);
  transition: all var(--transition);
}

.vendor-recent-products-card .list-group-item:hover {
  background: rgba(211, 94, 143, .1);
  transform: translateX(5px);
  border-left-width: 5px;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===============================
   RESPONSIVIDADE - PERFIL E ÁREA DO VENDEDOR
   =============================== */

/* Tablets - 992px */
@media (max-width: 992px) {
  .seller-profile-card {
    padding: 2rem;
  }

  .seller-avatar {
    width: 120px;
    height: 120px;
  }

  .seller-name {
    font-size: 1.75rem;
  }

  .seller-products-header h4 {
    font-size: 1.5rem;
  }

  .vendor-dashboard-title {
    font-size: 2rem;
  }

  .vendor-dashboard-title::before {
    font-size: 2.5rem;
  }

  .vendor-add-product-card,
  .vendor-recent-products-card {
    padding: 1.75rem;
  }
}

/* Tablets Portrait - 768px */
@media (max-width: 768px) {
  .seller-profile-card::before {
    height: 100px;
  }

  .seller-profile-card {
    padding: 1.75rem;
  }

  .seller-avatar {
    width: 100px;
    height: 100px;
  }

  .seller-name {
    font-size: 1.5rem;
  }

  .seller-email {
    font-size: .95rem;
  }

  .seller-products-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .seller-products-header h4 {
    font-size: 1.35rem;
  }

  .seller-product-card .card-img-top {
    height: 200px;
  }

  .vendor-dashboard-title {
    font-size: 1.75rem;
    flex-direction: column;
  }

  .vendor-dashboard-title::before {
    font-size: 2.25rem;
  }

  .vendor-add-product-card h5,
  .vendor-recent-products-card .card-title {
    font-size: 1.25rem;
  }

  .vendor-accordion .accordion-button {
    font-size: 1.1rem;
    padding: 1rem 1.25rem;
  }
}

/* Mobile - 576px */
@media (max-width: 576px) {
  .seller-profile-container,
  .vendor-dashboard {
    padding: 0 !important;
  }

  .seller-profile-card::before {
    height: 80px;
  }

  .seller-profile-card {
    padding: 1.5rem 1.25rem;
    border-radius: 12px;
  }

  .seller-avatar {
    width: 90px;
    height: 90px;
    margin-bottom: 1rem;
  }

  .seller-name {
    font-size: 1.35rem;
  }

  .seller-email {
    font-size: .9rem;
    flex-direction: column;
    gap: .25rem;
  }

  .seller-products-section {
    margin-top: 2rem;
  }

  .seller-products-header {
    margin-bottom: 1.5rem;
    padding-bottom: .75rem;
  }

  .seller-products-header h4 {
    font-size: 1.25rem;
  }

  .seller-products-header::before {
    font-size: 1.5rem;
  }

  .seller-product-card .card-img-top {
    height: 180px;
  }

  .seller-product-card .card-body {
    padding: 1.25rem;
  }

  .seller-product-card .card-title {
    font-size: 1rem;
  }

  .seller-product-card .card-text {
    font-size: 1.1rem;
  }

  .seller-no-products {
    padding: 2.5rem 1.5rem;
  }

  .seller-no-products-icon {
    font-size: 3rem;
  }

  .seller-no-products p {
    font-size: 1.1rem;
  }

  .vendor-dashboard-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .vendor-dashboard-title::before {
    font-size: 2rem;
  }

  .vendor-add-product-card,
  .vendor-recent-products-card {
    padding: 1.5rem;
    border-radius: 12px;
  }

  .vendor-add-product-card h5,
  .vendor-recent-products-card .card-title {
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
  }

  .vendor-add-product-card h5::before,
  .vendor-recent-products-card .card-title::before {
    font-size: 1.5rem;
  }

  .vendor-add-product-card .form-label {
    font-size: .9rem;
  }

  .vendor-add-product-card .form-control,
  .vendor-add-product-card .form-select {
    padding: .65rem;
    font-size: .95rem;
  }

  .vendor-add-product-card .btn-primary {
    padding: .75rem 1.25rem;
    font-size: .95rem;
  }

  .vendor-accordion .accordion-button {
    font-size: 1rem;
    padding: .875rem 1rem;
  }

  .vendor-accordion .accordion-button::before {
    font-size: 1.25rem;
  }

  .vendor-accordion .accordion-body {
    padding: 1.25rem;
  }

  .vendor-product-mini-card .card-img-top {
    height: 150px;
  }

  .vendor-product-mini-card .card-body {
    padding: 1rem;
  }

  .vendor-product-mini-card .card-title {
    font-size: .95rem;
  }

  .vendor-product-mini-card .card-text {
    font-size: 1rem;
  }

  .vendor-recent-products-card .list-group-item {
    padding: .875rem 1rem;
    font-size: .9rem;
  }
}

/* ========================================
   Botão Voltar ao Topo
   ======================================== */

.scroll-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #d35e8f, #c94580);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(211, 94, 143, .6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transform: scale(.8);
  transition: all .3s ease;
}

.scroll-to-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.scroll-to-top-btn:hover {
  background: linear-gradient(135deg, #e06a9b, #d35e8f);
  box-shadow: 0 6px 24px rgba(211, 94, 143, .7);
  transform: scale(1.1) translateY(-3px);
}

.scroll-to-top-btn:active {
  transform: scale(.95);
  box-shadow: 0 2px 8px rgba(211, 94, 143, .3);
}

.scroll-to-top-btn svg {
  width: 24px;
  height: 24px;
  transition: transform .3s ease;
}

.scroll-to-top-btn:hover svg {
  transform: translateY(-2px);
}

/* Responsividade do botão de voltar ao topo */
@media (max-width: 768px) {
  .scroll-to-top-btn {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }

  .scroll-to-top-btn svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 576px) {
  .scroll-to-top-btn {
    width: 40px;
    height: 40px;
    bottom: 15px;
    right: 15px;
  }

  .scroll-to-top-btn svg {
    width: 18px;
    height: 18px;
  }
}
/* ===============================
   PÁGINAS FAQ, CONTATO, PEDIDOS E OCORRÊNCIAS
   Seguindo padrões do maoamiga.css
   =============================== */

/* ===============================
   ANIMAÇÕES REUTILIZÁVEIS
   =============================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeInMessage {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===============================
   HERO SECTIONS (FAQ, CONTATO, PEDIDOS, OCORRÊNCIAS)
   =============================== */
.faq-hero,
.contact-hero,
.orders-hero,
.ocorrencias-hero {
  background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-accent-2) 100%);
  color: white;
  padding: 3rem 0;
  margin-bottom: 2rem;
  animation: fadeIn .6s ease-out;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
}

.faq-hero::after,
.contact-hero::after,
.orders-hero::after,
.ocorrencias-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, white, transparent);
  opacity: .3;
}

.faq-icon {
  font-size: 3rem;
  color: white;
  margin-bottom: 1rem;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .3));
}

/* ===============================
   PÁGINA FAQ
   =============================== */
.faq-category-nav {
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.faq-category-btn {
  padding: 0.5rem 1rem;
  border-radius: 25px;
  border: 2px solid var(--brand-accent);
  background: white;
  color: var(--brand-accent);
  cursor: pointer;
  transition: all var(--transition);
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
}

.faq-category-btn:hover,
.faq-category-btn.active {
  background: var(--brand-accent);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(211, 94, 143, .3);
}

.faq-accordion .accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  animation: slideInUp .4s ease-out;
  transition: all var(--transition);
}

.faq-accordion .accordion-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.faq-accordion .accordion-button {
  background: white;
  color: var(--brand-dark);
  font-weight: 600;
  padding: 1.25rem;
  font-size: 1.1rem;
  transition: all var(--transition);
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: #f8f9fa;
  color: var(--brand-accent);
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: var(--brand-accent);
}

.faq-accordion .accordion-body {
  padding: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.faq-search {
  margin-bottom: 2rem;
}

.faq-search input {
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  border: 2px solid #e0e0e0;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
}

.faq-search input:focus {
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 0.2rem rgba(211, 94, 143, 0.25);
  transform: translateY(-1px);
}

.no-results {
  text-align: center;
  padding: 3rem 0;
  color: #666;
  animation: fadeIn .5s ease-out;
}

/* ===============================
   PÁGINA FALE CONOSCO
   =============================== */
.contact-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
  animation: slideInUp .5s ease-out;
  transition: all var(--transition);
}

.contact-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
  transform: translateY(-4px);
}

.contact-info-box {
  background: #f8f9fa;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--brand-accent);
  transition: all var(--transition);
}

.contact-info-box:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(211, 94, 143, .2);
  background: #fff;
}

.contact-info-box i {
  font-size: 2rem;
  color: var(--brand-accent);
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .1));
}

.btn-send {
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-2));
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(211, 94, 143, .3);
  color: white;
  border-radius: var(--radius-md);
}

.btn-send:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(211, 94, 143, .4);
  color: white;
}

.btn-clear {
  background: #6c757d;
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.btn-clear:hover {
  background: #5a6268;
  transform: translateY(-2px);
}

/* ===============================
   PÁGINA MEUS PEDIDOS
   =============================== */
.order-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  animation: slideInUp .4s ease-out;
}

.order-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.order-status {
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
}

.status-pendente {
  background: #ffeaa7;
  color: #d63031;
}

.status-pago {
  background: #55efc4;
  color: #00b894;
}

.status-enviado {
  background: #74b9ff;
  color: #0984e3;
}

.status-entregue {
  background: #00b894;
  color: white;
}

.status-cancelado {
  background: #dfe6e9;
  color: #636e72;
}

.order-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: var(--radius-md);
  margin-bottom: 0.5rem;
  transition: all var(--transition);
}

.order-item:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.order-item-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}

.order-item-details {
  flex: 1;
}

.order-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.btn-order-action {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
}

.btn-order-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline-item:before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand-accent);
  box-shadow: 0 0 0 4px rgba(211, 94, 143, .2);
}

.timeline-item:after {
  content: '';
  position: absolute;
  left: -1.7rem;
  top: 12px;
  width: 2px;
  height: calc(100% - 12px);
  background: #e0e0e0;
}

.timeline-item:last-child:after {
  display: none;
}

.filter-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  border: 2px solid var(--brand-accent);
  background: white;
  color: var(--brand-accent);
  cursor: pointer;
  transition: all var(--transition);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--brand-accent);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(211, 94, 143, .3);
}

.empty-orders {
  text-align: center;
  padding: 4rem 2rem;
  animation: fadeIn .5s ease-out;
}

.empty-orders i {
  font-size: 5rem;
  color: #ddd;
  margin-bottom: 1rem;
}

/* ===============================
   PÁGINA MINHAS OCORRÊNCIAS
   =============================== */
.ocorrencia-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: pointer;
  animation: slideInUp .4s ease-out;
}

.ocorrencia-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.status-badge {
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
}

.status-aberta {
  background: #ffeaa7;
  color: #d63031;
}

.status-em_analise {
  background: #74b9ff;
  color: #0984e3;
}

.status-respondida {
  background: #81ecec;
  color: #00b894;
}

.status-resolvida {
  background: #00b894;
  color: white;
}

.status-cancelada {
  background: #dfe6e9;
  color: #636e72;
}

.tipo-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
}

.tipo-duvida { background: #e3f2fd; color: #1976d2; }
.tipo-reclamacao { background: #ffebee; color: #c62828; }
.tipo-devolucao { background: #fff3e0; color: #ef6c00; }
.tipo-troca { background: #f3e5f5; color: #7b1fa2; }
.tipo-cancelamento { background: #fce4ec; color: #ad1457; }
.tipo-outros { background: #f1f3f4; color: #5f6368; }

.chat-container {
  max-height: 400px;
  overflow-y: auto;
  background: #f8f9fa;
  border-radius: var(--radius-md);
  padding: 1rem;
}

.chat-message {
  margin-bottom: 1rem;
  display: flex;
  gap: 0.75rem;
  animation: fadeInMessage .3s ease-out;
}

.chat-message.cliente {
  flex-direction: row-reverse;
}

.chat-bubble {
  max-width: 70%;
  padding: 0.75rem 1rem;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
}

.chat-bubble.cliente {
  background: var(--brand-accent);
  color: white;
  border-bottom-right-radius: 5px;
}

.chat-bubble.admin {
  background: white;
  border: 1px solid #e0e0e0;
  border-bottom-left-radius: 5px;
}

.chat-time {
  font-size: 0.75rem;
  color: #666;
  margin-top: 0.25rem;
}

.form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 20px;
  transition: all var(--transition);
}

.form-card:hover {
  box-shadow: var(--shadow-md);
}

.priority-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.85rem;
}

.priority-baixa { background: #e8f5e9; color: #2e7d32; }
.priority-media { background: #fff3e0; color: #f57c00; }
.priority-alta { background: #ffebee; color: #c62828; }

/* ===============================
   RESPONSIVIDADE - NOVAS PÁGINAS
   =============================== */

/* Tablets - 992px */
@media (max-width: 992px) {
  .faq-hero,
  .contact-hero,
  .orders-hero,
  .ocorrencias-hero {
    padding: 2.5rem 0;
  }

  .contact-card,
  .order-card,
  .ocorrencia-card {
    padding: 1.25rem;
  }

  .order-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .form-card {
    position: static;
    margin-top: 2rem;
  }
}

/* Tablets Portrait - 768px */
@media (max-width: 768px) {
  .faq-icon {
    font-size: 2.5rem;
  }

  .faq-hero h1,
  .contact-hero h1,
  .orders-hero h1,
  .ocorrencias-hero h1 {
    font-size: 2rem;
  }

  .faq-category-nav,
  .filter-tabs {
    gap: 0.35rem;
  }

  .faq-category-btn,
  .filter-tab {
    padding: 0.5rem 0.85rem;
    font-size: 0.9rem;
  }

  .faq-accordion .accordion-button {
    padding: 1rem;
    font-size: 1rem;
  }

  .contact-card {
    padding: 1.5rem;
  }

  .contact-info-box {
    padding: 1.25rem;
  }

  .order-item {
    flex-direction: column;
  }

  .order-item-image {
    width: 100%;
    height: 150px;
  }

  .order-actions {
    flex-direction: column;
  }

  .btn-order-action {
    width: 100%;
  }

  .chat-bubble {
    max-width: 85%;
  }
}

/* Mobile - 576px */
@media (max-width: 576px) {
  .faq-hero,
  .contact-hero,
  .orders-hero,
  .ocorrencias-hero {
    padding: 2rem 0;
  }

  .faq-icon {
    font-size: 2rem;
  }

  .faq-hero h1,
  .contact-hero h1,
  .orders-hero h1,
  .ocorrencias-hero h1 {
    font-size: 1.5rem;
  }

  .faq-hero p,
  .contact-hero p,
  .orders-hero p,
  .ocorrencias-hero p {
    font-size: 0.95rem;
  }

  .faq-search input {
    padding: 0.65rem 1.25rem;
    font-size: 0.95rem;
  }

  .faq-category-btn,
  .filter-tab {
    padding: 0.45rem 0.75rem;
    font-size: 0.85rem;
  }

  .faq-accordion .accordion-button {
    padding: 0.875rem;
    font-size: 0.95rem;
  }

  .faq-accordion .accordion-body {
    padding: 1.25rem;
    font-size: 0.95rem;
  }

  .contact-card,
  .order-card,
  .ocorrencia-card {
    padding: 1.25rem;
    border-radius: 12px;
  }

  .contact-info-box {
    padding: 1rem;
  }

  .contact-info-box i {
    font-size: 1.5rem;
  }

  .btn-send,
  .btn-clear {
    padding: 0.65rem 1.5rem;
    font-size: 0.95rem;
  }

  .order-status,
  .status-badge {
    padding: 0.4rem 0.85rem;
    font-size: 0.85rem;
  }

  .order-item-image {
    height: 120px;
  }

  .btn-order-action {
    padding: 0.5rem 0.85rem;
    font-size: 0.85rem;
  }

  .timeline {
    padding-left: 1.5rem;
  }

  .timeline-item:before {
    left: -1.5rem;
    width: 10px;
    height: 10px;
  }

  .timeline-item:after {
    left: -1.25rem;
  }

  .form-card {
    padding: 1.5rem;
  }

  .chat-bubble {
    max-width: 90%;
    padding: 0.65rem 0.85rem;
    font-size: 0.95rem;
  }

  .chat-time {
    font-size: 0.7rem;
  }

  .tipo-badge,
  .priority-badge {
    padding: 0.2rem 0.6rem;
    font-size: 0.8rem;
  }

  .empty-orders i {
    font-size: 4rem;
  }

  .empty-orders h3 {
    font-size: 1.25rem;
  }
}

/* ==============================================
   SELLER CALL-TO-ACTION (areaCliente.php)
   ============================================== */
.bg-gradient-seller {
  background: linear-gradient(135deg, #d35e8f 0%, #c80053 100%);
  border: none;
  color: #fff;
}

.bg-gradient-seller .cliente-card-title {
  color: #fff;
}

.bg-gradient-seller .text-muted {
  color: rgba(255, 255, 255, 0.9) !important;
}

.seller-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.seller-benefits-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: #fff;
}

.seller-benefits-list li svg {
  flex-shrink: 0;
  fill: #fff;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px;
  border-radius: 50%;
}

.btn-seller-cta {
  background: #fff;
  color: #d35e8f;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-seller-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: #fff;
  color: #c80053;
}

.btn-seller-cta svg {
  fill: currentColor;
}
