@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Oswald:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  /* ==========================================
     COLOR SYSTEM
     ========================================== */
  --bg-deep: #0a100d;
  --bg-surface: #141d17;
  --bg-surface-elevated: #1e2b22;
  --text-primary: #e7fbd6;
  --text-highlight: #ffd200;
  --text-muted: rgba(231, 251, 214, 0.6);
  --text-dark: #141d17;
  --accent-orange: #ff8c00;
  --accent-green: #2ecc71;
  --border-subtle: rgba(231, 251, 214, 0.1);
  --border-highlight: rgba(255, 210, 0, 0.3);
  --glass-bg: rgba(20, 29, 23, 0.6);
  --glass-border: rgba(231, 251, 214, 0.08);
  --glass-blur: blur(16px);

  /* ==========================================
     TYPOGRAPHY SYSTEM
     ========================================== */
  --font-sans: 'Inter', sans-serif;
  --font-display: 'Oswald', sans-serif;
  --font-accent: 'Playfair Display', serif;
  --text-xs: 0.75rem;
  /* 12px */
  --text-sm: 0.875rem;
  /* 14px */
  --text-base: 1rem;
  /* 16px */
  --text-lg: 1.125rem;
  /* 18px */
  --text-xl: 1.25rem;
  /* 20px */
  --text-2xl: 1.5rem;
  /* 24px */
  --text-3xl: 2rem;
  /* 32px */
  --text-4xl: 2.5rem;
  /* 40px */
  --text-5xl: 3.5rem;
  /* 56px */
  --text-6xl: 4.5rem;
  /* 72px */
  --text-7xl: 6rem;
  /* 96px */
  --text-hero: 8rem;
  /* 128px */

  /* ==========================================
     SPACING & RADIUS
     ========================================== */
  --spacing-1: 0.25rem;
  --spacing-2: 0.5rem;
  --spacing-4: 1rem;
  --spacing-6: 1.5rem;
  --spacing-8: 2rem;
  --spacing-12: 3rem;
  --spacing-16: 4rem;
  --spacing-24: 6rem;
  --spacing-32: 8rem;
  --radius-none: 0px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* ==========================================
     SHADOWS & GLOWS
     ========================================== */
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 20px rgba(255, 210, 0, 0.15);
  --shadow-glow-strong: 0 0 30px rgba(255, 210, 0, 0.3);
}

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

html {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background-color: var(--bg-deep);
  line-height: 1.5;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  background-color: var(--bg-deep);
  color: var(--text-primary);
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--bg-surface-elevated);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: var(--spacing-4);
}

p {
  margin-bottom: var(--spacing-6);
  color: var(--text-muted);
}

.text-highlight {
  color: var(--text-highlight);
  text-shadow: var(--shadow-glow);
}

.font-accent {
  font-family: var(--font-accent);
  font-style: italic;
}

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

.section {
  padding: var(--spacing-32) var(--spacing-8);
}

/* Utility Classes */
.relative {
  position: relative;
}

.z-10 {
  z-index: 10;
}

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

.uppercase {
  text-transform: uppercase;
}

/* ==========================================
   GLOBAL ANIMATIONS & CLASSES
   ========================================== */
@keyframes animationIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0px);
  }
}

.anim-in {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(8px);
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-in.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0px);
}

.anim-slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1), transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1), transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-fade {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 1.4s ease-out, transform 1.4s ease-out;
}

.anim-slide-right {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1), transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.is-visible.anim-slide-up,
.is-visible.anim-fade-up {
  opacity: 1;
  transform: translateY(0);
}

.is-visible.anim-fade {
  opacity: 1;
  transform: scale(1);
}

.is-visible.anim-slide-right {
  opacity: 1;
  transform: translateX(0);
}

.delay-100 {
  transition-delay: 0.1s;
  animation-delay: 0.1s;
}

.delay-200 {
  transition-delay: 0.2s;
  animation-delay: 0.2s;
}

.delay-300 {
  transition-delay: 0.3s;
  animation-delay: 0.3s;
}

.delay-400 {
  transition-delay: 0.4s;
  animation-delay: 0.4s;
}

.delay-500 {
  transition-delay: 0.5s;
  animation-delay: 0.5s;
}

.delay-600 {
  transition-delay: 0.6s;
  animation-delay: 0.6s;
}

