/* ==========================================================================
   ESTILOS BARBEARIA NEIVA - ATUALIZADO COM LOGO E FOTOS OFICIAIS
   ========================================================================== */

:root {
  --bg-primary: #0D0C0D;          /* Preto Ônix / Grafite Quente Escuro */
  --bg-surface: #171517;          /* Card Background (Grafite Marrom Escuro) */
  --bg-surface-hover: #232023;    /* Card Hover */
  --bg-glass: rgba(23, 21, 23, 0.85);

  --color-primary: #C5A059;       /* Ouro Champanhe Nobre / Dourado do Logotipo */
  --color-primary-hover: #DFBE7B; /* Champanhe Luminoso */
  --color-primary-dark: #9A7B38;  /* Bronze Dourado */
  --color-accent: #B38E46;        /* Marrom Dourado Pastel */
  --color-accent-light: #EAE3D9;  /* Mármore Marfim */

  --text-main: #F8F6F0;           /* Off-white Mármore */
  --text-muted: #B8AF9F;          /* Cinza Pastel Dourado */
  --text-dark: #0D0C0D;

  --border-subtle: rgba(197, 160, 89, 0.2);
  --border-glow: rgba(197, 160, 89, 0.45);

  --gold-gradient: linear-gradient(135deg, #F3D999 0%, #C5A059 50%, #9A7B38 100%);
  --gold-gradient-hover: linear-gradient(135deg, #FFF0C2 0%, #DFBE7B 50%, #B89343 100%);

  --whatsapp-color: #25D366;
  --whatsapp-hover: #20BA5A;

  --font-heading: 'Outfit', 'Playfair Display', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.65);
  --shadow-glow: 0 0 25px rgba(197, 160, 89, 0.22);

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Infobar Superior */
.top-infobar {
  background-color: #080708;
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
  padding: 0.4rem 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.infobar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.infobar-left {
  display: flex;
  gap: 1.5rem;
}

.infobar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.infobar-whatsapp {
  color: var(--color-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
}

/* Header & Logo Oficial */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.8rem 0;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: nowrap;
}

.brand-logo-official {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.official-logo-img {
  max-height: 44px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.main-nav {
  display: flex;
  align-items: center;
}

.main-nav ul {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.main-nav li {
  list-style: none;
  white-space: nowrap;
}

.main-nav a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
  word-break: keep-all;
  transition: color var(--transition-fast);
}

.main-nav a:hover {
  color: var(--color-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.nav-cta {
  white-space: nowrap;
  padding: 0.7rem 1.4rem;
  font-size: 0.9rem;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-toggle span {
  width: 25px;
  height: 2px;
  background-color: var(--text-main);
}

/* Hero Section com Imagem do Local Oficial */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 5rem;
  background: radial-gradient(circle at 50% 20%, rgba(197, 160, 89, 0.18) 0%, transparent 60%),
              url('assets/foto_local_hero.jpg') center/cover no-repeat;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 12, 13, 0.84) 0%, rgba(13, 12, 13, 0.98) 100%);
}

.hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 850px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid var(--border-subtle);
  border-radius: 30px;
  font-size: 0.85rem;
  color: var(--color-primary);
  margin-bottom: 1.2rem;
}

.hero-logo-wrapper {
  margin-bottom: 1.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-official-logo {
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.7));
  transition: transform var(--transition-normal);
}

.hero-official-logo:hover {
  transform: scale(1.02);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-primary);
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  background: rgba(36, 33, 30, 0.75);
  padding: 1.5rem 2.5rem;
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(10px);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-primary);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 35px;
  background: var(--border-subtle);
}

/* Seções Gerais */
section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.section-description {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Fotos Reais do Espaço Físico */
.real-photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.photo-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.photo-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.photo-info {
  padding: 1.5rem;
}

.photo-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.photo-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Serviços */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.service-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

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

.service-details {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1rem;
}

.service-header h3 {
  font-size: 1.2rem;
}

.service-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
}

.service-details p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex: 1;
}

.btn-service-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.featured-service {
  border-color: var(--color-primary);
}

.service-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gold-gradient);
  color: var(--text-dark);
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 5;
}

