@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ============================================
   LA FEMME BEAUTY - CSS PRINCIPAL
   Design Profissional: Paleta Premium
   ============================================ */

/* Reset e Variáveis */
:root {
  /* Paleta de Cores Profissional */
  --color-cerise: #FF1D8D;
  --color-froly: #FF4DA6;
  --color-wemak: #FF80C2;
  --color-morning-glory: #9AE2E1;
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-gray-dark: #1A1A1A;
  --color-gray-medium: #4A4A4A;
  --color-gray-light: #E5E5E5;
  --color-gray-lighter: #F5F5F5;
  
  /* Cores funcionais */
  --color-text: var(--color-black);
  --color-text-light: var(--color-gray-medium);
  --color-border: var(--color-gray-light);
  --color-success: #4CAF50;
  --color-error: #F44336;
  
  /* Tipografia Profissional */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  
  /* Sombras Profissionais */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
  
  /* Transições */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

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

* {
  box-sizing: border-box;
}

/* Prevenir overflow horizontal */
.container,
.section,
.page-content,
.cart-container,
.checkout-container,
.header-container,
.announcement-content {
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* Garantir que todos os elementos principais não ultrapassem a largura */
.header,
.footer,
.hero,
.page-header {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

/* ============================================
   HEADER E NAVEGAÇÃO PROFISSIONAL
   ============================================ */

/* Announcement Bar */
.announcement-bar {
  background: var(--color-cerise);
  padding: 0.625rem 0;
  text-align: center;
  position: relative;
  z-index: 1001;
}

.announcement-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.announcement-content p {
  color: var(--color-white);
  font-size: 0.875rem;
  margin: 0;
  font-weight: 500;
}

.announcement-content a {
  color: var(--color-white);
  text-decoration: underline;
  font-weight: 600;
  transition: var(--transition);
}

.announcement-content a:hover {
  opacity: 0.9;
}

/* Header Principal */
.header {
  background: var(--color-gray-lighter);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--color-border);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.header-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 0;
  min-height: 140px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  position: relative;
}

@media (max-width: 768px) {
  .header-main {
    min-height: 100px;
    padding: 1rem 0;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-cerise);
  letter-spacing: 0.5px;
  transition: var(--transition);
  text-transform: lowercase;
  white-space: nowrap;
  flex-shrink: 0;
  z-index: 1;
  text-decoration: none;
}

.logo:hover {
  color: var(--color-froly);
  transform: translateY(-2px);
}

.logo-image {
  height: 120px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: var(--transition);
  display: block;
}

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

@media (max-width: 1024px) {
  .logo-image {
    height: 100px;
  }
}

@media (max-width: 768px) {
  .logo-image {
    height: 80px;
  }
}

@media (max-width: 480px) {
  .logo-image {
    height: 60px;
  }
}

/* Search Bar */
.search-container {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  min-width: 0;
  flex: 1;
}

.search-form {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition);
  width: 100%;
  min-width: 0;
}

.search-form:focus-within {
  border-color: var(--color-cerise);
  box-shadow: 0 0 0 3px rgba(218, 40, 100, 0.1);
}

.search-icon {
  position: absolute;
  left: 1rem;
  color: var(--color-cerise);
  font-size: 1rem;
  pointer-events: none;
}

.search-input {
  flex: 1;
  padding: 0.875rem 1rem 0.875rem 2.75rem;
  border: none;
  outline: none;
  font-size: 0.9375rem;
  font-family: var(--font-primary);
  color: var(--color-text);
  background: transparent;
}

.search-input::placeholder {
  color: var(--color-text-light);
}

.search-submit {
  padding: 0.875rem 1.25rem;
  background: transparent;
  border: none;
  color: var(--color-cerise);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-submit:hover {
  background: var(--color-gray-lighter);
}

/* Utility Links */
.header-utilities {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.utility-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.utility-link i {
  font-size: 1rem;
  color: var(--color-text);
}

.utility-link:hover {
  color: var(--color-cerise);
}

.utility-link:hover i {
  color: var(--color-cerise);
}

.utility-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--color-cerise);
  font-size: 1.25rem;
  text-decoration: none;
  transition: var(--transition);
  border-radius: 50%;
}

.utility-icon:hover {
  background: var(--color-white);
  transform: scale(1.1);
}

.cart-link .cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--color-cerise);
  color: var(--color-white);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: bold;
  font-family: var(--font-primary);
  border: 2px solid var(--color-gray-lighter);
}

/* Categories Navigation */
.categories-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 1.25rem 0;
  border-top: 1px solid var(--color-border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  flex-wrap: wrap;
}

.categories-nav::-webkit-scrollbar {
  display: none;
}

.category-link {
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  padding: 0.625rem 1.25rem;
  position: relative;
  transition: var(--transition);
  border-radius: 4px;
  margin: 0 0.25rem;
}

.category-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-gray-lighter);
  border-radius: 4px;
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.category-link:hover {
  color: var(--color-cerise);
}

.category-link:hover::before {
  opacity: 1;
}

.category-link.active {
  color: var(--color-white);
  background: var(--color-cerise);
}

.category-link.active::before {
  opacity: 1;
  background: var(--color-cerise);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 1.5rem;
  color: var(--color-text);
  padding: 0.5rem;
  border-radius: 4px;
  transition: var(--transition);
  flex-shrink: 0;
  z-index: 1;
  cursor: pointer;
}

.mobile-menu-toggle:hover {
  background: var(--color-white);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  background: linear-gradient(135deg, var(--color-cerise) 0%, var(--color-froly) 50%, var(--color-wemak) 100%);
  padding: 8rem 1.5rem;
  text-align: center;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* ============================================
   BANNER CAROUSEL - PROFISSIONAL
   ============================================ */

.banner-carousel-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--color-black);
}

.banner-carousel-container {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.banner-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

@media (max-width: 768px) {
  .banner-carousel,
  .banner-slide {
    height: 100%;
  }
}

.banner-slide.active {
  opacity: 1;
  z-index: 2;
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}


/* Controles do Carrossel */
.banner-prev,
.banner-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--color-white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
  font-size: 1.25rem;
}

.banner-prev {
  left: 2rem;
}

.banner-next {
  right: 2rem;
}

.banner-prev:hover,
.banner-next:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%) scale(1.1);
}

/* Indicadores */
.banner-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.banner-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.banner-indicator:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
}

.banner-indicator.active {
  background: var(--color-white);
  border-color: var(--color-white);
  width: 32px;
  border-radius: 6px;
}

/* Progress Bar */
.banner-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 10;
}

.banner-progress-bar {
  height: 100%;
  background: var(--color-cerise);
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(255, 29, 141, 0.5);
}

/* Responsividade Banner */
@media (max-width: 1024px) {
  .banner-carousel-container {
    height: 500px;
  }
  
  .banner-title {
    font-size: 2.5rem;
  }
  
  .banner-subtitle {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .banner-carousel-container {
    height: auto;
    aspect-ratio: 16 / 5;
  }

  .banner-image {
    height: 100%;
    object-fit: cover;
  }
  
  .banner-title {
    font-size: 2rem;
  }
  
  .banner-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .btn-banner {
    padding: 0.875rem 2rem;
    font-size: 0.875rem;
  }
  
  .banner-prev,
  .banner-next {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .banner-prev {
    left: 1rem;
  }
  
  .banner-next {
    right: 1rem;
  }
  
  .banner-indicators {
    bottom: 1rem;
  }
  
  .banner-content {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .banner-carousel-container {
    height: auto;
    aspect-ratio: 16 / 5;
  }

  .banner-image {
    height: 100%;
    object-fit: cover;
  }
  
  .banner-title {
    font-size: 1.75rem;
  }
  
  .banner-subtitle {
    font-size: 0.9375rem;
  }
}

/* ============================================
   PÁGINA DE LOJA
   ============================================ */

.shop-section {
  background: linear-gradient(180deg, var(--color-gray-lighter) 0%, var(--color-white) 100%);
  padding: 4rem 0;
}

/* ============================================
   SEÇÕES DE PRODUTOS
   ============================================ */

.promotional-products {
  background: linear-gradient(135deg, rgba(255, 29, 141, 0.05), rgba(255, 77, 166, 0.05));
  padding: 5rem 0;
}

.bestsellers-section {
  background: var(--color-white);
  padding: 5rem 0;
}

.new-products-section {
  background: var(--color-gray-lighter);
  padding: 5rem 0;
}

/* Categorias em Destaque */
.categories-showcase {
  background: var(--color-white);
  padding: 5rem 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (max-width: 1200px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
}

.category-showcase-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: var(--color-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.category-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: var(--color-text);
}

.category-icon {
  width: 50px;
  height: 50px;
  background: var(--color-gray-lighter);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  transition: var(--transition);
}

.category-showcase-card:hover .category-icon {
  background: var(--color-text);
  color: var(--color-white);
  transform: scale(1.05);
}

.category-showcase-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
  color: var(--color-text);
  font-family: var(--font-heading);
}

.category-showcase-card p {
  color: var(--color-text-light);
  font-size: 0.8125rem;
  margin-bottom: 1rem;
  flex: 1;
}

.category-link-text {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.8125rem;
  transition: var(--transition);
  opacity: 0.7;
}

@media (max-width: 1200px) {
  .categories-grid {
    grid-template-columns: repeat(3, minmax(160px, 1fr));
  }
}

@media (max-width: 900px) {
  .categories-grid {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
  }
}

.category-showcase-card:hover .category-link-text {
  gap: 0.75rem;
  opacity: 1;
  color: var(--color-text);
}

.category-showcase-card:hover .category-link-text i {
  transform: translateX(4px);
}

/* ============================================
   BENEFÍCIOS PREMIUM
   ============================================ */

/* ============================================
   SEÇÕES DE PRODUTOS
   ============================================ */

.promotional-products {
  background: linear-gradient(135deg, rgba(255, 29, 141, 0.05), rgba(255, 77, 166, 0.05));
  padding: 5rem 0;
}

.bestsellers-section {
  background: var(--color-white);
  padding: 5rem 0;
}

.new-products-section {
  background: var(--color-gray-lighter);
  padding: 5rem 0;
}

/* Categorias em Destaque */
.categories-showcase {
  background: var(--color-white);
  padding: 5rem 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.category-showcase-card {
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: var(--color-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.category-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: var(--color-text);
}

.category-icon {
  width: 60px;
  height: 60px;
  background: var(--color-gray-lighter);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-text);
  margin-bottom: 1rem;
  transition: var(--transition);
}

.category-showcase-card:hover .category-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 28px rgba(255, 29, 141, 0.4);
}

.category-showcase-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-text);
  font-family: var(--font-heading);
}

.category-showcase-card p {
  color: var(--color-text-light);
  font-size: 0.8125rem;
  margin-bottom: 1rem;
  flex: 1;
}

.category-link-text {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.8125rem;
  transition: var(--transition);
  opacity: 0.7;
}

.category-showcase-card:hover .category-link-text {
  gap: 0.75rem;
  opacity: 1;
  color: var(--color-text);
}

.category-showcase-card:hover .category-link-text i {
  transform: translateX(4px);
}

.premium-benefits {
  background: linear-gradient(135deg, rgba(255, 29, 141, 0.03), rgba(255, 77, 166, 0.03));
  padding: 5rem 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.benefit-card {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-cerise), var(--color-froly));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(255, 29, 141, 0.2);
  border-color: var(--color-cerise);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--color-cerise), var(--color-froly));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-white);
  box-shadow: 0 8px 20px rgba(255, 29, 141, 0.3);
  transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 28px rgba(255, 29, 141, 0.4);
}

.benefit-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-text);
  font-family: var(--font-heading);
}

.benefit-card p {
  color: var(--color-text-light);
  line-height: 1.7;
  font-size: 1rem;
}

/* ============================================
   BOTÕES
   ============================================ */

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: center;
  border-radius: 4px;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-primary);
}

.btn-primary {
  background: var(--color-cerise);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--color-froly);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn-secondary:hover {
  background: var(--color-white);
  color: var(--color-cerise);
}

.btn-outline {
  background: transparent;
  color: var(--color-cerise);
  border: 2px solid var(--color-cerise);
}

.btn-outline:hover {
  background: var(--color-cerise);
  color: var(--color-white);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--color-white);
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp i {
  margin-right: 0.45rem;
}

.btn-sm {
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
}

.btn-block {
  display: block;
  width: 100%;
}

/* ============================================
   SEÇÕES
   ============================================ */

.section {
  padding: 4rem 1.5rem;
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 1rem;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 2.5rem 0.75rem;
  }
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 0.75rem;
  color: #111111;
  position: relative;
  padding-bottom: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-transform: none;
  line-height: 1.2;
}

.section-title-icon {
  font-size: 0.8rem;
  margin-right: 0.5rem;
  color: #111111;
  vertical-align: middle;
  opacity: 0.55;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 2px;
  background: #111111;
  opacity: 0.14;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #6b7280;
  margin: 0 auto;
  max-width: 640px;
  font-weight: 400;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.section-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #111111;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: var(--transition);
}

.reviews {
  background: var(--color-white);
}

.reviews .section-title {
  color: var(--color-text);
  text-transform: none;
  letter-spacing: 0.2px;
}

.reviews .section-title::after {
  width: 48px;
  height: 2px;
  background: var(--color-text);
  opacity: 0.2;
}

.reviews .section-subtitle {
  color: var(--color-text-light);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }
}

/* ============================================
   PRODUTOS PROFISSIONAIS
   ============================================ */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-top: 2rem;
  align-items: stretch;
}

