/* ==============================
   BARBERSHOP MR MAURO — STYLE.CSS
   ============================== */

/* --- Variáveis --- */
:root {
  --gold: #e9c176;
  --gold-dark: #c5a059;
  --gold-light: #ffdea5;
  --bg-deep: #0f0d09;
  --bg-surface: #1a1713;
  --bg-card: #231f1a;
  --bg-alt: #2d2924;
  --text-primary: #e9e1d8;
  --text-secondary: #d1c5b4;
  --text-muted: #9a8f80;
  --font-display: 'Noto Serif', Georgia, serif;
  --font-body: 'Hanken Grotesk', Arial, sans-serif;
  --section-padding: clamp(80px, 8vw, 120px);
  --container-max: 1140px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-gold: 0 8px 32px rgba(197, 160, 89, 0.25);
  --shadow-gold-hover: 0 12px 40px rgba(197, 160, 89, 0.4);
}

/* --- Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* --- Grain Overlay --- */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* --- Container --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  width: 100%;
}

/* --- Section --- */
.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section-dark {
  background: var(--bg-deep);
}

.section-surface {
  background: var(--bg-surface);
}

.section-card {
  background: var(--bg-card);
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 500;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: clamp(11px, 1.2vw, 13px);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(15, 13, 9, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(78, 70, 57, 0.25);
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(15, 13, 9, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.header-logo span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: -0.02em;
  display: none;
}

@media (min-width: 768px) {
  .header-logo span {
    display: block;
  }
}

.nav-desktop {
  display: none;
  gap: 32px;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-desktop a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-desktop a:hover {
  color: var(--gold);
}

.nav-desktop a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold);
  color: #412d00;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.3) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.nav-cta:hover::before {
  transform: translateX(100%);
}

.nav-cta:hover {
  box-shadow: var(--shadow-gold-hover);
  transform: translateY(-1px);
}

/* --- Mobile Nav Toggle --- */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Mobile Nav --- */
.nav-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--bg-card);
  z-index: 150;
  padding: 100px 40px 40px;
  transition: right 0.5s cubic-bezier(0.77, 0, 0.18, 1);
  border-left: 1px solid rgba(78, 70, 57, 0.3);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nav-mobile.open {
  right: 0;
}

.nav-mobile a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid rgba(78, 70, 57, 0.2);
  transition: color var(--transition), padding-left var(--transition);
}

