/* ==========================================================================
   BICHINHO AESTHETIC STUDIO & CLINIC - ULTRA LUXE SYSTEM DESIGN 2026 (PT-BR)
   Palette:
   - Primary Botanic Teal: #047857 / #059669 / #10B981 / #D1FAE5 / #ECFDF5
   - Golden Ochre / Velvet Honey: #D97706 / #F59E0B / #FEF3C7
   - Soft Blush Coral: #F43F5E / #FFF1F2
   - Deep Onyx Slate: #0B0F19 / #111827 / #1F2937
   - Studio Canvas: #FBFDFD / #F3F7F6
   ========================================================================== */

:root {
  --primary-dark: #064E3B;
  --primary: #059669;
  --primary-glow: rgba(5, 150, 105, 0.22);
  --primary-soft: #D1FAE5;
  --primary-surface: #ECFDF5;

  --accent-gold: #D97706;
  --accent-gold-light: #FEF3C7;
  --accent-gold-glow: rgba(217, 119, 6, 0.25);

  --accent-rose: #E11D48;
  --accent-rose-soft: #FFE4E6;

  --dark-900: #0B0F19;
  --dark-800: #111827;
  --dark-700: #1F2937;
  --dark-600: #374151;

  --text-main: #111827;
  --text-muted: #4B5563;
  --text-light: #9CA3AF;

  --bg-page: #FBFDFD;
  --bg-subtle: #F3F7F6;
  --bg-card: rgba(255, 255, 255, 0.88);

  --border-subtle: rgba(229, 231, 235, 0.8);
  --border-glass: rgba(255, 255, 255, 0.7);

  --shadow-subtle: 0 4px 20px -2px rgba(11, 15, 25, 0.03);
  --shadow-card: 0 10px 30px -4px rgba(11, 15, 25, 0.05), 0 4px 12px -2px rgba(11, 15, 25, 0.02);
  --shadow-float: 0 20px 50px -12px rgba(5, 150, 105, 0.14), 0 8px 16px -6px rgba(11, 15, 25, 0.04);
  --shadow-gold: 0 16px 40px -8px rgba(217, 119, 6, 0.2);

  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-full: 9999px;

  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body {
  position: relative;
  background:
    radial-gradient(ellipse 90% 60% at 15% -5%, rgba(209, 250, 229, 0.7) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 85% 25%, rgba(254, 243, 199, 0.5) 0%, transparent 55%),
    radial-gradient(circle 800px at 50% 60%, rgba(236, 253, 245, 0.6) 0%, transparent 65%),
    var(--bg-page);
  background-attachment: fixed;
  min-height: 100vh;
}

/* Custom Interactive Cursor (desktop only) */
.custom-cursor-dot, .custom-cursor-outline {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 99999;
  transition: opacity 0.3s ease;
}

.custom-cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
}

.custom-cursor-outline {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(5, 150, 105, 0.45);
  transition: transform 0.15s ease-out, width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
}

/* Typography */
h1, h2, h3, h4, h5, .font-heading {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--dark-900);
}

p {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 450;
  line-height: 1.65;
}

.text-gradient {
  background: linear-gradient(135deg, var(--dark-900) 10%, var(--primary) 65%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #B45309 0%, var(--accent-gold) 60%, #FBBF24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
}

/* Luxury Pills & Badges */
.badge-luxe {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 1.05rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(5, 150, 105, 0.18);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.08);
  color: var(--primary-dark);
}

.badge-luxe .dot {
  width: 7px;
  height: 7px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.85rem;
  background: linear-gradient(135deg, #065F46 0%, #059669 100%);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.94rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 22px -4px rgba(5, 150, 105, 0.35);
  transition: all 0.35s var(--ease-spring);
  position: relative;
  overflow: hidden;
}

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

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

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 28px -6px rgba(5, 150, 105, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.8rem 1.65rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  color: var(--dark-900);
  font-weight: 700;
  font-size: 0.94rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: 1px solid rgba(209, 213, 219, 0.8);
  cursor: pointer;
  box-shadow: var(--shadow-subtle);
  transition: all 0.35s var(--ease-spring);
}

.btn-secondary:hover {
  background: #FFFFFF;
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px -4px rgba(11, 15, 25, 0.08);
}

/* Glass Card */
.glass-luxe {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: all 0.35s var(--ease-spring);
}

.glass-luxe:hover {
  box-shadow: var(--shadow-float);
  border-color: rgba(5, 150, 105, 0.3);
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.header-nav {
  position: fixed;
  top: 1.1rem;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: transform 0.4s ease, top 0.4s ease;
}

.header-nav.nav-scrolled {
  top: 0.6rem;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1.6rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-full);
  box-shadow: 0 8px 28px -6px rgba(11, 15, 25, 0.06);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-emblem {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #065F46 0%, #059669 50%, #D97706 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.3);
}

.brand-emblem svg {
  width: 20px;
  height: 20px;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark-900);
  letter-spacing: -0.03em;
}

.brand-name span {
  color: var(--primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.nav-menu a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--dark-700);
  transition: color 0.2s ease;
  position: relative;
}

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

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.3s ease;
}

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

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  padding: 8rem 0 4rem;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 3.4rem;
  letter-spacing: -0.035em;
  margin: 1.1rem 0 1.1rem;
  line-height: 1.1;
}