.delay-800 {
  transition-delay: 0.8s;
  animation-delay: 0.8s;
}

/* ==========================================
   GLOBAL LAYERS
   ========================================== */
.global-tech-layer {
  position: fixed;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.blueprint-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(231, 251, 214, 0.1) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(231, 251, 214, 0.1) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.8;
  animation: gridBreathe 8s ease-in-out infinite alternate;
}

@keyframes gridBreathe {
  0% {
    opacity: 0.4;
  }

  100% {
    opacity: 0.8;
  }
}

.decor-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
}

.bg-glow-left {
  top: -100px;
  left: -200px;
  background: radial-gradient(circle, var(--text-highlight) 0%, transparent 70%);
}

.bg-glow-right {
  bottom: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
}

.app-layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
}

/* ==========================================
   HEADER
   ========================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  padding: var(--spacing-6) 0;
  background: transparent;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  padding: var(--spacing-4) 0;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-subtle);
}

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

.logo-link {
  display: flex;
  align-items: center;
  z-index: 10;
}

.logo-img {
  height: 90px;
  width: auto;
  transition: height 0.4s ease;
  object-fit: contain;
}

.is-scrolled .logo-img {
  height: 65px;
}

.desktop-nav {
  display: none;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-8);
  }
}

.nav-item {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  transition: color 0.3s ease;
}

.nav-item:hover {
  color: var(--text-highlight);
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: var(--text-highlight);
  transition: width 0.3s ease;
}

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

/* ==========================================
   HERO
   ========================================== */
.home-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--bg-deep);
}

.layer-video {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: subtleZoom 30s alternate infinite linear;
  opacity: 0;
  transition: opacity 0.1s ease;
}

.bg-video.is-visible {
  opacity: 1;
}

@keyframes subtleZoom {
  0% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1.1);
  }
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 16, 13, 0.98) 0%, rgba(10, 16, 13, 0.7) 40%, transparent 80%), 
              linear-gradient(to bottom, rgba(10, 16, 13, 0.8) 0%, transparent 20%, transparent 80%, rgba(10, 16, 13, 0.9) 100%);
}

.layer-tech {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transition: filter 3.5s ease-in-out;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: var(--text-highlight);
  border-radius: 50%;
  filter: blur(1px) drop-shadow(0 0 4px var(--text-highlight));
  opacity: 0;
}

.p1 {
  left: 20%;
  top: 80%;
  animation: floatUp 15s linear infinite;
}

.p2 {
  left: 50%;
  top: 90%;
  animation: floatUp 20s linear infinite 2s;
  width: 3px;
  height: 3px;
}

.p3 {
  left: 80%;
  top: 75%;
  animation: floatUp 18s linear infinite 5s;
}

.p4 {
  left: 10%;
  top: 60%;
  animation: floatUp 22s linear infinite 1s;
  width: 5px;
  height: 5px;
}

.p5 {
  left: 70%;
  top: 85%;
  animation: floatUp 16s linear infinite 4s;
}

@keyframes floatUp {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.6;
  }

  100% {
    transform: translateY(-500px) scale(0.5);
    opacity: 0;
  }
}

.dark-transition-layer {
  position: absolute;
  inset: 0;
  background-color: var(--bg-deep);
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.2s ease-in-out;
}

.dark-transition-layer.is-active {
  opacity: 1;
}

.layer-content {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  height: 100%;
}

.hero-content {
  max-width: 550px;
  padding-top: var(--spacing-8);
}

.badge-wrapper {
  margin-bottom: var(--spacing-4);
}

.hero-badge,
.badge {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--border-highlight);
  background-color: rgba(255, 210, 0, 0.05);
  backdrop-filter: blur(4px);
  color: var(--text-highlight);
  font-family: var(--font-display);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border-radius: var(--radius-full);
  margin-bottom: var(--spacing-4);
}

.hero-headline {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--spacing-4);
}

