/* ================================
   ANIMAÇÕES E EFEITOS MODERNOS
   ================================ */

/* Keyframes para animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3) translateY(-50px);
  }
  50% {
    opacity: 1;
    transform: scale(1.05) translateY(-10px);
  }
  70% {
    transform: scale(0.95) translateY(0);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

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

/* Classes de animação */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-left {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.fade-in-right {
  animation: fadeInRight 0.8s ease-out forwards;
}

.scale-in {
  animation: scaleIn 0.6s ease-out forwards;
}

.slide-in-top {
  animation: slideInFromTop 0.8s ease-out forwards;
}

.bounce-in {
  animation: bounceIn 1s ease-out forwards;
}

.pulse-effect {
  animation: pulse 2s ease-in-out infinite;
}

/* Delays para efeito cascata */
.delay-100 {
  animation-delay: 0.1s;
}
.delay-200 {
  animation-delay: 0.2s;
}
.delay-300 {
  animation-delay: 0.3s;
}
.delay-400 {
  animation-delay: 0.4s;
}
.delay-500 {
  animation-delay: 0.5s;
}
.delay-600 {
  animation-delay: 0.6s;
}

/* Efeitos de hover modernos */
.modern-hover {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.modern-hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.5s ease-in-out;
  z-index: 1;
}

.modern-hover:hover::before {
  left: 100%;
}

.modern-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Efeito de loading/shimmer */
.shimmer-effect {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200px 100%;
  animation: shimmer 1.5s infinite;
}

/* Preload das animações para melhor performance */
.preload-animations * {
  animation-duration: 0s !important;
  animation-delay: 0s !important;
  transition-duration: 0s !important;
}

/* Reduzir animações em dispositivos com pouca performance */
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll,
  .portfolio-card,
  .modern-hover {
    animation: none !important;
    transition: none !important;
  }

  .animate-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Reset e configurações básicas - Mobile First */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100%;
}

/* Garantir que nenhum elemento cause scroll horizontal */
*,
*::before,
*::after {
  max-width: 100%;
  box-sizing: border-box;
}

/* Container principal - sem scroll horizontal */
.container,
.main,
.page,
.content,
.wrapper {
  max-width: 100%;
  overflow-x: hidden;
  width: 100%;
}

/* Correção específica para scroll horizontal */
html,
body {
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

/* Garantir que elementos não vazem */
* {
  max-width: 100%;
  box-sizing: border-box;
}

/* Correção específica para elementos que podem causar overflow */
.container,
.main,
.page,
.content,
.wrapper,
section,
article,
aside,
header,
footer,
nav {
  max-width: 100%;
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

/* Garantir que imagens não ultrapassem */
img,
video,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Correção específica para elementos que podem causar linha lateral */
* {
  max-width: 100%;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #1a202c;
  background: #f7fafc;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100%;
}

/* Correção específica para mobile - garantir centralização */
@media (max-width: 768px) {
  /* Forçar viewport correto */
  html {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    position: relative;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
  }

  body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    position: relative;
    margin: 0 !important;
    padding: 0 !important;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
  }

  /* Garantir que o viewport seja respeitado */
  * {
    -webkit-box-sizing: border-box !important;
    -moz-box-sizing: border-box !important;
    box-sizing: border-box !important;
  }

  header,
  header nav,
  header .logo,
  header .logo-img,
  header .hamburger-menu,
  header .hamburger-menu span,
  header .hamburger-menu-icon {
    max-width: none !important;
  }

  /* Garantir que todos os elementos principais fiquem centralizados */
  main,
  section,
  .presentation-section,
  .salon-section,
  .about-section,
  .portfolio-section,
  .services-section,
  .appointment-section {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
    overflow-x: hidden !important;
    position: relative;
    box-sizing: border-box !important;
  }

  /* Garantir que containers não vazem */
  .presentation-container,
  .salon-container,
  .about-container,
  .portfolio-container,
  .carousel-container,
  .services-grid,
  .appointment-form {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
    position: relative;
  }

  /* Garantir que o header não cause problemas */
  header {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    position: relative !important;
    /* Garantir que o menu hambúrguer seja visível */
    z-index: 100 !important;
  }

  nav {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0.75rem 1rem !important; /* Padding reduzido para mobile */
    margin: 0 !important;
    overflow-x: hidden !important;
    position: relative !important; /* Importante para o menu hambúrguer absoluto */
    /* Garantir que o menu hambúrguer seja posicionado corretamente */
    min-height: 70px !important; /* Altura ajustada para logo menor */
    display: flex !important;
    flex-direction: row !important; /* Forçar direção horizontal */
    align-items: center !important;
    justify-content: center !important; /* Centralizar conteúdo */
    gap: 0 !important; /* Remover gap que pode estar causando problemas */
  }

  /* Logo centralizado no mobile também */
  .logo {
    width: auto !important;
    max-width: 72% !important; /* Limitar largura para dar espaço ao menu */
    overflow: hidden !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    transition: all 0.3s ease !important;
  }

  .logo:hover {
    transform: translate(-50%, -50%) !important;
  }

  .logo-img {
    max-width: 100% !important;
    height: 100px !important;
    width: auto !important;
    overflow: hidden !important;
    border-radius: 10px !important;
    filter: drop-shadow(0 3px 10px rgba(214, 158, 46, 0.15)) !important;
    transition: all 0.3s ease !important;
  }

  .logo-img:hover {
    filter: drop-shadow(0 3px 10px rgba(214, 158, 46, 0.15)) !important;
  }

  .mobile-logo-img {
    height: 48px !important;
    width: auto !important;
    max-width: 100% !important;
  }

  /* Garantir que o menu mobile não cause problemas */
  .mobile-menu {
    width: 100% !important;
    max-width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    overflow-x: hidden !important;
    position: fixed !important;
  }

  /* Garantir que formulários não vazem */
  form,
  .form-group,
  input,
  select,
  textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Garantir que botões não vazem */
  button,
  .btn-primary,
  .btn-secondary {
    width: auto !important;
    max-width: 100% !important;
    overflow: hidden !important;
    white-space: nowrap !important;
  }

  /* Garantir que grids não vazem */
  .services-grid,
  .stats-grid,
  .appointments-grid {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  /* Garantir que o carrossel não vaze */
  .carousel-container {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    position: relative;
  }

  .carousel-slide {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .carousel-slide img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    overflow: hidden !important;
  }

  /* Garantir que notificações não vazem */
  .custom-notification {
    width: calc(100% - 2rem) !important;
    max-width: calc(100% - 2rem) !important;
    left: 1rem !important;
    right: 1rem !important;
    overflow: hidden !important;
  }
}

/* Tipografia global - Estilo iOS */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  line-height: 1.4;
  color: #1a202c;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p,
span,
div,
a,
button,
input,
textarea,
select,
label {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}

p {
  margin-bottom: 1rem;
  color: #4a5568;
}

a {
  color: #d69e2e;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #b7791f;
}

/* Header e Navegação - Mobile First */
header {
  background: #ffffff;
  border-bottom: 1px solid rgba(214, 158, 46, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

nav {
  padding: 1rem;
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 100%;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 80px; /* Garantir altura mínima para posicionamento */
}

/* Menu Hambúrguer - Novo Design */
.hamburger-menu {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 100001;
  /* Garantir que o botão seja clicável */
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.hamburger-menu-icon {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
  pointer-events: none;
}

.hamburger-menu span {
  display: none;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(0, 8.5px) !important;
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0 !important;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(0, -8.5px) !important;
}

/* Menu Mobile - Novo Design que Sobrepõe */
.mobile-menu {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100vh !important;
  min-height: 100vh !important;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  z-index: 999999 !important;
  transform: translateY(-100%);
  transition: all 0.3s ease;
  display: none; /* Inicialmente oculto */
  flex-direction: column;
  padding: 2rem 1.5rem;
  overflow-y: auto;
  overflow-x: hidden !important;
  box-sizing: border-box;
  margin: 0 !important;
  border: none !important;
  outline: none !important;
  pointer-events: none; /* Inicialmente não interativo */
  /* Garantir que nenhum container pai limite o menu */
  max-height: none !important;
  max-width: none !important;
  /* Garantir que o menu seja sempre visível quando ativo */
  visibility: hidden;
  opacity: 0;
}

/* Garantir que o menu mobile seja sempre visível quando ativo */
.mobile-menu.active {
  transform: translateY(0) !important;
  visibility: visible !important;
  opacity: 1 !important;
  display: flex !important;
  pointer-events: auto !important; /* Habilitar interação quando ativo */
  z-index: 999999 !important;
  /* Garantir que o menu seja sempre visível */
  transform: translateY(0) !important;
}

/* Forçar posicionamento absoluto para todos os elementos do menu */
.mobile-menu * {
  position: relative !important;
  z-index: inherit !important;
}

/* Garantir que o body não tenha overflow que interfira */
body.menu-open {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
  height: 100% !important;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(214, 158, 46, 0.2);
}

.mobile-menu-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mobile-menu-logo i {
  font-size: 1.5rem;
  color: #d69e2e;
}

.mobile-menu-logo h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a202c;
  margin: 0;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #718096;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.mobile-menu-close:hover {
  background: rgba(214, 158, 46, 0.1);
  color: #d69e2e;
}

.mobile-menu-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu-links a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  color: #4a5568;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 12px;
  transition: all 0.2s ease;
  background: transparent;
  border: 1px solid transparent;
}

.mobile-menu-links a:hover,
.mobile-menu-links a.active {
  background: rgba(214, 158, 46, 0.1);
  color: #d69e2e;
  border-color: rgba(214, 158, 46, 0.2);
  transform: translateX(8px);
}

.mobile-menu-links a i {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
  color: #d69e2e;
}

.mobile-menu-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(214, 158, 46, 0.1);
  background: linear-gradient(
    135deg,
    rgba(214, 158, 46, 0.05) 0%,
    rgba(183, 121, 31, 0.05) 100%
  );
  text-align: center;
}

.mobile-menu-footer p {
  color: #4a5568;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.mobile-cta-btn {
  background: linear-gradient(135deg, #d69e2e 0%, #b7791f 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 4px 15px rgba(214, 158, 46, 0.3);
}

.mobile-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(214, 158, 46, 0.4);
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  z-index: 1;
}

.logo:hover {
  transform: translate(-50%, -50%);
}

.logo-img {
  height: 132px;
  width: auto;
  border-radius: 12px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(214, 158, 46, 0.15));
  transition: all 0.3s ease;
}

.logo-img:hover {
  filter: drop-shadow(0 4px 12px rgba(214, 158, 46, 0.15));
}

.mobile-logo-img {
  height: 48px;
  width: auto;
  border-radius: 6px;
  object-fit: contain;
}

.logo h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #d69e2e;
  display: flex;
  align-items: center;
  margin: 0;
}

.logo i {
  font-size: 1.8rem;
  color: #d69e2e;
}

