/* ==========================================
   ESPAÇO AÇAÍ & GELATOS — Design System
   Premium Tropical Modern
   ========================================== */

/* === Google Fonts === */
/* Loaded via <link> in HTML for better performance */

/* === CSS Custom Properties === */
:root {
  /* Primary Palette */
  --purple-deep: #3A185D;
  --purple-main: #5B1A8A;
  --purple-medium: #7B2FB5;
  --purple-light: #9B4FD5;
  --purple-glow: #B86FE8;
  --purple-soft: rgba(91, 26, 138, 0.15);
  --purple-overlay: rgba(45, 10, 78, 0.85);

  /* Green Accent */
  --green-vibrant: #2ECC40;
  --green-main: #27AE36;
  --green-dark: #1E8C2B;
  --green-light: #5FDA6E;
  --green-glow: rgba(46, 204, 64, 0.3);

  /* Orange Highlight */
  --orange-main: #FF6B2C;
  --orange-bright: #FF8A50;
  --orange-dark: #E55A1B;
  --orange-glow: rgba(255, 107, 44, 0.3);

  /* Neutrals */
  --white: #FCFAFF;
  --off-white: #F4EFFF;
  --cream: #FFFDF8;
  --gray-light: #E8E0F0;
  --gray-medium: #B8A8C8;
  --gray-text: #8A7A9A;
  --dark-text: #24143D;
  --dark-bg: #1D0E36;
  --darker-bg: #130727;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #1D0E36 0%, #3A185D 30%, #512282 60%, #3A185D 100%);
  --gradient-purple: linear-gradient(135deg, #5B1A8A 0%, #7B2FB5 50%, #9B4FD5 100%);
  --gradient-card: linear-gradient(145deg, rgba(91, 26, 138, 0.06) 0%, rgba(45, 10, 78, 0.02) 100%);
  --gradient-orange-btn: linear-gradient(135deg, #FF6B2C 0%, #FF8A50 100%);
  --gradient-green-btn: linear-gradient(135deg, #27AE36 0%, #2ECC40 100%);
  --gradient-dark: linear-gradient(180deg, #1D0E36 0%, #24143D 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(45, 10, 78, 0.08);
  --shadow-md: 0 4px 20px rgba(45, 10, 78, 0.12);
  --shadow-lg: 0 8px 40px rgba(45, 10, 78, 0.18);
  --shadow-xl: 0 16px 60px rgba(45, 10, 78, 0.25);
  --shadow-glow-purple: 0 0 30px rgba(91, 26, 138, 0.4);
  --shadow-glow-orange: 0 4px 25px rgba(255, 107, 44, 0.35);
  --shadow-glow-green: 0 4px 25px rgba(46, 204, 64, 0.3);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Montserrat', sans-serif;

  /* Spacing */
  --section-padding: 75px 0 130px;
  --container-width: 1200px;
  --container-padding: 0 24px;

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* === Custom Cursor (desktop only) === */
*, *::before, *::after {
  box-sizing: border-box;
}

@media (pointer: fine) {
  body {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='9' fill='none' stroke='%235B1A8A' stroke-width='1.5' opacity='0.8'/%3E%3Ccircle cx='10' cy='10' r='3' fill='%232ECC40'/%3E%3C/svg%3E") 10 10, auto;
  }
}

/* === Custom Scrollbar === */
::-webkit-scrollbar {
  width: 10px;
  background: var(--darker-bg);
}

::-webkit-scrollbar-track {
  background: rgba(19, 7, 39, 0.5);
  border-radius: 8px;
}

::-webkit-scrollbar-thumb {
  background: rgba(155, 79, 213, 0.4);
  border-radius: 10px;
  border: 2px solid var(--darker-bg);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(155, 79, 213, 0.6);
}

@media (pointer: fine) {
  a, button, [role="button"], input[type="submit"], .clickable {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='9' fill='none' stroke='%23FF6B2C' stroke-width='1.5' opacity='0.8'/%3E%3Ccircle cx='10' cy='10' r='3' fill='%23FF8A50'/%3E%3C/svg%3E") 10 10, pointer;
  }
}

/* === Global Glassmorphism & Hover FX === */
.glass-panel {
  background: rgba(45, 10, 78, 0.4);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hover-spring {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.hover-spring:active {
  transform: scale(0.95);
}

/* Base Body Orbs (Global Ambient Lighting) */
body::before {
  content: '';
  position: fixed;
  top: -10%;
  left: -10%;
  width: 50vw;
  height: 50vh;
  background: radial-gradient(circle, rgba(91, 26, 138, 0.08) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  bottom: -10%;
  right: -10%;
  width: 50vw;
  height: 50vh;
  background: radial-gradient(circle, rgba(46, 204, 64, 0.04) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}

/* === Global Reset & Base === */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === Global Selection === */
::selection {
  background: var(--orange-main);
  color: var(--white);
}
::-moz-selection {
  background: var(--orange-main);
  color: var(--white);
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.85);
  background: var(--dark-bg);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.15;
  margin: 0;
}

p {
  margin: 0;
}

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

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* === Scroll Reveal Animation === */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ==========================================
   HEADER
   ========================================== */
.header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 1000px;
  z-index: 1000;
  padding: 12px 24px;
  background: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border: 1px solid transparent;
  border-radius: var(--radius-full);
  box-shadow: none;
  transition: all var(--transition-medium);
}

.header.scrolled {
  top: 12px;
  padding: 8px 24px;
  background: rgba(29, 14, 54, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

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

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.header-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--white);
  padding: 2px;
  border: 1.5px solid rgba(46, 204, 64, 0.35);
  box-shadow: 0 2px 12px rgba(46, 204, 64, 0.2);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.header-logo:hover .header-logo-img {
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 4px 15px rgba(46, 204, 64, 0.35);
}

.header-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--white);
}

.header-logo-text .green { color: var(--green-vibrant); }
.header-logo-text .purple { color: var(--purple-light); }
.header-logo-text .orange { color: var(--orange-bright); }

.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-nav a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  position: relative;
  text-shadow: none;
}

.header-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.header-nav a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.header-nav a.nav-cta {
  background: var(--gradient-orange-btn);
  color: var(--white);
  padding: 6px 16px;
  margin-left: 8px;
  box-shadow: 0 4px 15px rgba(255, 107, 44, 0.3);
}

.header-nav a.nav-cta:hover {
  background: var(--gradient-orange-btn);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 44, 0.4);
}

/* Header status removed */

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition-medium), opacity var(--transition-fast);
}

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

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

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

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Decorative background elements */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(91, 26, 138, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(46, 204, 64, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-bg-texture {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(ellipse at 20% 50%, rgba(91, 26, 138, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(155, 79, 213, 0.1) 0%, transparent 40%),
    radial-gradient(ellipse at 60% 80%, rgba(46, 204, 64, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

/* Floating decorative leaves */
.hero-leaf {
  position: absolute;
  pointer-events: none;
  opacity: 0.12;
  z-index: 1;
}

.hero-leaf-1 {
  top: 15%;
  left: 5%;
  width: 80px;
  animation: floatLeaf1 8s ease-in-out infinite;
}

.hero-leaf-2 {
  bottom: 20%;
  right: 8%;
  width: 60px;
  animation: floatLeaf2 10s ease-in-out infinite;
}

.hero-leaf-3 {
  top: 60%;
  left: 45%;
  width: 50px;
  animation: floatLeaf3 12s ease-in-out infinite;
}

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

@keyframes floatLeaf2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(-8deg); }
}

@keyframes floatLeaf3 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(5deg); }
  66% { transform: translateY(5px) rotate(-3deg); }
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 130px;
}

.hero-content {
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-vibrant);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(46, 204, 64, 0.3);
  background: rgba(46, 204, 64, 0.08);
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '🍇';
  font-size: 1rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.hero-title .green { color: var(--green-vibrant); }
.hero-title .purple-text { color: var(--purple-light); }
.hero-title .orange { color: var(--orange-main); }

.hero-brand {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-subtitle .highlight {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.hero-subtitle .orange {
  color: var(--orange-main);
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.92rem;
  border: none;
  transition: all var(--transition-medium);
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--transition-fast);
  background: rgba(255, 255, 255, 0.1);
}

.btn:hover::after {
  opacity: 1;
}

.btn-orange {
  background: var(--gradient-orange-btn);
  color: var(--white);
  box-shadow: var(--shadow-glow-orange);
  transform: translateY(0);
}

.btn-orange:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(255, 107, 44, 0.5);
}

.btn-green {
  background: var(--gradient-green-btn);
  color: var(--white);
  box-shadow: var(--shadow-glow-green);
}

.btn-green:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(46, 204, 64, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
  border-color: var(--purple-light);
  background: rgba(155, 79, 213, 0.1);
  transform: translateY(-2px);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

/* Hero Image */
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 26, 138, 0.4) 0%, rgba(155, 79, 213, 0.15) 50%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
  animation: heroGlow 4s ease-in-out infinite;
  will-change: opacity;
}

@keyframes heroGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.hero-image-container {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-image-container::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid rgba(155, 79, 213, 0.2);
  z-index: 2;
  pointer-events: none;
}

.hero-image-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(45, 10, 78, 0.4) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-image-container img {
  width: 100%;
  max-width: 680px;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
  object-fit: cover;
  transform: scale(1.12);
}

.hero-image-wrapper:hover .hero-image-container img {
  transform: scale(1.16);
}

/* Floating badge on hero image */
.hero-float-badge {
  position: absolute;
  z-index: 3;
  background: rgba(29, 14, 54, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: floatBadge 4s ease-in-out infinite;
}

.hero-float-badge.badge-top {
  top: 10%;
  right: -10%;
}

.hero-float-badge.badge-bottom {
  bottom: 12%;
  left: -8%;
  animation-delay: 1.5s;
}

.hero-float-badge .badge-icon {
  font-size: 1.4rem;
}

.hero-float-badge .badge-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--green-vibrant);
}

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

/* ==========================================
   WAVE SEPARATORS — Seamless Premium
   ========================================== */
.wave-separator {
  position: relative;
  width: 100%;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
  z-index: 5;
  margin-top: -79px;
  margin-bottom: 0;
  background: transparent !important;
  pointer-events: none;
  transform: translateZ(0);  /* GPU layer — prevents sub-pixel seams */
}

.wave-separator svg {
  display: block;
  width: 100%;
  height: 80px;
}

@media (max-width: 768px) {
  .wave-separator {
    margin-top: -49px;
  }
  .wave-separator svg {
    height: 50px;
  }
}

/* ==========================================
   SECTION TITLES
   ========================================== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--purple-medium);
  margin-bottom: 16px;
}

.section-tag::before,
.section-tag::after {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--purple-medium);
  border-radius: 2px;
  opacity: 0.5;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-title .green { color: var(--green-vibrant); }
.section-title .purple { color: var(--purple-main); }
.section-title .orange { color: var(--orange-main); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-text);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Dark sections */
.section-dark .section-tag {
  color: var(--green-vibrant);
}

.section-dark .section-tag::before,
.section-dark .section-tag::after {
  background: var(--green-vibrant);
}

.section-dark .section-title {
  color: var(--white);
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

/* ==========================================
   INSTAGRAM SECTION
   ========================================== */
.insta-gradient-text {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.insta-tag {
  border-color: rgba(220, 39, 67, 0.3) !important;
  background: rgba(220, 39, 67, 0.08) !important;
}

.insta-tag svg {
  stroke: #cc2366 !important;
}

.instagram-section {
  background: var(--gradient-dark);
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.instagram-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 30% 50%, rgba(91, 26, 138, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(46, 204, 64, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.instagram-grid {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE */
  padding-bottom: 20px; /* Space for hover shadow */
  cursor: grab;
}

.instagram-grid:active {
  cursor: grabbing;
}

.instagram-grid::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.insta-card {
  flex: 0 0 calc(24% - 12px);
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  background: rgba(91, 26, 138, 0.15);
  border: 1px solid rgba(155, 79, 213, 0.1);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

@media (max-width: 992px) {
  .insta-card {
    flex: 0 0 calc(32% - 11px);
  }
}
@media (max-width: 768px) {
  .insta-card {
    flex: 0 0 calc(45% - 11px);
  }
}
@media (max-width: 480px) {
  .insta-card {
    flex: 0 0 calc(65% - 10px);
  }
}

.insta-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-purple);
}

.insta-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.insta-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 10, 78, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-medium);
}

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

.insta-card-overlay svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

.instagram-cta {
  text-align: center;
  position: relative;
  z-index: 1;
}

/* ==========================================
   MENU / CARDÁPIO SECTION
   ========================================== */
.menu-section {
  background: var(--gradient-dark);
  padding: var(--section-padding);
  position: relative;
}

.menu-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(91, 26, 138, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.menu-search-wrapper {
  max-width: 480px;
  margin: 0 auto 36px;
  position: relative;
}

.menu-search {
  width: 100%;
  padding: 16px 20px 16px 50px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.menu-search:focus {
  border-color: var(--purple-light);
  box-shadow: 0 0 0 4px rgba(155, 79, 213, 0.15);
}

.menu-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.menu-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}

.menu-cat-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  transition: all var(--transition-fast);
}

.menu-cat-btn:hover {
  border-color: var(--purple-light);
  color: var(--white);
  background: rgba(155, 79, 213, 0.2);
}

.menu-cat-btn.active {
  border-color: var(--purple-main);
  background: var(--purple-main);
  color: var(--white);
  box-shadow: var(--shadow-glow-purple);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.menu-card {
  background: rgba(29, 14, 54, 0.5);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  /* backdrop-filter moved to desktop-only for performance */
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  position: relative;
}

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

.menu-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.15);
}

.menu-card-image img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  transition: transform var(--transition-slow);
}

.menu-card:hover .menu-card-image img {
  transform: scale(1.08);
}

.menu-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: var(--purple-main);
  color: var(--white);
  z-index: 2;
}

.menu-card-tag.tag-green {
  background: var(--green-main);
}

.menu-card-tag.tag-orange {
  background: var(--orange-main);
}

.menu-card-body {
  padding: 22px;
}

.menu-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.menu-card-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 18px;
}

