/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #f5f5f4;
  background: linear-gradient(135deg, #1c1917 0%, #44403c 50%, #92400e 100%);
  min-height: 100vh;
  position: relative;
}

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

/* Video Background */
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(28, 25, 23, 0.95) 0%,
    rgba(28, 25, 23, 0.6) 50%,
    rgba(28, 25, 23, 0.95) 100%
  );
}

.video-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28, 25, 23, 0.8) 0%,
    transparent 30%,
    transparent 70%,
    rgba(28, 25, 23, 0.8) 100%
  );
}

.content-wrapper {
  position: relative;
  z-index: 1;
}

/* Section Dividers */
.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent 0%, rgba(251, 191, 36, 0.3) 50%, transparent 100%);
  margin: 0;
}

/* Header Styles */
.header {
  background: linear-gradient(90deg, rgba(28, 25, 23, 0.95) 0%, rgba(68, 64, 60, 0.95) 100%);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(120, 113, 108, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  height: 3.5rem;
  width: auto;
  filter: brightness(1.1) contrast(1.25);
}

.navigation {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: #fbbf24;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #fcd34d;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  width: 0;
  height: 2px;
  background: #fbbf24;
  transition: width 0.3s ease;
}

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

.header-actions {
  display: flex;
  gap: 0.75rem;
}

.icon-btn {
  background: transparent;
  border: none;
  color: #fbbf24;
  padding: 0.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-btn:hover {
  color: #fcd34d;
  background: rgba(68, 64, 60, 0.5);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.hero-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-icon {
  width: 2rem;
  height: 2rem;
  color: #fbbf24;
}

.sparkle-1,
.sparkle-2 {
  animation: pulse 2s ease-in-out infinite;
}

.sparkle-2 {
  animation-delay: 1s;
}

.crown {
  width: 2.5rem;
  height: 2.5rem;
  color: #f59e0b;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #e7e5e4 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: rgba(251, 191, 36, 0.9);
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-subtitle span {
  display: block;
  margin-top: 0.5rem;
  color: rgba(251, 191, 36, 0.8);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(245, 158, 11, 0.3);
}

.btn-outline {
  background: transparent;
  color: #fbbf24;
  border: 2px solid rgba(251, 191, 36, 0.5);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(251, 191, 36, 0.1);
  border-color: rgba(251, 191, 36, 0.8);
}

.btn-instagram {
  background: linear-gradient(135deg, #e11d48 0%, #be185d 100%);
  color: white;
  box-shadow: 0 10px 25px rgba(225, 29, 72, 0.25);
}

.btn-instagram:hover {
  background: linear-gradient(135deg, #be185d 0%, #9d174d 100%);
  transform: translateY(-2px);
}

.btn-pix {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
}

.btn-pix:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: white;
  box-shadow: 0 10px 25px rgba(5, 150, 105, 0.25);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #047857 0%, #065f46 100%);
  transform: translateY(-2px);
}

/* Video Section */
.video-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(28, 25, 23, 0.9) 0%,
    rgba(146, 64, 14, 0.9) 50%,
    rgba(120, 113, 108, 0.9) 100%
  );
  backdrop-filter: blur(10px);
}

.video-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28, 25, 23, 0.3) 0%, rgba(146, 64, 14, 0.3) 100%);
}

.video-container {
  max-width: 64rem;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.video-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.video-wrapper video {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .video-wrapper video {
    height: 500px;
  }
}

.video-overlay-inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 25, 23, 0.3) 0%, transparent 50%, rgba(28, 25, 23, 0.6) 100%);
}

.video-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.9) 0%, rgba(217, 119, 6, 0.9) 100%);
  backdrop-filter: blur(10px);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 20;
}

.video-badge i {
  width: 1rem;
  height: 1rem;
}

.video-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .video-cta-buttons {
    flex-direction: row;
  }
}

.video-cta-buttons .btn {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
}

/* Categories Section */
.categories-section {
  padding: 6rem 0;
  background: linear-gradient(
    135deg,
    rgba(146, 64, 14, 0.8) 0%,
    rgba(120, 113, 108, 0.8) 50%,
    rgba(146, 64, 14, 0.8) 100%
  );
  backdrop-filter: blur(10px);
}