.nav-links {
  display: none;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Menu mobile - escondido por padrão em desktop */
.hamburger-menu {
  display: none;
  /* Garantir que o menu seja visível no mobile */
  position: relative;
  z-index: 100001;
}

.nav-links a {
  color: #4a5568;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  background: #f7fafc;
  border: 1px solid #e2e8f0;
}

.nav-links a:hover,
.nav-links a.active {
  color: #d69e2e;
  background: #fef5e7;
  border-color: #d69e2e;
}

/* Regras para dispositivos móveis */
@media (max-width: 767px) {
  .hamburger-menu {
    display: flex !important;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100002; /* Garantir que fique acima da logo */
  }

  .nav-links {
    display: none !important;
  }

  .mobile-menu {
    display: flex;
  }
}

/* Main Content - Mobile First */
main {
  padding: 0 0.75rem 1rem;
  padding-top: 0 !important;
  margin-top: 0 !important;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}
/* Primeira seção (hero) sem nenhum espaço em cima */
main > section:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Seção de Apresentação */
.presentation-section {
  padding: 6rem 1rem;
  margin: 0;
  position: relative;
  background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.presentation-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(214, 158, 46, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(183, 121, 31, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.presentation-container {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
  width: 100%;
  overflow-x: hidden;
  padding: 0 1rem;
  /* Animação de entrada */
  opacity: 0;
  animation: fadeInUp 1.2s ease-out 0.3s forwards;
}

.profile-avatar {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid #ffffff;
  box-shadow: 0 25px 50px rgba(214, 158, 46, 0.15),
    0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  /* Animação de entrada */
  opacity: 0;
  animation: bounceIn 1.5s ease-out 0.6s forwards;
}

.profile-avatar::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 50%;
  background: linear-gradient(45deg, #d69e2e, #b7791f, #975a1a);
  z-index: -1;
  animation: rotate 8s linear infinite;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.presentation-content {
  text-align: center;
  max-width: 600px;
  /* Animação de entrada */
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.9s forwards;
}

.typing-text {
  font-size: 3rem;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  color: #1a202c;
  margin-bottom: 2rem;
  line-height: 1.3;
  position: relative;
  letter-spacing: -0.02em;
}

.typing-text::after {
  content: "|";
  animation: blink 1s infinite;
  color: #d69e2e;
  font-weight: 300;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.highlight {
  background: linear-gradient(135deg, #d69e2e, #b7791f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.presentation-description {
  font-size: 1.25rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 3rem;
  font-weight: 400;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  max-width: 700px;
}

.presentation-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  background: rgba(255, 255, 255, 0.8);
  padding: 2rem 3rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(214, 158, 46, 0.1);
  box-shadow: 0 10px 30px rgba(214, 158, 46, 0.1);
  /* Animação de entrada */
  opacity: 0;
  animation: fadeInUp 1s ease-out 1.2s forwards;
}

.stat-item {
  text-align: center;
  min-width: 120px;
  /* Animação de entrada com efeito cascata */
  opacity: 0;
  animation: scaleIn 0.6s ease-out forwards;
}

.stat-item:nth-child(1) {
  animation-delay: 1.5s;
}
.stat-item:nth-child(2) {
  animation-delay: 1.7s;
}
.stat-item:nth-child(3) {
  animation-delay: 1.9s;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  color: #d69e2e;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.9rem;
  color: #4a5568;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Hero estilo banner: texto à esquerda, foto à direita, fundo branco – colado ao header */
.presentation-section.hero-style {
  background: #ffffff;
  padding: 0 1rem 2rem !important;
  margin-top: -16px !important; /* cola o hero ao header, elimina qualquer faixa */
  padding-top: 0 !important;
}
.presentation-section.hero-style::before {
  display: none;
}
.hero-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
  opacity: 1;
  animation: none;
}
.hero-content {
  flex: 1;
  min-width: 0;
}
.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b8860b;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.2s forwards;
}
.hero-headline {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  color: #b8860b;
  margin-bottom: 1.25rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.35s forwards;
}
.hero-description {
  font-size: 1.05rem;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 1.75rem;
  max-width: 420px;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.5s forwards;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  background: linear-gradient(135deg, #c9a227, #b8860b);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(184, 134, 11, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.65s forwards;
}
.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
  color: #fff;
}
.hero-cta i {
  font-size: 0.85rem;
}
.hero-image-wrap {
  flex: 0 0 auto;
  width: min(45%, 420px);
  max-width: 100%;
  opacity: 0;
  animation: fadeInRight 0.8s ease-out 0.4s forwards;
  position: relative;
  padding: 0;
  background: none;
  box-shadow: none;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 16px;
  border: 3px solid #c9a227;
  box-shadow: none;
  outline: none;
  -webkit-mask-image: none;
  mask-image: none;
}

/* Responsividade para Mobile */
@media (max-width: 768px) {
  /* Forçar sem scroll horizontal - CRÍTICO */
  html,
  body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
    position: relative !important;
  }

  /* Forçar viewport correto */
  * {
    box-sizing: border-box !important;
  }

  header,
  header nav,
  header .logo,
  header .logo-img,
  header .hamburger-menu,
  header .hamburger-menu span,
  header .hamburger-menu-icon {
    max-width: none !important;
  }

  /* Garantir que seções não causem overflow */
  .presentation-section {
    transform: none !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
  /* Hero: empilhar em mobile */
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .hero-content {
    order: 1;
  }
  .hero-description {
    max-width: 100%;
  }
  .hero-image-wrap {
    width: fit-content;
    max-width: min(92vw, 320px);
    order: 2;
    margin: 1.5rem auto 0;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    line-height: 0;
    overflow: visible;
  }

  .hero-img {
    display: block;
    width: clamp(220px, 70vw, 320px);
    max-width: min(92vw, 320px);
    height: auto;
    border: 3px solid #c9a227;
    border-radius: clamp(12px, 3.5vw, 16px);
    object-fit: unset;
    box-sizing: border-box;
  }

  /* Garantir que portfolio não cause overflow */
  .portfolio-carousel,
  .carousel-container {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  /* Manter funcionalidade do carrossel no mobile */
  .carousel-track {
    max-width: none !important;
    overflow-x: visible !important;
  }

  /* Forçar todos os elementos principais */
  section,
  .container,
  .content,
  main {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  /* Desabilitar animações que podem causar overflow no mobile */
  .portfolio-card:hover {
    transform: translateY(-10px) !important;
    /* Remover rotação no mobile */
  }

  /* Garantir que elementos animados não saiam da tela */
  .animate-on-scroll,
  .modern-hover,
  .contact-btn {
    transform: none !important;
    transition: opacity 0.3s ease !important;
  }

  /* Manter apenas animações de opacidade no mobile */
  .animate-on-scroll.visible {
    opacity: 1 !important;
    transform: none !important;
  }

  /* Navegação mobile */
  .nav-links {
    display: none;
  }

  /* Garantir que todo o conteúdo fique centralizado */
  body {
    text-align: center;
  }

  /* Centralizar todos os elementos principais */
  main {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
  }

  /* Garantir que seções não vazem */
  section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  /* Centralizar containers */
  .presentation-container,
  .salon-container,
  .about-container,
  .portfolio-container,
  .carousel-container,
  .services-grid,
  .appointment-form,
  .login-container,
  .admin-dashboard {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  /* Garantir que grids fiquem centralizados */
  .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    justify-items: center;
  }

  /* Centralizar estatísticas */
  .stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    justify-items: center;
  }

  /* Centralizar formulários */
  form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
  }

  .form-group {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Centralizar inputs */
  input,
  select,
  textarea {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  /* Centralizar botões */
  button,
  .btn-primary,
  .btn-secondary {
    align-self: center;
    margin: 0 auto;
  }

  /* Centralizar notificações */
  .custom-notification {
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: calc(100% - 2rem) !important;
    max-width: calc(100% - 2rem) !important;
  }

  /* Centralizar painel admin */
  .admin-dashboard {
    padding: 1rem !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .dashboard-header {
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .stats-grid {
    justify-items: center !important;
    align-items: center !important;
  }

  .stat-card {
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Centralizar tabelas */
  .appointments-table,
  .clients-table,
  .services-table {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
  }

  .appointments-table th,
  .appointments-table td,
  .clients-table th,
  .clients-table td,
  .services-table th,
  .services-table td {
    text-align: center !important;
    padding: 0.5rem !important;
    font-size: 0.9rem !important;
  }

  /* Centralizar gráficos */
  .chart-container {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
  }

  /* Centralizar sistema de agendamento */
  .appointment-section {
    padding: 1rem !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .appointment-form {
    width: 100% !important;
    max-width: 100% !important;
    padding: 1rem !important;
  }

  .time-slots-container {
    width: 100% !important;
    max-width: 100% !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .time-slot {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
  }

  /* Centralizar modal de agendamento */
  .modal {
    width: 95% !important;
    max-width: 95% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin: 0 !important;
  }

  .modal-content {
    width: 100% !important;
    max-width: 100% !important;
    padding: 1rem !important;
  }

  /* Centralizar login de cliente */
  .client-login-modal {
    width: 95% !important;
    max-width: 95% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  .client-login-content {
    width: 100% !important;
    max-width: 100% !important;
    padding: 1rem !important;
  }

  .hamburger-menu {
    display: flex !important;
    position: absolute !important; /* Mudado para absolute para posicionamento preciso */
    right: 1rem !important; /* Posicionar no canto direito */
    top: 50% !important; /* Centralizar verticalmente */
    transform: translateY(-50%) !important; /* Centralizar perfeitamente */
    z-index: 100001 !important;
    cursor: pointer !important;
    background: none !important;
    border: none !important;
    padding: 0.75rem !important; /* Padding aumentado para área de toque maior */
    border-radius: 6px !important; /* Border radius aumentado */
    transition: all 0.2s ease !important;
    /* Garantir que o botão seja visível e clicável */
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    /* Forçar visibilidade */
    width: 36px !important; /* Botão maior para melhor usabilidade */
    height: 32px !important;
    min-width: 36px !important;
    min-height: 32px !important;
    /* Melhor alinhamento */
    align-self: center !important;
    flex-shrink: 0 !important; /* Impedir que o botão encolha */
  }

  /* Ajustar as linhas do menu hambúrguer */
  .hamburger-menu span {
    height: 4px !important; /* Linhas mais grossas */
    background: #8b4513 !important; /* Cor mais escura para melhor visibilidade */
    border-radius: 3px !important; /* Border radius aumentado */
    transition: all 0.3s ease !important;
    width: 100% !important; /* Garantir que as linhas ocupem toda a largura */
    margin: 2px 0 !important; /* Espaçamento entre as linhas */
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important; /* Sombra para destacar */
  }

  .hamburger-menu {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 38px !important;
    padding: 0 !important;
  }

  /* Garantir que as linhas sejam visíveis no mobile */
  .hamburger-menu span {
    display: block !important; /* FORÇAR exibição das linhas */
    opacity: 1 !important; /* Garantir que não estejam transparentes */
    visibility: visible !important; /* Garantir visibilidade */
  }

  .hamburger-menu:hover {
    background: rgba(184, 134, 11, 0.95) !important;
    transform: translateY(-50%) !important;
  }

  .hamburger-menu {
    background: rgba(214, 158, 46, 0.92) !important;
    border: 1px solid rgba(184, 134, 11, 0.55) !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 8px rgba(184, 134, 11, 0.25) !important;
    position: absolute !important;
    right: 1rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 100001 !important;
  }

  .mobile-menu {
    display: none; /* Inicialmente oculto, será mostrado via JavaScript */
  }

  .presentation-section {
    padding: 4rem 1rem;
    margin: 0;
  }
  .presentation-section.hero-style {
    padding: 0 1.5rem 2rem !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

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

  .typing-text {
    font-size: 2.5rem;
  }

  .presentation-stats {
    gap: 2rem;
    padding: 1.5rem 2rem;
  }

  .stat-item {
    min-width: 120px;
  }

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

  .section-title {
    font-size: 2.5rem;
  }

  .section-description {
    font-size: 1.1rem;
  }

  .portfolio-section {
    padding: 4rem 1rem;
  }

  .services-grid-section {
    padding: 1.5rem 1rem;
    margin: 0.75rem 0.5rem;
  }

  .services-grid-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
      "Helvetica Neue", Arial, sans-serif;
    line-height: 1.4;
  }
}

/* Seção do Salão */
.salon-section {
  padding: 1.5rem 1rem 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.salon-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 70%,
      rgba(214, 158, 46, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(183, 121, 31, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.salon-container {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  width: 100%;
  overflow-x: hidden;
  padding: 0 1rem;
}

.salon-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(214, 158, 46, 0.1);
  transition: all 0.3s ease;
}

.salon-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.salon-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.salon-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.salon-card:hover .salon-image img {
  transform: scale(1.05);
}

.salon-content {
  padding: 2rem 1.5rem;
  text-align: center;
}

.salon-content h3 {
  font-size: 1.8rem;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  color: #1a202c;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.salon-content p {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.6;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}

/* Seção Sobre a Profissional */
.about-professional-section {
  padding: 6rem 1rem;
  background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.about-professional-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 80% 20%,
      rgba(214, 158, 46, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(183, 121, 31, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.about-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
  width: 100%;
  overflow-x: hidden;
  padding: 0 1rem;
}

.professional-photo {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid #ffffff;
  box-shadow: 0 25px 50px rgba(214, 158, 46, 0.15),
    0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.professional-photo::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 50%;
  background: linear-gradient(45deg, #d69e2e, #b7791f, #975a1a);
  z-index: -1;
  animation: rotate 8s linear infinite;
}

.professional-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.professional-photo:hover img {
  transform: scale(1.05);
}

.about-content {
  text-align: center;
  max-width: 700px;
}

.about-content h3 {
  font-size: 2.5rem;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  color: #1a202c;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.about-content p {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.7;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.about-content p:last-child {
  margin-bottom: 0;
}

/* Seção de Contato dentro do About */
.contact-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid #f7fafc;
  text-align: center;
}

.contact-title {
  font-size: 1.8rem;
  color: #1a202c;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.4;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  letter-spacing: -0.02em;
}

.contact-invitation {
  font-size: 1.1rem;
  color: #4a5568;
  font-weight: 400;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
}

.contact-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.2rem 2.5rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: white;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(0) scale(1);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  min-width: 180px;
  justify-content: center;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.025em;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.contact-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s;
}

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

.contact-btn i {
  font-size: 1.3rem;
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25d366 0%, #1db954 50%, #128c7e 100%);
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  background: linear-gradient(135deg, #1db954 0%, #25d366 50%, #0fa654 100%);
  color: white;
  border-color: rgba(37, 211, 102, 0.5);
}

.instagram-btn {
  background: linear-gradient(
    135deg,
    #833ab4 0%,
    #c13584 25%,
    #e4405f 50%,
    #f56040 75%,
    #ffdc80 100%
  );
  border: 1px solid rgba(228, 64, 95, 0.3);
}

.instagram-btn:hover {
  background: linear-gradient(
    135deg,
    #405de6 0%,
    #833ab4 25%,
    #c13584 50%,
    #e4405f 75%,
    #fd1d1d 100%
  );
  color: white;
  border-color: rgba(228, 64, 95, 0.5);
}

/* Responsividade para as novas seções */
@media (max-width: 768px) {
  .salon-section {
    padding: 2rem 1rem;
  }

  .salon-content {
    padding: 1.5rem 1rem;
  }

  .salon-content h3 {
    font-size: 1.6rem;
  }

  .salon-content p {
    font-size: 0.95rem;
  }

  .about-professional-section {
    padding: 4rem 1rem;
  }

  .professional-photo {
    width: 220px;
    height: 220px;
  }

  .about-content h3 {
    font-size: 2rem;
  }

  .about-content p {
    font-size: 1rem;
  }

  /* Responsividade para botões de contato */
  .contact-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
  }

  .contact-title {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
  }

  .contact-invitation {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .contact-buttons {
    gap: 1rem;
    flex-direction: column;
    align-items: center;
  }

  .contact-btn {
    width: 100%;
    max-width: 280px;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
  }

  .contact-btn i {
    font-size: 1.2rem;
  }
}

/* Portfólio Section - Design Minimalista */
.portfolio-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 2.5rem 1rem;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  position: relative;
  width: 100%;
  max-width: 100%;
}

.portfolio-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 80% 80%,
      rgba(214, 158, 46, 0.02) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 20% 20%,
      rgba(183, 121, 31, 0.02) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.portfolio-container {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  width: 100%;
  overflow-x: hidden;
}

.portfolio-header {
  text-align: center;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  overflow-x: hidden;
}

.section-subtitle {
  color: #d69e2e;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  display: block;
  line-height: 1.4;
}

.section-title {
  color: #1a202c;
  font-size: 3rem;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  margin-bottom: 2rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.section-description {
  color: #4a5568;
  font-size: 1.25rem;
  line-height: 1.7;
  font-weight: 400;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  margin: 0;
}

/* Carrossel do Portfólio */
.portfolio-carousel {
  position: relative;
  margin-bottom: 2rem;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.carousel-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  overflow-x: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 2, 1);
  gap: 2rem;
  width: 100%;
  max-width: 100%;
}

.portfolio-card {
  min-width: 280px;
  max-width: 350px;
  flex-shrink: 0;
  width: 100%;
  /* Animações de entrada */
  opacity: 0;
  transform: translateY(50px) scale(0.9);
  animation: scaleIn 0.8s ease-out forwards;
}

/* Card do Portfólio */
.portfolio-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08),
    0 4px 15px rgba(214, 158, 46, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(214, 158, 46, 0.05);
  backdrop-filter: blur(10px);
  will-change: transform, box-shadow;
}

.portfolio-card:hover {
  transform: translateY(-15px) rotate(1deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2),
    0 20px 40px rgba(214, 158, 46, 0.15);
  border-color: rgba(214, 158, 46, 0.3);
}

.portfolio-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(214, 158, 46, 0.05) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.portfolio-card:hover::after {
  opacity: 1;
}

.card-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Ajustes específicos de posição para imagens do carrossel */
.card-image img[src="esmaltacao-gel.jpg"] {
  object-position: center top; /* Mais para cima */
}

.card-image img[src="manutencao.jpg"] {
  object-position: center bottom; /* Mais para baixo */
}

.portfolio-card:hover .card-image img {
  transform: scale(1.05);
}

/* Overlay do Card */
.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(214, 158, 46, 0.95) 0%,
    rgba(183, 121, 31, 0.95) 100%
  );
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 2rem;
}

.portfolio-card:hover .card-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card:hover .overlay-content {
  transform: translateY(0);
}

.service-category {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  display: inline-block;
  backdrop-filter: blur(10px);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: white;
}

.service-description {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.5;
  color: white;
  margin: 0;
}

/* Navegação do Carrossel - Removida para design mais limpo */

/* Setas de navegação removidas para design mais limpo */

/* Indicadores do Carrossel */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e2e8f0;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.indicator:hover {
  background: #cbd5e0;
  transform: scale(1.2);
}

.indicator.active {
  background: #d69e2e;
  border-color: #d69e2e;
  transform: scale(1.2);
}

/* Responsividade do Portfólio */
@media (max-width: 768px) {
  .portfolio-section {
    padding: 3rem 1rem;
    margin: 1rem;
  }

  .portfolio-header {
    margin-bottom: 1.75rem;
  }

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

  .section-description {
    font-size: 1rem;
  }

  .portfolio-card {
    min-width: 250px;
    max-width: 300px;
  }

  .card-image {
    height: 240px;
  }

  /* Setas de navegação removidas */
}

@media (min-width: 1024px) {
  .presentation-section {
    padding: 8rem 2rem;
  }
  .presentation-section.hero-style {
    padding: 0 1.5rem 2rem !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  .portfolio-section {
    padding: 3rem 2rem;
    margin: 0;
  }

  .section-title {
    font-size: 3.5rem;
  }

  .section-description {
    font-size: 1.375rem;
  }

  .portfolio-card {
    min-width: 320px;
    max-width: 400px;
  }

  .card-image {
    height: 320px;
  }

  /* Setas de navegação removidas */

  .services-grid-section {
    padding: 2.5rem 1.5rem;
    margin: 1.5rem 0.75rem;
  }

  .services-grid-section h3 {
    font-size: 2.25rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
      "Helvetica Neue", Arial, sans-serif;
    line-height: 1.4;
  }
}

@media (min-width: 1280px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.hero h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1rem;
  opacity: 0.9;
  max-width: 100%;
  margin: 0 auto;
}

/* Services Grid Section - Mobile First */
.services-grid-section {
  background: #ffffff;
  padding: 2rem 1rem;
  margin: 1rem 0.5rem;
  position: relative;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.services-grid-section h3 {
  margin-bottom: 1.5rem;
  color: #1a202c;
  font-size: 1.75rem;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  text-align: center;
  position: relative;
  z-index: 2;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #ffffff;
  border: 1px solid #e8ecf0;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  border-color: rgba(184, 134, 11, 0.35);
}

.service-image {
  width: 100%;
  height: 180px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 2.5rem;
  position: relative;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-img {
  transform: scale(1.06);
}

/* Imagens redondas para perfil e sobre */
.profile-img,
.about-img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay leve só nas bordas para dar profundidade, sem esconder a foto */
.service-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.08) 0%,
    transparent 30%,
    transparent 70%,
    rgba(0, 0, 0, 0.12) 100%
  );
  pointer-events: none;
}

.service-image i {
  position: relative;
  z-index: 2;
}

.service-card-content {
  padding: 1.25rem 1.125rem;
}

.service-card h4 {
  color: #1a202c;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.35;
}

.service-card .price {
  font-size: 1.2rem;
  font-weight: 700;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  color: #0d9488;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.service-card .duration {
  color: #64748b;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.service-card p {
  color: #475569;
  line-height: 1.55;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
}

.service-card .book-btn {
  background: linear-gradient(135deg, #c9a227 0%, #b8860b 100%);
  color: #fff;
  padding: 0.65rem 1rem;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  font-size: 0.9rem;
  line-height: 1.4;
  box-shadow: 0 2px 8px rgba(184, 134, 11, 0.25);
}

.service-card .book-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(184, 134, 11, 0.35);
}

/* Modal de Agendamento - Mobile First */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

.booking-modal {
  max-width: 100%;
  width: 100%;
  margin: 0;
  border-radius: 0;
  min-height: 100vh;
}

.booking-modal-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Conteúdo de seleção de data */
.date-selection-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.date-selection h4 {
  color: #1a202c;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  text-align: center;
  line-height: 1.4;
}

.available-dates {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.date-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.date-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-color: #d69e2e;
}

.date-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.date-info .day {
  font-size: 1.1rem;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  color: #d69e2e;
  text-transform: capitalize;
  line-height: 1.4;
}

.date-info .date {
  font-size: 1rem;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  color: #1a202c;
  line-height: 1.4;
}

.date-info .available-slots {
  font-size: 0.9rem;
  color: #718096;
  font-weight: 500;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.4;
}

/* Status de disponibilidade das datas */
.availability-status {
  font-size: 0.85rem;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.4;
}

.availability-status.available {
  background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
  color: white;
}

.availability-status.partial {
  background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
  color: white;
}

.availability-status.unavailable {
  background: linear-gradient(135deg, #f56565 0%, #e53e3e 100%);
  color: white;
}

.no-dates {
  text-align: center;
  padding: 2rem;
  color: #718096;
}

.no-dates p {
  margin-bottom: 0.5rem;
}

/* Conteúdo de seleção de horário */
.time-selection-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.time-selection h4 {
  color: #1a202c;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  text-align: center;
  line-height: 1.4;
}

.available-times {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}

.time-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.time-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-color: #d69e2e;
}

.time-card .time-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.time-card .time {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a202c;
}

.time-card .duration-info {
  font-size: 0.9rem;
  color: #718096;
  font-weight: 500;
}

/* Status badges para horários */
.time-card .status-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.time-card .status-badge.available {
  background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
  color: white;
}

.time-card .status-badge.booked {
  background: linear-gradient(135deg, #f56565 0%, #e53e3e 100%);
  color: white;
}

.time-card .status-badge.conflict {
  background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
  color: white;
}

.time-card .status-badge.unavailable {
  background: linear-gradient(135deg, #a0aec0 0%, #718096 100%);
  color: white;
}

/* Informação de conflito */
.time-card .conflict-info {
  font-size: 0.75rem;
  color: #e53e3e;
  font-weight: 500;
  text-align: center;
  margin-top: 0.25rem;
  padding: 0.25rem 0.5rem;
  background: rgba(229, 62, 62, 0.1);
  border-radius: 6px;
  border: 1px solid rgba(229, 62, 62, 0.2);
}

/* Estados dos time-cards */
.time-card.available {
  border-color: #48bb78;
  background: linear-gradient(135deg, #f0fff4 0%, #ffffff 100%);
}

.time-card.unavailable {
  opacity: 0.7;
  background: #f7fafc;
}

.time-card.unavailable button:disabled {
  background: #cbd5e0;
  cursor: not-allowed;
}

.no-times {
  text-align: center;
  padding: 2rem;
  color: #718096;
}

.no-times p {
  margin-bottom: 1rem;
}

/* Conteúdo de dados pessoais */
.personal-data-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.appointment-summary {
  background: #f7fafc;
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}

.appointment-summary h4 {
  color: #1a202c;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-item .label {
  font-weight: 600;
  color: #4a5568;
}

.summary-item .value {
  font-weight: 500;
  color: #1a202c;
}

.personal-data-form {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}

/* Modal de confirmação */
.confirmation-modal {
  max-width: 100%;
  width: 100%;
  margin: 0;
  border-radius: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.confirmation-content {
  text-align: center;
  padding: 2rem;
  max-width: 500px;
}

.success-icon {
  font-size: 4rem;
  color: #48bb78;
  margin-bottom: 1.5rem;
}

.confirmation-content h3 {
  color: #1a202c;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  font-weight: 700;
}

.confirmation-details {
  background: #f7fafc;
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  margin-bottom: 1.5rem;
  text-align: left;
}

.confirmation-details p {
  margin-bottom: 0.75rem;
  color: #4a5568;
  font-weight: 500;
}

.confirmation-details p:last-child {
  margin-bottom: 0;
}

.confirmation-details strong {
  color: #1a202c;
}

.confirmation-message {
  color: #718096;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-size: 1rem;
}

.service-preview {
  background: #f7fafc;
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}

.service-image {
  width: 100%;
  height: 140px;
  background: linear-gradient(135deg, #f6e05e 0%, #ecc94b 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.service-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(246, 224, 94, 0.8) 0%,
    rgba(236, 201, 75, 0.8) 100%
  );
  opacity: 0.8;
  border-radius: 12px;
}

.service-image i {
  position: relative;
  z-index: 2;
}

.service-details h3 {
  color: #1a202c;
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
  font-weight: 700;
}

.service-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.service-info span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #718096;
  font-weight: 500;
  font-size: 0.9rem;
}

.service-info i {
  color: #d69e2e;
  width: 16px;
}

.service-details p {
  color: #4a5568;
  line-height: 1.5;
  font-size: 0.9rem;
}

/* Formulário Inline - Mobile First */
.booking-form-inline {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #4a5568;
  font-size: 0.9rem;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.4;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  transition: all 0.2s ease;
  background: #ffffff;
  color: #1a202c;
  line-height: 1.5;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d69e2e;
  box-shadow: 0 0 0 3px rgba(214, 158, 46, 0.1);
  transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a0aec0;
}

/* Buttons - Mobile First */
.btn-primary,
.btn-secondary {
  padding: 0.875rem 1.5rem;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  text-align: center;
  line-height: 1.5;
}

.btn-primary {
  background: linear-gradient(135deg, #d69e2e 0%, #b7791f 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(214, 158, 46, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

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

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(214, 158, 46, 0.5);
  background: linear-gradient(135deg, #e5b439 0%, #c8882a 100%);
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
  transition: all 0.1s ease;
}

.btn-secondary {
  background: linear-gradient(135deg, #718096 0%, #4a5568 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(113, 128, 150, 0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

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

.btn-secondary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(113, 128, 150, 0.4);
  background: linear-gradient(135deg, #7d8ba3 0%, #556278 100%);
}

/* Forms - Mobile First */
.booking-form,
.search-section {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  border: 1px solid #e2e8f0;
}

.booking-form h3,
.search-section h3 {
  margin-bottom: 1.5rem;
  color: #1a202c;
  font-size: 1.4rem;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  text-align: center;
  line-height: 1.4;
}

/* Appointments List - Mobile First */
.appointments-list {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.appointment-item {
  background: #f7fafc;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.2s ease;
}

.appointment-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.appointment-info h4 {
  color: #1a202c;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.4;
}

.appointment-info p {
  color: #718096;
  margin-bottom: 0.25rem;
  font-weight: 500;
  font-size: 0.9rem;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
}

.appointment-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* Botão WhatsApp */
.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 600;
  font-size: 0.85rem;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
  line-height: 1.4;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  background: linear-gradient(135deg, #128c7e 0%, #0d6b5f 100%);
}

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

.btn-cancel {
  background: linear-gradient(135deg, #fc8181 0%, #f56565 100%);
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 600;
  font-size: 0.85rem;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  flex: 1;
  line-height: 1.4;
}

.btn-cancel:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(245, 101, 101, 0.3);
}

/* Login Section - Mobile First */
.login-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  padding: 1rem;
}

.login-container {
  background: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  border: 1px solid #e2e8f0;
}

.login-container h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #1a202c;
  font-size: 1.6rem;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.4;
}

/* Admin Dashboard - Mobile First */
.admin-dashboard {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  margin: 1rem;
}

.dashboard-header {
  background: linear-gradient(135deg, #d69e2e 0%, #b7791f 100%);
  color: white;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.dashboard-header h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.4;
}

/* Statistics - Mobile First */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.5rem;
  background: #f7fafc;
}

.stat-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: transform 0.2s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
}

.stat-card h3 {
  color: #718096;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.stat-card p {
  font-size: 2rem;
  font-weight: 700;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  color: #1a202c;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.stat-card span {
  color: #718096;
  font-size: 0.85rem;
  font-weight: 500;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.4;
}

/* Tabs - Mobile First */
.tabs {
  display: flex;
  background: #f7fafc;
  border-bottom: 1px solid #e2e8f0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Painel Financeiro */
.finance-filters {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.finance-filters select,
.finance-filters input {
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

.finance-summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.finance-card {
  background: linear-gradient(135deg, #d69e2e 0%, #b7791f 100%);
  color: white;
  padding: 1.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.finance-card:hover {
  transform: translateY(-5px);
}

.finance-card h4 {
  margin: 0 0 1rem 0;
  font-size: 1rem;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  opacity: 0.9;
  line-height: 1.4;
}

.finance-amount {
  font-size: 2rem;
  font-weight: 700;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  margin: 0.5rem 0;
  line-height: 1.2;
}

.finance-period {
  font-size: 0.85rem;
  font-weight: 400;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  opacity: 0.8;
  line-height: 1.4;
}

.charts-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.chart-container {
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.chart-container h4 {
  margin: 0 0 1rem 0;
  color: #333;
  text-align: center;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.4;
}

.daily-breakdown {
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.daily-breakdown h4 {
  margin: 0 0 1.5rem 0;
  color: #333;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.4;
}

.breakdown-table {
  overflow-x: auto;
}

.breakdown-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
}

.breakdown-table th,
.breakdown-table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid #eee;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
}

.breakdown-table th {
  background: #f8f9fa;
  font-weight: 600;
  color: #333;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.4;
}

.breakdown-table tr:hover {
  background: #f8f9fa;
}

.tab-btn {
  padding: 1rem 1.5rem;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 0.9rem;
  color: #718096;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  transition: all 0.2s ease;
  border-bottom: 3px solid transparent;
  font-weight: 500;
  white-space: nowrap;
  min-width: max-content;
  line-height: 1.4;
}

.tab-btn.active,
.tab-btn:hover {
  color: #d69e2e;
  border-bottom-color: #d69e2e;
  background: #ffffff;
  font-weight: 600;
}

.tab-content {
  display: none;
  padding: 1.5rem;
}

.tab-content.active {
  display: block;
}

.tab-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.tab-header h3 {
  color: #1a202c;
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.4;
}

/* Filters - Mobile First */
.filters {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filter-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #4a5568;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.filters input,
.filters select {
  padding: 0.75rem;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  background: #ffffff;
  transition: all 0.2s ease;
  width: 100%;
  line-height: 1.5;
}

.filters input:focus,
.filters select:focus {
  border-color: #d69e2e;
  box-shadow: 0 0 0 3px rgba(214, 158, 46, 0.1);
}

/* Modal - Mobile First */
.modal-content {
  background: #ffffff;
  margin: 0;
  padding: 1.5rem;
  border-radius: 0;
  width: 100%;
  max-width: 100%;
  position: relative;
  min-height: 100vh;
  overflow-y: auto;
}

.close {
  color: #a0aec0;
  float: right;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  right: 1rem;
  top: 1rem;
  transition: color 0.2s ease;
  z-index: 10;
}

.close:hover {
  color: #1a202c;
}

/* Service Items - Mobile First */
.service-item {
  background: #f7fafc;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.2s ease;
}

.service-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-info h4 {
  color: #1a202c;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.service-info p {
  color: #718096;
  margin-bottom: 0.25rem;
  font-weight: 500;
  font-size: 0.9rem;
}

.service-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

/* Appointment Status Styles */
.appointment-status {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-confirmed {
  background-color: #c6f6d5;
  color: #22543d;
  border: 1px solid #9ae6b4;
}

.status-completed {
  background-color: #bee3f8;
  color: #2a4365;
  border: 1px solid #90cdf4;
}

.status-cancelled {
  background-color: #fed7d7;
  color: #742a2a;
  border: 1px solid #feb2b2;
}

.status-today {
  background-color: #fef5e7;
  color: #744210;
  border: 1px solid #fbd38d;
}

/* Appointments Header and Status Badges */
.appointments-header {
  background: #f8fafc;
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  border: 1px solid #e2e8f0;
}

.status-summary {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.status-badge {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-badge.confirmed {
  background-color: #c6f6d5;
  color: #22543d;
  border: 1px solid #9ae6b4;
}

.status-badge.completed {
  background-color: #bee3f8;
  color: #2a4365;
  border: 1px solid #90cdf4;
}

.status-badge.cancelled {
  background-color: #fed7d7;
  color: #742a2a;
  border: 1px solid #feb2b2;
}

.status-badge.today {
  background-color: #fef5e7;
  color: #744210;
  border: 1px solid #fbd38d;
}

/* Cancelled Appointment Styling */
.appointment-item.cancelled {
  opacity: 0.7;
  background-color: #fef2f2;
  border-left: 4px solid #f56565;
}

.appointment-item.cancelled .appointment-info h4 {
  text-decoration: line-through;
  color: #742a2a;
}

/* Date Styling for Appointments */
.service-date {
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-size: 0.95rem;
}

/* Status Badge Clickable Styles */
.status-badge.clickable {
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.status-badge.clickable:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.status-badge.clickable.active {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  border: 2px solid #fff;
}

/* Clear Filters Button */
.clear-filters-btn {
  background: linear-gradient(135deg, #d69e2e 0%, #b7791f 100%);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-left: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.clear-filters-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.clear-filters-btn:active {
  transform: translateY(0);
}

.date-today {
  background-color: #fef5e7;
  color: #744210;
  border: 1px solid #fbd38d;
}

.date-tomorrow {
  background-color: #e6fffa;
  color: #234e52;
  border: 1px solid #81e6d9;
}

.date-future {
  background-color: #f0fff4;
  color: #22543d;
  border: 1px solid #9ae6b4;
}

/* Client Items - Mobile First */
.client-item {
  background: #f7fafc;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.2s ease;
}

.client-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.client-info h4 {
  color: #1a202c;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.client-info p {
  color: #718096;
  margin-bottom: 0.25rem;
  font-weight: 500;
  font-size: 0.9rem;
}

/* Client Statistics */
.appointment-count {
  background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.8rem;
}

.last-appointment {
  background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.8rem;
}

/* Client History Modal */
.client-summary {
  background: #f8fafc;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 1px solid #e2e8f0;
}

.client-summary p {
  margin-bottom: 0.5rem;
  color: #4a5568;
  font-weight: 500;
}

.appointments-history h4 {
  color: #1a202c;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.history-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.history-item {
  background: #ffffff;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  display: grid;
  grid-template-columns: 1fr 1fr 2fr 1fr;
  gap: 1rem;
  align-items: center;
  font-size: 0.9rem;
}

.history-item.confirmed {
  border-left: 4px solid #48bb78;
}

.history-item.completed {
  border-left: 4px solid #4299e1;
}

.history-item.cancelled {
  border-left: 4px solid #f56565;
  opacity: 0.7;
}

.history-date,
.history-time,
.history-service,
.history-status {
  font-weight: 500;
}

.history-date {
  color: #4a5568;
}

.history-time {
  color: #718096;
}

.history-service {
  color: #1a202c;
  font-weight: 600;
}

.history-status {
  text-align: center;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Report Styles - Mobile First */
.report-summary {
  background: #f7fafc;
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}

.report-summary h4 {
  color: #1a202c;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.report-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stat-item {
  background: #ffffff;
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #e2e8f0;
}

.report-section {
  margin-bottom: 1.5rem;
}

.report-section h5 {
  color: #1a202c;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
}

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

.report-section li {
  background: #ffffff;
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  color: #4a5568;
  font-weight: 500;
  font-size: 0.9rem;
}

/* Status badges - Mobile First */
.status-confirmed {
  background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
  color: white;
  padding: 0.4rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(72, 187, 120, 0.3);
}

.status-cancelled {
  background: linear-gradient(135deg, #f56565 0%, #e53e3e 100%);
  color: white;
  padding: 0.4rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(245, 101, 101, 0.3);
}

.status-completed {
  background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
  color: white;
  padding: 0.4rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(66, 153, 225, 0.3);
}

/* Footer - Mobile First */
footer {
  text-align: center;
  padding: 2rem 1rem;
  color: #718096;
  background: #ffffff;
  margin-top: 3rem;
  border-top: 1px solid #e2e8f0;
}
footer a {
  color: #4a90d9;
  text-decoration: none;
  font-weight: 600;
}
footer a:hover {
  text-decoration: underline;
}

/* Utility Classes */
.text-center {
  text-align: center;
}
.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}

/* Animations - Mobile First */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.services-grid-section,
.booking-form,
.search-section,
.appointments-list {
  animation: fadeInUp 0.4s ease-out;
}

/* Selection styles */
::selection {
  background: rgba(214, 158, 46, 0.2);
  color: #1a202c;
}

/* Scrollbar discreto (evita barra dourada no canto direito) */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Tablet Breakpoint */
@media (min-width: 768px) {
  nav {
    flex-direction: row;
    justify-content: space-between;
    padding: 1rem 2rem;
  }

  .nav-links {
    gap: 1rem;
  }

  /* Esconder menu hambúrguer em desktop */
  .hamburger-menu {
    display: none;
  }

  /* Mostrar links de navegação em desktop */
  .nav-links {
    display: flex;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }

  main {
    padding: 2rem;
  }

  .hero {
    padding: 3rem 2rem;
    margin: 2rem;
  }

  .hero h2 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .services-grid-section {
    padding: 2rem;
    margin: 2rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 2rem;
    gap: 1.5rem;
  }

  .finance-summary {
    grid-template-columns: repeat(2, 1fr);
  }

  .charts-section {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-modal-content {
    flex-direction: row;
    gap: 2rem;
  }

  .form-row {
    flex-direction: row;
    gap: 1rem;
  }

  .tab-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .filters {
    flex-direction: row;
    gap: 1rem;
  }

  .filters input,
  .filters select {
    width: auto;
    min-width: 150px;
  }
}

/* Desktop Breakpoint */
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    padding: 2.5rem;
    gap: 2rem;
  }

  .finance-summary {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero h2 {
    font-size: 2.8rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .services-grid-section {
    padding: 2.5rem;
    margin: 2.5rem;
  }

  .booking-form,
  .search-section,
  .appointments-list {
    padding: 2rem;
  }

  .tab-content {
    padding: 2rem;
  }

  .modal-content {
    margin: 5% auto;
    border-radius: 16px;
    min-height: auto;
    max-width: 800px;
  }

  .booking-modal {
    margin: 5% auto;
    border-radius: 16px;
    min-height: auto;
  }
}

/* Large Desktop Breakpoint */
@media (min-width: 1280px) {
  main {
    max-width: 100%;
    margin: 0;
  }

  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero h2 {
    font-size: 3.2rem;
  }

  .hero p {
    font-size: 1.3rem;
  }
}

/* Responsividade para tablets */
@media (min-width: 768px) {
  /* Esconder menu mobile em tablets e desktop */
  .hamburger-menu {
    display: none !important;
  }

  .mobile-menu {
    display: none !important;
  }

  .available-times {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
  }

  .date-card {
    padding: 2rem;
  }

  .time-card {
    padding: 2rem;
  }

  .appointment-summary,
  .personal-data-form {
    padding: 2rem;
  }

  .confirmation-content {
    padding: 3rem;
  }
}

/* Responsividade para desktop */
@media (min-width: 1024px) {
  .modal-content {
    margin: 5% auto;
    border-radius: 16px;
    min-height: auto;
    max-width: 800px;
  }

  .booking-modal {
    margin: 5% auto;
    border-radius: 16px;
    min-height: auto;
  }

  .available-times {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .date-selection-content,
  .time-selection-content,
  .personal-data-content {
    flex-direction: row;
    gap: 2rem;
  }

  .service-preview {
    flex: 1;
  }

  .date-selection,
  .time-selection,
  .appointment-summary,
  .personal-data-form {
    flex: 1;
  }
}

/* Estilos para Preview em Tempo Real */
.service-preview-area {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
}

.preview-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.preview-header h4 {
  color: #d69e2e;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.preview-header p {
  color: #64748b;
  font-size: 0.9rem;
}

.preview-content {
  display: flex;
  justify-content: center;
}

.preview-card {
  max-width: 300px;
  transform: scale(0.9);
  opacity: 0.8;
  pointer-events: none;
}

.preview-card .book-btn {
  background: #94a3b8;
  cursor: not-allowed;
}

.preview-card .book-btn:hover {
  background: #94a3b8;
  transform: none;
}

/* Botão de Salvar com Preview */
.save-with-preview {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  margin-top: 1rem;
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.save-with-preview:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.save-with-preview:active {
  transform: translateY(0);
}

/* Confirmação de Atualização */
.update-confirmation {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 12px;
  color: white;
  text-align: center;
  animation: slideInUp 0.5s ease-out;
}

.confirmation-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.success-icon {
  font-size: 3rem;
  animation: bounce 1s ease-in-out;
}

.confirmation-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}

.confirmation-content p {
  margin: 0;
  opacity: 0.9;
}

/* Animações */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Responsividade para Preview */
@media (max-width: 768px) {
  .service-preview-area {
    margin-top: 1rem;
    padding: 1rem;
  }

  .preview-card {
    transform: scale(0.8);
    max-width: 250px;
  }

  .save-with-preview {
    padding: 0.8rem;
    font-size: 1rem;
  }

  .update-confirmation {
    padding: 1rem;
  }

  .confirmation-content h4 {
    font-size: 1.1rem;
  }
}

/* Notificação de Conclusão Automática */
.auto-completion-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
  animation: slideInRight 0.5s ease-out;
  max-width: 400px;
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
}

.notification-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.notification-text {
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1.4;
  flex: 1;
}

.notification-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
  flex-shrink: 0;
}

.notification-close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

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

/* Responsividade para notificação */
@media (max-width: 768px) {
  .auto-completion-notification {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }

  .notification-content {
    padding: 0.75rem 1rem;
  }

  .notification-text {
    font-size: 0.85rem;
  }
}

/* Estilos Modernos para Sistema de Agendamento */
.booking-system {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 500px;
  margin: 0 auto;
}

.booking-header {
  background: linear-gradient(135deg, #d69e2e 0%, #b7791f 100%);
  color: white;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
}

.booking-header .back-arrow {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.booking-header .back-arrow:hover {
  opacity: 1;
}

.booking-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.5px;
}

.booking-content {
  padding: 2rem 1.5rem;
}

/* Calendário Moderno */
.modern-calendar {
  margin-bottom: 2rem;
}

.calendar-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.calendar-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a202c;
  margin: 0;
  letter-spacing: -0.5px;
}

.calendar-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.calendar-nav-arrow {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #718096;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.2s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar-nav-arrow:hover {
  background: #f7fafc;
  color: #d69e2e;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.weekday {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem 0;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a202c;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.2s ease;
  position: relative;
}

.calendar-day:hover {
  background: #f7fafc;
  transform: scale(1.1);
}

.calendar-day.selected {
  background: #d69e2e;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(214, 158, 46, 0.3);
}

.calendar-day.today {
  border: 2px solid #d69e2e;
  color: #d69e2e;
  font-weight: 700;
}

.calendar-day.other-month {
  color: #cbd5e0;

  cursor: default;
}

.calendar-day.other-month:hover {
  background: none;
  transform: none;
}

.calendar-day.disabled {
  color: #cbd5e0;
  cursor: not-allowed;
  opacity: 0.5;
}

.calendar-day.disabled:hover {
  background: none;
  transform: none;
}

.calendar-day.unavailable {
  color: #e53e3e;
  cursor: not-allowed;
  opacity: 0.6;
  position: relative;
}

.calendar-day.unavailable::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 2px;
  background: #e53e3e;
  transform: translateY(-50%);
}

.calendar-day.unavailable:hover {
  background: #fed7d7;
  transform: none;
}

.calendar-day.closed {
  color: #a0aec0;
  cursor: not-allowed;
  opacity: 0.4;
  background: #f7fafc;
  position: relative;
}

.calendar-day.closed::before {
  content: '🚫';
  position: absolute;
  font-size: 0.7rem;
  top: 2px;
  right: 2px;
}

.calendar-day.closed:hover {
  background: #f7fafc;
  transform: none;
}

/* Seleção de Horários Moderna */
.time-selection-modern {
  margin-top: 2rem;
}

.time-selection-modern h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 1rem;
  text-align: center;
}

.time-slots-container {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding: 0.5rem 0;
}

.time-slot-pill {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  color: #4a5568;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  min-width: 80px;
  text-align: center;
  flex-shrink: 0;
  line-height: 1.4;
}

.time-slot-pill:hover {
  border-color: #d69e2e;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(214, 158, 46, 0.15);
}

.time-slot-pill.selected {
  background: #d69e2e;
  border-color: #d69e2e;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(214, 158, 46, 0.3);
}

.time-slot-pill.available {
  border-color: #48bb78;
  color: #48bb78;
}

.time-slot-pill.available:hover {
  background: #48bb78;
  color: white;
}

.time-slot-pill.unavailable {
  background: #f7fafc;
  border-color: #cbd5e0;
  color: #a0aec0;
  cursor: not-allowed;
}

.time-slot-pill.unavailable:hover {
  transform: none;
  box-shadow: none;
}

.time-slot-pill .time-text {
  font-weight: 600;
  font-size: 0.9rem;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.4;
}

/* Sistema de Login do Cliente */
.client-login-system {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto;
}

.login-header {
  background: linear-gradient(135deg, #d69e2e 0%, #b7791f 100%);
  color: white;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
}

.login-header .close {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.9;
  transition: opacity 0.2s ease;
  background: none;
  border: none;
  color: white;
}

.login-header .close:hover {
  opacity: 1;
}

.login-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.4;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.5px;
}

.login-content {
  padding: 2rem 1.5rem;
}

.login-form h3 {
  color: #1a202c;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
}

.login-form p {
  color: #718096;
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
}

.login-footer {
  margin-top: 1.5rem;
  padding: 1rem;
  background: #f7fafc;
  border-radius: 12px;
  text-align: center;
}

.login-footer p {
  color: #4a5568;
  font-size: 0.85rem;
  margin: 0;
}

/* Dashboard do Cliente */
.client-dashboard {
  width: 100%;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.dashboard-header h3 {
  color: #1a202c;
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.dashboard-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.appointments-section h4,
.client-info-section h4 {
  color: #1a202c;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.client-info {
  background: #f7fafc;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.client-info p {
  margin-bottom: 0.75rem;
  color: #4a5568;
  font-weight: 500;
  font-size: 0.9rem;
}

.client-info p:last-child {
  margin-bottom: 0;
}

.client-info strong {
  color: #1a202c;
}

/* Estilos para agendamentos do cliente */
.appointments-list .appointment-item {
  background: #ffffff;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.section-description {
  color: #718096;
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.appointments-list .appointment-actions {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.appointments-list .btn-cancel {
  background: linear-gradient(135deg, #fc8181 0%, #f56565 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 2px 8px rgba(245, 101, 101, 0.3);
}

.appointments-list .btn-cancel:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(245, 101, 101, 0.4);
  background: linear-gradient(135deg, #f56565 0%, #e53e3e 100%);
}

.appointments-list .btn-cancel:active {
  transform: translateY(0);
}

.appointments-list .appointment-item.confirmed {
  border-left: 4px solid #48bb78;
}

.appointments-list .appointment-item.completed {
  border-left: 4px solid #4299e1;
}

.appointments-list .appointments-list .appointment-item.cancelled {
  border-left: 4px solid #f56565;
  opacity: 0.7;
}

.no-appointments {
  text-align: center;
  color: #718096;
  font-style: italic;
  padding: 2rem;
}

/* Responsividade para login do cliente */
@media (max-width: 768px) {
  .client-login-system {
    margin: 1rem;
    border-radius: 16px;
  }

  .login-header,
  .login-content {
    padding: 1.5rem 1rem;
  }

  .dashboard-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}

/* Responsividade para o novo design */
@media (max-width: 480px) {
  /* Menu mobile em telas muito pequenas */
  .mobile-menu {
    width: 100%;
    max-width: none;
  }

  .mobile-menu-header {
    padding: 1.5rem 1rem 1rem;
  }

  .mobile-menu-links {
    padding: 1rem;
  }

  .mobile-menu-footer {
    padding: 1rem;
  }

  .booking-system {
    border-radius: 0;
    margin: 0;
    min-height: 100vh;
  }

  .booking-header {
    padding: 1.5rem 1rem;
  }

  .booking-content {
    padding: 1.5rem 1rem;
  }

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

  .time-slot-pill {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    min-width: 70px;
  }
}

@media (min-width: 768px) {
  .booking-system {
    max-width: 600px;
  }

  .calendar-grid {
    gap: 0.75rem;
  }

  .calendar-day {
    font-size: 1rem;
  }

  .time-slots-container {
    justify-content: center;
  }
}

/* Sistema de Notificações Personalizado */
.custom-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 20px 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  max-width: 350px;
  transform: translateX(400px);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.custom-notification.show {
  transform: translateX(0);
}

.custom-notification.success {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.custom-notification.error {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.custom-notification.warning {
  background: linear-gradient(135deg, #feca57 0%, #ff9ff3 100%);
  color: #2c3e50;
}

.custom-notification.info {
  background: linear-gradient(135deg, #48cae4 0%, #023e8a 100%);
}

.notification-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.notification-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.notification-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.notification-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.notification-message {
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
  opacity: 0.95;
}

.notification-icon {
  font-size: 20px;
  margin-right: 10px;
}

/* Modal de Confirmação Customizado */
.custom-confirm-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease-out;
}

.custom-confirm-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.confirm-dialog {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  max-width: 450px;
  width: 90%;
  margin: 1rem;
  overflow: hidden;
  transform: scale(0.9);
  animation: scaleIn 0.3s ease-out forwards;
}

.confirm-header {
  background: linear-gradient(135deg, #d69e2e 0%, #b7791f 100%);
  color: white;
  padding: 1.5rem 2rem;
  text-align: center;
}

.confirm-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.confirm-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.3px;
}

.confirm-content {
  padding: 2rem;
  text-align: center;
}

.confirm-message {
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 500;
}

.confirm-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.confirm-btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
  position: relative;
  overflow: hidden;
}

.confirm-btn-primary {
  background: linear-gradient(135deg, #d69e2e 0%, #b7791f 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(214, 158, 46, 0.3);
}

.confirm-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(214, 158, 46, 0.4);
}

.confirm-btn-primary:active {
  transform: translateY(0);
}

.confirm-btn-secondary {
  background: linear-gradient(135deg, #718096 0%, #4a5568 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(113, 128, 150, 0.3);
}

.confirm-btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(113, 128, 150, 0.4);
}

.confirm-btn-secondary:active {
  transform: translateY(0);
}

.confirm-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

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

/* Animações */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsividade */
@media (max-width: 480px) {
  .confirm-dialog {
    width: 95%;
    margin: 0.5rem;
  }

  .confirm-header {
    padding: 1.25rem 1.5rem;
  }

  .confirm-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
  }

  .confirm-title {
    font-size: 1.1rem;
  }

  .confirm-content {
    padding: 1.5rem;
  }

  .confirm-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .confirm-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* Animações de Scroll */
.scroll-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Animações específicas para cada seção */
.presentation-section.scroll-animate {
  transform: translateY(80px);
}
/* Hero fica colado ao header: não empurrar para baixo */
.presentation-section.hero-style.scroll-animate {
  transform: translateY(0) !important;
}
.presentation-section.hero-style.scroll-animate.animate-in {
  transform: translateY(0) !important;
}

.salon-section.scroll-animate {
  transform: translateY(24px);
}

.about-professional-section.scroll-animate {
  transform: translateY(24px);
}

.portfolio-section.scroll-animate {
  transform: translateY(24px);
}

.services-grid-section.scroll-animate {
  transform: translateY(24px);
}

.booking-section.scroll-animate {
  transform: translateY(24px);
}

/* Melhorar a transição para elementos internos */
.scroll-animate.animate-in .presentation-container,
.scroll-animate.animate-in .salon-container,
.scroll-animate.animate-in .about-container,
.scroll-animate.animate-in .portfolio-header,
.scroll-animate.animate-in .services-grid {
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

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

/* Otimizações para dispositivos móveis */
@media (max-width: 768px) {
  .scroll-animate {
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .scroll-animate.animate-in {
    transform: translateY(0);
  }
}

/* Preferências de redução de movimento */
@media (prefers-reduced-motion: reduce) {
  .scroll-animate {
    transition: none;
    transform: none;
  }

  .scroll-animate.animate-in {
    opacity: 1;
    transform: none;
  }
}

/* Indicador de Ambiente */
.environment-indicator {
  margin-left: auto;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.env-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.env-label {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.env-value {
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.8rem;
}

.env-value.local {
  background: #10b981;
  color: white;
}

.env-value.production {
  background: #f59e0b;
  color: white;
}

.env-toggle-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.8rem;
  transition: background-color 0.2s ease;
}

.env-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Responsivo para mobile */
@media (max-width: 768px) {
  .environment-indicator {
    margin: 0.5rem 0;
    order: 3;
    width: 100%;
  }

  .env-info {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Aviso de Conectividade - Mobile First */
.connectivity-warning {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(135deg, #f56565 0%, #e53e3e 100%);
  color: white;
  padding: 0.75rem;
  box-shadow: 0 4px 20px rgba(229, 62, 62, 0.3);
  animation: slideDown 0.3s ease-out;
}

.warning-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  margin: 0 auto;
  gap: 1rem;
}

.warning-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.warning-text {
  flex: 1;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

.warning-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
  flex-shrink: 0;
}

.warning-close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

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

/* Responsivo para mobile */
@media (max-width: 768px) {
  .connectivity-warning {
    padding: 0.5rem;
  }

  .warning-content {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .warning-text {
    font-size: 0.85rem;
  }

  .warning-close {
    align-self: flex-end;
    margin-top: -0.5rem;
  }
}

/* Blocked Periods Styles */
.blocked-periods-list {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

/* Blocked Periods Styles */
.blocked-periods-list {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.blocked-period-item {
  background: #f7fafc;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.2s ease;
}

.blocked-period-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.blocked-period-info h4 {
  color: #1a202c;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.4;
}

.blocked-period-info p {
  color: #718096;
  margin-bottom: 0.25rem;
  font-weight: 500;
  font-size: 0.9rem;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
}

.blocked-period-info small {
  color: #a0aec0;
  font-size: 0.85rem;
}

.blocked-period-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-danger {
  background: linear-gradient(135deg, #fc8181 0%, #f56565 100%);
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 600;
  font-size: 0.85rem;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 2px 8px rgba(245, 101, 101, 0.3);
  line-height: 1.4;
}

.btn-danger:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(245, 101, 101, 0.4);
  background: linear-gradient(135deg, #f56565 0%, #e53e3e 100%);
}

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

/* ================================
   Layout Refresh (Index + Admin)
   ================================ */
:root {
  --brand-1: #ec4899;
  --brand-2: #8b5cf6;
  --surface-soft: #f8fafc;
  --surface-card: rgba(255, 255, 255, 0.92);
  --text-main: #0f172a;
  --text-muted: #64748b;
  --border-soft: #e2e8f0;
}

body {
  color: var(--text-main);
  background: radial-gradient(
      1200px 600px at -5% -10%,
      rgba(236, 72, 153, 0.08),
      transparent 60%
    ),
    radial-gradient(
      1200px 600px at 110% -20%,
      rgba(139, 92, 246, 0.08),
      transparent 60%
    ),
    var(--surface-soft);
}

main {
  width: min(1240px, calc(100% - 2rem));
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

nav {
  width: min(1240px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero-style,
.salon-section,
.portfolio-section,
.services-grid-section,
.login-section,
.admin-dashboard {
  margin-top: 1.25rem;
}

.hero-container,
.salon-card,
.portfolio-container,
.services-grid-section,
.login-container,
.admin-dashboard {
  background: var(--surface-card);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  border-radius: 24px;
}

.hero-container {
  padding: clamp(1.25rem, 2vw, 2rem);
}

.hero-headline {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-description {
  color: var(--text-muted);
  font-size: clamp(1rem, 2.4vw, 1.08rem);
}

.hero-cta,
.btn-primary {
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  box-shadow: 0 10px 24px rgba(236, 72, 153, 0.28);
  border: none;
}

.hero-cta:hover,
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(236, 72, 153, 0.35);
}

.section-title {
  letter-spacing: -0.02em;
}

.section-description {
  color: var(--text-muted);
}

.portfolio-card,
.service-card,
.stat-card,
.finance-card,
.chart-container,
.blocked-period-item {
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.portfolio-card:hover,
.service-card:hover,
.stat-card:hover,
.finance-card:hover,
.chart-container:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.1);
}

.tabs {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 0.35rem;
  gap: 0.35rem;
}

.tab-btn {
  border-radius: 10px;
}

.tab-btn.active {
  background: linear-gradient(135deg, #fdf2f8, #f5f3ff);
  border: 1px solid #fbcfe8;
  color: #7e22ce;
}

.filters,
.finance-filters {
  gap: 0.75rem;
}

.filters input,
.filters select,
.finance-filters input,
.finance-filters select,
.form-group input,
.form-group textarea {
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.filters input:focus,
.filters select:focus,
.finance-filters input:focus,
.finance-filters select:focus,
.form-group input:focus,
.form-group textarea:focus {
  border-color: #c026d3;
  box-shadow: 0 0 0 4px rgba(192, 38, 211, 0.12);
  outline: none;
}

.appointments-list,
.clients-list,
.blocked-periods-list,
.breakdown-table {
  border-radius: 16px;
  border: 1px solid var(--border-soft);
  background: #fff;
}

.breakdown-table table th {
  background: #f8fafc;
  color: #334155;
  border-bottom: 1px solid #e2e8f0;
}

footer {
  margin-top: 2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(255, 255, 255, 0.65);
}

@media (max-width: 768px) {
  main,
  nav {
    width: calc(100% - 1rem);
  }

  .hero-container,
  .salon-card,
  .portfolio-container,
  .services-grid-section,
  .login-container,
  .admin-dashboard {
    border-radius: 18px;
  }

  .tabs {
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* ================================
   Visual Polish v2 (strong override)
   ================================ */
header {
  position: sticky !important;
  top: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(8px);
}

nav {
  min-height: 76px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0.5rem 1rem !important;
}

.logo {
  position: static !important;
  left: auto !important;
  top: auto !important;
  transform: none !important;
  margin-right: auto;
}

.logo:hover {
  transform: none !important;
}

.logo-img {
  height: 58px !important;
  width: auto !important;
  border-radius: 10px;
}

.nav-links {
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.nav-links a {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  color: #475569 !important;
}

.nav-links a:hover,
.nav-links a.active {
  background: linear-gradient(135deg, #fdf2f8, #f5f3ff) !important;
  color: #be185d !important;
  border-color: #f9a8d4 !important;
}

main {
  padding-top: 1rem !important;
}

.presentation-section.hero-style {
  margin-top: 1rem !important;
  padding-top: 0.5rem !important;
}

.hero-container {
  max-width: 1180px !important;
  gap: clamp(1.2rem, 2.4vw, 2.2rem) !important;
}

.hero-content {
  flex: 1.1 !important;
}

.hero-image-wrap {
  width: min(42%, 460px) !important;
}

.hero-img {
  mask-image: none !important;
  -webkit-mask-image: none !important;
  border-radius: 16px !important;
  border: 3px solid #c9a227 !important;
  outline: none !important;
  box-shadow: none !important;
}

.hero-image-wrap {
  padding: 0 !important;
  background: none !important;
  box-shadow: none !important;
}

.salon-card,
.portfolio-container,
.services-grid-section,
.login-container,
.admin-dashboard {
  padding: clamp(1rem, 2vw, 1.5rem) !important;
}

@media (max-width: 767px) {
  nav {
    min-height: 68px !important;
    padding: 0.35rem 0.75rem !important;
  }

  .logo-img {
    height: 46px !important;
  }

  .nav-links {
    display: none !important;
  }

  .hamburger-menu {
    display: flex !important;
    margin-left: auto;
  }

  .presentation-section.hero-style {
    margin-top: 0.5rem !important;
  }

  .hero-image-wrap {
    width: 100% !important;
  }
}

/* ================================
   Clean White Redesign (minimal)
   ================================ */
:root {
  --clean-text: #1f2937;
  --clean-muted: #6b7280;
  --clean-border: #eceff3;
  --clean-accent: #c69a2f;
}

body {
  background: #ffffff !important;
  color: var(--clean-text) !important;
}

header {
  background: rgba(255, 255, 255, 0.98) !important;
  border-bottom: 1px solid var(--clean-border) !important;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
}

main {
  width: min(1180px, calc(100% - 2rem)) !important;
  margin: 0 auto !important;
  padding-top: 1.2rem !important;
}

.presentation-section.hero-style {
  margin-top: 0.35rem !important;
  padding: 0 !important;
  background: transparent !important;
}

.hero-container {
  max-width: 1180px !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  background: #fff !important;
  padding: 1.5rem 0 1.2rem !important;
  gap: clamp(1rem, 3vw, 2.8rem) !important;
  border-bottom: 1px solid var(--clean-border) !important;
}

.hero-headline {
  color: #111827 !important;
  font-weight: 700 !important;
  font-size: clamp(2rem, 4.8vw, 3.4rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.02em !important;
}

.hero-description {
  color: var(--clean-muted) !important;
  max-width: 560px !important;
  font-size: 1.05rem !important;
}

.hero-cta,
.btn-primary {
  background: linear-gradient(135deg, #d3ac50, #b8871f) !important;
  color: #fff !important;
  border-radius: 10px !important;
  box-shadow: 0 10px 22px rgba(182, 133, 32, 0.22) !important;
}

.hero-image-wrap {
  width: min(44%, 500px) !important;
}

.hero-img {
  border-radius: 16px !important;
  border: 3px solid #c9a227 !important;
  box-shadow: none !important;
}

/* Remove excesso de "caixas" no layout */
.salon-card,
.portfolio-container,
.services-grid-section,
.login-container,
.admin-dashboard,
.appointments-list,
.clients-list,
.blocked-periods-list,
.breakdown-table,
.tabs {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.salon-section,
.portfolio-section,
.services-grid-section,
.login-section,
.admin-dashboard {
  margin-top: 1.25rem !important;
  padding: 0.8rem 0 !important;
  border-bottom: 1px solid var(--clean-border);
}

/* Mantém cards de conteúdo, porém sutis */
.service-card,
.portfolio-card,
.stat-card,
.finance-card,
.chart-container,
.blocked-period-item,
.appointments-list .appointment-item,
.clients-list .client-item {
  background: #fff !important;
  border: 1px solid var(--clean-border) !important;
  border-radius: 14px !important;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05) !important;
}

.service-card:hover,
.portfolio-card:hover,
.stat-card:hover,
.finance-card:hover,
.chart-container:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08) !important;
}

.section-title,
.tab-header h3,
.dashboard-header h2 {
  color: #111827 !important;
  letter-spacing: -0.01em;
}

.section-description,
.tab-header p,
.finance-period,
.stat-card span {
  color: var(--clean-muted) !important;
}

.form-group input,
.form-group textarea,
.filters input,
.filters select,
.finance-filters input,
.finance-filters select {
  background: #fff !important;
  border: 1px solid #dbe1e8 !important;
  border-radius: 10px !important;
}

footer {
  margin-top: 2.2rem !important;
  background: #fff !important;
  border-top: 1px solid var(--clean-border) !important;
}

@media (max-width: 768px) {
  main {
    width: calc(100% - 1rem) !important;
  }

  .hero-container {
    padding: 0.8rem 0 1rem !important;
  }

  .hero-headline {
    font-size: clamp(1.7rem, 7vw, 2.2rem) !important;
  }
}

/* ================================
   Ultra Clean (remove block feeling)
   ================================ */
main {
  background: #fff !important;
}

.salon-section,
.portfolio-section,
.services-grid-section,
.login-section,
.admin-dashboard {
  background: transparent !important;
  border-bottom: none !important;
  padding: 1rem 0 !important;
}

.salon-section::before {
  display: none !important;
}

.salon-container {
  padding: 0 !important;
}

/* salão sem card/bloco externo */
.salon-card {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  transform: none !important;
}

.salon-card:hover {
  transform: none !important;
  box-shadow: none !important;
}

.salon-image {
  height: clamp(220px, 34vw, 360px) !important;
  border-radius: 14px !important;
}

.salon-image img {
  border-radius: 14px !important;
}

.salon-content {
  padding: 1.25rem 0.2rem 0.5rem !important;
  max-width: 760px;
  margin: 0 auto;
}

.salon-content h3 {
  font-size: clamp(1.7rem, 4vw, 2.2rem) !important;
  margin-bottom: 0.7rem !important;
}

.salon-content p {
  font-size: 1.04rem !important;
  color: #6b7280 !important;
}

/* reduzir "caixas" das outras áreas */
.portfolio-container,
.services-grid-section,
.login-container,
.admin-dashboard {
  padding: 0 !important;
}

.section-title {
  margin-bottom: 0.45rem !important;
}

@media (max-width: 768px) {
  .salon-image {
    height: 220px !important;
    border-radius: 10px !important;
  }

  .salon-image img {
    border-radius: 10px !important;
  }
}

/* Layout lateral para seção do salão */
.salon-card {
  display: grid !important;
  grid-template-columns: minmax(320px, 52%) 1fr !important;
  align-items: center !important;
  gap: clamp(1rem, 2.6vw, 2.4rem) !important;
}

.salon-image {
  width: 100% !important;
  height: clamp(260px, 30vw, 380px) !important;
  border-radius: 16px !important;
}

.salon-content {
  text-align: left !important;
  padding: 0 !important;
  max-width: 640px !important;
}

.salon-content h3 {
  margin-bottom: 0.85rem !important;
}

.salon-content p {
  margin: 0 !important;
  line-height: 1.7 !important;
}

@media (max-width: 900px) {
  .salon-card {
    grid-template-columns: 1fr !important;
  }

  .salon-image {
    height: 220px !important;
  }

  .salon-content {
    text-align: center !important;
    max-width: 760px !important;
    margin: 0 auto !important;
    padding-top: 0.8rem !important;
  }
}

/* Ajuste fino: remover faixa/espaço no topo */
main {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

main > section:first-child,
.presentation-section.hero-style {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Logo mais visível e elegante */
.logo {
  display: flex !important;
  align-items: center !important;
}

.logo-img {
  height: 108px !important;
  width: auto !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.98);
  padding: 0.2rem 0.45rem;
  border: 1px solid rgba(198, 154, 47, 0.22);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12),
    0 2px 8px rgba(198, 154, 47, 0.2);
  object-fit: contain;
}

.logo:hover .logo-img,
.logo-img:hover {
  transform: none;
  box-shadow: none;
}

@media (max-width: 768px) {
  .logo-img {
    height: 92px !important;
    padding: 0.15rem 0.35rem;
    border-radius: 12px !important;
  }
}

/* ================================
   Reference Style: Dark + Gold (index)
   ================================ */
body.preload-animations {
  background: #050505 !important;
  color: #f5f5f5 !important;
}

body.preload-animations header {
  background: rgba(8, 8, 8, 0.88) !important;
  border-bottom: 1px solid rgba(198, 154, 47, 0.25) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35) !important;
}

body.preload-animations .logo-img {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(198, 154, 47, 0.35) !important;
}

body.preload-animations .nav-links a {
  background: #ffffff !important;
  color: #4b5563 !important;
  border: 1px solid #d1d5db !important;
}

body.preload-animations .nav-links a:hover,
body.preload-animations .nav-links a.active {
  background: #f8fafc !important;
  color: #1f2937 !important;
  border-color: #9ca3af !important;
}

body.preload-animations main {
  width: min(1240px, calc(100% - 2rem)) !important;
}

body.preload-animations .presentation-section.hero-style {
  background: radial-gradient(
      600px 340px at 65% 50%,
      rgba(198, 154, 47, 0.32),
      transparent 65%
    ),
    radial-gradient(500px 260px at 85% 40%, rgba(255, 178, 58, 0.25), transparent 70%),
    linear-gradient(90deg, #050505 0%, #080808 40%, #1e1405 100%) !important;
  border-radius: 0 !important;
  padding: 1.2rem 1rem 1.4rem !important;
}

body.preload-animations .hero-container {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 1.2rem 0 1rem !important;
}

body.preload-animations .hero-headline {
  color: #e8c071 !important;
  font-size: clamp(2rem, 5vw, 3.6rem) !important;
  max-width: 700px;
}

body.preload-animations .hero-description {
  color: #f6f1e8 !important;
  max-width: 540px !important;
  opacity: 0.95;
}

body.preload-animations .hero-cta {
  background: linear-gradient(135deg, #d8b059, #b88622) !important;
  color: #151515 !important;
  font-weight: 700 !important;
  border: 1px solid rgba(255, 239, 195, 0.5) !important;
  box-shadow: 0 12px 26px rgba(184, 134, 34, 0.35) !important;
}

body.preload-animations .hero-image-wrap {
  width: min(46%, 520px) !important;
}

body.preload-animations .hero-img {
  border-radius: 16px !important;
  border: 3px solid #c9a227 !important;
  outline: none !important;
  box-shadow: none !important;
  filter: saturate(1.05) contrast(1.04);
}

body.preload-animations .hero-image-wrap {
  padding: 0 !important;
  background: none !important;
  box-shadow: none !important;
}

/* Menos blocos visíveis no restante da landing */
body.preload-animations .salon-section,
body.preload-animations .portfolio-section,
body.preload-animations .services-grid-section {
  background: #050505 !important;
  border: none !important;
}

body.preload-animations .section-title,
body.preload-animations .salon-content h3,
body.preload-animations .services-grid-section h3 {
  color: #e8c071 !important;
}

body.preload-animations .section-description,
body.preload-animations .salon-content p {
  color: #e5ded0 !important;
}

body.preload-animations .service-card,
body.preload-animations .portfolio-card,
body.preload-animations .salon-image {
  border: 1px solid rgba(198, 154, 47, 0.25) !important;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35) !important;
  background: #0f0f0f !important;
}

body.preload-animations footer {
  background: #070707 !important;
  border-top: 1px solid rgba(198, 154, 47, 0.25) !important;
}

/* ================================
   Final override: keep LIGHT theme
   ================================ */
body.preload-animations {
  background: #ffffff !important;
  color: #1f2937 !important;
}

body.preload-animations header {
  background: rgba(255, 255, 255, 0.98) !important;
  border-bottom: 1px solid #e5e7eb !important;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06) !important;
}

body.preload-animations .presentation-section.hero-style,
body.preload-animations .salon-section,
body.preload-animations .portfolio-section,
body.preload-animations .services-grid-section,
body.preload-animations footer {
  background: #ffffff !important;
  border-color: #eceff3 !important;
}

body.preload-animations .hero-headline,
body.preload-animations .section-title,
body.preload-animations .salon-content h3,
body.preload-animations .services-grid-section h3 {
  color: #111827 !important;
}

body.preload-animations .hero-description,
body.preload-animations .section-description,
body.preload-animations .salon-content p {
  color: #6b7280 !important;
}

/* Logo grande e bem visível */
.logo-img,
body.preload-animations .logo-img {
  height: 136px !important;
  width: auto !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  filter: contrast(1.08) saturate(1.08) drop-shadow(0 3px 8px rgba(0, 0, 0, 0.18)) !important;
}

@media (max-width: 768px) {
  .logo-img,
  body.preload-animations .logo-img {
    height: 108px !important;
    padding: 0 !important;
  }
}

/* Nav: dourado apenas no hover */
.nav-links a,
.nav-links a.active,
body.preload-animations .nav-links a,
body.preload-animations .nav-links a.active {
  background: #ffffff !important;
  color: #374151 !important;
  border: 1px solid #d1d5db !important;
}

.nav-links a:hover,
body.preload-animations .nav-links a:hover {
  background: linear-gradient(135deg, #d6ad4d, #af7f1d) !important;
  color: #111111 !important;
  border-color: #d6ad4d !important;
}

/* Reverter cards/sections para visual claro (desfaz tema escuro) */
body.preload-animations .service-card,
body.preload-animations .portfolio-card,
body.preload-animations .salon-image {
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08) !important;
}

body.preload-animations .service-card h4,
body.preload-animations .service-card p,
body.preload-animations .service-card .duration {
  color: #374151 !important;
}

body.preload-animations .service-card .price {
  color: #0f766e !important;
}

body.preload-animations .salon-content h3,
body.preload-animations .services-grid-section h3,
body.preload-animations .section-title {
  color: #111827 !important;
}

body.preload-animations .section-description,
body.preload-animations .salon-content p {
  color: #6b7280 !important;
}

body.preload-animations .services-grid-section,
body.preload-animations .portfolio-section,
body.preload-animations .salon-section {
  background: #ffffff !important;
}

/* Mobile: moldura colada na foto — sem faixas brancas nas laterais */
@media (max-width: 768px) {
  .hero-container {
    border-bottom: none !important;
    padding-bottom: 1.25rem !important;
  }

  .hero-image-wrap,
  body.preload-animations .hero-image-wrap {
    width: fit-content !important;
    max-width: min(92vw, 320px) !important;
    margin: 1.5rem auto 0 !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    line-height: 0 !important;
    overflow: visible !important;
  }

  .hero-img,
  body.preload-animations .hero-img {
    display: block !important;
    width: clamp(220px, 70vw, 320px) !important;
    max-width: min(92vw, 320px) !important;
    height: auto !important;
    max-height: none !important;
    aspect-ratio: unset !important;
    object-fit: unset !important;
    border: 3px solid #c9a227 !important;
    border-radius: clamp(12px, 3.5vw, 16px) !important;
    box-sizing: border-box !important;
  }
}

/* (regras do header mobile consolidadas no bloco final do arquivo) */

/* Ajuste fino do menu mobile (header/logo/fechar) */
@media (max-width: 768px) {
  .mobile-menu {
    padding: 1.25rem 1rem !important;
  }

  .mobile-menu-header {
    position: relative !important;
    margin-bottom: 1.25rem !important;
    padding: 0.35rem 0 0.9rem !important;
    min-height: 72px;
  }

  .mobile-menu-logo {
    max-width: 220px !important;
  }

  .mobile-logo-img {
    height: 58px !important;
    width: auto !important;
    display: block;
    object-fit: contain;
  }

  .mobile-menu-close {
    position: absolute !important;
    right: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 1.45rem !important;
    padding: 0.45rem !important;
  }

  .mobile-menu-links {
    gap: 0.6rem !important;
    padding-top: 0.35rem !important;
  }

  .mobile-menu-links a {
    padding: 0.85rem 0.95rem !important;
    font-size: 1.03rem !important;
  }
}

/* Logo: sem zoom no hover */
.logo:hover .logo-img,
.logo-img:hover {
  transform: none !important;
}

/* Header mobile: logo + hambúrguer sempre visíveis */
@media (max-width: 768px) {
  header {
    overflow: visible !important;
  }

  header nav {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    min-height: 88px !important;
    padding: 0.9rem 1rem !important;
    overflow: visible !important;
  }

  header .logo {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: auto !important;
    max-width: min(86vw, 380px) !important;
    margin: 0 !important;
    z-index: 2 !important;
    overflow: visible !important;
  }

  header .logo:hover {
    transform: translate(-50%, -50%) !important;
  }

  header .logo-img,
  body.preload-animations header .logo-img {
    display: block !important;
    width: auto !important;
    height: clamp(72px, 20vw, 104px) !important;
    max-width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
    object-fit: contain !important;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.12)) !important;
  }

  header .hamburger-menu {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    position: absolute !important;
    right: 1rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 38px !important;
    min-width: 38px !important;
    height: 38px !important;
    min-height: 38px !important;
    margin: 0 !important;
    padding: 0 !important;
    background: rgba(214, 158, 46, 0.92) !important;
    border: 1px solid rgba(184, 134, 11, 0.55) !important;
    border-radius: 10px !important;
    box-shadow: 0 2px 8px rgba(184, 134, 11, 0.28) !important;
    z-index: 100 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    cursor: pointer !important;
  }

  header .hamburger-menu:hover {
    background: rgba(184, 134, 11, 0.95) !important;
    transform: translateY(-50%) !important;
  }

  header .hamburger-menu-icon {
    display: block !important;
    width: 20px !important;
    height: 20px !important;
    max-width: none !important;
    object-fit: contain !important;
    pointer-events: none !important;
  }

  header .hamburger-menu span {
    display: none !important;
  }
}