.product-carousel-dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.9rem;
}

.product-carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: none;
  background: rgba(17, 17, 17, 0.18);
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.product-carousel-dot.active {
  background: rgba(17, 17, 17, 0.6);
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .product-carousel-dots {
    display: flex;
  }
}

.product-card {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  padding: 0;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.1);
}

.product-badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  width: 46px;
  height: 46px;
  background: #111111;
  color: var(--color-white);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 800;
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  line-height: 1.1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

.product-badge .badge-value {
  font-size: 0.7rem;
  font-weight: 800;
}

.product-badge .badge-text {
  font-size: 0.5rem;
  font-weight: 700;
  opacity: 0.9;
}

.product-wishlist {
  position: absolute;
  top: 3.5rem;
  left: 0.65rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 62, 154, 0.35);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff3e9a;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  z-index: 10;
}

.product-wishlist i {
  font-size: 0.85rem;
}

.product-image {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: #ffffff;
  transition: transform 0.2s ease;
  padding: 1.25rem;
  display: block;
}

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

.product-info {
  padding: 0.9rem 0.95rem 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: var(--color-white);
  justify-content: space-between;
  gap: 0.65rem;
}

.product-category {
  display: none;
}

.product-name {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0;
  color: #111111;
  line-height: 1.35;
  min-height: 2.4em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.product-name a {
  color: var(--color-black);
  text-decoration: none;
  transition: var(--transition);
}

.product-name a:hover {
  color: var(--color-cerise);
}

.product-image-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
  background: #ffffff;
}

.product-image-link:hover {
  opacity: 0.9;
}

.product-slogan {
  font-size: 0.72rem;
  color: #6b7280;
  margin-bottom: 0;
  font-weight: 400;
  font-style: normal;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 1.8em;
}

.product-brand {
  font-size: 0.7rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.product-sponsored {
  font-size: 0.68rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-top: 0.1rem;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.1rem;
}

.product-rating-stars {
  color: #f59e0b;
  font-size: 0.75rem;
  letter-spacing: 0.2px;
}

.product-rating-count {
  color: var(--color-text-light);
  font-size: 0.72rem;
}

.stars {
  display: none;
}

.product-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  margin-bottom: 0;
  margin-top: auto;
}

.price-original {
  font-size: 0.72rem;
  color: #9ca3af;
  text-decoration: line-through;
  font-weight: 500;
  line-height: 1.2;
}

.price-current {
  font-size: 0.8rem;
  font-weight: 800;
  color: #16a34a;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.price-current small {
  font-size: 0.48rem;
  font-weight: 600;
  color: #111111;
  margin-left: 0.1rem;
}

.price-installment {
  font-size: 0.56rem;
  color: #6b7280;
  font-weight: 500;
  line-height: 1.3;
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  flex-wrap: nowrap;
}

/* Garantir proporção perfeita do botão com ícone nos cards */
.product-card .product-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: stretch;
  border-top: none;
  padding-top: 0.4rem;
  margin-top: 0.4rem;
}

.product-card .product-actions.product-actions--single {
  grid-template-columns: 1fr;
  width: 100%;
}

/* Espichar o botão Comprar no card (desktop e geral) */
.product-card .product-actions.product-actions--single {
  width: calc(100% + 1rem);
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.product-card .product-actions.product-actions--single .btn-add-cart--with-icon {
  width: 100%;
  max-width: 100%;
}

.product-card .btn-add-cart {
  min-height: 46px;
}

.product-card .btn-add-cart-icon {
  height: 100%;
  min-height: 46px;
}

.product-card .btn-add-cart--with-icon {
  background: var(--color-cerise);
  border-color: var(--color-cerise);
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  min-height: 34px;
  padding: 0.45rem 1.6rem;
  width: 100% !important;
  min-width: 100%;
  display: flex;
  justify-content: flex-start;
  align-self: stretch;
  gap: 0.45rem;
  padding-left: 0.9rem;
  box-sizing: border-box;
}

/* Forçar o botão específico ocupar toda a largura no mobile */
@media (max-width: 768px) {
  .product-card .btn-add-cart.btn-add-cart--with-icon {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
  }
}

.product-card .btn-add-cart--with-icon .btn-add-cart-icon-wrap {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  margin-right: 0.35rem;
}

.product-card .btn-add-cart--with-icon span {
  font-size: 0.62rem;
}

.product-card .btn-add-cart--with-icon:hover {
  background: #ff3e9a;
  border-color: #ff3e9a;
}

.product-card .btn-add-cart--with-icon:hover::before {
  opacity: 0;
}

.btn-add-cart {
  flex: 1;
  background: #111111;
  color: var(--color-white);
  padding: 0.8rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #111111;
  cursor: pointer;
  min-height: 42px;
  box-sizing: border-box;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.btn-add-cart--with-icon {
  gap: 0.5rem;
}

.btn-add-cart--with-icon i {
  font-size: 1rem;
}

.btn-add-cart--with-icon span {
  display: inline-block;
}

.btn-add-cart::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.btn-add-cart:hover::before {
  opacity: 1;
}

.btn-add-cart:hover {
  background: #1f1f1f;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}

.btn-add-cart:active {
  transform: translateY(0);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

.btn-add-cart-icon {
  width: 42px;
  min-width: 42px;
  height: 42px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111111;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 0;
  flex: 0 0 auto;
}

.btn-add-cart-icon:hover {
  border-color: rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.btn-add-cart-icon:active {
  transform: scale(0.95);
}

.btn-add-cart-icon i {
  font-size: 1.125rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-view {
  display: none;
}
  letter-spacing: 0.5px;
}

.btn-view:hover {
  background: var(--color-gray-lighter);
  border-color: var(--color-cerise);
  color: var(--color-cerise);
}

/* ============================================
   FILTROS PROFISSIONAIS
   ============================================ */

.filters {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 3rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

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

.filter-group label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: var(--color-text);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-group select,
.filter-group input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.9375rem;
  background: var(--color-white);
  transition: var(--transition);
  color: var(--color-text);
  cursor: pointer;
}

.filter-group select:hover,
.filter-group input:hover {
  border-color: var(--color-cerise);
}

.filter-group select:focus,
.filter-group input:focus {
  outline: none;
  border-color: var(--color-cerise);
  box-shadow: 0 0 0 3px rgba(218, 40, 100, 0.1);
}

/* ============================================
   PÁGINA DO PRODUTO
   ============================================ */

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.product-gallery {
  position: relative;
}

.product-main-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
  background: var(--color-gray-lighter);
  margin-bottom: 1rem;
}

.product-thumbnails {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
}

.thumbnail {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.thumbnail:hover,
.thumbnail.active {
  border-color: var(--color-cerise);
}

.product-details h1 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: var(--color-text);
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.product-details .product-price {
  margin-bottom: 1.5rem;
}

.product-description {
  margin-bottom: 2rem;
  line-height: 1.8;
  color: var(--color-text-light);
}

.product-benefits {
  margin-bottom: 2rem;
}

.product-benefits h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.product-benefits ul {
  list-style: none;
  padding-left: 0;
}

.product-benefits li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.product-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-cerise);
  font-weight: bold;
  font-size: 1.25rem;
}

.product-actions-detail {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.quantity-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-gray-lighter);
  color: var(--color-text);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  transition: var(--transition);
  font-weight: 600;
}

.quantity-btn:hover {
  background: var(--color-cerise);
  color: var(--color-white);
  border-color: var(--color-cerise);
}

.quantity-input {
  width: 80px;
  text-align: center;
  padding: 0.5rem;
  border: 2px solid var(--color-border);
  border-radius: 8px;
  font-size: 1.25rem;
  font-weight: 600;
}

/* ============================================
   PÁGINA DE PRODUTO - DESIGN PROFISSIONAL
   ============================================ */

/* Breadcrumb */
.breadcrumb-section {
  background: var(--color-gray-lighter);
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.breadcrumb a {
  color: var(--color-text-light);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--color-cerise);
}

.breadcrumb span {
  color: var(--color-text-light);
}

.breadcrumb-current {
  color: var(--color-text);
  font-weight: 600;
}

/* Seção do Produto */
.product-section {
  padding: 3rem 0;
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin: 2rem auto 0;
  align-items: start;
  max-width: 100%;
  width: 100%;
  justify-items: center;
}

.product-info {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin: 0 auto;
}

@media (max-width: 968px) {
  .product-detail {
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 100%;
    margin: 2rem auto 0;
    justify-items: center;
  }
  
  .product-gallery {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .product-info {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  
  .product-main-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .product-thumbnails {
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    display: flex;
  }
  
  .product-info > * {
    width: 100%;
    max-width: 100%;
  }
}

/* Galeria de Imagens */
.product-gallery {
  position: relative;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.product-main-image-container {
  position: relative;
  margin-bottom: 1.5rem;
  border-radius: 16px;
  overflow: hidden;
  background: var(--color-gray-lighter);
  cursor: zoom-in;
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-main-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  border-radius: 16px;
}

.product-main-image:hover {
  transform: scale(1.01);
}

.product-main-image-container:hover .product-main-image {
  transform: scale(1.01);
}

.image-zoom-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.image-zoom-btn:hover {
  background: var(--color-cerise);
  color: var(--color-white);
  transform: scale(1.1);
}

.product-thumbnails {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.5rem 0;
  scrollbar-width: thin;
  width: 100%;
  max-width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

.product-thumbnails::-webkit-scrollbar {
  height: 6px;
}

.product-thumbnails::-webkit-scrollbar-track {
  background: var(--color-gray-lighter);
  border-radius: 3px;
}

.product-thumbnails::-webkit-scrollbar-thumb {
  background: var(--color-cerise);
  border-radius: 3px;
}

.thumbnail {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  border: 3px solid transparent;
  transition: var(--transition);
  flex-shrink: 0;
}

.thumbnail:hover {
  border-color: var(--color-cerise);
  transform: scale(1.05);
}

.thumbnail.active {
  border-color: var(--color-cerise);
  box-shadow: 0 0 0 2px rgba(255, 29, 141, 0.2);
}

/* Informações do Produto */
.product-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  align-items: stretch;
}

.product-info > * {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}

.product-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 100%;
  align-items: flex-start;
}

.product-category-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--color-cerise);
  color: var(--color-white);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
  margin: 0;
  letter-spacing: -0.02em;
}

.product-rating-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  width: 100%;
}

.rating-stars {
  display: flex;
  gap: 0.25rem;
  color: #FFD700;
  font-size: 1.25rem;
}

.rating-text {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

/* Preços */
.product-pricing {
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 29, 141, 0.05), rgba(255, 77, 166, 0.05));
  border-radius: 16px;
  border: 1px solid rgba(255, 29, 141, 0.1);
  box-shadow: var(--shadow-sm);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.price-container {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 0.5rem;
  width: 100%;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .price-container {
    justify-content: center;
  }
}

/* ============================================
   TIPOGRAFIA MINIMALISTA (SEM NEGRITO PESADO)
   - Mantém o site com cara de e-commerce premium
   - Evita font-weight 700/800/900 nos elementos principais
   ============================================ */
:root {
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
}

body {
  font-weight: var(--fw-regular);
}

/* Títulos e hierarquia (menos "gritado") */
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--fw-medium);
  letter-spacing: 0.2px;
}

/* Botões: sem caixa alta e sem negrito pesado */
.btn,
.btn-primary,
.btn-secondary,
.btn-outline {
  font-weight: var(--fw-medium) !important;
  text-transform: none !important;
  letter-spacing: 0.2px !important;
}

/* Títulos de seções/páginas */
.section-title,
.page-header h1,
.newsletter-section-featured h2,
.auth-title,
.cart-summary h3 {
  font-weight: var(--fw-medium) !important;
  text-transform: none !important;
  letter-spacing: 0.2px !important;
}

/* Carrinho (resumo mais clean) */
.cart-summary-section-title,
.cart-free-shipping-label {
  font-weight: var(--fw-medium) !important;
  text-transform: none !important;
  letter-spacing: 0.2px !important;
}

.cart-summary-row.total {
  font-weight: var(--fw-medium) !important;
}

.cart-summary-row.total span:last-child {
  font-weight: var(--fw-semibold) !important;
}

/* Logo textual (quando existir) */
.logo {
  font-weight: var(--fw-medium) !important;
}


.product-detail .price-current {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--color-cerise);
  letter-spacing: -0.02em;
}

.price-original {
  font-size: 1.5rem;
  color: var(--color-text-light);
  text-decoration: line-through;
}

.price-discount {
  padding: 0.25rem 0.75rem;
  background: var(--color-success);
  color: var(--color-white);
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
}

.price-installment {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

/* Descrição Curta */
.product-description-short {
  color: var(--color-text-light);
  line-height: 1.8;
  font-size: 1rem;
  width: 100%;
  max-width: 100%;
}

/* Especificações Rápidas */
.product-specs-quick {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.spec-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  color: var(--color-text);
  width: 100%;
}

.spec-item i {
  color: var(--color-cerise);
  width: 20px;
}

/* Quantidade */
.product-quantity-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 100%;
}

.product-quantity-section label {
  display: block;
  width: 100%;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
}

.quantity-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.quantity-btn {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-white);
  color: var(--color-text);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-border);
  transition: var(--transition);
  cursor: pointer;
}

.quantity-btn:hover {
  background: var(--color-cerise);
  color: var(--color-white);
  border-color: var(--color-cerise);
  transform: scale(1.05);
}