.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-card-price {
  font-family: var(--font-accent);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--purple-main);
}

.menu-card-btn {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: 2px solid var(--purple-medium);
  background: transparent;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--purple-medium);
  transition: all var(--transition-fast);
}

.menu-card-btn:hover {
  background: var(--purple-main);
  color: var(--white);
  border-color: var(--purple-main);
}

.menu-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
}
.menu-card-list li {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  padding: 5px 0 5px 12px;
  border-left: 2px solid rgba(155, 79, 213, 0.25);
  transition: all var(--transition-fast);
}
.menu-card-list li:hover {
  color: var(--white);
  border-left-color: var(--orange-main);
}

.menu-card-sub-label {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--purple-glow);
  margin: 16px 0 8px;
  opacity: 0.85;
}
.menu-card-sub-label:first-of-type {
  margin-top: 0;
}

/* ==========================================
   NOSSA HISTÓRIA (OUR STORY) SECTION
   ========================================== */
.story-section {
  background: var(--gradient-dark);
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.story-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(46, 204, 64, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-image-wrapper {
  position: relative;
  max-width: 75%;
  margin: 0 auto;
}

.story-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 20px 50px rgba(0, 0, 0, 0.3);
}

.story-image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid rgba(155, 79, 213, 0.2);
  z-index: 2;
  pointer-events: none;
}

