:root {
  --primary-dark: #2c1e12; /* Deep espresso brown - Aclarado */
  --primary-light: #3e2b1a;
  --accent-amber: #c8792a;
  --accent-amber-hover: #b06922;
  --text-light: #f5e6d0; /* Cream */
  --text-muted: #d4c4b2;
  --bg-dark: #24180d;
  --bg-card: rgba(62, 43, 26, 0.6);
  --success: #2d5a27; /* Forest green */
  --glass-border: rgba(245, 230, 208, 0.1);
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;
  
  --transition: all 0.3s ease;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--primary-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

em {
  font-style: italic;
  color: var(--accent-amber);
}

/* Utilities */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--font-body);
}

.btn-primary {
  background-color: var(--accent-amber);
  color: var(--primary-dark);
}

.btn-primary:hover {
  background-color: var(--accent-amber-hover);
  transform: translateY(-2px);
}

.btn-ghost {
  background-color: transparent;
  color: var(--text-light);
  border: 1px solid var(--glass-border);
}

.btn-ghost:hover {
  background-color: rgba(245, 230, 208, 0.05);
  border-color: var(--text-light);
}

.btn-white {
  background-color: var(--text-light);
  color: var(--primary-dark);
}

.btn-white:hover {
  background-color: #fff;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: rgba(200, 121, 42, 0.1);
  color: var(--accent-amber);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.section-subtitle {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.125rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.25rem 0;
  background-color: rgba(26, 15, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 100;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 0.75rem 0;
  background-color: rgba(18, 10, 0, 0.95);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 400;
}

.nav-logo strong {
  font-weight: 700;
  color: var(--accent-amber);
}

.logo-img {
  height: 60px;
  width: auto;
  transition: var(--transition);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.navbar.scrolled .logo-img {
  height: 45px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-amber);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-amber);
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cart-btn {
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.cart-btn:hover {
  color: var(--accent-amber);
  transform: scale(1.1);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--accent-amber);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-light);
  transition: var(--transition);
}

/* Cart Sidebar */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background-color: var(--bg-dark);
  border-left: 1px solid var(--glass-border);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}

.cart-sidebar.open {
  right: 0;
}

.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  backdrop-filter: blur(3px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.cart-overlay.show {
  opacity: 1;
  visibility: visible;
}

.cart-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-title {
  font-size: 1.25rem;
  margin: 0;
}

.cart-close {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.25rem;
  cursor: pointer;
  transition: var(--transition);
}

.cart-close:hover {
  color: var(--accent-amber);
  transform: rotate(90deg);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-muted);
  text-align: center;
}

.cart-empty-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background-color: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
}

.cart-item-img {
  width: 60px;
  height: 60px;
  background-color: rgba(0,0,0,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  overflow: hidden;
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-item-info {
  flex: 1;
}

.cart-item-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.cart-item-price {
  color: var(--accent-amber);
  font-weight: 600;
  font-size: 0.9rem;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.qty-btn {
  background-color: rgba(255,255,255,0.1);
  border: none;
  color: var(--text-light);
  width: 24px;
  height: 24px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background-color: var(--accent-amber);
  color: var(--primary-dark);
}

.cart-item-remove {
  background: none;
  border: none;
  color: #ff4d4d;
  cursor: pointer;
  margin-left: auto;
  font-size: 1.2rem;
}

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--glass-border);
  background-color: rgba(18, 10, 0, 0.9);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.cart-subtotal strong {
  font-size: 1.5rem;
  color: var(--accent-amber);
}

#clear-cart-btn {
  margin-top: 0.5rem;
  border: none;
  font-size: 0.9rem;
}

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

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.shape-1 {
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background-color: rgba(200, 121, 42, 0.15);
}

.shape-2 {
  bottom: -20%;
  left: -10%;
  width: 800px;
  height: 800px;
  background-color: rgba(45, 90, 39, 0.1);
}

.shape-3 {
  top: 40%;
  left: 30%;
  width: 400px;
  height: 400px;
  background-color: rgba(44, 26, 0, 0.5);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: rgba(200, 121, 42, 0.1);
  border: 1px solid rgba(200, 121, 42, 0.3);
  color: var(--accent-amber);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

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

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}

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

.stat-item strong {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  color: var(--accent-amber);
}

.stat-item span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background-color: var(--glass-border);
}