.hero-text p.hero-lead {
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 2rem;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-stats-row {
  display: flex;
  gap: 2.2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(229, 231, 235, 0.9);
}

.stat-box h3 {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--dark-900);
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.stat-box h3 .unit {
  font-size: 1.1rem;
  color: var(--primary);
}

.stat-box p {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-top: 0.15rem;
}

/* Hero Showcase Visual */
.hero-stage {
  position: relative;
}

.hero-photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 10px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 25px 60px -15px rgba(11, 15, 25, 0.1);
  overflow: hidden;
}

.hero-photo-frame img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 8px);
  display: block;
}

/* Live Window Street View Pill */
.hero-street-pill {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  padding: 0.9rem 1.2rem;
  background: rgba(11, 15, 25, 0.88);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  animation: float-subtle 5s ease-in-out infinite;
}

.hero-street-pill .live-indicator {
  width: 9px;
  height: 9px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10B981;
}

.hero-street-pill h4 {
  color: #FFFFFF;
  font-size: 0.92rem;
  margin-bottom: 0.1rem;
}

.hero-street-pill p {
  color: #9CA3AF;
  font-size: 0.78rem;
  line-height: 1.25;
}

/* Floating Badges */
.card-float {
  position: absolute;
  padding: 0.75rem 1.2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 36px -8px rgba(11, 15, 25, 0.12);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
}

.float-top-left {
  top: -1.2rem;
  left: -2rem;
  animation: float-badge 6s ease-in-out infinite;
}

.float-bottom-right {
  bottom: 5.5rem;
  right: -2rem;
  animation: float-badge 6s ease-in-out 3s infinite;
}

.float-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

/* ==========================================================================
   VITRINA ABERTA / CINEMATIC FEATURE
   ========================================================================== */
.experience-section {
  padding: 4.5rem 0;
}

.vitrine-cinematic {
  background: radial-gradient(circle at 100% 0%, #1E293B 0%, #0B0F19 80%);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px -15px rgba(11, 15, 25, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.vitrine-cinematic::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -20%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.vitrine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.vitrine-info h2 {
  color: #FFFFFF;
  font-size: 2.45rem;
  margin: 1rem 0 1.2rem;
  line-height: 1.15;
}

.vitrine-info p {
  color: #9CA3AF;
  font-size: 1.02rem;
  margin-bottom: 2rem;
}

.vitrine-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.pillar-item {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.35rem;
  border-radius: var(--radius-md);
  transition: all 0.35s ease;
}

.pillar-item:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-4px);
  border-color: rgba(5, 150, 105, 0.4);
}

.pillar-item .icon-glow {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(5, 150, 105, 0.2);
  color: #34D399;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
}

.pillar-item h4 {
  color: #FFFFFF;
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.pillar-item p {
  font-size: 0.84rem;
  color: #94A3B8;
  line-height: 1.45;
  margin-bottom: 0;
}

.vitrine-visual-box {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.vitrine-visual-box img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.vitrine-tag-overlay {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(12px);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.78rem;
  font-weight: 700;
  color: #34D399;
}

/* ==========================================================================
   SERVICES (BENTO GRID)
   ========================================================================== */
.services-section {
  padding: 5rem 0;
}

.section-head-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.2rem;
}

.section-head-center h2 {
  font-size: 2.6rem;
  margin: 0.9rem 0 0.9rem;
}

.bento-services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.6rem;
}

.bento-card {
  padding: 2.2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.bento-col-8 {
  grid-column: span 7;
}

.bento-col-4 {
  grid-column: span 5;
}

.bento-col-4-equal {
  grid-column: span 4;
}

.bento-card .service-icon-luxe {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.4s var(--ease-spring);
}

.bento-card:hover .service-icon-luxe {
  transform: scale(1.1) rotate(6deg);
}

.icon-teal {
  background: var(--primary-soft);
  color: var(--primary-dark);
}

.icon-amber {
  background: var(--accent-gold-light);
  color: var(--accent-gold);
}

.icon-rose {
  background: var(--accent-rose-soft);
  color: var(--accent-rose);
}

.bento-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.75rem;
}