.story-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(to top, rgba(18, 8, 40, 0.25) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.story-image-frame img {
  width: 100%;
  display: block;
  transition: transform var(--transition-slow);
}

.story-image-wrapper:hover .story-image-frame img {
  transform: scale(1.03);
}

.story-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--gradient-purple);
  opacity: 0.15;
  z-index: 0;
}

.story-content {
  color: var(--white);
}

.story-content .section-tag {
  justify-content: flex-start;
  margin-bottom: 16px;
}

.story-content .section-title {
  text-align: left;
  margin-bottom: 24px;
}

.story-text {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.85;
  margin-bottom: 16px;
}

.story-highlights {
  display: flex;
  gap: 32px;
  margin-top: 36px;
}

.story-highlight-item {
  text-align: center;
}

.story-highlight-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--green-vibrant);
  line-height: 1;
}

.story-highlight-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  font-weight: 500;
}

/* ==========================================
   VISITA / LOCATION SECTION
   ========================================== */
.visit-section {
  background: var(--gradient-dark);
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.visit-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(91, 26, 138, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.visit-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: rgba(29, 14, 54, 0.5);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  /* backdrop-filter moved to desktop-only for performance */
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.visit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.visit-card-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.visit-card-icon.icon-purple {
  background: var(--purple-soft);
  color: var(--purple-main);
}

.visit-card-icon.icon-green {
  background: rgba(46, 204, 64, 0.12);
  color: var(--green-main);
}

.visit-card-icon.icon-orange {
  background: rgba(255, 107, 44, 0.12);
  color: var(--orange-main);
}

.visit-card-content h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.visit-card-content p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.visit-map-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--gray-light);
}