.nav-mobile a:hover {
  color: var(--gold);
  padding-left: 12px;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 140;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* --- Hero --- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  min-height: 400px;
  transform: scale(1.05);
  transition: transform 0.1s linear;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(15, 13, 9, 0.92) 0%,
    rgba(15, 13, 9, 0.7) 50%,
    rgba(15, 13, 9, 0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-text {
  max-width: 640px;
}

.hero h1 {
  margin-bottom: 20px;
}

.hero h1 .highlight {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.hero p {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-primary {
  background: var(--gold);
  color: #412d00;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 35%, rgba(255,255,255,0.25) 50%, transparent 65%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn-primary:hover::before {
  transform: translateX(100%);
}

.btn-primary:hover {
  box-shadow: var(--shadow-gold-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid rgba(233, 193, 118, 0.35);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition);
}

.btn-secondary:hover {
  background: rgba(233, 193, 118, 0.08);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* --- Highlights (3 cards) --- */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 32px);
}

.highlight-card {
  background: var(--bg-card);
  padding: 48px 40px;
  border: 1px solid rgba(78, 70, 57, 0.2);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.highlight-card:hover::before {
  transform: translateX(100%);
}

.highlight-card:hover {
  border-color: rgba(233, 193, 118, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.highlight-icon {
  width: 48px;
  height: 48px;
  background: rgba(233, 193, 118, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 4px;
  transition: all 0.5s;
  font-size: 24px;
  color: var(--gold);
}

.highlight-card:hover .highlight-icon {
  background: var(--gold);
  color: #412d00;
}

.highlight-card h3 {
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.highlight-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- Services --- */
.section-title {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.section-title h2 {
  margin-top: 8px;
}

.section-title h2 .italic {
  font-style: italic;
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 80px;
    row-gap: 48px;
  }
}

.service-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(78, 70, 57, 0.2);
  transition: all var(--transition);
}

.service-icon {
  color: var(--gold);
  margin-top: 4px;
  font-size: 28px;
  flex-shrink: 0;
}

.service-info {
  flex: 1;
}

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

.service-header h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  letter-spacing: 0.03em;
  transition: color var(--transition);
}

.service-item:hover .service-header h3 {
  color: var(--gold);
}

.service-price {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

.service-dots {
  flex: 1;
  border-bottom: 1px dotted var(--text-muted);
  margin: 0 12px;
  opacity: 0.3;
  align-self: flex-end;
  margin-bottom: 4px;
}

.service-desc {
  color: var(--text-secondary);
  margin-top: 6px;
  font-size: 0.95rem;
}

/* --- About --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-image-wrap {
  position: relative;
}

.about-border {
  position: absolute;
  top: -32px;
  left: -32px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(233, 193, 118, 0.15);
  z-index: 0;
}

.about-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold-dark);
  padding: 24px 28px;
  z-index: 2;
}

.about-badge .number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  color: #412d00;
}

.about-badge .label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #412d00;
  margin-top: 6px;
}

.about-text h2 {
  margin-top: 8px;
  margin-bottom: 20px;
}

.about-text h2 .italic {
  font-style: italic;
  font-weight: 300;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.about-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
}

.about-features li .icon {
  color: var(--gold);
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  padding: 32px;
  border: 1px solid rgba(78, 70, 57, 0.25);
  background: rgba(15, 13, 9, 0.5);
  position: relative;
  transition: all var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(233, 193, 118, 0.2);
  transform: translateY(-4px);
}

.testimonial-quote {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 48px;
  color: rgba(233, 193, 118, 0.12);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 24px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #412d00;
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.testimonial-role {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 2px;
}

/* --- Gallery Carousel --- */
.gallery-section {
  background: var(--bg-deep);
  overflow: hidden;
}

.gallery-carousel {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.gallery-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-slide {
  min-width: 100%;
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
}

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

.gallery-slide.active img {
  transform: scale(1.08);
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(15, 13, 9, 0.7);
  border: 1px solid rgba(233, 193, 118, 0.2);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 10;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}

.gallery-btn:hover {
  background: var(--gold);
  color: #412d00;
  border-color: var(--gold);
}

.gallery-prev {
  left: 16px;
}

.gallery-next {
  right: 16px;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-muted);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.gallery-dot.active {
  background: var(--gold);
  box-shadow: 0 0 12px rgba(233, 193, 118, 0.5);
  transform: scale(1.2);
}

/* --- FAQ --- */
.faq-container {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(78, 70, 57, 0.25);
  padding: 24px 28px;
  margin-bottom: 12px;
  background: var(--bg-deep);
  cursor: pointer;
  transition: border-color var(--transition);
}

.faq-item:hover {
  border-color: rgba(233, 193, 118, 0.2);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-primary);
  font-weight: 500;
  user-select: none;
}

.faq-question .icon {
  transition: transform 0.4s;
  color: var(--gold);
  flex-shrink: 0;
}

.faq-item.open .faq-question .icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease, opacity 0.3s;
  opacity: 0;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-top: 16px;
  opacity: 1;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.contact-item .icon {
  color: var(--gold);
  font-size: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.contact-item p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-map {
  height: 400px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(78, 70, 57, 0.2);
}

.contact-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) sepia(0.3);
  opacity: 0.5;
  transition: opacity 0.5s;
}

.contact-map:hover img {
  opacity: 0.7;
}

.map-pin {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.map-pin-inner {
  background: var(--gold);
  color: #412d00;
  padding: 16px;
  border-radius: 50%;
  animation: pinPulse 2s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes pinPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(233, 193, 118, 0.5); }
  50% { transform: scale(1.1); box-shadow: 0 0 0 16px rgba(233, 193, 118, 0); }
}

/* --- Footer --- */
.footer {
  background: var(--bg-surface);
  padding: var(--section-padding) 0;
}

.footer-inner {
  border-top: 1px solid rgba(78, 70, 57, 0.1);
  padding-top: var(--section-padding);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    text-align: left;
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--gold-light);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 16px;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-cta {
  text-align: center;
}

@media (min-width: 768px) {
  .footer-cta {
    text-align: right;
  }
}

.footer-bottom {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  opacity: 0.6;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: inherit;
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

/* --- WhatsApp Float --- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: all 0.3s ease;
  text-decoration: none;
  color: white;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  fill: white;
  width: 28px;
  height: 28px;
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 16px);
  background: var(--bg-card);
  color: var(--gold);
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.3s;
  pointer-events: none;
  border: 1px solid rgba(78, 70, 57, 0.3);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* --- Hero Text Reveal --- */
.hero-reveal {
  opacity: 0;
  transform: translateY(30px);
}

.hero-reveal.visible {
  animation: heroFadeUp 0.8s ease forwards;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Stagger --- */
.stagger-children > * {
  opacity: 0;
  transform: translateY(24px);
}

.stagger-children.visible > * {
  animation: staggerFade 0.6s ease forwards;
}

.stagger-children.visible > *:nth-child(1) { animation-delay: 0s; }
.stagger-children.visible > *:nth-child(2) { animation-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { animation-delay: 0.2s; }
.stagger-children.visible > *:nth-child(4) { animation-delay: 0.3s; }
.stagger-children.visible > *:nth-child(5) { animation-delay: 0.4s; }
.stagger-children.visible > *:nth-child(6) { animation-delay: 0.5s; }

@keyframes staggerFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid rgba(78, 70, 57, 0.3);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all var(--transition);
  border-radius: 4px;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--gold);
  color: #412d00;
  border-color: var(--gold);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .about-badge {
    bottom: -12px;
    right: -12px;
    padding: 16px 20px;
  }

  .about-border {
    top: -16px;
    left: -16px;
    width: 80px;
    height: 80px;
  }

  .gallery-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .gallery-prev { left: 8px; }
  .gallery-next { right: 8px; }
}

/* --- Selection --- */
::selection {
  background: var(--gold);
  color: #412d00;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--bg-alt);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}