/* Simulador de Economia */
.simulator-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem;
  border: 1px solid var(--border-glow);
  background: linear-gradient(135deg, var(--bg-surface) 0%, rgba(35, 32, 35, 0.95) 100%);
}

.simulator-controls {
  margin-top: 1.5rem;
}

.sim-select {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border-radius: 12px;
  background: var(--bg-primary);
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
  font-size: 1rem;
  outline: none;
  cursor: pointer;
}

.simulator-result {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.sim-box {
  background: rgba(13, 12, 13, 0.7);
  padding: 1.2rem 1.8rem;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
}

.sim-box.highlight {
  border-color: var(--color-primary);
  background: rgba(197, 160, 89, 0.1);
}

.sim-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.sim-val {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  display: block;
}

.val-avulso {
  color: #E57373;
  text-decoration: line-through;
}

.val-vip {
  color: var(--color-primary);
}

.sim-savings {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.9rem;
  color: #81C784;
  font-weight: 600;
}

/* Planos */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: center;
}

.plan-card {
  text-align: center;
  position: relative;
}

.plan-name {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.plan-price {
  margin-bottom: 1.5rem;
}

.plan-price .currency {
  font-size: 1.2rem;
  color: var(--color-primary);
  vertical-align: top;
}

.plan-price .amount {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--text-main);
}

.plan-price .period {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.plan-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.plan-features li {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.95rem;
}

.plan-vip {
  border: 2px solid var(--color-primary);
  box-shadow: var(--shadow-glow);
  transform: scale(1.04);
}

.plan-ribbon {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: var(--text-dark);
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.btn-plan {
  width: 100%;
}

/* Galeria de Fotos Reais */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  height: 250px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13, 12, 13, 0.92) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.4rem 1.8rem;
  background: none;
  border: none;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  padding: 0 1.8rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.8rem 1.4rem;
}

/* Localização & Map Box */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3.5rem;
}