.visit-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.visit-map-overlay {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid rgba(91, 26, 138, 0.08);
  pointer-events: none;
  z-index: 1;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--darker-bg);
  padding: 60px 0 0;
  color: rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(155, 79, 213, 0.3), transparent);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand-info {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: contain;
  background: var(--white);
  padding: 3px;
  border: 2px solid rgba(46, 204, 64, 0.3);
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-logo-text .green { color: var(--green-vibrant); }
.footer-logo-text .purple { color: var(--purple-light); }
.footer-logo-text .orange { color: var(--orange-main); }

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

.footer-column h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
}

.footer-column ul li a:hover {
  color: var(--green-vibrant);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--purple-main);
  border-color: var(--purple-main);
  transform: translateY(-3px);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: rgba(255, 255, 255, 0.7);
}

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

.footer-bottom .orange {
  color: var(--orange-main);
}

/* ==========================================
   MOBILE OVERLAY MENU
   ========================================== */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 4, 24, 0.95);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-medium);
}

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-overlay nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.mobile-menu-overlay nav a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  padding: 12px 24px;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.mobile-menu-overlay nav a:hover {
  color: var(--green-vibrant);
  transform: scale(1.05);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
  .hero .container {
    gap: 40px;
  }

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

  .story-grid {
    gap: 50px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 70px 0;
  }

  /* Header mobile */
  .header-nav {
    display: none;
  }

  .header-status {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  /* Hero mobile */
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 120px;
    padding-bottom: 40px;
  }

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

  .hero-subtitle {
    margin: 0 auto 32px;
    font-size: 0.95rem;
  }

  .hero-subtitle .highlight {
    font-size: 1.25rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image-wrapper {
    order: -1;
  }

  .hero-image-container img {
    max-width: 480px;
    margin: 0 auto;
    transform: scale(1.12);
  }
  .hero-image-wrapper:hover .hero-image-container img {
    transform: scale(1.16);
  }

  .hero-float-badge {
    padding: 8px 12px;
    font-size: 0.75rem;
    gap: 8px;
    border-radius: var(--radius-lg);
  }

  .hero-float-badge .badge-icon {
    font-size: 1.1rem;
  }

  .hero-float-badge .badge-text strong {
    font-size: 0.8rem;
  }

  .hero-float-badge.badge-top {
    top: 5px;
    right: -10px;
  }

  .hero-float-badge.badge-bottom {
    bottom: -5px;
    left: -10px;
  }

  /* Instagram */
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Menu */
  .menu-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
  }

  /* Story */
  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-content {
    text-align: center;
  }

  .story-content .section-tag {
    justify-content: center;
  }

  .story-content .section-title {
    text-align: center;
  }

  .story-highlights {
    justify-content: center;
  }

  /* Visit */
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* Section titles */
  .section-title {
    font-size: 2.2rem;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.6rem;
    line-height: 1.15;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 24px;
    line-height: 1.5;
  }

  .hero-subtitle .highlight {
    font-size: 1.15rem;
    margin-bottom: 6px;
  }

  .hero-badge {
    font-size: 0.73rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

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

  .menu-categories {
    gap: 6px;
  }

  .menu-cat-btn {
    padding: 8px 16px;
    font-size: 0.78rem;
  }

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

  .story-highlights {
    flex-direction: column;
    gap: 20px;
  }
}

/* ==========================================
   MOBILE PERFORMANCE OPTIMIZATIONS
   ========================================== */
@media (max-width: 768px) {
  /* ELIMINATE all backdrop-filter on mobile — replaced with solid backgrounds */
  .header.scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(29, 14, 54, 0.95);
  }

  .hero-float-badge {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(29, 14, 54, 0.92);
  }

  /* Completely disable hero glow on mobile — blur(20px) is still very expensive */
  .hero-image-glow {
    display: none !important;
  }

  /* Pause decorative leaf animations on mobile */
  .hero-leaf {
    animation: none !important;
  }

  /* Simplify float badge animation on mobile */
  .hero-float-badge {
    animation: none;
  }

  /* Reduce WhatsApp float animation to none */
  .whatsapp-float {
    animation: none;
  }

  /* Eliminate backdrop-filter from cards on mobile */
  .menu-card,
  .visit-card {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  /* Disable transitions on reveal for faster paint — use instant show */
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    transition-duration: 0.3s;
  }
}

/* Desktop-only backdrop-filter for cards */
@media (min-width: 769px) {
  .menu-card {
    backdrop-filter: blur(10px);
  }
  .visit-card {
    backdrop-filter: blur(10px);
  }
}

/* ==========================================
   SMOOTH SCROLLBAR
   ========================================== */
::-webkit-scrollbar {
  width: 8px;
}

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

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

::-webkit-scrollbar-thumb:hover {
  background: var(--purple-medium);
}

/* ==========================================
   UTILITY: SELECTION COLOR
   ========================================== */
::selection {
  background: rgba(91, 26, 138, 0.3);
  color: var(--purple-deep);
}

/* ==========================================
   STATUS DA LOJA MODAL (WHITE CARD)
   ========================================== */