.quantity-input {
  width: 100px;
  text-align: center;
  padding: 0.75rem;
  border: 2px solid var(--color-border);
  border-radius: 12px;
  font-size: 1.25rem;
  font-weight: 600;
}

/* Ações do Produto */
.product-actions {
  display: flex;
  gap: 1rem;
  width: 100%;
  max-width: 100%;
  align-items: stretch;
  justify-content: center;
  margin: 0 auto;
}

.btn-add-cart {
  flex: 1;
  padding: 1.25rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.btn-wishlist {
  width: 60px;
  height: 60px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.btn-wishlist.active {
  background: var(--color-cerise);
  color: var(--color-white);
}

/* Informações de Segurança */
.product-security-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.security-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  color: var(--color-text-light);
  font-size: 0.875rem;
  width: 100%;
}

.security-item i {
  color: var(--color-success);
  width: 20px;
}

/* Abas de Informações */
.product-tabs-section {
  background: var(--color-gray-lighter);
  padding: 3rem 0;
}

.product-tabs {
  display: flex;
  gap: 0.5rem;
  border-bottom: 2px solid var(--color-border);
  margin-bottom: 2rem;
  overflow-x: auto;
}

.tab-btn {
  padding: 1rem 2rem;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--color-text-light);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.tab-btn:hover {
  color: var(--color-cerise);
}

.tab-btn.active {
  color: var(--color-cerise);
  border-bottom-color: var(--color-cerise);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-content-inner {
  background: var(--color-white);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.tab-content-inner h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.tab-content-inner h4 {
  font-size: 1.25rem;
  margin: 2rem 0 1rem;
  color: var(--color-text);
}

/* Benefícios */
.benefits-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.benefits-list li {
  padding: 1rem;
  background: var(--color-gray-lighter);
  border-radius: 8px;
  padding-left: 2.5rem;
  position: relative;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 1rem;
  color: var(--color-success);
  font-weight: bold;
  font-size: 1.5rem;
}

/* Especificações */
.specifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.spec-item-detail {
  padding: 1.5rem;
  background: var(--color-gray-lighter);
  border-radius: 8px;
}

.spec-item-detail strong {
  display: block;
  color: var(--color-cerise);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.spec-item-detail span {
  color: var(--color-text);
  font-size: 1rem;
}

/* Ingredientes */
.ingredients-text {
  line-height: 1.8;
  color: var(--color-text);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.ingredients-note {
  padding: 1.5rem;
  background: var(--color-gray-lighter);
  border-radius: 8px;
  display: flex;
  gap: 1rem;
}

.ingredients-note i {
  color: var(--color-cerise);
  font-size: 1.5rem;
}

.ingredients-note p {
  color: var(--color-text-light);
  margin: 0;
}

/* Avaliações */
.reviews-summary {
  margin-bottom: 3rem;
}

.reviews-rating-overview {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(255, 29, 141, 0.03), rgba(255, 77, 166, 0.03));
  border-radius: 16px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

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

.rating-number {
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--color-cerise);
  display: block;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(255, 29, 141, 0.2);
}

.rating-stars-large {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  color: #FFD700;
  font-size: 2.5rem;
  margin: 1rem 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.rating-total {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

.rating-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.rating-bar-label {
  width: 80px;
  font-size: 0.875rem;
  color: var(--color-text);
}

.rating-bar {
  flex: 1;
  height: 8px;
  background: var(--color-gray-light);
  border-radius: 4px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: #FFD700;
  transition: width 0.3s ease;
}

.rating-bar-count {
  width: 60px;
  text-align: right;
  font-size: 0.875rem;
  color: var(--color-text-light);
}

/* Lista de Avaliações */
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.review-item {
  padding: 2rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.review-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  gap: 1.5rem;
}

.review-author {
  display: flex;
  gap: 1rem;
  flex: 1;
}

.review-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-cerise), var(--color-froly));
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.review-author-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.review-author-name {
  font-weight: 600;
  color: var(--color-text);
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  background: var(--color-success);
  color: var(--color-white);
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.review-verified i {
  font-size: 0.875rem;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.review-location {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.review-date {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.review-rating-display {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.review-rating {
  display: flex;
  gap: 0.25rem;
  color: #FFD700;
  font-size: 1.125rem;
}

.review-rating-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
}

.review-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-text {
  color: var(--color-text);
  line-height: 1.8;
  font-size: 1rem;
}

.review-actions {
  display: flex;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.review-helpful-btn,
.review-report-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  color: var(--color-text-light);
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
}

.review-helpful-btn:hover {
  background: var(--color-gray-lighter);
  border-color: var(--color-cerise);
  color: var(--color-cerise);
}

.review-report-btn:hover {
  background: var(--color-gray-lighter);
  border-color: var(--color-error);
  color: var(--color-error);
}

.no-reviews {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--color-text-light);
}

.no-reviews i {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: var(--color-cerise);
  opacity: 0.5;
}

.review-success-message {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: var(--color-success);
  color: var(--color-white);
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-weight: 600;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes highlightReview {
  0%, 100% {
    background: var(--color-white);
  }
  50% {
    background: rgba(255, 29, 141, 0.1);
  }
}

/* Formulário de Avaliação */
.review-form-section {
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(255, 29, 141, 0.02), rgba(255, 77, 166, 0.02));
  border: 2px solid var(--color-border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.review-form-header {
  margin-bottom: 2rem;
}

.review-form-header h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.review-form-header p {
  color: var(--color-text-light);
  font-size: 0.9375rem;
}

.review-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--color-text);
}

.rating-input {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 0.5rem;
}

.rating-input input[type="radio"] {
  display: none;
}

.star-label {
  font-size: 2rem;
  color: var(--color-gray-light);
  cursor: pointer;
  transition: var(--transition);
}

.rating-input input[type="radio"]:checked ~ .star-label,
.star-label:hover,
.star-label:hover ~ .star-label {
  color: #FFD700;
}

.form-group textarea,
.form-group input[type="text"] {
  padding: 1rem;
  border: 2px solid var(--color-border);
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group textarea:focus,
.form-group input[type="text"]:focus {
  outline: none;
  border-color: var(--color-cerise);
  box-shadow: 0 0 0 3px rgba(255, 29, 141, 0.1);
}

.rating-hint {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-top: 0.5rem;
  display: block;
}

.char-count {
  font-size: 0.75rem;
  color: var(--color-text-light);
  text-align: right;
  margin-top: 0.5rem;
  display: block;
}

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.form-actions .btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Produtos Relacionados */
.related-products-section {
  padding: 3rem 0;
}

/* Badges de Confiança */
.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 29, 141, 0.05), rgba(255, 77, 166, 0.05));
  border-radius: 12px;
  border: 1px solid rgba(255, 29, 141, 0.1);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.trust-badge i {
  font-size: 2rem;
  color: var(--color-cerise);
  width: 48px;
  text-align: center;
}

.trust-badge div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.trust-badge strong {
  color: var(--color-text);
  font-size: 0.9375rem;
}

.trust-badge span {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

/* Informações de Entrega */
.delivery-info {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--color-gray-lighter);
  border-radius: 12px;
}

.delivery-info h4 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  color: var(--color-text);
  font-size: 1.125rem;
}

.delivery-info h4 i {
  color: var(--color-cerise);
}

.delivery-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.delivery-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--color-white);
  border-radius: 8px;
  border: 1px solid var(--color-border);
}

.delivery-option i {
  font-size: 1.5rem;
  color: var(--color-cerise);
  width: 40px;
  text-align: center;
}

.delivery-option div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.delivery-option strong {
  color: var(--color-text);
  font-size: 0.9375rem;
}

.delivery-option span {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-white);
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-item.active {
  border-color: var(--color-cerise);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: transparent;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--color-cerise);
}

.faq-question i {
  color: var(--color-cerise);
  transition: transform 0.3s ease;
  font-size: 0.875rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  color: var(--color-text-light);
  line-height: 1.8;
  margin: 0;
}

/* Modal de Zoom */
.image-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.image-modal.active {
  display: flex;
}

.image-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.image-modal-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
}

.image-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: var(--color-white);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--color-text);
  transition: var(--transition);
}

.image-modal-close:hover {
  background: var(--color-cerise);
  color: var(--color-white);
}

.image-modal-prev,
.image-modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--color-text);
  transition: var(--transition);
}

.image-modal-prev {
  left: -80px;
}

.image-modal-next {
  right: -80px;
}

.image-modal-prev:hover,
.image-modal-next:hover {
  background: var(--color-cerise);
  color: var(--color-white);
  transform: translateY(-50%) scale(1.1);
}

/* Responsivo - Página de Produto */
@media (max-width: 968px) {
  .product-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-main-image {
    height: 400px;
  }

  .product-title {
    font-size: 2rem;
  }

  .product-detail .price-current {
    font-size: 2rem;
  }

  .reviews-rating-overview {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .image-modal-prev {
    left: 1rem;
  }

  .image-modal-next {
    right: 1rem;
  }
}

@media (max-width: 768px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-link {
    margin-top: 1rem;
  }

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

  .category-showcase-card {
    padding: 2rem 1.5rem;
  }

  .category-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .category-showcase-card h3 {
    font-size: 1.25rem;
  }

  .product-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .tab-btn {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }

  .benefits-list {
    grid-template-columns: 1fr;
  }

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

  .product-detail .product-actions {
    flex-direction: column;
  }

  .product-detail .btn-add-cart {
    width: 100%;
  }

  .reviews-rating-overview {
    grid-template-columns: 1fr;
  }

  .review-header {
    flex-direction: column;
    gap: 1rem;
  }

  .review-rating-display {
    align-items: flex-start;
  }

  .trust-badges {
    gap: 0.75rem;
  }

  .delivery-options {
    gap: 0.75rem;
  }

  .form-actions {
    flex-direction: column;
  }
}

/* ============================================
   CARRINHO MINIMALISTA
   ============================================ */

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

@media (max-width: 968px) {
  .cart-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  /* No mobile, o resumo deve ficar ABAIXO da lista de produtos */
  .cart-items {
    order: 1;
  }

  .cart-summary {
    order: 2;
  }
}

/* Quando carrinho está vazio, centralizar */
.cart-container:has(.cart-empty:not([style*="display: none"])) {
  grid-template-columns: 1fr;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
}

.cart-items {
  background: var(--color-white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(15, 18, 34, 0.08);
  box-shadow: 0 18px 50px rgba(15, 18, 34, 0.06);
}

.cart-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(15, 18, 34, 0.06);
  align-items: center;
  transition: var(--transition);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item:hover {
  background: rgba(15, 18, 34, 0.02);
}

.cart-item-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.25rem;
  line-height: 1.4;
}

.cart-item-category {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 0.75rem;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.cart-item-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-cerise);
  white-space: nowrap;
  min-width: 120px;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}

.cart-price-original {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-text-light);
  text-decoration: line-through;
}

.cart-price-current {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-cerise);
}

.cart-price-discount {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-success);
  background: rgba(76, 175, 80, 0.1);
  padding: 0.125rem 0.5rem;
  border-radius: 4px;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 0.25rem;
}

.cart-item-quantity .quantity-btn {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: transparent;
  color: var(--color-text);
  border: none;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}

.cart-item-quantity .quantity-btn:hover {
  background: var(--color-gray-lighter);
  color: var(--color-cerise);
}

.cart-item-quantity .quantity-input {
  width: 40px;
  text-align: center;
  padding: 0.25rem;
  border: none;
  font-size: 0.875rem;
  font-weight: 600;
  background: transparent;
}

.cart-item-remove {
  background: transparent;
  color: var(--color-text-light);
  width: 32px;
  height: 32px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.cart-item-remove:hover {
  background: var(--color-error);
  color: var(--color-white);
}

.cart-summary {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
  padding: 2rem;
  border-radius: 14px;
  border: 1px solid rgba(15, 18, 34, 0.08);
  box-shadow: 0 18px 50px rgba(15, 18, 34, 0.08);
  height: fit-content;
  position: sticky;
  top: 120px;
}

.cart-summary h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--color-text);
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(15, 18, 34, 0.10);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-family: var(--font-display);
}

.cart-summary-section {
  margin-bottom: 1.5rem;
}

.cart-summary-section-title {
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cart-free-shipping {
  margin: 0.75rem 0 1rem;
  padding: 0.875rem 0.875rem;
  border: 1px solid rgba(15, 18, 34, 0.08);
  border-radius: 12px;
  background: rgba(15, 18, 34, 0.02);
}

.cart-free-shipping--achieved {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-success);
  background: rgba(76, 175, 80, 0.08);
  border-color: rgba(76, 175, 80, 0.25);
}

.cart-free-shipping-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}

.cart-free-shipping-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: rgba(15, 18, 34, 0.70);
}

.cart-free-shipping-value {
  font-size: 0.875rem;
  color: rgba(15, 18, 34, 0.85);
}

.cart-progress {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(15, 18, 34, 0.08);
  overflow: hidden;
}

.cart-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--color-cerise), var(--color-froly));
  border-radius: 999px;
}

.cart-trust-row {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 18, 34, 0.08);
  display: grid;
  gap: 0.6rem;
}

.cart-trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(15, 18, 34, 0.75);
  font-size: 0.875rem;
}

.cart-trust-item i {
  color: rgba(15, 18, 34, 0.55);
  width: 18px;
}