.bento-card p {
  font-size: 0.94rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.bento-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}

.bento-tag {
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  background: rgba(243, 244, 246, 0.9);
  color: var(--dark-700);
}

.bento-action {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--primary);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.bento-card:hover .bento-action {
  gap: 0.75rem;
}

/* ==========================================================================
   LOOKBOOK & BOUTIQUE - EQUAL HEIGHT & PERFECT BUTTON ALIGNMENT
   ========================================================================== */
.lookbook-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, transparent 0%, rgba(209, 250, 229, 0.2) 100%);
}

.lookbook-filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.8rem;
  flex-wrap: wrap;
}

.pill-filter {
  background: #FFFFFF;
  border: 1.5px solid rgba(229, 231, 235, 0.9);
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark-600);
  cursor: pointer;
  box-shadow: var(--shadow-subtle);
  transition: all 0.3s var(--ease-spring);
}

.pill-filter.active, .pill-filter:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px -4px rgba(5, 150, 105, 0.35);
}

.lookbook-grid-luxe {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.8rem;
  align-items: stretch;
}

.fashion-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid rgba(229, 231, 235, 0.8);
  box-shadow: var(--shadow-card);
  transition: all 0.4s var(--ease-spring);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.fashion-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-float);
}

.fashion-visual {
  position: relative;
  height: 280px;
  overflow: hidden;
  flex-shrink: 0;
}

.fashion-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-spring);
}

.fashion-card:hover .fashion-visual img {
  transform: scale(1.08);
}

.fashion-ribbon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  background: rgba(11, 15, 25, 0.82);
  backdrop-filter: blur(12px);
  color: #FFFFFF;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.fashion-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.fashion-header-content {
  margin-bottom: 1.2rem;
}

.fashion-body h4 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  line-height: 1.3;
  min-height: 2.8rem;
  display: flex;
  align-items: center;
}

.fashion-body p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
  min-height: 3.8rem;
}

.fashion-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(243, 244, 246, 1);
  margin-top: auto;
}

.fashion-price {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.btn-fashion-action {
  padding: 0.45rem 1.1rem;
  font-size: 0.82rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-fashion-outline {
  background: #FFFFFF;
  color: var(--dark-900);
  border: 1.5px solid rgba(209, 213, 219, 0.9);
}

.btn-fashion-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-surface);
}

.btn-fashion-solid {
  background: var(--primary);
  color: #FFFFFF;
  border: 1.5px solid var(--primary);
}

.btn-fashion-solid:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

/* ==========================================================================
   INTERACTIVE EXPRESS AGENDAMENTO / CALCULATOR
   ========================================================================== */
.estimator-section {
  padding: 5rem 0;
}

.estimator-card-luxe {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(229, 231, 235, 0.85);
  box-shadow: 0 20px 60px -15px rgba(11, 15, 25, 0.08);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  max-width: 1100px;
  margin: 0 auto;
}

.estimator-builder {
  padding: 2.6rem 2.4rem;
}

.builder-step {
  margin-bottom: 1.8rem;
}

.builder-step:last-child {
  margin-bottom: 0;
}