.status-modal-overlay {
  position: fixed; inset: 0; z-index: 10500;
  background: rgba(10, 4, 24, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.status-modal-overlay.active { opacity: 1; pointer-events: all; }

.status-modal {
  position: relative;
  width: 92%; max-width: 380px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  padding: 24px 20px 16px;
  text-align: center;
  transform: translateY(28px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: #333333;
}
.status-modal-overlay.active .status-modal { transform: translateY(0) scale(1); }

.status-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: transparent; border: none;
  color: #9aa0a6;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--transition-fast);
}
.status-modal-close:hover { background: #f1f3f4; color: #5f6368; }

.status-modal-icon {
  font-size: 2.2rem; margin-bottom: 6px;
  line-height: 1;
}

.status-modal-title {
  font-family: var(--font-heading); font-weight: 800; font-size: 1.4rem;
  margin: 0 0 8px;
}
.status-modal-title.open { color: #00b16a; }
.status-modal-title.closed { color: #ff3b3b; }

.status-modal-subtitle {
  font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem;
  color: #2c3e50; margin: 0 0 14px;
}

.status-modal-schedule {
  display: flex; flex-direction: column; gap: 0;
  margin-bottom: 12px;
}

.status-schedule-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 14px;
  border-radius: 8px;
}

.status-schedule-row.today {
  background: #fff0f0;
}
.status-schedule-row.today .status-day-name,
.status-schedule-row.today .status-day-hours {
  color: #e60000; font-weight: 700;
}

.status-day-name {
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 500;
  color: #5c6b7a; text-align: left;
}
.status-day-hours {
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 500;
  color: #5c6b7a; text-align: right; letter-spacing: 0.5px;
}

.status-modal-footer {
  font-size: 0.8rem; color: #7f8c8d;
  margin: 0 0 16px; font-weight: 500;
  border-top: 1px solid #f0f0f0; padding-top: 12px; text-align: left;
}

.status-modal-btn {
  display: flex; align-items: center; justify-content: center;
  width: 100%; padding: 12px;
  border-radius: 12px; border: none;
  background: #f26822; color: #ffffff;
  font-family: var(--font-heading); font-weight: 800; font-size: 1.1rem;
  cursor: pointer; transition: all var(--transition-fast);
}
.status-modal-btn:hover {
  background: #e15c1b;
}

/* ==========================================
   LOJA FECHADA MODAL
   ========================================== */
.closed-modal-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(10, 4, 24, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.closed-modal-overlay.active { opacity: 1; pointer-events: all; }

.closed-modal {
  position: relative;
  width: 92%; max-width: 380px;
  background: linear-gradient(180deg, #1A0E35 0%, #140A2A 60%, #100822 100%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(155, 79, 213, 0.2);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 80px rgba(91, 26, 138, 0.15), inset 0 1px 0 rgba(184, 111, 232, 0.1);
  padding: 24px 24px 20px;
  text-align: center;
  transform: translateY(28px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.closed-modal-overlay.active .closed-modal { transform: translateY(0) scale(1); }

.closed-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  color: var(--gray-text);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--transition-fast);
}
.closed-modal-close:hover { background: rgba(255,255,255,0.1); color: var(--white); }

.closed-modal-icon {
  font-size: 2.2rem; margin-bottom: 8px;
  animation: closedPulse 2s ease-in-out infinite;
}
@keyframes closedPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.closed-modal-title {
  font-family: var(--font-heading); font-weight: 800; font-size: 1.4rem;
  color: var(--white); margin: 0 0 4px;
  background: linear-gradient(135deg, #fff 0%, #e0d0f0 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.closed-modal-subtitle {
  font-family: var(--font-accent); font-weight: 600; font-size: 0.8rem;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--purple-glow); margin: 0 0 16px; opacity: 0.85;
}

.closed-modal-schedule {
  display: flex; flex-direction: column; gap: 0;
  margin-bottom: 12px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(155, 79, 213, 0.12);
}

.closed-schedule-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 14px;
  background: rgba(155, 79, 213, 0.04);
  border-bottom: 1px solid rgba(155, 79, 213, 0.06);
  transition: background var(--transition-fast);
}
.closed-schedule-row:last-child { border-bottom: none; }
.closed-schedule-row:nth-child(even) { background: rgba(155, 79, 213, 0.07); }

.closed-schedule-row.today {
  background: linear-gradient(135deg, rgba(123, 47, 181, 0.2) 0%, rgba(155, 79, 213, 0.12) 100%);
  border-left: 3px solid var(--orange-main);
  position: relative;
}
.closed-schedule-row.today .closed-day-name { color: var(--white); font-weight: 700; }
.closed-schedule-row.today .closed-day-hours { color: var(--orange-bright); font-weight: 700; }

.closed-day-name {
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 500;
  color: rgba(255,255,255,0.75);
}
.closed-day-hours {
  font-family: var(--font-accent); font-size: 0.85rem; font-weight: 600;
  color: var(--purple-glow);
}

.closed-modal-timezone {
  font-size: 0.75rem; color: var(--purple-light); opacity: 0.6;
  margin: 0 0 16px;
  font-family: var(--font-body);
}

.closed-modal-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 12px 36px;
  border-radius: var(--radius-full); border: none;
  background: var(--gradient-orange-btn); color: var(--white);
  font-family: var(--font-accent); font-weight: 700; font-size: 0.95rem;
  cursor: pointer; transition: all var(--transition-fast);
  box-shadow: 0 4px 20px rgba(255, 107, 44, 0.3);
  letter-spacing: 0.3px;
}
.closed-modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 44, 0.45);
}

@media (max-width: 480px) {
  .closed-modal { padding: 20px 16px 16px; }
  .closed-modal-title { font-size: 1.25rem; }
  .closed-schedule-row { padding: 6px 10px; }
  .closed-day-name { font-size: 0.75rem; }
  .closed-day-hours { font-size: 0.75rem; }
}

/* ==========================================
   BUILDER PRICE INFO BLOCK
   ========================================== */
.builder-price-info {
  display: flex; align-items: center; gap: 14px;
  margin: 18px 0 6px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(255, 107, 44, 0.08) 0%, rgba(123, 47, 181, 0.06) 100%);
  border: 1px solid rgba(255, 107, 44, 0.18);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--orange-main);
}
.builder-price-info-icon {
  font-size: 1.4rem; flex-shrink: 0;
}
.builder-price-info-text {
  font-family: var(--font-body); font-size: 0.9rem;
  color: rgba(255,255,255,0.8); line-height: 1.5;
}
.builder-price-info-text strong {
  color: var(--orange-bright); font-weight: 700;
  font-family: var(--font-accent);
}