.hero-headline .line {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-subheadline {
  font-size: 1rem;
  color: var(--text-primary);
  opacity: 0.7;
  max-width: 400px;
  margin-bottom: var(--spacing-8);
  border-left: 1px solid var(--text-highlight);
  padding-left: var(--spacing-4);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: 300;
}

.scroll-arrow {
  position: absolute;
  bottom: var(--spacing-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: var(--text-primary);
  opacity: 0.4;
  animation: floatArrow 2.5s ease-in-out infinite;
  display: flex;
  justify-content: center;
}

@keyframes floatArrow {

  0%,
  100% {
    transform: translate(-50%, 0);
    opacity: 0.3;
  }

  50% {
    transform: translate(-50%, 10px);
    opacity: 0.6;
  }
}

/* ==========================================
   BUTTON
   ========================================== */
.base-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  border: 1px solid transparent;
  line-height: 1;
  text-decoration: none;
}

.is-sm {
  padding: 8px 16px;
  font-size: 0.75rem;
}

.is-ghost {
  background-color: transparent;
  color: var(--text-primary);
  padding-left: 12px;
  padding-right: 12px;
}

.is-ghost:hover {
  background-color: rgba(231, 251, 214, 0.05);
  color: var(--text-highlight);
}

.button-icon {
  display: flex;
  align-items: center;
}

/* ==========================================
   ABOUT
   ========================================== */
.home-about {
  position: relative;
  padding-top: var(--spacing-32);
  padding-bottom: var(--spacing-32);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--spacing-24);
  align-items: center;
}

.image-column {
  position: relative;
}

.image-wrapper {
  position: relative;
  display: inline-block;
}

.image-backdrop {
  position: absolute;
  inset: 5%;
  background: linear-gradient(135deg, rgba(255, 210, 0, 0.2), transparent);
  border-radius: var(--radius-lg);
  filter: blur(30px);
  z-index: 0;
  transform: translate(-10px, 10px);
}

.about-image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 650px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-wrapper:hover .about-image {
  transform: translateY(-10px) scale(1.02);
}

.glass-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  z-index: 2;
  background: rgba(10, 16, 13, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--spacing-4) var(--spacing-6);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.glass-badge span {
  font-size: 2rem;
  color: var(--text-highlight);
  line-height: 1;
  text-shadow: var(--shadow-glow);
}

.glass-badge small {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.section-header {
  margin-bottom: var(--spacing-8);
}

.title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.content-body p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: var(--spacing-6);
  text-align: justify;
}

/* ==========================================
   FEATURES
   ========================================== */
.home-features {
  position: relative;
  z-index: 10;
  background-color: var(--bg-deep);
  padding-top: var(--spacing-24);
  padding-bottom: var(--spacing-32);
  overflow: hidden;
}

.features-header {
  margin-bottom: var(--spacing-20);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-8);
  margin-bottom: var(--spacing-16);
}

.glass-card {
  position: relative;
  background: rgba(10, 16, 13, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: var(--spacing-12);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 210, 0, 0.3), transparent);
}

.glass-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 210, 0, 0.1);
}

.card-icon-wrapper {
  position: relative;
  width: 64px;
  height: 64px;
  margin-bottom: var(--spacing-8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-glow {
  position: absolute;
  inset: 0;
  background: var(--text-highlight);
  filter: blur(20px);
  opacity: 0.2;
  border-radius: 50%;
  transition: opacity 0.4s ease;
}

.glass-card:hover .icon-glow {
  opacity: 0.4;
}

.card-icon {
  width: 32px;
  height: 32px;
  color: var(--text-highlight);
  position: relative;
  z-index: 2;
}

.card-title {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: var(--spacing-6);
  letter-spacing: 0.05em;
}

.card-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: justify;
}

/* ==========================================
   PRODUCTS
   ========================================== */
.home-products {
  position: relative;
  padding-top: var(--spacing-32);
  padding-bottom: var(--spacing-32);
  overflow: hidden;
}

.section-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

.texture-overlay {
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  background-image: repeating-linear-gradient(45deg, rgba(255, 210, 0, 0.04) 0px, rgba(255, 210, 0, 0.04) 2px, transparent 2px, transparent 12px);
  z-index: 1;
  opacity: 0.8;
  animation: textureSlide 20s linear infinite;
  pointer-events: none;
}

@keyframes textureSlide {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-100px);
  }
}

.dark-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 6, 0.7);
  z-index: 2;
  pointer-events: none;
}

.home-products .section-header {
  position: relative;
  z-index: 10;
}

.home-products .badge {
  background-color: var(--bg-deep);
}