.hero-visual {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-main {
  width: 350px;
  height: 450px;
  background: linear-gradient(135deg, rgba(200, 121, 42, 0.2), rgba(44, 26, 0, 0.8));
  border: 1px solid rgba(200, 121, 42, 0.3);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  animation: float 6s ease-in-out infinite;
}

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

.bone-3d-img {
  width: 300px;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.hero-card-badge {
  position: absolute;
  bottom: 30px;
  background-color: rgba(26, 15, 0, 0.8);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.5rem;
  border-radius: 100px;
  border: 1px solid var(--glass-border);
  font-weight: 600;
  letter-spacing: 1px;
}

.hero-card-float {
  position: absolute;
  background-color: rgba(44, 26, 0, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.hero-card-float-1 {
  top: 10%;
  left: 0;
  animation: float 5s ease-in-out infinite 1s;
}

.hero-card-float-2 {
  bottom: 20%;
  right: -20px;
  animation: float 7s ease-in-out infinite 2s;
}

.hero-card-float-3 {
  bottom: 10%;
  left: 10%;
  animation: float 6s ease-in-out infinite 1.5s;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  border: 2px solid var(--text-muted);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 10px;
  z-index: 10;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-amber);
  border-radius: 50%;
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(20px); opacity: 0; }
}

/* Values Strip */
.values-strip {
  background-color: var(--primary-light);
  border-top: 1px solid rgba(245, 230, 208, 0.15);
  border-bottom: 1px solid rgba(245, 230, 208, 0.15);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  color: var(--text-light);
  position: relative;
  z-index: 10;
}

.values-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.value-icon {
  font-size: 2rem;
  background-color: rgba(200, 121, 42, 0.15);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.value-item div {
  display: flex;
  flex-direction: column;
}

.value-item strong {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--text-light);
}

.value-item small {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Products Grid */
.products-section {
  background-color: var(--bg-dark);
}

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

.product-card {
  background-color: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: rgba(200, 121, 42, 0.5);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.product-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background-color: rgba(26, 15, 0, 0.8);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid var(--glass-border);
}

.product-image-container {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.product-image {
  font-size: 6rem;
  filter: drop-shadow(0 10px 10px rgba(0,0,0,0.3));
  transition: var(--transition);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-card:hover .product-image {
  transform: scale(1.1) rotate(5deg);
}

.product-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.product-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  flex: 1;
}

.product-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-amber);
}

.product-size {
  font-size: 0.875rem;
  background-color: rgba(255,255,255,0.1);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
}



/* About Section */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-visual-v2 {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.about-main-img-wrapper {
  background-color: var(--primary-dark);
  padding: 1rem;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  position: relative;
  border: 1px solid rgba(200, 121, 42, 0.2);
}

.about-main-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

.float-badge {
  position: absolute;
  background-color: rgba(36, 24, 13, 0.95);
  color: #f5e6d0;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  border: 1px solid rgba(200, 121, 42, 0.3);
  white-space: nowrap;
  z-index: 10;
  font-family: var(--font-heading);
}

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

.badge-top-left { top: -20px; left: -30px; }
.badge-bottom-left { bottom: 40px; left: -40px; }
.badge-bottom-right { bottom: 60px; right: -30px; }
.badge-bottom-center { 
  bottom: -25px; 
  left: 50%; 
  transform: translateX(-50%); 
  background-color: #1a120b; 
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-color: rgba(200, 121, 42, 0.5);
}

.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-stat strong {
  font-size: 1.5rem;
  color: var(--accent-amber);
  font-family: var(--font-heading);
}

.about-stat small {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content .section-title {
  text-align: left;
}

.about-text {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0 3rem 0;
}

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

.highlight-icon {
  background-color: rgba(200, 121, 42, 0.1);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
}

.highlight-item div {
  display: flex;
  flex-direction: column;
}

.highlight-item strong {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.highlight-item small {
  color: var(--text-muted);
}

/* Team Section */
.team-section {
  background-color: var(--bg-dark);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-card {
  background-color: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 121, 42, 0.3);
}

.team-avatar {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--accent-amber), #8a521a);
  border-radius: 50%;
  margin: 0 auto 1.5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  font-family: var(--font-heading);
}

.team-name {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.service-card {
  background-color: var(--primary-light);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  transition: var(--transition);
}

.service-card:hover {
  background-color: var(--bg-card);
}

.service-card-featured {
  background: linear-gradient(180deg, rgba(200, 121, 42, 0.1), var(--bg-card));
  border-color: rgba(200, 121, 42, 0.3);
}

.service-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-amber);
  color: var(--primary-dark);
  padding: 0.25rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-desc {
  color: var(--text-muted);
}

/* Gallery Section */
.gallery-section {
  background-color: var(--primary-light);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background-color: transparent;
  color: var(--text-muted);
  border: 1px solid var(--glass-border);
  padding: 0.5rem 1.5rem;
  border-radius: 100px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--accent-amber);
  color: var(--primary-dark);
  border-color: var(--accent-amber);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  grid-auto-flow: dense;
}

.gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

#load-more-btn {
  min-width: 200px;
  transition: var(--transition);
}

#load-more-btn.hidden {
  display: none;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1; /* Default square */
}

/* Masonry variations */
.gallery-item.tall { grid-row: span 2; aspect-ratio: 1 / 2; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 2 / 1; }

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

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 15, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

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

.play-icon, .view-icon {
  font-size: 3rem;
  color: var(--text-light);
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.5));
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.gallery-item:hover .play-icon,
.gallery-item:hover .view-icon {
  transform: translateY(0);
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(10, 6, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.lightbox.show {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10000;
}

.lightbox-close:hover {
  color: var(--accent-amber);
  transform: rotate(90deg);
}

.lightbox-content {
  width: 90%;
  max-width: 1000px;
  max-height: 90vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.lightbox-content iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* Testimonials */
.testimonials-section {
  background-color: var(--bg-dark);
}

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

.testimonial-card {
  background-color: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
}

.testimonial-card-featured {
  background-color: rgba(200, 121, 42, 0.05);
  border-color: rgba(200, 121, 42, 0.3);
}

.testimonial-stars {
  color: var(--accent-amber);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-size: 1.125rem;
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--accent-amber);
}

.testimonial-author div {
  display: flex;
  flex-direction: column;
}

.testimonial-author strong {
  font-size: 1rem;
}

.testimonial-author small {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--primary-light), var(--accent-amber));
  position: relative;
  overflow: hidden;
}