/* ==========================================
   AÇAÍ BUILDER MODAL
   ========================================== */
.builder-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10, 4, 24, 0.88);
  backdrop-filter: blur(14px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.builder-overlay.active { opacity: 1; pointer-events: all; }

.builder-modal {
  width: 95%; max-width: 780px; max-height: 92vh;
  background: rgba(20, 10, 42, 0.6);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 80px rgba(91, 26, 138, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  display: flex; flex-direction: column;
  overflow: hidden;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.builder-overlay.active .builder-modal { transform: translateY(0) scale(1); }

/* Header */
.builder-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px;
  border-bottom: 1px solid rgba(155, 79, 213, 0.15);
  background: linear-gradient(135deg, rgba(55, 15, 95, 0.55) 0%, rgba(25, 12, 50, 0.7) 100%);
}
.builder-header-left { display: flex; align-items: center; gap: 14px; }
.builder-header-icon { font-size: 1.8rem; }
.builder-header-title {
  font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700;
  color: var(--white); margin: 0;
  background: linear-gradient(135deg, #fff 0%, #e0d0f0 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.builder-header-sub { font-size: 0.82rem; color: var(--purple-glow); margin: 2px 0 0; opacity: 0.85; }
.builder-close {
  width: 36px; height: 36px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.05); color: var(--gray-text);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition-fast);
  border: 1px solid rgba(255,255,255,0.06);
}
.builder-close:hover { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.12); }

/* Progress Bar */
.builder-progress { padding: 16px 28px 8px; }
.builder-progress-track {
  width: 100%; height: 3px; border-radius: 4px;
  background: rgba(123, 47, 181, 0.12); margin-bottom: 14px; overflow: hidden;
}
.builder-progress-fill {
  height: 100%; border-radius: 4px; width: 16.66%;
  background: linear-gradient(90deg, var(--purple-main) 0%, var(--orange-main) 100%);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 8px rgba(255, 107, 44, 0.3);
}
.builder-steps-dots {
  display: flex; justify-content: space-between;
}
.builder-step-dot {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  opacity: 0.3; transition: opacity 0.3s ease;
}
.builder-step-dot.active { opacity: 1; }
.builder-step-dot.done { opacity: 0.75; }
.builder-step-dot span {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(91, 26, 138, 0.15); border: 2px solid rgba(155, 79, 213, 0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-accent); font-weight: 700; font-size: 0.72rem;
  color: var(--purple-light); transition: all 0.3s ease;
}
.builder-step-dot.active span {
  background: var(--purple-main); border-color: var(--purple-glow);
  color: var(--white); box-shadow: 0 0 18px rgba(91, 26, 138, 0.45);
}
.builder-step-dot.done span {
  background: rgba(91, 26, 138, 0.35); border-color: var(--purple-light); color: var(--purple-glow);
}
.builder-step-dot small {
  font-size: 0.62rem; font-weight: 600; color: var(--purple-light);
  text-transform: uppercase; letter-spacing: 0.5px;
}
.builder-step-dot.active small { color: var(--purple-glow); }

/* Body */
.builder-body {
  flex: 1; overflow-y: auto; padding: 24px 28px;
  scrollbar-width: thin; scrollbar-color: var(--purple-main) transparent;
}
.builder-body::-webkit-scrollbar { width: 5px; }
.builder-body::-webkit-scrollbar-thumb { background: var(--purple-main); border-radius: 3px; }

.builder-step { display: none; animation: builderSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.builder-step.active { display: block; }
@keyframes builderSlideIn { 
  from { opacity: 0; transform: translateX(30px) scale(0.98); } 
  to { opacity: 1; transform: translateX(0) scale(1); } 
}

.builder-step-header { margin-bottom: 20px; }
.builder-step-header h3 {
  font-family: var(--font-heading); font-size: 1.35rem; font-weight: 700;
  color: var(--white); margin: 0 0 8px;
}
.builder-step-hint {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; color: var(--purple-glow);
  padding: 5px 14px; border-radius: var(--radius-full);
  background: rgba(123, 47, 181, 0.1); border: 1px solid rgba(155, 79, 213, 0.15);
}
.builder-step-hint svg { color: var(--purple-light); }
.builder-step-hint.optional {
  background: rgba(123, 47, 181, 0.08); border-color: rgba(155, 79, 213, 0.12);
  color: var(--purple-glow);
}
.builder-step-hint strong { color: var(--orange-bright); }

.builder-group-label {
  font-family: var(--font-accent); font-weight: 700; font-size: 0.76rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--purple-glow); margin: 22px 0 10px;
  padding-left: 4px;
  opacity: 0.85;
}

/* Cards Grid */
.builder-cards-grid {
  display: grid; gap: 12px;
}
.builder-cards-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.builder-cards-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.builder-cards-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* Card */
.builder-card {
  position: relative; padding: 20px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer; user-select: none;
}
.builder-card:hover {
  border-color: rgba(155, 79, 213, 0.4);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 4px 20px rgba(155, 79, 213, 0.15);
}
.builder-card:active {
  transform: translateY(0) scale(0.98);
}
.builder-card.selected {
  border-color: var(--purple-light);
  background: rgba(155, 79, 213, 0.2);
  box-shadow: 0 0 24px rgba(123, 47, 181, 0.3), inset 0 0 12px rgba(155, 79, 213, 0.1);
}
.builder-card.compact { padding: 14px 10px; }

.builder-card-icon { font-size: 1.6rem; margin-bottom: 6px; line-height: 1; }
.builder-card.compact .builder-card-icon { font-size: 1.3rem; margin-bottom: 4px; }
.builder-card-label {
  font-family: var(--font-accent); font-weight: 600; font-size: 0.82rem;
  color: rgba(255,255,255,0.88);
}
.builder-card.selected .builder-card-label { color: #fff; }
.builder-card.compact .builder-card-label { font-size: 0.75rem; }
.builder-card-sub {
  font-size: 0.88rem; font-weight: 700; color: var(--orange-bright);
  margin-top: 2px; font-family: var(--font-accent);
}

/* Check Mark */
.builder-card-check {
  position: absolute; top: 8px; right: 8px;
  width: 24px; height: 24px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-main) 0%, var(--orange-bright) 100%);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0.5);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(255, 107, 44, 0.3);
}
.builder-card.selected .builder-card-check { opacity: 1; transform: scale(1); }