.home-products .title {
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.bento-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: var(--spacing-8);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.bento-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(145deg, rgba(255, 210, 0, 0.5), rgba(255, 210, 0, 0.05));
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  z-index: 10;
}

.card-inner {
  background-color: #0b100d;
  border-radius: calc(var(--radius-lg) - 1px);
  padding: var(--spacing-12);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 210, 0, 0.2);
}

.bento-title {
  font-size: 2.2rem;
  color: var(--text-primary);
  margin-bottom: var(--spacing-2);
}

.bento-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: var(--spacing-10);
}

/* Sabores */
.flavors-cloud {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-4);
  margin-top: var(--spacing-8);
}

.flavor-pill {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-4);
  aspect-ratio: 1 / 1;
  padding: var(--spacing-6);
  background-color: #141c17;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  cursor: default;
}

.flavor-pill::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -20%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle at top right, var(--sabor-color), transparent 60%);
  opacity: 0.08;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.flavor-pill:hover::before {
  opacity: 0.18;
}

.flavor-pill:hover {
  background-color: #161f1a;
  border-color: var(--sabor-color);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.pill-icon {
  width: 52px;
  height: 52px;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.4));
}

.flavor-pill:hover .pill-icon {
  transform: scale(1.1) rotate(5deg);
}

.flavor-pill span {
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-align: center;
  max-width: 100%;
  text-transform: uppercase;
}

/* Tamanhos */
.sizes-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-6);
  flex: 1;
  justify-content: center;
}

.size-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-6);
  padding: var(--spacing-4);
  border-radius: var(--radius-lg);
  background-color: #141c17;
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.size-item:hover {
  background-color: #1a251e;
  border-color: rgba(255, 255, 255, 0.1);
}

.size-visual {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.bottle-silhouette {
  width: 14px;
  height: 20px;
  background: linear-gradient(to top, rgba(255, 210, 0, 0.8), rgba(255, 210, 0, 0.2));
  border: 1px solid var(--text-highlight);
  border-radius: 3px 3px 2px 2px;
  position: relative;
  transform-origin: bottom center;
  transition: transform 0.4s ease;
}

.bottle-silhouette::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 3px;
  background-color: var(--text-primary);
  border-radius: 1px;
}

.size-info {
  display: flex;
  flex-direction: column;
}

.size-info strong {
  font-size: 1.4rem;
  color: var(--text-highlight);
  line-height: 1.1;
}

.size-info small {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 4px;
}

/* ==========================================
   CONTACT
   ========================================== */
.home-contact {
  position: relative;
  padding-top: var(--spacing-32);
  padding-bottom: var(--spacing-32);
  overflow: hidden;
  min-height: 800px;
  display: flex;
  align-items: center;
}

.home-contact .video-overlay {
  background: linear-gradient(to right, rgba(10, 16, 13, 0.95) 0%, rgba(10, 16, 13, 0.8) 40%, rgba(10, 16, 13, 0.6) 100%),
    linear-gradient(to bottom, rgba(10, 16, 13, 0.9) 0%, rgba(10, 16, 13, 0.4) 20%, rgba(10, 16, 13, 0.4) 80%, rgba(10, 16, 13, 0.9) 100%);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-24);
  align-items: stretch;
}

.map-column {
  height: 100%;
  display: flex;
}

.map-wrapper {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: transform 0.4s ease;
}

.map-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 210, 0, 0.3);
}

.info-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-column .title {
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin-bottom: var(--spacing-12);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}

.contact-groups {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-8);
  margin-bottom: var(--spacing-12);
}

.contact-group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-4);
}

.group-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: var(--spacing-2);
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: var(--spacing-4);
  padding: var(--spacing-2) 0;
  background: transparent;
  border: none;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
}

.contact-btn:hover {
  transform: translateX(5px);
  color: var(--text-highlight);
}

.icon-box {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25D366;
}

.contact-btn[href^="mailto"] .icon-box {
  color: var(--text-highlight);
}