.cart-checkout-btn {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

/* Cupons de Desconto */
.coupon-section {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(15, 18, 34, 0.08);
}

.coupon-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.coupon-input {
  flex: 1;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 0.875rem;
  transition: var(--transition);
}

.coupon-input:focus {
  outline: none;
  border-color: var(--color-cerise);
  box-shadow: 0 0 0 3px rgba(255, 29, 141, 0.1);
}

.coupon-btn {
  padding: 0.625rem 1rem;
  background: var(--color-cerise);
  color: var(--color-white);
  border: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  white-space: nowrap;
}

.coupon-btn:hover {
  background: var(--color-froly);
  transform: translateY(-1px);
}

.coupon-btn:active {
  transform: translateY(0);
}

.coupon-applied {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(76, 175, 80, 0.08);
  border: 1px solid rgba(76, 175, 80, 0.25);
  border-radius: 8px;
}

.coupon-applied-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
}

.coupon-applied-info i {
  color: var(--color-success);
  font-size: 1rem;
}

.coupon-code {
  font-weight: 700;
  color: var(--color-success);
  font-size: 0.875rem;
}

.coupon-code-small {
  font-weight: 600;
  color: var(--color-success);
  font-size: 0.75rem;
}

.coupon-description {
  font-size: 0.8125rem;
  color: var(--color-text-light);
}

.coupon-remove {
  background: none;
  border: none;
  color: var(--color-text-light);
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border-radius: 4px;
}

.coupon-remove:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--color-error);
}

.coupon-message {
  font-size: 0.8125rem;
  padding: 0.5rem;
  border-radius: 6px;
  margin-top: 0.5rem;
  display: none;
}

.coupon-message.success {
  background: rgba(76, 175, 80, 0.1);
  color: var(--color-success);
  border: 1px solid rgba(76, 175, 80, 0.2);
}

.coupon-message.error {
  background: rgba(244, 67, 54, 0.1);
  color: var(--color-error);
  border: 1px solid rgba(244, 67, 54, 0.2);
}

.discount-row {
  color: var(--color-success);
}

.discount-value {
  color: var(--color-success);
  font-weight: 600;
}

/* Seção de Cupons na Home */
.coupons-section {
  background: var(--color-gray-lighter);
  padding: 3rem 0;
}

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

.coupon-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
}

.coupon-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-cerise);
}

.coupon-card-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.coupon-discount-badge {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-cerise);
  text-align: center;
}

.coupon-code-display {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
  letter-spacing: 1px;
  font-family: 'Courier New', monospace;
}

.coupon-card-body {
  flex: 1;
  margin-bottom: 1rem;
}

.coupon-description-text {
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.coupon-min-purchase,
.coupon-max-discount {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  margin-top: 0.5rem;
}

.coupon-card-footer {
  margin-top: auto;
}

.coupon-copy-btn {
  width: 100%;
  justify-content: center;
}

.coupon-copy-btn.copied {
  background: var(--color-success);
}

.coupon-copy-btn.copied:hover {
  background: var(--color-success);
}

/* Cupom no Checkout */
.checkout-coupon-section {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(15, 18, 34, 0.08);
}

.checkout-coupon-section .coupon-form {
  margin-bottom: 0.5rem;
}

.checkout-coupon-section .coupon-applied {
  padding: 0.625rem;
}

.cart-continue-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 0.75rem;
  font-weight: 700;
  color: rgba(15, 18, 34, 0.65);
  text-decoration: none;
  font-size: 0.9375rem;
}

.cart-continue-link:hover {
  color: rgba(15, 18, 34, 0.85);
  text-decoration: underline;
}

.cep-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.cep-input {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-size: 0.9375rem;
  font-family: var(--font-primary);
}

.cep-input:focus {
  outline: none;
  border-color: var(--color-cerise);
}

.cep-btn {
  padding: 0.75rem 1.25rem;
  background: var(--color-cerise);
  color: var(--color-white);
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.cep-btn:hover {
  background: var(--color-froly);
}

.cep-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.address-info {
  padding: 0.75rem;
  background: var(--color-gray-lighter);
  border-radius: 6px;
  font-size: 0.875rem;
  color: var(--color-text);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.shipping-options {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.shipping-options.active {
  display: flex;
}

.shipping-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
}

.shipping-option:hover {
  border-color: var(--color-cerise);
  background: var(--color-gray-lighter);
}

.shipping-option input[type="radio"] {
  margin-right: 0.75rem;
  cursor: pointer;
}

.shipping-option.selected {
  border-color: var(--color-cerise);
  background: rgba(218, 40, 100, 0.05);
}

.shipping-option-label {
  flex: 1;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
}

.shipping-option-price {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-cerise);
}

.shipping-option-price.free {
  color: var(--color-success);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
}

.cart-summary-row.total {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-text);
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid var(--color-border);
  font-family: var(--font-display);
}

.cart-summary-row span:first-child {
  color: var(--color-text-light);
  font-weight: 500;
}

.cart-summary-row span:last-child {
  font-weight: 600;
  color: var(--color-text);
}

.cart-summary-row.total span:last-child {
  color: var(--color-success);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  font-family: var(--font-display);
}

.cart-empty {
  text-align: center;
  padding: 6rem 2rem;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cart-empty-icon {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  color: var(--color-cerise);
  opacity: 0.5;
  animation: float 3s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.cart-empty h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-text);
  font-weight: 700;
  text-align: center;
  width: 100%;
}

.cart-empty p {
  color: var(--color-text-light);
  margin-bottom: 2.5rem;
  font-size: 1.125rem;
  text-align: center;
  width: 100%;
}

.cart-empty .btn {
  margin: 0 auto;
  display: inline-block;
}

.cart-empty .btn {
  margin: 0 auto;
  display: inline-block;
}

.cart-empty p {
  color: var(--color-text-light);
  margin-bottom: 2.5rem;
  font-size: 1.125rem;
  text-align: center;
  width: 100%;
}

.cart-empty .btn {
  margin: 0 auto;
}

/* ============================================
   CHECKOUT - Nova experiência
   ============================================ */

.checkout-hero {
  background: #f9fafb;
  padding: 2.35rem 0 2rem;
}

.checkout-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  gap: 1.5rem;
  align-items: center;
}

.checkout-hero h1 {
  font-size: 1.35rem;
  color: #0f1222;
  letter-spacing: -0.015em;
}

.checkout-hero .lede {
  color: #4b5064;
  margin-top: 0.35rem;
  max-width: 540px;
}

.checkout-hero-badges {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.checkout-hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid #e7e9f2;
  color: #1a1d2d;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(15, 18, 34, 0.05);
  font-weight: 600;
}

.checkout-hero-card {
  background: #fff;
  border: 1px solid #eceef5;
  border-radius: 14px;
  padding: 1.15rem;
  box-shadow: 0 10px 22px rgba(15, 18, 34, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.hero-card-top strong {
  color: #0f1222;
  font-size: 1.02rem;
}

.hero-card-top p {
  color: #555a70;
  margin-top: 0.25rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.5rem;
}

.hero-metrics-compact .metric-value {
  font-size: 1.2rem;
}

.hero-note {
  margin: 0;
  color: #3f4456;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.metric-value {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f1222;
}

.metric-label {
  color: #6a6f83;
  font-size: 0.95rem;
}

.checkout-shell {
  background: #f9fafb;
  padding: 1.5rem 0 3.2rem;
}

.checkout-divider {
  height: 1px;
  background: #e7e9f2;
  max-width: 1200px;
  margin: 0 auto;
}

.checkout-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
  gap: 1.5rem;
  align-items: flex-start;
}

.checkout-main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.checkout-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.checkout-meta h2 {
  font-size: 1.5rem;
  color: #0f1222;
  letter-spacing: -0.01em;
}

.muted {
  color: #5a6072;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  background: #fff;
  border: 1px solid #ececf4;
  border-radius: 999px;
  font-weight: 700;
  color: #0f1222;
  font-size: 0.85rem;
}

.pill-muted {
  background: #f5f6fa;
  color: #4f5465;
}

.pill-contrast {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.support-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #3a3f51;
  font-weight: 600;
  border: 1px solid #e7e9f2;
  padding: 0.6rem 0.9rem;
  border-radius: 12px;
  background: #fff;
}

.support-inline a {
  color: var(--color-cerise);
  text-decoration: underline;
}

.checkout-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.checkout-step-indicator {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.65rem;
  padding: 0.8rem 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #fbfbff 100%);
  border: 1px solid #e3e6f0;
  border-radius: 12px;
  color: #0f1222;
  transition: var(--transition);
}

.checkout-step-indicator .step-circle {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: linear-gradient(145deg, #ff4da6 0%, #ff1d8d 80%);
  border: 1px solid #ff73b8;
  color: #fff;
  box-shadow: 0 10px 22px rgba(255, 29, 141, 0.25);
}

.checkout-step-indicator strong {
  font-size: 0.98rem;
  letter-spacing: -0.01em;
}

.checkout-step-indicator small {
  color: #6b7085;
}

/* Resumo compacto (itens recolhíveis) */
.checkout-items-toggle {
  background: #f9fafc;
  border: 1px solid #e7e9f2;
  border-radius: 14px;
  padding: 0.85rem 0.95rem;
}

.checkout-items-toggle summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  cursor: pointer;
  color: #0f1222;
}

.checkout-items-toggle summary::-webkit-details-marker {
  display: none;
}

.checkout-items-toggle summary::after {
  content: '▾';
  color: #6b7280;
  margin-left: auto;
}

.checkout-items-toggle[open] summary::after {
  content: '▴';
}

.checkout-items-toggle-value {
  color: #0f1222;
  font-variant-numeric: tabular-nums;
}

.checkout-items-list {
  margin-top: 0.85rem;
}

/* Checkout minimalista: remove excesso visual */
.checkout-page .checkout-hero-grid {
  grid-template-columns: 1fr;
}

.checkout-page .checkout-divider {
  display: none;
}

.checkout-page .checkout-shell {
  padding-top: 1rem;
}

.checkout-page .checkout-steps {
  margin-top: 0;
}

.checkout-page .checkout-step-indicator {
  box-shadow: none;
}

.checkout-page .checkout-form {
  box-shadow: none;
  border-radius: 16px;
}

.checkout-page .checkout-step {
  box-shadow: none;
}

.checkout-page .checkout-summary {
  box-shadow: none;
}

/* Stepper do checkout lado-a-lado no mobile (menos altura / menos informação) */
@media (max-width: 640px) {
  .checkout-page .checkout-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .checkout-page .checkout-step-indicator {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 0.65rem 0.5rem;
    border-radius: 14px;
  }

  .checkout-page .checkout-step-indicator .step-circle {
    width: 32px;
    height: 32px;
    border-radius: 12px;
    font-size: 0.95rem;
  }

  .checkout-page .checkout-step-indicator strong {
    font-size: 0.85rem;
    line-height: 1.1;
    white-space: nowrap;
  }
}

.checkout-step-indicator.active {
  border-color: rgba(255, 29, 141, 0.4);
  background: linear-gradient(135deg, #fff5fb 0%, #ffffff 100%);
  box-shadow: 0 14px 30px rgba(255, 29, 141, 0.08);
}

.checkout-step-indicator.active .step-circle {
  background: var(--color-cerise);
  border-color: var(--color-cerise);
  color: #fff;
  box-shadow: 0 12px 30px rgba(255, 29, 141, 0.22);
}

.checkout-step-indicator.completed .step-circle {
  background: #16a34a;
  border-color: #16a34a;
  color: #fff;
  box-shadow: 0 12px 30px rgba(22, 163, 74, 0.18);
}

.checkout-form {
  background: #fff;
  border: 1px solid #ececf4;
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: 0 22px 50px rgba(15, 18, 34, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkout-step {
  display: none;
  background: #fff;
  border: 1px solid #e9eaf0;
  border-radius: 14px;
  padding: 1.35rem;
  box-shadow: 0 10px 22px rgba(15, 18, 34, 0.04);
}

.checkout-step.active {
  display: block;
}

.step-header {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.step-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #0f1222;
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
}

.step-header h3 {
  margin: 0;
  color: #0f1222;
  font-size: 1.2rem;
}

.field-grid {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.field-grid.two {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.field-grid.three {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.checkout-step .form-group {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  height: 100%;
}

.checkout-step .form-group label {
  font-weight: 700;
  color: #0f1222;
}

.checkout-step .form-group input,
.checkout-step .form-group select,
.checkout-step .form-group textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #e4e7ee;
  color: #0f1222;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  min-height: 48px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.checkout-warning {
  background: #fff7e6;
  border: 1px solid #ffd59e;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checkout-warning p {
  margin: 0;
  color: #7a4a00;
}

.checkout-warning a:not(.btn) {
  color: #7a4a00;
  font-weight: 600;
  text-decoration: underline;
}

.checkout-step .form-group input:focus,
.checkout-step .form-group select:focus,
.checkout-step .form-group textarea:focus {
  border-color: var(--color-cerise);
  box-shadow: 0 0 0 3px rgba(255, 29, 141, 0.12);
}

.form-note,
.fine-print {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #3f4456;
  background: #f8f9fc;
  border: 1px solid #e7e9f2;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  margin-top: 0.65rem;
}

.fine-print {
  margin-top: 0.9rem;
  font-size: 0.94rem;
}

.field-error {
  color: #d92d20;
  font-size: 0.85rem;
  margin-top: 0.35rem;
  line-height: 1.3;
}

.shipping-calc {
  margin-top: 1rem;
  padding: 1.1rem;
  border: 1px solid #e6e8f2;
  border-radius: 12px;
  background: #fbfbfe;
  box-shadow: 0 10px 24px rgba(15, 18, 34, 0.04);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.shipping-calc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.shipping-calc h4 {
  margin: 0;
  color: #0f1222;
}

.shipping-calc-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
  align-items: stretch;
  flex-wrap: wrap;
}

.shipping-calc-row input {
  flex: 1;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0.875rem 1rem;
  border: 1px solid #dfe2ea;
  border-radius: 8px;
  font-size: 0.9375rem;
}

.shipping-calc-row .btn {
  white-space: nowrap;
  min-width: fit-content;
  flex-shrink: 0;
  padding: 0.875rem 1.25rem;
  font-size: 0.9375rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  text-overflow: clip;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
}

.chip-neutral {
  background: #eef0f7;
  color: #2f3242;
  border: 1px solid #dfe2ea;
}

.shipping-options {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
}

.shipping-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid #e7e9f2;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.shipping-option:hover {
  border-color: var(--color-cerise);
  box-shadow: 0 14px 32px rgba(15, 18, 34, 0.08);
}

.shipping-option.selected {
  border-color: #16a34a;
  box-shadow: 0 14px 32px rgba(22, 163, 74, 0.16);
  background: linear-gradient(135deg, #f6fff7 0%, #ffffff 100%);
}

.shipping-option input {
  accent-color: #0f1222;
  width: 18px;
  height: 18px;
}

.shipping-option-label {
  font-weight: 700;
  color: #16192b;
}

.shipping-option-price {
  font-weight: 800;
  color: #16a34a;
}

.shipping-option-price.free {
  color: #16a34a;
}

.payment-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.65rem;
}

.payment-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem;
  align-items: center;
  background: #fff;
  border: 1px solid #e7e9f2;
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.payment-option:hover {
  border-color: var(--color-cerise);
  box-shadow: 0 14px 32px rgba(15, 18, 34, 0.08);
}

.payment-option strong {
  display: block;
  color: #0f1222;
  font-weight: 600;
  font-size: 0.96rem;
}

.payment-option small {
  color: #6b7085;
  font-size: 0.92rem;
}

.payment-option input {
  accent-color: #0f1222;
}

.payment-card-fields {
  margin-top: 0.85rem;
  border: 1px solid #e9eaf0;
  border-radius: 12px;
  padding: 0.95rem;
  background: #f9fafc;
}

.payment-card-fields .form-group:last-child {
  margin-top: 0.85rem;
}

.installment-info {
  display: block;
  color: #6b7085;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.payment-pix-info {
  margin-top: 0.85rem;
  padding: 0;
  border-radius: 6px;
  border: 1px solid #e5e5e5;
  background: #ffffff;
  color: #2c3043;
}

.pix-payment-container {
  padding: 1.25rem;
}

.pix-qr-container {
  display: flex;
  justify-content: center;
  margin: 0 0 1.25rem 0;
  padding: 0.875rem;
  background: #fafafa;
  border-radius: 4px;
  border: 1px solid #e8e8e8;
}

.pix-qr-image {
  max-width: 200px;
  width: 100%;
  height: auto;
  display: block;
}

.pix-code-container {
  margin: 0 0 1rem 0;
}

.pix-code-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 0.625rem;
}

.pix-code-text {
  flex: 1;
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
  color: #333;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  line-height: 1.4;
}

.pix-copy-button {
  background: #2c3043;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 0.5rem 0.625rem;
  cursor: pointer;
  font-size: 0.8125rem;
  transition: background 0.2s;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
}

.pix-copy-button:hover {
  background: #1a1c26;
}

.pix-copy-button:active {
  background: #0f1115;
}

.pix-status-container {
  margin: 0;
  text-align: center;
}

.pix-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  background: #f5f5f5;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  color: #666;
  font-weight: 400;
  font-size: 0.8125rem;
}

.pix-status i {
  font-size: 0.8125rem;
}

.pix-status[style*="color: #27ae60"] {
  background: #f0f9f4;
  border-color: #c8e6d3;
  color: #27ae60;
}

.pix-status[style*="color: #e74c3c"] {
  background: #fdf2f2;
  border-color: #f5c6cb;
  color: #e74c3c;
}

@media (max-width: 768px) {
  .pix-payment-container {
    padding: 1rem;
  }
  
  .pix-qr-image {
    max-width: 180px;
  }
  
  .pix-code-wrapper {
    flex-direction: column;
    align-items: stretch;
  }
  
  .pix-copy-button {
    width: 100%;
    min-width: auto;
  }
}

.step-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.65rem;
  margin-top: 0.9rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: #0f1222;
  border-color: #0f1222;
  border-radius: 12px;
  height: 48px;
  font-weight: 800;
  letter-spacing: 0.05px;
  box-shadow: 0 10px 22px rgba(15, 18, 34, 0.14);
  padding: 0 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: fit-content;
  font-size: 0.9375rem;
}

.btn-primary:hover {
  background: #0c0e1a;
  border-color: #0c0e1a;
}

.btn-secondary {
  background: #f9fafc;
  color: #0f1222;
  border: 1px solid #dfe2ea;
  border-radius: 8px;
  height: 34px;
  font-weight: 600;
  padding: 0 0.85rem;
  font-size: 0.94rem;
  letter-spacing: 0;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: fit-content;
}

.btn-secondary:hover {
  background: #f1f3f8;
  border-color: #d6dae5;
}

.checkout-summary {
  background: #fff;
  color: #0f1222;
  border: 1px solid #e7e9f2;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 14px 30px rgba(15, 18, 34, 0.08);
  position: sticky;
  top: 90px;
}

.summary-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
}

.checkout-summary h3 {
  margin: 0.15rem 0 0.2rem;
  color: #0f1222;
  font-size: 1.22rem;
}

.summary-sub {
  color: #4f5465;
  margin: 0;
}

.summary-secure {
  background: #f7f8fb;
  border: 1px solid #e1e3eb;
  border-radius: 12px;
  padding: 0.6rem 0.75rem;
  font-weight: 700;
  color: #2f3242;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.checkout-summary-items {
  background: #f9fafc;
  border: 1px solid #e7e9f2;
  border-radius: 14px;
  padding: 1rem;
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e7e9f2;
  color: #0f1222;
}

.checkout-item > div:last-child {
  color: #16a34a;
  font-weight: 700;
}

.checkout-item:last-of-type {
  border-bottom: none;
}

.checkout-item-name {
  font-weight: 700;
}

.checkout-item-details {
  color: #4f5465;
}

.checkout-total {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid #e7e9f2;
}

.checkout-total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.4rem;
  color: #0f1222;
}