/* Observations */
.builder-obs-wrapper { margin-top: 28px; }
.builder-obs-label {
  display: block; font-family: var(--font-accent); font-weight: 600;
  font-size: 0.9rem; color: var(--white); margin-bottom: 10px;
}
.builder-obs-label span { color: var(--purple-light); font-weight: 400; }
.builder-obs-input {
  width: 100%; padding: 14px 16px; border-radius: var(--radius-md);
  background: rgba(155, 79, 213, 0.08); border: 2px solid rgba(155, 79, 213, 0.15);
  color: var(--white); font-family: var(--font-body); font-size: 0.9rem;
  resize: vertical; outline: none;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}
.builder-obs-input::placeholder { color: rgba(184, 111, 232, 0.35); }
.builder-obs-input:focus { border-color: var(--purple-glow); background: rgba(155, 79, 213, 0.12); }

/* Summary */
.builder-summary-card {
  background: linear-gradient(135deg, rgba(123, 47, 181, 0.1) 0%, rgba(91, 26, 138, 0.07) 100%);
  border: 1px solid rgba(155, 79, 213, 0.16);
  border-radius: var(--radius-lg); padding: 20px; margin-bottom: 14px;
}
.builder-summary-card-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(155, 79, 213, 0.12);
}
.builder-summary-card-title {
  font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem;
  color: var(--purple-glow);
}
.builder-summary-card-actions { display: flex; gap: 8px; }
.builder-summary-card-actions button {
  padding: 4px 12px; border-radius: var(--radius-full);
  border: 1px solid rgba(155, 79, 213, 0.18); background: rgba(155, 79, 213, 0.06);
  color: var(--purple-light); font-size: 0.72rem; font-weight: 600;
  cursor: pointer; transition: all var(--transition-fast);
}
.builder-summary-card-actions button:hover { border-color: var(--purple-glow); color: var(--white); background: rgba(155, 79, 213, 0.12); }
.builder-summary-card-actions button.delete:hover { border-color: #FF4757; color: #FF4757; background: rgba(255, 71, 87, 0.08); }

.builder-summary-row {
  display: flex; gap: 10px; padding: 5px 0;
  font-size: 0.85rem; color: rgba(255,255,255,0.72);
}
.builder-summary-row .emoji { width: 22px; text-align: center; flex-shrink: 0; }
.builder-summary-row strong { color: rgba(255,255,255,0.92); }

.builder-summary-actions { margin-top: 16px; text-align: center; }
.builder-btn-add {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius-full);
  background: rgba(123, 47, 181, 0.12); border: 2px solid rgba(155, 79, 213, 0.25);
  color: var(--purple-glow); font-family: var(--font-accent);
  font-weight: 600; font-size: 0.85rem;
  cursor: pointer; transition: all var(--transition-fast);
}
.builder-btn-add:hover { background: rgba(123, 47, 181, 0.2); transform: translateY(-2px); border-color: var(--purple-glow); }

.builder-summary-note {
  text-align: center; font-size: 0.82rem; color: var(--purple-light);
  margin-top: 16px;
}

/* Delivery */
.builder-delivery-toggle {
  display: flex; gap: 12px; margin-bottom: 28px;
}
.builder-delivery-opt {
  flex: 1; padding: 14px 20px; border-radius: var(--radius-md);
  border: 2px solid rgba(155, 79, 213, 0.12); background: rgba(155, 79, 213, 0.05);
  color: var(--purple-light); font-family: var(--font-accent);
  font-weight: 600; font-size: 0.88rem;
  cursor: pointer; transition: all var(--transition-fast);
}
.builder-delivery-opt:hover { border-color: rgba(155, 79, 213, 0.25); background: rgba(155, 79, 213, 0.08); }
.builder-delivery-opt.active {
  border-color: var(--purple-glow); background: rgba(123, 47, 181, 0.18);
  color: var(--white); box-shadow: 0 0 20px rgba(123, 47, 181, 0.18);
}

.builder-delivery-form { animation: builderFadeIn 0.35s ease forwards; }

.builder-form-section { margin-bottom: 20px; }
.builder-form-label {
  display: block; font-family: var(--font-accent); font-weight: 700;
  font-size: 0.9rem; color: var(--white); margin-bottom: 12px;
}
.builder-form-label .required { color: var(--orange-bright); }

.builder-region-options, .builder-payment-options {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}