.section-header h2 {
  font-size: clamp(2.5rem, 6vw, 3rem);
  font-weight: 700;
  background: linear-gradient(135deg, #fbbf24 0%, #e7e5e4 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-align: center;
  margin-bottom: 1rem;
}

.section-header p {
  color: rgba(251, 191, 36, 0.8);
  font-size: 1.125rem;
  text-align: center;
  margin-bottom: 4rem;
}

.carousel-container {
  margin-bottom: 5rem;
}

.carousel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.carousel-header h3 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #f5f5f4;
}

.carousel-controls {
  display: flex;
  gap: 0.5rem;
}

.carousel-btn {
  background: transparent;
  border: 1px solid rgba(251, 191, 36, 0.3);
  color: #fbbf24;
  padding: 0.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover:not(:disabled) {
  background: rgba(251, 191, 36, 0.2);
  border-color: rgba(251, 191, 36, 0.8);
}

.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

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

@media (min-width: 1024px) {
  .carousel {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Product Card Styles */
.product-card {
  background: linear-gradient(135deg, rgba(120, 113, 108, 0.2) 0%, rgba(146, 64, 14, 0.2) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(120, 113, 108, 0.3);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.5s ease;
  cursor: pointer;
  overflow: hidden;
}

.product-card:hover {
  border-color: rgba(251, 191, 36, 0.5);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.1);
}

.product-image {
  position: relative;
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 0.75rem;
  width: 100%;
  height: 280px;
  background: rgba(120, 113, 108, 0.1);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
  border-radius: 0.75rem;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(28, 25, 23, 0.4) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 0.75rem;
}

.product-card:hover .product-image::after {
  opacity: 1;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
  z-index: 10;
  backdrop-filter: blur(10px);
}

.product-badge i {
  width: 12px;
  height: 12px;
}

.product-type-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(28, 25, 23, 0.9);
  backdrop-filter: blur(10px);
  color: #fbbf24;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  z-index: 10;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.product-name {
  font-weight: 700;
  color: #f5f5f4;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  font-size: 1.1rem;
  min-height: 2.8rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  min-height: 2rem;
}

.product-tag {
  background: rgba(120, 113, 108, 0.3);
  color: #fbbf24;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  border: 1px solid rgba(120, 113, 108, 0.3);
  white-space: nowrap;
}

.product-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-btn {
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.product-btn.btn-pix {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.product-btn.btn-pix:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.product-btn.btn-whatsapp {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
}

.product-btn.btn-whatsapp:hover {
  background: linear-gradient(135deg, #047857 0%, #065f46 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
}

.product-btn i {
  width: 16px;
  height: 16px;
}

/* No Products Styles */
.no-products-categories,
.no-products-main {
  text-align: center;
  padding: 4rem 0;
}

.no-products-content {
  background: linear-gradient(135deg, rgba(120, 113, 108, 0.3) 0%, rgba(68, 64, 60, 0.3) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(120, 113, 108, 0.4);
  border-radius: 1rem;
  padding: 3rem;
  max-width: 24rem;
  margin: 0 auto;
}

.no-products-icon {
  width: 4rem;
  height: 4rem;
  color: rgba(251, 191, 36, 0.5);
  margin: 0 auto 1rem;
}

.no-products-title {
  color: #d6d3d1;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.no-products-text {
  color: rgba(212, 212, 212, 0.7);
  font-size: 0.875rem;
}

/* Products Section */
.products-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(28, 25, 23, 0.9) 0%, rgba(68, 64, 60, 0.9) 50%, rgba(28, 25, 23, 0.9) 100%);
  backdrop-filter: blur(10px);
}

/* Filters */
.filters {
  background: linear-gradient(90deg, rgba(120, 113, 108, 0.4) 0%, rgba(68, 64, 60, 0.4) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(120, 113, 108, 0.3);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .filters {
    flex-direction: row;
    align-items: center;
  }
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.filter-group:first-child {
  flex: 1;
}

.search-container {
  position: relative;
  flex: 1;
  min-width: 250px;
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  color: #fbbf24;
}

.search-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 3rem;
  background: rgba(120, 113, 108, 0.3);
  border: 1px solid rgba(120, 113, 108, 0.4);
  border-radius: 0.75rem;
  color: #f5f5f4;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  height: 3rem;
}

.search-input::placeholder {
  color: rgba(120, 113, 108, 0.6);
}

.search-input:focus {
  outline: none;
  border-color: #fbbf24;
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2);
}

.filter-select {
  padding: 0.75rem 1rem;
  background: rgba(120, 113, 108, 0.3);
  border: 1px solid rgba(120, 113, 108, 0.4);
  border-radius: 0.75rem;
  color: #f5f5f4;
  font-size: 0.875rem;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 3rem;
  min-width: 140px;
}

.filter-select:focus {
  outline: none;
  border-color: #fbbf24;
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2);
}

.filter-select option {
  background: #44403c;
  color: #f5f5f4;
}

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

/* No Results */
.no-results {
  text-align: center;
  padding: 4rem 0;
}

.no-results-content {
  background: linear-gradient(135deg, rgba(120, 113, 108, 0.3) 0%, rgba(68, 64, 60, 0.3) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(120, 113, 108, 0.4);
  border-radius: 1rem;
  padding: 3rem;
  max-width: 24rem;
  margin: 0 auto;
}

.no-results-icon {
  width: 4rem;
  height: 4rem;
  color: rgba(251, 191, 36, 0.5);
  margin: 0 auto 1rem;
}

.no-results-title {
  color: #d6d3d1;
  font-size: 1.125rem;
  font-weight: 600;
}

.no-results-text {
  color: rgba(212, 212, 212, 0.7);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

/* PIX Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-content {
  background: linear-gradient(135deg, rgba(120, 113, 108, 0.95) 0%, rgba(28, 25, 23, 0.95) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(120, 113, 108, 0.5);
  border-radius: 1rem;
  max-width: 28rem;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(120, 113, 108, 0.3);
}

.modal-header h3 {
  color: #fbbf24;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modal-close {
  background: none;
  border: none;
  color: #d6d3d1;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: rgba(120, 113, 108, 0.3);
  color: #fbbf24;
}

.modal-body {
  padding: 1.5rem;
  space-y: 1.5rem;
}

.pix-product-info {
  text-align: center;
  margin-bottom: 1.5rem;
}

.pix-product-info h4 {
  color: #f5f5f4;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pix-product-info p:first-of-type {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
}

.pix-product-info p:last-of-type {
  color: #a8a29e;
  font-size: 0.875rem;
}

.pix-qr-code {
  display: flex;
  justify-content: center;
  margin: 1.5rem 0;
}

.qr-placeholder {
  background: white;
  padding: 2rem;
  border-radius: 0.75rem;
  width: 16rem;
  height: 16rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.qr-placeholder i {
  width: 6rem;
  height: 6rem;
  color: #44403c;
  margin-bottom: 1rem;
}

.qr-placeholder p {
  color: #44403c;
  font-size: 0.875rem;
  font-weight: 500;
}

.pix-code-section {
  margin: 1.5rem 0;
}

.pix-code-section > p {
  color: #d6d3d1;
  font-size: 0.875rem;
  text-align: center;
  margin-bottom: 0.75rem;
}

.pix-code-container {
  background: rgba(120, 113, 108, 0.3);
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(120, 113, 108, 0.3);
  margin-bottom: 0.75rem;
}

.pix-code-container p {
  color: #e7e5e4;
  font-size: 0.75rem;
  font-family: monospace;
  word-break: break-all;
  line-height: 1.4;
}

.pix-instructions {
  background: rgba(120, 113, 108, 0.3);
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(120, 113, 108, 0.3);
  margin: 1.5rem 0;
}

.pix-instructions h4 {
  color: #fbbf24;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.pix-instructions ul {
  list-style: none;
  color: #d6d3d1;
  font-size: 0.75rem;
  line-height: 1.4;
}

.pix-instructions li {
  margin-bottom: 0.25rem;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, rgba(28, 25, 23, 0.95) 0%, rgba(68, 64, 60, 0.95) 100%);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(120, 113, 108, 0.3);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 4rem 0;
}

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

.footer-section h3 {
  color: #fbbf24;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.footer-logo {
  height: 4rem;
  width: auto;
  filter: brightness(1.1);
  margin-bottom: 1.5rem;
}

.footer-description {
  color: #d6d3d1;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 21rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-btn.instagram {
  background: rgba(236, 72, 153, 0.2);
  color: #ec4899;
}

.social-btn.instagram:hover {
  background: rgba(236, 72, 153, 0.4);
}

.social-btn.whatsapp {
  background: rgba(5, 150, 105, 0.2);
  color: #10b981;
}
/* ==================== */
/* ADMIN PANEL STYLES */
/* ==================== */

.login-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  background: linear-gradient(135deg, #1c1917 0%, #44403c 100%);
}

.login-card {
  background: rgba(28, 25, 23, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  max-width: 28rem;
  width: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.admin-panel {
  min-height: 100vh;
  background: linear-gradient(135deg, #1c1917 0%, #44403c 100%);
}

.admin-header {
  background: rgba(28, 25, 23, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(251, 191, 36, 0.2);
  padding: 1rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: rgba(68, 64, 60, 0.5);
  border: 1px solid rgba(251, 191, 36, 0.1);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

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

.admin-product-card {
  background: rgba(68, 64, 60, 0.5);
  border: 1px solid rgba(251, 191, 36, 0.1);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

/* Form Styles */
.form-group {
  margin-bottom: 1rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  background: rgba(68, 64, 60, 0.5);
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: 0.5rem;
  color: #f5f5f4;
}

.password-input {
  position: relative;
}
.pix-qr-code {
  margin: 20px 0;
  text-align: center;
  padding: 15px;
  background: white;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 250px;
}

.pix-qr-code canvas {
  max-width: 100%;
  height: auto;
}

.qr-placeholder {
  text-align: center;
  color: #666;
}

.qr-placeholder i {
  font-size: 48px;
  margin-bottom: 10px;
  display: block;
}
.password-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #fbbf24;
  cursor: pointer;
}
.social-btn.whatsapp:hover {
  background: rgba(5, 150, 105, 0.4);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
}

.contact-icon.whatsapp {
  background: rgba(5, 150, 105, 0.2);
  color: #10b981;
}

.contact-icon.email {
  background: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
}

.contact-icon.instagram {
  background: rgba(236, 72, 153, 0.2);
  color: #ec4899;
}

.contact-title {
  color: #fbbf24;
  font-weight: 500;
}

.contact-detail {
  color: rgba(212, 212, 212, 0.8);
  font-size: 0.875rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #d6d3d1;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fbbf24;
}

.footer-bottom {
  border-top: 1px solid rgba(120, 113, 108, 0.3);
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

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

.footer-bottom p {
  color: rgba(212, 212, 212, 0.7);
  font-size: 0.875rem;
}

.footer-credit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(212, 212, 212, 0.7);
  font-size: 0.875rem;
}

.heart-icon {
  width: 1rem;
  height: 1rem;
  color: #ef4444;
  fill: currentColor;
}

/* Animations */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .navigation {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .filters {
    flex-direction: column;
  }

  .filter-group {
    width: 100%;
  }

  .search-container {
    width: 100%;
  }

  .carousel {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .modal-content {
    margin: 1rem;
    max-width: calc(100% - 2rem);
  }

  .video-cta-buttons {
    flex-direction: column;
  }

  .video-badge {
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
  }
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #fbbf24;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .product-card,
  .modal-content {
    border-color: #fbbf24;
    border-width: 2px;
  }
}

/* Print styles */
@media print {
  .header,
  .footer,
  .modal {
    display: none;
  }

  .hero,
  .video-section {
    background: none !important;
    color: #000 !important;
  }
}