.checkout-total-row.final {
  font-size: 1.35rem;
  font-weight: 800;
  color: #16a34a;
  margin-top: 0.5rem;
}

.checkout-total-row.checkout-total-hint {
  font-size: 0.85rem;
  color: #6b7280;
  padding-top: 0.25rem;
}

.checkout-total-row.checkout-total-success {
  font-size: 0.85rem;
  color: #16a34a;
  padding-top: 0.25rem;
}

.checkout-total-row.checkout-total-success i {
  margin-right: 0.4rem;
}

.summary-note {
  margin-top: 0.9rem;
  background: #f9fafc;
  border: 1px solid #e7e9f2;
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
  color: #2f3242;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ============================================
   CHECKOUT PAGE - MINIMALISTA / SEM DISTRAÇÕES
   ============================================ */
.checkout-page .announcement-bar {
  display: none;
}

.checkout-page .categories-nav,
.checkout-page .search-container,
.checkout-page .utility-link {
  display: none !important;
}

.checkout-page .header-main {
  min-height: 96px;
  padding: 1rem 0;
}

.checkout-page .logo-image {
  height: 72px;
}

.checkout-page .checkout-hero {
  padding: 1.75rem 0 1.5rem;
}

.checkout-page .checkout-hero-card {
  box-shadow: none;
  border-color: #e7e9f2;
}

.checkout-page .pill {
  font-weight: var(--fw-medium);
  text-transform: none;
  letter-spacing: 0.2px;
}

.checkout-page .hero-note {
  font-weight: var(--fw-regular);
}

.checkout-page .metric-value {
  font-weight: var(--fw-medium);
}

.checkout-page .checkout-step-indicator strong,
.checkout-page .checkout-step-indicator small {
  font-weight: var(--fw-regular);
}

.checkout-page .checkout-step-indicator .step-circle {
  background: #fff;
  color: #0f1222;
  border: 1px solid #e7e9f2;
  box-shadow: none;
  font-weight: var(--fw-medium);
}

.checkout-page .checkout-step-indicator.active .step-circle {
  background: #fff;
  color: var(--color-cerise);
  border-color: rgba(255, 29, 141, 0.45);
  box-shadow: none;
}

.checkout-page .checkout-step-indicator.completed .step-circle {
  background: #fff;
  color: #16a34a;
  border-color: rgba(22, 163, 74, 0.45);
  box-shadow: none;
}

.checkout-page .step-pill {
  background: #0f1222;
  font-weight: var(--fw-medium);
}

.checkout-page .checkout-step .form-group label {
  font-weight: var(--fw-medium);
}

.checkout-page .summary-secure {
  font-weight: var(--fw-medium);
}

.checkout-page .checkout-item-name {
  font-weight: var(--fw-medium);
}

.checkout-page .checkout-item > div:last-child {
  font-weight: var(--fw-medium);
}

.checkout-page .checkout-total-row.final {
  font-weight: var(--fw-medium);
}

/* ============================================
   RASTREIO
   ============================================ */

.tracking-hero {
  background: #f9fafb;
  padding: 2.5rem 0 2rem;
}

.tracking-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  gap: 1.5rem;
  align-items: center;
}

.tracking-hero h1 {
  font-size: 2rem;
  color: #0f1222;
  letter-spacing: -0.015em;
}

.tracking-hero .lede {
  color: #4b5064;
  margin-top: 0.35rem;
  max-width: 520px;
}

.tracking-hero-card {
  background: #fff;
  border: 1px solid #e7e9f2;
  border-radius: 14px;
  padding: 1.1rem;
  box-shadow: 0 10px 22px rgba(15, 18, 34, 0.05);
}

.tracking-hero-title {
  font-weight: 700;
  color: #0f1222;
  margin-bottom: 0.25rem;
}

.tracking-hero-text {
  color: #5a6072;
  margin-bottom: 0.75rem;
}

.tracking-hero-meta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  color: #3a3f51;
  font-weight: 600;
  font-size: 0.9rem;
}

.tracking-divider {
  height: 1px;
  background: #e7e9f2;
  max-width: 1200px;
  margin: 0 auto;
}

.tracking-shell {
  padding: 2rem 0 3.5rem;
  background: #f9fafb;
}

.tracking-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 1.5rem;
}

.tracking-card,
.tracking-info-card {
  background: #fff;
  border: 1px solid #e7e9f2;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 14px 30px rgba(15, 18, 34, 0.08);
}

.tracking-card h2 {
  margin-bottom: 0.35rem;
  color: #0f1222;
}

.tracking-form .form-group label {
  font-weight: 700;
  color: #0f1222;
}

.tracking-form .form-group input {
  width: 100%;
  background: #fff;
  border: 1px solid #e4e7ee;
  color: #0f1222;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tracking-form .form-group input:focus {
  border-color: var(--color-cerise);
  box-shadow: 0 0 0 3px rgba(255, 29, 141, 0.12);
}

.tracking-form .form-group {
  margin-bottom: 1.25rem;
}

.tracking-form .btn i {
  margin-right: 0.5rem;
}

.help-text {
  display: block;
  margin-top: 0.5rem;
  color: var(--color-text-light);
  font-size: 0.875rem;
}

.tracking-result {
  display: none;
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid #e7e9f2;
  background: #f9fafc;
}

.tracking-result.active {
  display: block;
}

.tracking-result-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: #0f1222;
  margin-bottom: 1rem;
}

.tracking-result-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.tracking-result-grid .label {
  display: block;
  color: #6b7085;
  font-size: 0.85rem;
}

.tracking-result-grid .value {
  display: block;
  color: #0f1222;
  font-weight: 600;
}

.tracking-result-grid .status {
  color: #16a34a;
}

.tracking-result-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid #e7e9f2;
  border-radius: 10px;
  padding: 0.75rem;
  color: #4f5465;
}

.tracking-result-disclaimer {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: #6b7085;
}

.tracking-info-card h3 {
  margin-bottom: 0.75rem;
  color: #0f1222;
}

.tracking-info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tracking-info-card li {
  padding-left: 1.25rem;
  margin-bottom: 0.6rem;
  position: relative;
  color: #4f5465;
}

.tracking-info-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-cerise);
}

@media (max-width: 960px) {
  .tracking-hero-grid,
  .tracking-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .checkout-container {
    grid-template-columns: 1fr;
  }
  
  .checkout-summary {
    position: relative;
    top: 0;
  }
  
  .checkout-hero-grid {
    grid-template-columns: 1fr;
  }
  
  .checkout-meta {
    flex-direction: column;
  }
  
  .support-card {
    width: 100%;
  }
}

/* ============================================
   AVALIAÇÕES
   ============================================ */

.reviews {
  background: linear-gradient(135deg, var(--color-gray-lighter) 0%, var(--color-white) 100%);
  padding: 4rem 1.5rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-lighter);
  transition: var(--transition);
}

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

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-cerise) 0%, var(--color-froly) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: bold;
  font-family: var(--font-primary);
  overflow: hidden;
  flex-shrink: 0;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.review-info h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.review-stars {
  color: var(--color-cerise);
  font-size: 0.875rem;
}