.contact-btn span {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.logo-wrapper {
  margin-top: var(--spacing-12);
  display: flex;
  justify-content: flex-start;
  width: 100%;
}

.footer-logo {
  width: 220px;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
  transition: transform 0.4s ease;
}

.footer-logo:hover {
  transform: scale(1.05) rotate(-2deg);
}

/* ==========================================
   MOBILE RESPONSIVENESS
   ========================================== */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-12);
  }

  .image-column {
    order: -1;
    display: flex;
    justify-content: center;
  }

  .home-about .section-header {
    text-align: center;
  }

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

  .feature-card .card-text {
    display: none !important;
  }

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

  .contact-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-12);
  }

  .info-column {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-groups {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact-group {
    align-items: center;
    text-align: center;
  }

  .contact-btn {
    justify-content: center;
  }

  .logo-wrapper {
    justify-content: center;
  }

  .map-column {
    order: 2;
  }

  .map-wrapper {
    height: 350px;
  }
}

@media (max-width: 768px) {
  /* Reduzindo o tamanho base para diminuir as fontes proporcionalmente */
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 var(--spacing-4);
  }

  .section {
    padding: var(--spacing-16) 0;
  }

  /* Diminuindo espaçamentos de parágrafos globalmente no mobile */
  p {
    margin-bottom: var(--spacing-4);
  }

  .layer-content {
    justify-content: center; /* Centraliza a hero box horizontalmente */
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0; /* Remove padding top para centralizar perfeitamente no vertical também */
  }

  .hero-headline .line {
    font-size: clamp(1.8rem, 6vw, 2.5rem); /* Diminui a fonte da Hero */
    letter-spacing: 0;
  }

  .hero-subheadline {
    border-left: none;
    padding-left: 0;
    max-width: 90%;
    margin-bottom: var(--spacing-4);
    font-size: 0.9rem;
  }

  .video-overlay {
    background: linear-gradient(to bottom, rgba(10, 16, 13, 0.85) 0%, rgba(10, 16, 13, 0.6) 50%, rgba(10, 16, 13, 0.95) 100%);
  }

  .bg-video {
    object-position: 65% center;
  }

  .blueprint-grid {
    opacity: 0.3;
  }
  
  /* Ajuste dos cards Diferenciais para terem um pequeno respiro lateral */
  .features-grid {
    gap: var(--spacing-4);
  }

  .feature-card.glass-card {
    border-radius: var(--radius-md);
    padding: var(--spacing-6) var(--spacing-4);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .feature-card .card-icon-wrapper {
    margin-bottom: var(--spacing-6);
    width: 80px;
    height: 80px;
  }

  .feature-card .card-icon {
    width: 42px;
    height: 42px;
  }

  .feature-card .card-title {
    margin-bottom: var(--spacing-2);
    font-size: 1.3rem;
  }
  
  /* Ajuste Sabores no Mobile */
  .flavors-cloud {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-6);
  }

  .flavor-pill {
    padding: var(--spacing-4);
  }

  .pill-icon {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 0 8px var(--sabor-color));
  }

  .flavor-pill span {
    font-size: 0.8rem;
  }
  
  .info-column .title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
  background-color: #050806;
  padding: var(--spacing-8) 0;
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(255, 210, 0, 0.1);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-6);
}

.footer-left {
  display: flex;
  align-items: center;
  gap: var(--spacing-6);
}

.footer-logo-small {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.footer-logo-small:hover {
  transform: scale(1.05);
}

.footer-credits {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-text {
  font-size: 0.75rem;
  color: rgba(231, 251, 214, 0.4);
  margin: 0;
  letter-spacing: 0.02em;
}

.footer-link-credit {
  color: var(--text-highlight);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-link-credit:hover {
  opacity: 0.8;
}

.back-to-top {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.back-to-top:hover {
  color: var(--text-highlight);
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .footer-left {
    flex-direction: column;
    gap: var(--spacing-4);
  }
}

/* ==========================================
   LOADING SCREEN
   ========================================== */
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: var(--bg-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s;
}

.loading-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-8);
}

.loader-logo {
  width: 150px;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(255, 210, 0, 0.2));
  animation: pulseLogo 2s infinite ease-in-out;
}

.loader-bar-container {
  width: 200px;
  height: 2px;
  background: rgba(231, 251, 214, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

.loader-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: var(--text-highlight);
  box-shadow: 0 0 10px var(--text-highlight);
  animation: progressAnim 2s infinite ease-in-out;
}

@keyframes pulseLogo {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@keyframes progressAnim {
  0% {
    width: 0;
    left: 0;
  }

  50% {
    width: 100%;
    left: 0;
  }

  100% {
    width: 0;
    left: 100%;
  }
}