.contact-info h2 {
  font-size: 2.2rem;
  margin: 0.5rem 0 1rem;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

/* Ícones de Contato SVG Premium */
.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: rgba(197, 160, 89, 0.08);
  border: 1px solid rgba(197, 160, 89, 0.22);
  border-radius: 50%;
  color: var(--color-primary);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.info-item:hover .info-icon {
  background: var(--gold-gradient);
  color: var(--text-dark);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.info-svg-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.info-svg-icon-inline {
  vertical-align: middle;
  margin-right: 0.4rem;
}

/* Card de Imagem da Fachada na Direita */
.map-image-card {
  padding: 0 !important;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  height: 100%;
  min-height: 480px;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

.map-image-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
}

.map-image-fachada {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.badge-status {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 0.4rem 1rem;
  background: rgba(197, 160, 89, 0.15);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Footer */
.site-footer {
  background-color: #080708;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-subtle);
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-logo {
  max-width: 160px;
  height: auto;
  margin-bottom: 0.5rem;
}

.footer-copy {
  color: #666;
  font-size: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  width: 100%;
}

/* Botão Flutuante do WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--whatsapp-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

/* História do Fundador */
.story-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 4rem;
  padding: 3.5rem;
  border: 1px solid var(--border-glow);
  background: linear-gradient(135deg, var(--bg-surface) 0%, rgba(26, 23, 26, 0.95) 100%);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.story-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

.story-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.story-highlight {
  border-left: 3px solid var(--color-primary);
  padding-left: 1.2rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--text-main) !important;
}

.story-img-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
}

.story-img-wrapper img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

/* Horários de Funcionamento & Redes */
.hours-box {
  margin-top: 1.5rem;
  padding: 1.2rem 1.5rem;
  background: rgba(13, 12, 13, 0.7);
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
}

.hours-box h4 {
  font-size: 0.95rem;
  color: var(--color-primary);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hours-list {
  list-style: none;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  border-bottom: 1px dashed rgba(197, 160, 89, 0.15);
}

.hours-list li:last-child {
  border-bottom: none;
}

.btn-instagram {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(253, 29, 29, 0.3);
}

.btn-instagram:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(253, 29, 29, 0.45);
  color: #ffffff;
}

/* Ícones Sociais Elegantes no Estilo da Marca */
.social-icons-container {
  margin-top: 1.8rem;
}

.social-icons-wrapper {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.social-icon-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-glow);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.social-icon-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  transition: transform var(--transition-fast);
}

.social-icon-btn:hover {
  background: var(--gold-gradient);
  color: var(--text-dark);
  border-color: var(--color-primary-hover);
  transform: translateY(-4px) scale(1.08);
  box-shadow: var(--shadow-glow);
}

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

.social-icon-btn.whatsapp-hover:hover {
  background: var(--whatsapp-color);
  color: #ffffff;
  border-color: var(--whatsapp-color);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

.social-icon-btn.instagram-hover:hover {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(253, 29, 29, 0.45);
}

/* Ocultar elementos do Drawer Mobile no Desktop por padrão */
.mobile-drawer-overlay {
  display: none !important;
}

.mobile-toggle-btn {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  background: var(--gold-gradient);
  color: var(--text-dark);
  border: none;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(197, 160, 89, 0.3);
  transition: all var(--transition-fast);
}

.mobile-toggle-btn:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-2px);
}

.hamburger-icon {
  font-size: 1.1rem;
  line-height: 1;
}

/* Barra de Transição Lema */
.brand-lema-bar {
  background: linear-gradient(90deg, rgba(197, 160, 89, 0.02) 0%, rgba(197, 160, 89, 0.08) 50%, rgba(197, 160, 89, 0.02) 100%);
  border-top: 1px solid rgba(197, 160, 89, 0.15);
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
  padding: 2rem 0;
  text-align: center;
  width: 100%;
}

.lema-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.lema-item {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: 0.18em;
}

.lema-divider {
  color: rgba(197, 160, 89, 0.35);
  font-size: 1.35rem;
  font-weight: 300;
}

/* Avaliações dos Clientes (Depoimentos) */
.testimonials-section {
  background-color: var(--bg-primary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem !important;
  min-height: 250px;
  border: 1px solid var(--border-subtle);
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.testimonial-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.client-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: var(--font-heading);
}

.client-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  margin: 0;
}

.client-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.rating-stars {
  color: #FFD700;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.2rem;
  font-style: italic;
  flex: 1;
}

.testimonial-services {
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(197, 160, 89, 0.1);
  padding-top: 0.8rem;
}

.testimonial-services strong {
  color: var(--color-primary);
}

/* Responsividade Mobile */
@media (max-width: 992px) {
  .top-infobar {
    display: none;
  }

  .site-header {
    padding: 0.6rem 0;
  }

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

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

  .mobile-toggle-btn {
    display: inline-flex !important;
  }

  /* Drawer Modal Full Screen Categorizado no Celular */
  .mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(13, 12, 13, 0.98);
    backdrop-filter: blur(25px);
    display: none !important;
    flex-direction: column;
    padding: 1.8rem 1.8rem 3rem;
    overflow-y: auto;
    z-index: 2000;
    animation: fadeInDown 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  .mobile-drawer-overlay.mobile-active {
    display: flex !important;
  }

  .mobile-drawer-header {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 1.5rem;
  }

  .drawer-title {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--color-primary);
  }

  .drawer-close-btn {
    background: rgba(197, 160, 89, 0.12);
    border: 1px solid var(--border-subtle);
    color: var(--color-primary);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .mobile-menu-sections {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
  }

  .menu-cat {
    width: 100%;
    text-align: left;
  }

  .menu-cat-title {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--color-primary);
    margin-bottom: 0.8rem;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 0.4rem;
  }

  .menu-cat ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
  }

  .menu-cat a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color var(--transition-fast);
    display: block;
    padding: 0.2rem 0;
  }

  .menu-cat a:hover {
    color: var(--color-primary);
  }

  .mobile-drawer-footer {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
  }

  /* Layout em Lista Única (1 Coluna) no Celular */
  .hero-section {
    padding: 3.5rem 0 3rem;
    min-height: auto;
  }

  .hero-official-logo {
    max-width: 320px;
    width: 85%;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.8rem;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.5rem;
  }

  .stat-divider {
    width: 80%;
    height: 1px;
  }

  .story-wrapper {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    gap: 2rem;
  }

  .real-photos-grid,
  .services-grid,
  .plans-grid,
  .gallery-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .simulator-card,
  .contact-wrapper {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    gap: 2rem;
  }

  .map-image-card {
    height: 320px;
  }

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

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