.review-text {
  color: var(--color-text-light);
  line-height: 1.8;
  font-style: italic;
}

/* ============================================
   FOOTER
   ============================================ */

/* ============================================
   SEÇÃO PARCEIROS COMERCIAIS
   ============================================ */
.partners-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 5rem 1.5rem;
  margin-top: 4rem;
  border-top: 1px solid var(--color-gray-light);
}

.partners-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.partners-badge {
  display: inline-block;
  background: #2c3043;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.partners-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.partners-subtitle {
  font-size: 1.125rem;
  color: #4a4a4a;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.partners-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

.partners-benefit-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #2c3043;
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.partners-benefit-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.375rem;
}

.partners-benefit-content p {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.partners-cta {
  position: relative;
}

.partners-cta-box {
  background: white;
  border: 2px solid #e5e5e5;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.partners-cta-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.partners-cta-box > p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.partners-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #25D366;
  color: white;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 1.0625rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  margin-bottom: 1.5rem;
}

.partners-whatsapp-btn:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.partners-whatsapp-btn:active {
  transform: translateY(0);
}

.partners-whatsapp-btn i {
  font-size: 1.5rem;
}

.partners-cta-note {
  font-size: 0.875rem;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
}

.partners-cta-note i {
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 968px) {
  .partners-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .partners-benefits {
    grid-template-columns: 1fr;
  }
  
  .partners-title {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  .partners-section {
    padding: 3rem 1rem;
  }
  
  .partners-title {
    font-size: 1.75rem;
  }
  
  .partners-subtitle {
    font-size: 1rem;
  }
  
  .partners-cta-box {
    padding: 2rem 1.5rem;
  }
  
  .partners-whatsapp-btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
  }
}

.footer {
  background: var(--color-cerise);
  color: var(--color-white);
  padding: 4rem 1.5rem 2rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--color-white);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-section ul {
  list-style: none;
}

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

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--color-morning-glory);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
}

/* Formas de Pagamento e Segurança no Footer */
.footer-payment-security {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding: 2rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.footer-payment-section,
.footer-security-section {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
  background: transparent;
}

.footer-payment-section h4,
.footer-security-section h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-payment-icons,
.footer-security-icons {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
  background: transparent;
}

.footer-payment-icons img,
.footer-security-icons img {
  width: 100% !important;
  max-width: 450px !important;
  height: auto !important;
  max-height: 100px !important;
  min-height: 60px !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
  padding: 0 !important;
  border: none !important;
  outline: none !important;
  transition: var(--transition);
  opacity: 1 !important;
  visibility: visible !important;
  position: relative !important;
  z-index: 1 !important;
  background: transparent !important;
  /* Removido filtro branco - as imagens devem ter fundo transparente ou já serem brancas */
}

.footer-payment-icons img:hover,
.footer-security-icons img:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Responsive Footer Payment/Security */
@media (max-width: 768px) {
  .footer-payment-security {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem 1rem;
  }

  .footer-payment-icons img,
  .footer-security-icons img {
    max-width: 100%;
    max-height: 70px;
    min-height: 50px;
  }
}

/* Newsletter no Footer */
.newsletter-section {
  margin-top: 1rem;
}

.newsletter-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  font-size: 0.9375rem;
  transition: var(--transition);
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--color-morning-glory);
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
  padding: 0.75rem 1.5rem;
  background: var(--color-cerise);
  color: var(--color-white);
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.newsletter-form button:hover:not(:disabled) {
  background: var(--color-froly);
  transform: translateY(-1px);
}

.newsletter-form button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.newsletter-message {
  margin-top: 0.75rem;
  padding: 0.625rem 0.875rem;
  border-radius: 4px;
  font-size: 0.875rem;
  display: none;
  animation: slideDown 0.3s ease;
}

.newsletter-message-success {
  background: rgba(154, 226, 225, 0.2);
  color: var(--color-morning-glory);
  border-left: 3px solid var(--color-morning-glory);
}

.newsletter-message-error {
  background: rgba(218, 40, 100, 0.2);
  color: var(--color-froly);
  border-left: 3px solid var(--color-froly);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Newsletter Section (Home Page) */
.newsletter-section-featured {
  background: linear-gradient(135deg, var(--color-cerise) 0%, var(--color-froly) 100%);
  padding: 4rem 1.5rem;
  text-align: center;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.newsletter-section-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="newsletter-dots" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23newsletter-dots)"/></svg>');
  opacity: 0.4;
  pointer-events: none;
}

.newsletter-section-featured .container {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.newsletter-section-featured h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.newsletter-section-featured p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
}

.newsletter-section-featured .newsletter-form {
  max-width: 500px;
  margin: 0 auto;
  justify-content: center;
}

.newsletter-section-featured .newsletter-form input[type="email"] {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--color-white);
  font-size: 1rem;
  padding: 1rem 1.25rem;
}

.newsletter-section-featured .newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-section-featured .newsletter-form input[type="email"]:focus {
  background: rgba(255, 255, 255, 0.25);
  border-color: var(--color-morning-glory);
}

.newsletter-section-featured .newsletter-form button {
  padding: 1rem 2rem;
  font-size: 1rem;
  background: var(--color-white);
  color: var(--color-cerise);
  font-weight: 700;
}

.newsletter-section-featured .newsletter-form button:hover:not(:disabled) {
  background: var(--color-morning-glory);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.newsletter-section-featured .newsletter-message {
  max-width: 500px;
  margin: 1rem auto 0;
}

/* Responsive Newsletter */
@media (max-width: 640px) {
  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input[type="email"],
  .newsletter-form button {
    width: 100%;
  }

  .newsletter-section-featured {
    padding: 3rem 1.5rem;
  }

  .newsletter-section-featured h2 {
    font-size: 1.5rem;
  }

  .newsletter-section-featured p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .newsletter-section-featured .newsletter-form input[type="email"],
  .newsletter-section-featured .newsletter-form button {
    padding: 0.875rem 1.25rem;
    font-size: 0.9375rem;
  }
}

/* ============================================
   PÁGINAS INSTITUCIONAIS
   ============================================ */

.page-header {
  background: linear-gradient(135deg, var(--color-froly) 0%, var(--color-cerise) 100%);
  padding: 6rem 1.5rem;
  text-align: center;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.page-header > *,
.page-header-content {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: 4rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  line-height: 1.2;
}

.page-header p {
  font-size: 1.375rem;
  opacity: 0.95;
  font-weight: 300;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.page-header-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.page-content h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.page-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--color-text-light);
}

.page-content ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.page-content li {
  margin-bottom: 0.5rem;
  color: var(--color-text-light);
}

.contact-form {
  background: var(--color-gray-lighter);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 2rem;
  border: 1px solid var(--color-border);
}

/* ============================================
   AUTH (LOGIN / CADASTRO) - UI PREMIUM
   ============================================ */
.auth-page {
  max-width: 600px;
  margin: 0 auto;
}

.auth-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.55));
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 50px rgba(15, 18, 34, 0.08);
  backdrop-filter: blur(10px);
}

.auth-title {
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #0f1222;
}

.auth-title-icon {
  color: var(--color-cerise);
}

.auth-input {
  position: relative;
  display: flex;
  align-items: center;
}

.auth-input i {
  position: absolute;
  left: 14px;
  color: rgba(15, 18, 34, 0.55);
  font-size: 1rem;
  pointer-events: none;
}

/* Inputs do login/cadastro (scoped) */
.auth-card .form-group input[type="text"],
.auth-card .form-group input[type="email"],
.auth-card .form-group input[type="password"],
.auth-card .form-group input[type="tel"] {
  width: 100%;
  padding: 0.95rem 1rem 0.95rem 2.75rem;
  border: 2px solid rgba(15, 18, 34, 0.10);
  border-radius: 12px;
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.9);
  color: #0f1222;
}

.auth-card .form-group input::placeholder {
  color: rgba(15, 18, 34, 0.45);
}

.auth-card .form-group input:focus {
  outline: none;
  border-color: rgba(255, 29, 141, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 29, 141, 0.12);
  background: #fff;
}

.auth-card .form-group input:focus + * {
  /* noop - mantém compatibilidade */
}

.auth-card .form-group label {
  font-weight: 700;
  letter-spacing: 0.2px;
}

.auth-help {
  display: block;
  margin-top: 0.5rem;
  color: var(--color-text-light);
  font-size: 0.875rem;
}

.auth-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.auth-check {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
}

.auth-check--start {
  align-items: flex-start;
}

.auth-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-cerise);
  margin: 0;
}

.auth-check span {
  font-size: 0.95rem;
  color: #0f1222;
}

.auth-link,
.auth-terms a {
  color: var(--color-cerise);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
}

.auth-link:hover,
.auth-terms a:hover {
  text-decoration: underline;
}

.auth-divider {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(15, 18, 34, 0.10);
  text-align: center;
}

.auth-divider p {
  margin-bottom: 1rem;
  color: var(--color-text-light);
}

.auth-terms {
  margin-bottom: 1.5rem;
}

.auth-benefits {
  margin-top: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 29, 141, 0.05), rgba(15, 18, 34, 0.02));
  border-radius: 14px;
  border: 1px solid rgba(15, 18, 34, 0.08);
}

.auth-benefits h3 {
  margin-bottom: 1rem;
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #0f1222;
}

.auth-benefits h3 i {
  color: var(--color-cerise);
}

.auth-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.auth-benefits li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: #4f5465;
  line-height: 1.5;
}

.auth-benefits li i {
  color: var(--color-cerise);
  margin-top: 0.2rem;
}

@media (max-width: 520px) {
  .auth-card {
    padding: 1.25rem;
  }
  .auth-row {
    align-items: flex-start;
  }
  .auth-card .form-group input[type="text"],
  .auth-card .form-group input[type="email"],
  .auth-card .form-group input[type="password"],
  .auth-card .form-group input[type="tel"] {
    padding-left: 2.6rem;
  }
}

/* ============================================
   LOADING E ESTADOS
   ============================================ */

.loading {
  text-align: center;
  padding: 4rem;
  color: var(--color-text-light);
}

.spinner {
  border: 4px solid var(--color-gray-lighter);
  border-top: 4px solid var(--color-cerise);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.alert {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.alert-success {
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
  color: var(--color-success);
  border: 2px solid var(--color-success);
}

.alert-error {
  background: linear-gradient(135deg, #FFEBEE 0%, #FFCDD2 100%);
  color: var(--color-error);
  border: 2px solid var(--color-error);
}

/* Notificações Profissionais */
@keyframes slideInRight {
  from {
    transform: translateX(calc(100% + 24px)) scale(0.95);
    opacity: 0;
  }
  to {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
  to {
    transform: translateX(calc(100% + 24px)) scale(0.95);
    opacity: 0;
  }
}

@keyframes slideIn {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(400px);
    opacity: 0;
  }
}

.auth-notification,
.cart-notification {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
  animation: slideInRight 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 380px;
  min-width: 280px;
  background: var(--color-white);
  border: none;
  color: var(--color-text);
  font-size: 0.9375rem;
  line-height: 1.5;
  transition: all 0.3s ease;
  cursor: default;
}

.cart-notification:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18), 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.notification-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border-radius: 50%;
  background: rgba(76, 175, 80, 0.1);
  color: var(--color-success);
}

.notification-content {
  flex: 1;
  min-width: 0;
}

.notification-message {
  font-weight: 500;
  color: var(--color-text);
  word-wrap: break-word;
}

.notification-close {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--color-text-light);
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s ease;
  padding: 0;
  font-size: 0.875rem;
}

.notification-close:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--color-text);
}

.notification-close:active {
  transform: scale(0.95);
}