.builder-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.builder-form-row .small { max-width: 140px; }
.builder-form-group { margin-bottom: 14px; }
.builder-form-group label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: rgba(255,255,255,0.8); margin-bottom: 6px;
}
.builder-form-group label .required { color: var(--orange-bright); }
.builder-form-group label .opt { color: var(--purple-light); font-weight: 400; }
.builder-form-group input {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm);
  background: rgba(155, 79, 213, 0.07); border: 2px solid rgba(155, 79, 213, 0.14);
  color: var(--white); font-family: var(--font-body); font-size: 0.88rem;
  outline: none; transition: border-color var(--transition-fast), background var(--transition-fast);
}
.builder-form-group input::placeholder { color: rgba(184, 111, 232, 0.3); }
.builder-form-group input:focus { border-color: var(--purple-glow); background: rgba(155, 79, 213, 0.11); }

/* Footer */
.builder-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 28px;
  border-top: 1px solid rgba(155, 79, 213, 0.14);
  background: linear-gradient(135deg, rgba(55, 15, 95, 0.45) 0%, rgba(25, 12, 50, 0.6) 100%);
}
.builder-btn-back, .builder-btn-next {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius-full);
  font-family: var(--font-accent); font-weight: 700; font-size: 0.88rem;
  border: none; cursor: pointer; transition: all var(--transition-fast);
}
.builder-btn-back {
  background: rgba(123, 47, 181, 0.1); color: var(--purple-glow);
  border: 1px solid rgba(155, 79, 213, 0.16);
}
.builder-btn-back:hover { background: rgba(123, 47, 181, 0.18); color: var(--white); border-color: rgba(155, 79, 213, 0.3); }
.builder-btn-back.hidden { visibility: hidden; }
.builder-btn-next {
  background: var(--gradient-orange-btn); color: var(--white);
  box-shadow: 0 4px 20px rgba(255, 107, 44, 0.25);
}
.builder-btn-next:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255, 107, 44, 0.4); }
.builder-btn-next.whatsapp-btn {
  background: var(--gradient-green-btn); box-shadow: 0 4px 20px rgba(46, 204, 64, 0.25);
}
.builder-btn-next.whatsapp-btn:hover { box-shadow: 0 8px 30px rgba(46, 204, 64, 0.4); }

/* Responsive Builder */
@media (max-width: 768px) {
  .builder-modal { width: 100%; max-width: 100%; height: 100%; max-height: -webkit-fill-available; border-radius: 0; }
  .builder-header { padding: 14px 18px; }
  .builder-progress { padding: 12px 18px 6px; }
  .builder-body { padding: 18px; }
  .builder-footer { padding: 14px 18px 24px; padding-bottom: calc(24px + env(safe-area-inset-bottom)); }
  .builder-step-dot small { display: none; }
  .builder-cards-grid.cols-4 { grid-template-columns: repeat(3, 1fr); }
  .builder-cards-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .builder-form-row { grid-template-columns: 1fr; gap: 0; }
  .builder-form-row .small { max-width: none; }
  .builder-delivery-toggle { flex-direction: column; gap: 8px; }
  .builder-region-options, .builder-payment-options { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .builder-cards-grid.cols-4, .builder-cards-grid.cols-3, .builder-cards-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  50% { transform: translateX(6px); }
  75% { transform: translateX(-4px); }
}

/* ==========================================
   WHATSAPP FLOAT BUTTON
   ========================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--gradient-green-btn);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(46, 204, 64, 0.4);
  z-index: 999;
  transition: transform var(--transition-spring), box-shadow var(--transition-fast);
  animation: floatWhatsApp 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(46, 204, 64, 0.6);
  animation: none;
}

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

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
}
/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
  padding: 0 0 40px 0;
  background-color: var(--darker-bg);
  text-align: center;
  position: relative;
  z-index: 5;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-copyright {
  color: var(--gray-text);
  font-size: 0.9rem;
}

.nivano-credit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 24px;
  border-radius: 50px;
  transition: all var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.nivano-credit:hover {
  background: rgba(155, 79, 213, 0.15);
  border-color: rgba(155, 79, 213, 0.3);
  transform: translateY(-2px);
}

.nivano-text {
  color: var(--gray-medium);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.nivano-logo-img {
  height: 24px;
  width: auto;
  opacity: 0.9;
  filter: drop-shadow(0 0 8px rgba(0,0,0,0.5));
}

/* Duplicate reveal rules removed — originals at L222-L272 are canonical */

/* ==========================================
   PERFORMANCE & LOADING (Android Optimization)
   ========================================== */

/* === Loading Screen === */
html.is-loading, body.is-loading {
  overflow: hidden !important;
}

.loading-screen {
  position: fixed;
  inset: 0;
  background: var(--dark-bg);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.loading-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: var(--white);
  padding: 12px;
  animation: pulseLogo 2s infinite ease-in-out;
  will-change: transform, opacity;
  object-fit: contain;
}

@keyframes pulseLogo {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(155, 79, 213, 0.2);
  border-top-color: var(--green-main);
  border-radius: 50%;
  animation: spinLoader 1s infinite linear;
  will-change: transform;
}

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

/* === content-visibility: auto REMOVED ===
   This was the ROOT CAUSE of sections 'unloading' on Android.
   Android WebView/Chrome discards rendered layers aggressively when
   content-visibility: auto hides sections. Re-rendering on scroll-back
   causes the visual 'reload' effect on Samsung A32 and similar devices.
   iPhone Safari caches composited layers better, masking the problem. */

/* Disable body gradients pseudo-elements heavily impacting mobile composite */
@media (max-width: 768px) {
  body::before, body::after {
    display: none !important;
  }
}