.builder-step h4 {
  font-size: 1.02rem;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.step-badge-num {
  width: 24px;
  height: 24px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.interactive-selector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.75rem;
}

.selector-box {
  border: 1.5px solid rgba(229, 231, 235, 0.9);
  border-radius: var(--radius-sm);
  padding: 0.85rem 0.75rem;
  text-align: center;
  cursor: pointer;
  background: #FFFFFF;
  transition: all 0.25s var(--ease-spring);
}

.selector-box svg {
  width: 24px;
  height: 24px;
  color: var(--text-light);
  margin-bottom: 0.35rem;
  transition: color 0.25s ease, transform 0.25s ease;
}

.selector-box strong {
  display: block;
  font-size: 0.88rem;
  color: var(--dark-900);
}

.selector-box span {
  font-size: 0.74rem;
  color: var(--text-light);
}

.selector-box:hover {
  border-color: rgba(5, 150, 105, 0.4);
  transform: translateY(-2px);
}

.selector-box.active {
  border-color: var(--primary);
  background: var(--primary-surface);
  box-shadow: 0 6px 16px -4px rgba(5, 150, 105, 0.2);
}

.selector-box.active svg {
  color: var(--primary);
  transform: scale(1.08);
}

.services-toggle-stack {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.service-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.1rem;
  border: 1.5px solid rgba(229, 231, 235, 0.9);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s ease;
  background: #FFFFFF;
}

.service-toggle-row:hover {
  border-color: rgba(5, 150, 105, 0.4);
}

.service-toggle-row.active {
  border-color: var(--primary);
  background: var(--primary-surface);
}

.toggle-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.toggle-check {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1.5px solid #D1D5DB;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.service-toggle-row.active .toggle-check {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.toggle-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--primary-dark);
  white-space: nowrap;
}

/* Estimator Live Summary Panel */
.estimator-summary-panel {
  background: linear-gradient(165deg, #0B0F19 0%, #111827 60%, #064E3B 100%);
  color: #FFFFFF;
  padding: 2.6rem 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.estimator-summary-panel::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.summary-heading h3 {
  color: #FFFFFF;
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.summary-heading p {
  color: #9CA3AF;
  font-size: 0.82rem;
}

.total-quote-display {
  margin: 1.4rem 0;
  padding: 1.25rem 1.4rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.total-quote-display .label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94A3B8;
}

.total-quote-display .value {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: #34D399;
  line-height: 1;
  margin-top: 0.35rem;
}

.summary-breakdown-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.summary-breakdown-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #D1D5DB;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
  padding-bottom: 0.4rem;
}

.summary-breakdown-list li strong {
  color: #FFFFFF;
}

/* WhatsApp Conversion Button */
.btn-whatsapp-luxe {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 1.5rem;
  background: #25D366;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.98rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
  transition: all 0.35s var(--ease-spring);
}

.btn-whatsapp-luxe:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.5);
  background: #20BA5A;
}

/* ==========================================================================
   REPUTATION & REVIEWS
   ========================================================================== */
.reputation-section {
  padding: 4.5rem 0;
}

.reviews-grid-luxe {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
}

.review-card-luxe {
  padding: 2rem;
  position: relative;
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  color: #F59E0B;
  margin-bottom: 1rem;
}

.review-stars svg {
  width: 18px;
  height: 18px;
  fill: #F59E0B;
}

.review-quote {
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--dark-800);
  font-style: normal;
  margin-bottom: 1.5rem;
}

.reviewer-profile {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.reviewer-pic {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.reviewer-meta h5 {
  font-size: 0.98rem;
  margin-bottom: 0.1rem;
}

.reviewer-meta span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ==========================================================================
   LOCATION & CONTACT
   ========================================================================== */
.location-section {
  padding: 4.5rem 0;
}

.location-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: center;
}

.location-details h2 {
  font-size: 2.4rem;
  margin: 0.9rem 0 0.9rem;
}

.contact-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 1.8rem;
}

.contact-pill-card {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: #FFFFFF;
  border: 1px solid rgba(229, 231, 235, 0.85);
  box-shadow: var(--shadow-subtle);
}

.contact-pill-card .contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-pill-card h5 {
  font-size: 1.02rem;
  margin-bottom: 0.2rem;
}

.map-frame-luxe {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid #FFFFFF;
  box-shadow: var(--shadow-float);
  height: 390px;
}

.map-frame-luxe iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer-luxe {
  background: var(--dark-900);
  color: #9CA3AF;
  padding: 4.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand-info p {
  margin: 1.1rem 0 1.4rem;
  font-size: 0.9rem;
  max-width: 300px;
  color: #9CA3AF;
}

.social-circle-links {
  display: flex;
  gap: 0.75rem;
}

.social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.footer-nav-col h5 {
  color: #FFFFFF;
  font-size: 1.02rem;
  margin-bottom: 1.2rem;
}

.footer-nav-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav-col a {
  color: #9CA3AF;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s ease, padding 0.2s ease;
}

.footer-nav-col a:hover {
  color: #34D399;
  padding-left: 5px;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Floating WhatsApp Pulse */
.whatsapp-floating-trigger {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  z-index: 999;
  text-decoration: none;
  transition: transform 0.4s var(--ease-spring);
  animation: pulse-emerald 3s infinite;
}

.whatsapp-floating-trigger svg {
  width: 28px;
  height: 28px;
}

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

@keyframes pulse-emerald {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Scroll Animation */
.reveal-fade {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid, .vitrine-grid, .estimator-card-luxe, .location-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .bento-col-8, .bento-col-4, .bento-col-4-equal {
    grid-column: span 12;
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
  .float-top-left, .float-bottom-right {
    position: static;
    margin-top: 1rem;
  }
  .custom-cursor-dot, .custom-cursor-outline {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .hero-text h1 { font-size: 2.5rem; }
  .hero-stats-row { flex-direction: column; gap: 1.2rem; }
  .vitrine-cinematic { padding: 2.2rem 1.6rem; }
  .vitrine-pillars { grid-template-columns: 1fr; }
  .estimator-builder { padding: 1.8rem 1.4rem; }
  .estimator-summary-panel { padding: 2rem 1.4rem; }
  .footer-top-grid { grid-template-columns: 1fr; }
}