/* Estilos específicos por tipo */
.auth-notification.alert-success,
.cart-notification.alert-success {
  background: linear-gradient(135deg, #ffffff 0%, #f8fff9 100%);
  border-left: 4px solid var(--color-success);
}

.auth-notification.alert-success .notification-icon,
.cart-notification.alert-success .notification-icon {
  background: rgba(76, 175, 80, 0.15);
  color: #2e7d32;
}

.auth-notification.alert-error,
.cart-notification.alert-error {
  background: linear-gradient(135deg, #ffffff 0%, #fff8f8 100%);
  border-left: 4px solid var(--color-error);
}

.auth-notification.alert-error .notification-icon,
.cart-notification.alert-error .notification-icon {
  background: rgba(244, 67, 54, 0.15);
  color: #c62828;
}

.auth-notification.alert-warning,
.cart-notification.alert-warning {
  background: linear-gradient(135deg, #ffffff 0%, #fffbf0 100%);
  border-left: 4px solid #ff9800;
}

.auth-notification.alert-warning .notification-icon,
.cart-notification.alert-warning .notification-icon {
  background: rgba(255, 152, 0, 0.15);
  color: #f57c00;
}

.auth-notification.alert-info,
.cart-notification.alert-info {
  background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
  border-left: 4px solid #2196f3;
}

.auth-notification.alert-info .notification-icon,
.cart-notification.alert-info .notification-icon {
  background: rgba(33, 150, 243, 0.15);
  color: #1976d2;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

@media (max-width: 968px) {
  .header-container {
    padding: 0 1rem;
  }
  
  .header-main {
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    padding: 1rem 0;
  }
  
  .logo {
    font-size: 1.5rem;
  }
  
  .logo-image {
    height: 100px;
  }
  
  .search-container {
    max-width: none;
    min-width: 0;
  }
  
  .header-utilities {
    gap: 0.75rem;
  }
  
  .utility-link span {
    display: none;
  }
  
  .utility-link {
    font-size: 0.75rem;
  }
  
  .utility-icon {
    width: 36px;
    height: 36px;
    font-size: 1.125rem;
  }
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
  }
  
  .header-container {
    padding: 0 1rem;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    order: 3;
  }
  
  .header-main {
    grid-template-columns: auto 1fr auto;
    gap: 0.75rem;
    width: 100%;
    max-width: 100%;
    padding: 1rem 0;
  }
  
  .logo {
    font-size: 1.375rem;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .logo-image {
    height: 80px;
    max-width: 150px;
  }
  
  .search-container {
    order: 4;
    grid-column: 1 / -1;
    margin-top: 1rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  
  .search-form {
    width: 100%;
  }
  
  .header-utilities {
    gap: 0.5rem;
    order: 2;
    flex-shrink: 0;
  }
  
  .utility-link {
    font-size: 0;
    padding: 0.5rem;
  }
  
  .utility-link i {
    font-size: 1.125rem;
  }
  
  .utility-icon {
    width: 36px;
    height: 36px;
    font-size: 1.125rem;
    flex-shrink: 0;
  }
  
  .categories-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    padding: 1rem;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--color-border);
    max-height: 70vh;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 999;
    width: 100%;
    box-sizing: border-box;
  }
  
  .categories-nav.active {
    display: flex;
  }
  
  .category-link {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-gray-lighter);
    margin: 0;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
  }
  
  .category-link:last-child {
    border-bottom: none;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
  }
  
  .product-image {
    height: 260px;
  }
  
  .product-name {
    font-size: 0.9375rem;
  }
  
  .price-current {
    font-size: 1.5rem;
  }
  
  .product-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .product-main-image {
    height: 400px;
  }
  
  .product-details h1 {
    font-size: 1.75rem;
  }
  
  .thumbnail {
    width: 80px;
    height: 80px;
  }
  
  .cart-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .cart-summary {
    position: static;
    order: 2;
  }

  .cart-items {
    order: 1;
  }
  
  .cart-item {
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .cart-item-image {
    width: 80px;
    height: 80px;
  }
  
  .cart-item-info {
    flex: 1;
    min-width: 200px;
  }
  
  .cart-item-actions {
    width: 100%;
    justify-content: space-between;
    margin-top: 0.5rem;
  }
  
  .cart-item-price {
    text-align: left;
    margin-top: 0.5rem;
  }
  
  .checkout-container {
    grid-template-columns: 1fr;
  }
  
  .checkout-summary {
    position: static;
    order: -1;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .filters-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Tablets em modo retrato */
@media (max-width: 640px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }
  
  .product-image-link {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    background: #ffffff;
  }
  
  .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
  }
  
  .product-name {
    font-size: 0.875rem;
  }
  
  .price-current {
    font-size: 1.375rem;
    color: #16a34a;
  }
  
  .btn-add-cart {
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    min-height: 40px;
  }
  
  .btn-add-cart-icon {
    width: 40px;
    min-width: 40px;
    height: 40px;
  }
  
  .btn-add-cart {
    padding: 0.625rem 0.875rem;
    font-size: 0.8125rem;
    min-height: 36px;
  }
  
  .btn-add-cart-icon {
    width: 36px;
    min-width: 36px;
    height: 36px;
  }

  .product-actions {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
  }
  
  .cart-item {
    grid-template-columns: 100px 1fr;
    gap: 1rem;
  }
  
  .cart-item-price,
  .cart-item-quantity {
    grid-column: 2;
  }
  
  .cart-item-remove {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
  }
}

@media (max-width: 480px) {
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    position: relative;
  }
  
  .header-container {
    padding: 0 0.75rem;
  }
  
  .header-main {
    gap: 0.5rem;
    padding: 0.875rem 0;
  }
  
  .logo {
    font-size: 1.25rem;
    max-width: 120px;
  }
  
  .logo-image {
    height: 60px;
    max-width: 120px;
  }
  
  .header-utilities {
    gap: 0.25rem;
  }
  
  .utility-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  
  .mobile-menu-toggle {
    font-size: 1.25rem;
    padding: 0.375rem;
  }
  
  .search-container {
    margin-top: 0.75rem;
  }
  
  .search-input {
    font-size: 0.875rem;
    padding: 0.75rem 0.875rem 0.75rem 2.5rem;
  }
  
  .search-icon {
    left: 0.875rem;
    font-size: 0.875rem;
  }
  
  .announcement-content {
    padding: 0 0.75rem;
    font-size: 0.75rem;
  }
  
  .announcement-content p {
    font-size: 0.75rem;
    line-height: 1.4;
  }
  
  * {
    max-width: 100%;
  }
  
  .hero {
    padding: 3rem 1rem;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .hero h1 {
    font-size: 1.75rem;
    line-height: 1.3;
    word-wrap: break-word;
  }
  
  .hero p {
    font-size: 0.9375rem;
    word-wrap: break-word;
  }
  
  .section {
    padding: 2.5rem 1rem;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .products-grid {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 12px) / 2);
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
  }

  .products-grid::-webkit-scrollbar {
    display: none;
  }
  
  .product-card {
    margin: 0;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    scroll-snap-align: start;
  }
  
  .product-badge {
    top: 0.5rem;
    left: 0.5rem;
    width: 40px;
    height: 40px;
    font-size: 0.55rem;
    border-radius: 50%;
  }

  .product-badge .badge-value {
    font-size: 0.6rem;
  }

  .product-badge .badge-text {
    font-size: 0.46rem;
  }

  .product-wishlist {
    top: 3.1rem;
    left: 0.5rem;
    width: 28px;
    height: 28px;
  }

  .product-wishlist i {
    font-size: 0.8rem;
  }

  .product-rating-stars {
    font-size: 0.75rem;
  }

  .product-rating-count {
    font-size: 0.72rem;
  }

  .price-current {
    font-size: 0.74rem;
  }

  .price-current small {
    font-size: 0.44rem;
  }
  
  .product-image-link {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    background: #ffffff;
  }

  .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
  }
  
  .product-info {
    padding: 0.85rem;
    gap: 0.5rem;
  }
  
  .product-name {
    font-size: 0.85rem;
    min-height: 2.4em;
  }
  
  .product-slogan {
    font-size: 0.75rem;
    min-height: 2.1em;
  }
  
  .price-original {
    font-size: 0.75rem;
  }
  
  .price-current {
    font-size: 1.15rem;
  }
  
  .price-installment {
    font-size: 0.7rem;
  }

  .price-pix {
    font-size: 0.68rem;
  }
  
  .product-actions {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.5rem;
    margin-top: 0.6rem;
    padding-top: 0.6rem;
  }
  
  .btn-add-cart {
    padding: 0.55rem 0.6rem;
    font-size: 0.68rem;
    min-height: 34px;
    letter-spacing: 0.4px;
  }
  
  .btn-add-cart-icon {
    width: 34px;
    min-width: 34px;
    height: 34px;
  }

  .btn-add-cart-icon i {
    font-size: 1rem;
  }

  .product-actions.product-actions--single .btn-add-cart {
    width: 100%;
    justify-content: center;
  }

  .btn-add-cart--with-icon i {
    font-size: 0.95rem;
  }
  
  .product-actions-detail {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
  }
  
  .page-header {
    padding: 2.5rem 1rem;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
  
  .page-content {
    padding: 2rem 1rem;
  }
  
  .cart-container {
    padding: 0 0.5rem;
  }
  
  .cart-item {
    padding: 1rem;
    gap: 0.75rem;
    flex-wrap: wrap;
  }
  
  .cart-item-image {
    width: 70px;
    height: 70px;
  }
  
  .cart-item-info {
    flex: 1;
    min-width: 150px;
  }
  
  .cart-item-name {
    font-size: 0.9375rem;
    line-height: 1.3;
  }
  
  .cart-item-category {
    font-size: 0.75rem;
  }
  
  .cart-item-actions {
    width: 100%;
    justify-content: space-between;
    margin-top: 0.5rem;
  }
  
  .cart-item-price {
    font-size: 1rem;
    width: 100%;
    text-align: right;
    margin-top: 0.5rem;
    align-items: flex-end;
  }
  
  .cart-price-original {
    font-size: 0.8125rem;
  }
  
  .cart-price-current {
    font-size: 1rem;
  }
  
  .cart-price-discount {
    font-size: 0.6875rem;
    padding: 0.125rem 0.375rem;
  }
  
  .cart-item-quantity .quantity-btn {
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
  }
  
  .cart-item-quantity .quantity-input {
    width: 35px;
    font-size: 0.8125rem;
  }
  
  .cart-item-remove {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  .cart-notification {
    top: 16px;
    right: 16px;
    left: 16px;
    max-width: none;
    min-width: auto;
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
  }

  .notification-icon {
    width: 20px;
    height: 20px;
    font-size: 1.125rem;
  }

  .notification-close {
    width: 20px;
    height: 20px;
    font-size: 0.8125rem;
  }

  .cart-summary {
    padding: 1.25rem;
    margin: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    position: static;
    top: auto;
    overflow: hidden;
  }

  .cart-container {
    padding: 0 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .section {
    padding: 2rem 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  
  .cart-summary h3 {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
  }
  
  .cart-summary-section {
    margin-bottom: 1.25rem;
  }
  
  .cart-summary-section-title {
    font-size: 0.8125rem;
  }
  
  .cep-form {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .cep-input {
    width: 100%;
    box-sizing: border-box;
  }
  
  .cep-btn {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
  }

  .coupon-form {
    flex-direction: column;
    gap: 0.75rem;
  }

  .coupon-input {
    width: 100%;
    box-sizing: border-box;
    padding: 0.75rem 0.875rem;
    font-size: 0.9375rem;
  }

  .coupon-btn {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    justify-content: center;
  }

  .coupon-section {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    width: 100%;
    box-sizing: border-box;
  }

  .coupon-applied {
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.875rem;
    width: 100%;
    box-sizing: border-box;
  }

  .coupon-applied-info {
    flex-wrap: wrap;
    gap: 0.5rem;
    flex: 1;
    min-width: 0;
    width: 100%;
  }

  .coupon-description {
    font-size: 0.75rem;
    width: 100%;
    word-wrap: break-word;
  }

  .cart-free-shipping {
    width: 100%;
    box-sizing: border-box;
    margin: 0.75rem 0 1rem;
  }

  .cart-free-shipping-top {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .cart-trust-row {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .cart-checkout-btn {
    width: 100%;
    box-sizing: border-box;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
  }

  .coupon-code {
    font-size: 0.8125rem;
  }

  .coupon-description {
    font-size: 0.75rem;
    width: 100%;
  }
  
  .shipping-option {
    flex-wrap: wrap;
    padding: 0.75rem;
  }
  
  .shipping-option-label {
    width: 100%;
    margin-bottom: 0.25rem;
  }
  
  .cart-summary-row {
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
  }
  
  .cart-summary-row.total {
    font-size: 1.05rem;
  }
  
  .cart-summary-row.total span:last-child {
    font-size: 1.2rem;
  }

  .cart-summary h3,
  .cart-summary-row.total,
  .cart-summary-row.total span:last-child {
    font-family: var(--font-display);
  }

  /* Garantir que não haja overflow */
  .cart-summary * {
    max-width: 100%;
    box-sizing: border-box;
  }

  .cart-summary-row {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .cart-summary-row span {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .cart-empty {
    padding: 4rem 1.5rem;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
  }
  
  .cart-empty-icon {
    font-size: 4rem;
  }
  
  .cart-empty h2 {
    font-size: 1.75rem;
  }
  
  .cart-empty p {
    font-size: 1rem;
  }
  
  .cart-empty .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .checkout-form {
    padding: 1.5rem;
  }
  
  .checkout-form h2 {
    font-size: 1.5rem;
  }
  
  .auth-notification,
  .cart-notification {
    top: 15px;
    right: 10px;
    left: 10px;
    max-width: none;
    padding: 0.625rem 0.875rem;
    font-size: 0.75rem;
    border-radius: 4px;
    border-left-width: 2px;
  }
  
  .announcement-content {
    padding: 0 1rem;
    font-size: 0.75rem;
  }
  
  .header-main {
    padding: 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}

/* Dispositivos muito pequenos */
@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.5rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .page-header h1 {
    font-size: 1.75rem;
  }
  
  .cart-item {
    padding: 1rem;
  }
  
  .cart-item-image {
    width: 70px;
    height: 70px;
  }
  
  .cart-item-name {
    font-size: 0.9375rem;
  }
  
  .cart-summary {
    padding: 1.25rem;
  }
}

/* Regras adicionais de responsividade para garantir proporcionalidade */
@media (max-width: 768px) {
  /* Garantir que todas as imagens sejam responsivas */
  .product-main-image,
  .product-image,
  .cart-item-image {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  /* Ajustar grids para mobile */
  .benefits-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  /* Formulários responsivos */
  .form-row,
  .checkout-form-row {
    grid-template-columns: 1fr !important;
  }
  
  /* Botões full width em mobile quando necessário */
  .product-actions-detail .btn,
  .checkout-form .btn-primary {
    width: 100%;
  }
  
  /* Ajustar cálculo de frete em mobile */
  .shipping-calc-row {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .shipping-calc-row input {
    width: 100%;
    flex: none;
  }
  
  .shipping-calc-row .btn {
    width: 100%;
    min-width: auto;
  }
  
  /* Ajustar tamanhos de fonte para melhor legibilidade */
  .product-details h1 {
    font-size: 1.75rem;
    line-height: 1.3;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  /* Ajustar espaçamentos */
  .product-detail {
    gap: 2rem;
    margin: 2rem auto 0;
    max-width: 100%;
  }
  
  .product-gallery,
  .product-info {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  
  .product-main-image {
    height: 400px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  
  .thumbnail {
    width: 80px;
    height: 80px;
  }
  
  .product-quantity-section,
  .product-detail .product-actions,
  .product-specs-quick,
  .product-security-info,
  .product-pricing {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  
  .quantity-controls {
    justify-content: center;
    margin: 0 auto;
  }
  
  .product-detail .product-actions {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    margin: 0 auto;
  }
  
  .product-detail .btn-add-cart,
  .product-detail .btn-wishlist {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  
  .product-header {
    align-items: flex-start;
  }
  
  .product-rating-header {
    justify-content: flex-start;
  }
  
  .price-container {
    justify-content: center;
  }
  
  .spec-item,
  .security-item {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .product-detail {
    gap: 1.5rem;
    margin: 1.5rem auto 0;
    max-width: 100%;
  }
  
  .product-gallery,
  .product-info {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  
  .product-main-image {
    height: 300px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  
  .product-details h1,
  .product-title {
    font-size: 1.5rem;
    text-align: left;
    line-height: 1.3;
  }
  
  .thumbnail {
    width: 60px;
    height: 60px;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .page-header {
    padding: 3rem 1rem;
  }
  
  .page-header h1 {
    font-size: 1.75rem;
  }
  
  .product-quantity-section,
  .product-actions,
  .product-specs-quick,
  .product-security-info,
  .product-pricing {
    width: 100%;
    max-width: 100%;
    padding: 1.25rem;
    box-sizing: border-box;
    margin: 0 auto;
  }
  
  /* Garantir que cálculo de frete funcione bem em telas pequenas */
  .shipping-calc {
    padding: 1rem;
  }
  
  .shipping-calc-row {
    flex-direction: column;
  }
  
  .shipping-calc-row input,
  .shipping-calc-row .btn {
    width: 100%;
    font-size: 0.9375rem;
  }
  
  .quantity-controls {
    justify-content: center;
    width: 100%;
    margin: 0 auto;
  }
  
  .quantity-input {
    width: 80px;
  }
  
  .product-detail .product-actions {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0.75rem;
    margin: 0 auto;
  }
  
  .product-detail .btn-add-cart,
  .product-detail .btn-wishlist {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  
  .product-header {
    align-items: flex-start;
  }
  
  .product-rating-header {
    justify-content: flex-start;
  }
  
  .price-container {
    justify-content: center;
  }
  
  .spec-item,
  .security-item {
    justify-content: flex-start;
  }
  
  .product-pricing {
    padding: 1.5rem;
  }
  
  .price-current {
    font-size: 2rem;
  }
  
  .price-original {
    font-size: 1.25rem;
  }
}

/* Regra final para prevenir qualquer overflow horizontal em mobile */
@media (max-width: 768px) {
  * {
    max-width: 100vw;
  }
  
  body > * {
    overflow-x: hidden;
  }
  
  table, 
  pre, 
  code {
    max-width: 100%;
    overflow-x: auto;
    word-wrap: break-word;
  }
  
  img, 
  video, 
  iframe {
    max-width: 100%;
    height: auto;
  }
  
  /* Garantir que elementos com largura fixa não ultrapassem */
  .products-grid,
  .cart-item,
  .checkout-container,
  .header-main {
    width: 100%;
    max-width: 100%;
  }
  
  /* Centralização completa de todos os elementos */
  .product-detail {
    justify-items: center;
  }
  
  .product-gallery,
  .product-info {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .product-info {
    align-items: stretch;
    max-width: 600px;
  }
  
  .product-info > * {
    margin-left: auto;
    margin-right: auto;
  }
  
  .quantity-controls {
    justify-content: center;
    margin: 0 auto;
  }
  
  .product-detail .product-actions {
    justify-content: center;
    margin: 0 auto;
  }
  
  .product-thumbnails {
    justify-content: center;
  }
  
  .price-container {
    justify-content: center;
  }
}

/* Forçar tamanho reduzido do preço nos cards de produto */
.product-card .price-original {
  font-size: 0.7rem !important;
}

.product-card .price-current {
  font-size: 0.86rem !important;
  line-height: 1.15;
}

.product-card .price-current small {
  font-size: 0.54rem !important;
}

.product-card .price-installment {
  font-size: 0.62rem !important;
}

@media (max-width: 768px) {
  .product-card .product-actions,
  .product-card .product-actions.product-actions--single {
    width: calc(100% + 4.5rem) !important;
    margin-left: -2.25rem !important;
    margin-right: -2.25rem !important;
  }

  .product-card .btn-add-cart--with-icon {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
  }

  .product-card .price-current {
    font-size: 0.78rem !important;
  }

  .product-card .price-current small {
    font-size: 0.5rem !important;
  }
}

/* Forçar botão ocupar TODA a largura do card no mobile */
@media (max-width: 768px) {
  .product-card .product-info {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .product-card .product-info .product-actions.product-actions--single {
    width: calc(100% + 4.5rem) !important;
    margin-left: -2.25rem !important;
    margin-right: -2.25rem !important;
  }

  .product-card .product-info .btn-add-cart--with-icon {
    width: 100% !important;
    max-width: 100% !important;
  }

  .product-card .product-info .btn-add-cart--with-icon {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Home: força o botão ocupar toda a largura */
@media (max-width: 768px) {
  #promotional-products-grid .product-actions.product-actions--single,
  #featured-products-grid .product-actions.product-actions--single,
  #bestsellers-grid .product-actions.product-actions--single,
  #new-products-grid .product-actions.product-actions--single {
    width: calc(100% + 2rem) !important;
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }

  #promotional-products-grid .btn-add-cart--with-icon,
  #featured-products-grid .btn-add-cart--with-icon,
  #bestsellers-grid .btn-add-cart--with-icon,
  #new-products-grid .btn-add-cart--with-icon {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Home: refazer botão COMPRAR dos cards */
#promotional-products-grid .btn-add-cart--with-icon,
#featured-products-grid .btn-add-cart--with-icon,
#bestsellers-grid .btn-add-cart--with-icon,
#new-products-grid .btn-add-cart--with-icon {
  width: calc(100% + 0.6rem);
  max-width: calc(100% + 0.6rem);
  min-height: 34px;
  padding: 0.4rem 1.4rem;
  border-radius: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.6px;
  font-weight: 700;
  justify-content: center;
  gap: 0.5rem;
  margin-left: -0.3rem;
  margin-right: -0.3rem;
  background: linear-gradient(135deg, #ff3e9a 0%, #ff2f8f 100%);
  border-color: #ff2f8f;
  box-shadow: 0 10px 18px rgba(255, 47, 143, 0.25);
}

#promotional-products-grid .btn-add-cart--with-icon:hover,
#featured-products-grid .btn-add-cart--with-icon:hover,
#bestsellers-grid .btn-add-cart--with-icon:hover,
#new-products-grid .btn-add-cart--with-icon:hover {
  background: linear-gradient(135deg, #ff2f8f 0%, #ff1f82 100%);
  border-color: #ff1f82;
  box-shadow: 0 12px 20px rgba(255, 47, 143, 0.3);
}

#promotional-products-grid .btn-add-cart--with-icon .btn-add-cart-icon-wrap,
#featured-products-grid .btn-add-cart--with-icon .btn-add-cart-icon-wrap,
#bestsellers-grid .btn-add-cart--with-icon .btn-add-cart-icon-wrap,
#new-products-grid .btn-add-cart--with-icon .btn-add-cart-icon-wrap {
  font-size: 0.8rem;
  margin-right: 0;
}

@media (max-width: 768px) {
  #promotional-products-grid .btn-add-cart--with-icon,
  #featured-products-grid .btn-add-cart--with-icon,
  #bestsellers-grid .btn-add-cart--with-icon,
  #new-products-grid .btn-add-cart--with-icon {
    min-height: 36px;
    padding: 0.45rem 1.6rem;
    font-size: 0.76rem;
  }
}

@media (max-width: 480px) {
  .product-card .price-current {
    font-size: 0.74rem !important;
  }

  .product-card .price-current small {
    font-size: 0.46rem !important;
  }
}

/* ============================================
   PRODUTO - REBRAND MINIMALISTA
   ============================================ */
.product-section {
  background: #f7f7f8;
}

.product-section .product-detail {
  max-width: 1120px;
  margin: 2.25rem auto 0;
  gap: 2.5rem;
  align-items: start;
  grid-template-columns: 1.05fr 0.95fr;
}

.product-section .product-gallery,
.product-section .product-info {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.product-section .product-main-image-container {
  background: #f3f4f6;
  border-radius: 16px;
  padding: 1rem;
}

.product-section .product-main-image {
  height: auto;
  max-height: 460px;
  width: 100%;
  object-fit: contain;
  aspect-ratio: 1 / 1.15;
  border-radius: 12px;
}

.product-section .product-thumbnails {
  gap: 0.75rem;
  justify-content: flex-start;
}

.product-section .thumbnail {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.product-section .thumbnail.active,
.product-section .thumbnail:hover {
  border-color: #111111;
  box-shadow: none;
}

.product-section .product-category-badge {
  background: transparent;
  color: #111111;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.3px;
}

.product-section .product-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #111111;
  line-height: 1.2;
}

.product-section .product-rating-header {
  opacity: 0.85;
}

.product-section .product-pricing {
  background: #f8fafc;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 0.9rem 1.1rem;
}

.product-section .price-container {
  align-items: baseline;
  gap: 0.5rem;
}

.product-section .price-current {
  color: #111111;
  font-size: 2.1rem;
  letter-spacing: -0.02em;
}

.product-section .price-original {
  color: #9ca3af;
  font-size: 1rem;
}

.product-section .price-discount {
  background: #16a34a;
  color: #ffffff;
  font-size: 0.75rem;
  border-radius: 999px;
}

.product-section .product-description-short {
  color: #4b5563;
  font-size: 0.98rem;
  line-height: 1.6;
}

.product-section .product-specs-quick {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 1rem;
  gap: 0.75rem;
}

.product-section .product-quantity-section label {
  font-weight: 600;
  color: #111111;
}

.product-section .quantity-controls {
  background: #f3f4f6;
  border-radius: 12px;
  padding: 0.35rem;
}

.product-section .quantity-btn {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.product-section .product-actions {
  gap: 0.75rem;
  align-items: center;
}

.product-section .btn-add-cart {
  background: #111111;
  border-color: #111111;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  letter-spacing: 0.4px;
}

.product-section .btn-wishlist {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
}

/* HOME: override final do botão COMPRAR nos cards */
#promotional-products-grid .product-actions.product-actions--single,
#featured-products-grid .product-actions.product-actions--single,
#bestsellers-grid .product-actions.product-actions--single,
#new-products-grid .product-actions.product-actions--single {
  justify-items: center !important;
}

#promotional-products-grid .btn-add-cart--with-icon,
#featured-products-grid .btn-add-cart--with-icon,
#bestsellers-grid .btn-add-cart--with-icon,
#new-products-grid .btn-add-cart--with-icon {
  width: calc(100% + 1.2rem) !important;
  max-width: calc(100% + 1.2rem) !important;
  min-height: 32px !important;
  padding: 0.35rem 1.7rem !important;
  margin-left: -0.6rem !important;
  margin-right: -0.6rem !important;
  margin-inline: auto !important;
  justify-content: center !important;
  text-align: center !important;
}

@media (max-width: 768px) {
  #promotional-products-grid .btn-add-cart--with-icon,
  #featured-products-grid .btn-add-cart--with-icon,
  #bestsellers-grid .btn-add-cart--with-icon,
  #new-products-grid .btn-add-cart--with-icon {
    width: calc(100% + 1.8rem) !important;
    max-width: calc(100% + 1.8rem) !important;
    min-height: 30px !important;
    padding: 0.3rem 2rem !important;
    margin-left: -0.9rem !important;
    margin-right: -0.9rem !important;
    margin-inline: auto !important;
  }
}

/* ============================================
   BOTÃO FLUTUANTE DO WHATSAPP
   ============================================ */
#whatsapp-float-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 9998;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #ffffff;
  font-size: 32px;
  animation: whatsapp-pulse 2s infinite;
}

#whatsapp-float-button:hover {
  background: #20BA5A;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

#whatsapp-float-button:active {
  transform: scale(0.95);
}

#whatsapp-float-button i {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
  100% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  }
}

/* Responsivo para mobile */
@media (max-width: 768px) {
  #whatsapp-float-button {
    width: 56px;
    height: 56px;
    bottom: 16px;
    right: 16px;
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  #whatsapp-float-button {
    width: 52px;
    height: 52px;
    bottom: 12px;
    right: 12px;
    font-size: 26px;
  }
}

.product-section .product-security-info,
.product-section .trust-badges,
.product-section .delivery-info {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 1rem;
}

.product-section .trust-badge {
  border: none;
  padding: 0.75rem 0;
}

.product-section .delivery-info h4 {
  font-size: 1rem;
}

@media (max-width: 968px) {
  .product-section .product-detail {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .product-section .product-gallery,
  .product-section .product-info {
    padding: 1.25rem;
  }

  .product-section .product-title {
    font-size: 1.75rem;
  }

  .product-section .product-main-image {
    max-height: 420px;
  }
}

@media (max-width: 480px) {
  .product-section .product-main-image {
    max-height: 360px;
  }

  .product-section .product-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