.cta-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
}

.cta-shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -50px;
}

.cta-shape-2 {
  width: 500px;
  height: 500px;
  bottom: -200px;
  right: -100px;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}

.cta-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
}

.cta-subtitle {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  color: rgba(26, 15, 0, 0.8);
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact-text {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background-color: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

a.contact-channel:hover {
  border-color: var(--accent-amber);
  transform: translateX(10px);
}

.contact-channel-icon {
  font-size: 2rem;
}

.contact-channel div {
  display: flex;
  flex-direction: column;
}

.contact-channel strong {
  font-size: 1.125rem;
}

.contact-channel small {
  color: var(--text-muted);
}

.contact-form {
  background-color: var(--bg-card);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background-color: rgba(0,0,0,0.2);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-amber);
  background-color: rgba(0,0,0,0.4);
}

.form-group select option {
  background-color: var(--primary-dark);
  color: var(--text-light);
}

/* Footer */
.footer {
  background-color: #0a0600;
  padding-top: 5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem 1.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-tagline {
  color: var(--text-muted);
  margin-top: 1.5rem;
  max-width: 300px;
}

.footer-nav-title {
  font-family: var(--font-body);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-nav a {
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--accent-amber);
  padding-left: 5px;
}

.footer-products,
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--text-muted);
}

.footer-contact-info a {
  color: var(--accent-amber);
}

.footer-bottom {
  text-align: center;
  padding: 2rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background-color: var(--success);
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  z-index: 2000;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-container,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  
  .hero-visual {
    order: -1;
    height: 400px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .values-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar .nav-links {
    display: none; /* Mobile menu implementation needed in JS */
  }
  
  .hamburger {
    display: flex;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .stat-divider {
    width: 100%;
    height: 1px;
  }
  
  .cta-actions {
    flex-direction: column;
  }
  
  .values-container,
  .footer-container {
    grid-template-columns: 1fr;
  }
  

  .float-badge {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
  }
  .float-badge-icon {
    font-size: 1rem;
  }
  .badge-top-left { top: -10px; left: -10px; }
  .badge-bottom-left { bottom: 20px; left: -10px; }
  .badge-bottom-right { bottom: 40px; right: -10px; }
  .badge-bottom-center { bottom: -15px; padding: 0.6rem 1rem; font-size: 0.85rem; }
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  background-color: #128c7e;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.whatsapp-icon {
  width: 35px;
  height: 35px;
}

.whatsapp-bubble {
  position: absolute;
  right: 80px;
  background-color: var(--bg-card);
  color: var(--text-light);
  padding: 10px 15px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  border: 1px solid var(--glass-border);
  opacity: 0;
  visibility: hidden;
  transform: translateX(20px);
  transition: all 0.4s ease;
}

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

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-bubble {
    display: none;
  }
}
