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

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
   @keyframes slideInUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
   @keyframes slideOutRight { from { transform: translateX(0); } to { transform: translateX(120%); } }
   @keyframes spin { to { transform: rotate(360deg); } }
   
   @keyframes kenburns {
       0% { transform: scale(1.1) translate(0, 0); }
       50% { transform: scale(1.15) translate(2%, -1%); }
       100% { transform: scale(1.1) translate(0, 0); }
   }
   
   @keyframes revealText {
       from {
           transform: translateY(100%);
           opacity: 0;
       }
       to {
           transform: translateY(0);
           opacity: 1;
       }
   }
   
   @keyframes pulse-glow {
       0%, 100% {
           transform: scale(1);
           box-shadow: 0 0 8px rgba(212, 163, 115, 0.4);
       }
       50% {
           transform: scale(1.05);
           box-shadow: 0 0 16px rgba(212, 163, 115, 0.7);
       }
   }
   
   :root {
       
       --color-primary: #8D5B4C; 
       --color-secondary: #D4A373; 
       --color-background: #FFFFFF; 
       --color-surface: #FFFFFF; 
       --color-text: #4A2C2A; 
       --color-text-light: #6E5B55;
       --color-accent: #E57373; 
       --color-success: #66BB6A;
       --color-error: #EF5350;
       --color-border: #EAE0DC;
   
          
   --font-headings: 'Cormorant Garamond', serif;
   --font-body: 'Poppins', sans-serif;
   --font-hero: 'Montserrat', 'Poppins', sans-serif;
   
       
       --shadow-sm: 0 2px 4px rgba(74, 44, 42, 0.05);
       --shadow-md: 0 5px 15px rgba(74, 44, 42, 0.08);
       --shadow-lg: 0 10px 25px rgba(74, 44, 42, 0.12);
       --border-radius: 16px; 
       --border-radius-sm: 10px;
   
       
       --transition-fast: all 0.2s ease-in-out;
       --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
   
       
       --container-width: 1200px;
       --container-padding: 1.5rem;
   }
   
   
   
   
   *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
   html { scroll-behavior: smooth; font-size: 16px; }
   body {
       font-family: var(--font-body);
       background-color: var(--color-background);
       color: var(--color-text);
       line-height: 1.7;
       -webkit-font-smoothing: antialiased;
       -moz-osx-font-smoothing: grayscale;
       overflow-x: hidden;
   }
   .container { max-width: var(--container-width); margin: 0 auto; padding: 0 var(--container-padding); }
   img, video { max-width: 100%; height: auto; display: block; }
   button, input, textarea { font-family: inherit; border: none; outline: none; }
   button { cursor: pointer; }
   
   /* Estilos para campos de adicional e observação */
   .adicional-section {
       margin: 1rem 0;
       padding: 1rem;
       background: rgba(141, 91, 76, 0.05);
       border-radius: 8px;
       border: 1px solid rgba(141, 91, 76, 0.2);
   }
   
   .adicional-section .form-group {
       margin: 0;
   }
   
   .adicional-section label {
       display: flex;
       align-items: center;
       gap: 0.5rem;
       cursor: pointer;
       font-weight: 500;
       color: var(--color-text);
   }
   
   .adicional-section input[type="checkbox"] {
       width: 18px;
       height: 18px;
       accent-color: var(--color-primary);
   }
   
   .adicional-section small {
       color: var(--color-text-light);
       font-size: 0.8rem;
       margin-top: 0.5rem;
       display: block;
   }
   
   .observacao-section {
       margin: 1rem 0;
   }
   
   .observacao-section textarea {
       width: 100%;
       padding: 0.75rem;
       border: 1px solid var(--color-border);
       border-radius: 6px;
       font-family: inherit;
       font-size: 0.9rem;
       resize: vertical;
       min-height: 60px;
   }
   
   .observacao-section textarea:focus {
       outline: none;
       border-color: var(--color-primary);
       box-shadow: 0 0 0 2px rgba(141, 91, 76, 0.1);
   }
   
   .observacao-geral-section {
       margin: 1.5rem 0;
       padding: 1rem;
       background: rgba(141, 91, 76, 0.05);
       border-radius: 8px;
       border: 1px solid rgba(141, 91, 76, 0.2);
   }
   
   .observacao-geral-section h4 {
       margin: 0 0 0.75rem 0;
       color: var(--color-text);
       font-size: 1rem;
   }
   
   .checkbox-group {
       display: flex;
       align-items: center;
       gap: 0.5rem;
   }
   
   .checkbox-group input[type="checkbox"] {
       width: 18px;
       height: 18px;
       accent-color: var(--color-primary);
   }
   
   .checkbox-group label {
       cursor: pointer;
       user-select: none;
   }
   
   .adicional-info {
       color: var(--color-success);
       font-weight: 500;
   }
   
   .observacao-info {
       color: var(--color-accent);
       font-style: italic;
   }
   
   
   
   
   h1, h2, h3, h4, h5, h6 {
       font-family: var(--font-headings);
       font-weight: 700;
       line-height: 1.2;
       margin-bottom: 1rem;
   }
   h1 { font-size: clamp(1.5rem, 4vw, 1.8rem); }
   h2 { font-size: clamp(2.5rem, 8vw, 4rem); }
   h3 { font-size: clamp(1.5rem, 5vw, 2.25rem); }
   p { margin-bottom: 1rem; }
   
   
   
   
   .btn {
       display: inline-block;
       padding: 0.9rem 2rem;
       border-radius: 50px;
       font-weight: 600;
       text-decoration: none;
       transition: var(--transition-smooth);
       border: 2px solid transparent;
       text-align: center;
       position: relative;
       overflow: hidden;
       z-index: 1;
   }
   .btn::before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       width: 0;
       height: 100%;
       background-color: rgba(255, 255, 255, 0.2);
       transition: var(--transition-smooth);
       z-index: -1;
   }
   .btn:hover::before { width: 100%; }
   
   .btn-primary {
       background: linear-gradient(45deg, var(--color-primary), #a87c6e);
       color: var(--color-surface);
       box-shadow: var(--shadow-md);
       backdrop-filter: blur(10px);
       border: 1px solid rgba(255, 255, 255, 0.2);
   }
   .btn-primary:hover {
       transform: translateY(-3px) scale(1.05);
       box-shadow: var(--shadow-lg);
   }
   .btn-primary i {
       color: #FFD700;
       font-size: 1.2rem;
       text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
   }
   
   .btn-secondary {
       background-color: var(--color-surface);
       color: var(--color-primary);
       border-color: var(--color-border);
   }
   .btn-secondary:hover {
       background-color: var(--color-primary);
       color: var(--color-surface);
       border-color: var(--color-primary);
   }
   
   .section-title {
       text-align: center;
       margin-bottom: 3rem;
       color: var(--color-primary);
       font-size: clamp(2rem, 6vw, 2.8rem);
   }
   .section-title span {
       position: relative;
       padding-bottom: 0.5rem;
   }
   .section-title span::after {
       content: '';
       position: absolute;
       bottom: 0;
       left: 50%;
       transform: translateX(-50%);
       width: 60px;
       height: 3px;
       background: var(--color-secondary);
       border-radius: 2px;
   }
   
   /* Subtítulos das seções */
   .section-subtitle {
       text-align: center;
       margin-bottom: 3rem;
       color: var(--color-text-light);
       font-size: 1.1rem;
       max-width: 700px;
       margin-left: auto;
       margin-right: auto;
       line-height: 1.6;
       font-style: italic;
   }
   
   .products-subtitle {
       text-align: center;
       margin-bottom: 3rem;
       color: var(--color-text-light);
       font-size: 1.1rem;
       max-width: 700px;
       margin-left: auto;
       margin-right: auto;
       line-height: 1.6;
       font-style: italic;
   }
   
   
   
   
   .animate-on-scroll {
       opacity: 0;
       transform: translateY(40px);
       transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
   }
   .animate-on-scroll.visible {
       opacity: 1;
       transform: translateY(0);
   }
   
   
   
   
   
   
   .loading {
       position: fixed;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background: linear-gradient(135deg, #1a0f0f 0%, #2d1b1b 50%, #1a0f0f 100%);
       display: flex;
       justify-content: center;
       align-items: center;
       z-index: 1000;
       transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1);
       opacity: 1;
       visibility: visible;
       overflow: hidden;
   }
   .loading.active { opacity: 1; visibility: visible; }
   .loading:not(.active) { opacity: 0; visibility: hidden; }
   
   .loading-content { 
       text-align: center; 
       position: relative;
       z-index: 2;
   }

   .loading-logo-container {
       margin-bottom: 2.5rem;
       animation: logoEntrance 1s cubic-bezier(0.4, 0, 0.2, 1);
   }

   .loading-logo-icon {
       font-size: 5rem;
       margin-bottom: 1rem;
       animation: logoFloat 2.5s ease-in-out infinite;
       filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
   }

   .loading-logo-text {
       font-family: var(--font-headings);
       font-size: 2.5rem;
       font-weight: 700;
       color: var(--color-secondary);
       text-shadow: 0 0 20px rgba(212, 163, 115, 0.7);
       letter-spacing: 3px;
       animation: textGlow 1.5s ease-in-out infinite alternate;
   }

   .loading-animation-container {
       margin-bottom: 2.5rem;
       animation: containerEntrance 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
   }

   .loading-line {
       width: 200px;
       height: 2px;
       background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
       margin: 0 auto 2rem;
       animation: lineExpand 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
   }

   .loading-dots {
       display: flex;
       justify-content: center;
       gap: 1rem;
   }

   .dot {
       width: 12px;
       height: 12px;
       background: var(--color-secondary);
       border-radius: 50%;
       animation: dotPulse 1.5s ease-in-out infinite;
   }

   .dot:nth-child(1) { animation-delay: 0s; }
   .dot:nth-child(2) { animation-delay: 0.3s; }
   .dot:nth-child(3) { animation-delay: 0.6s; }

   .loading-message {
       margin-bottom: 2.5rem;
       animation: messageEntrance 1s cubic-bezier(0.4, 0, 0.2, 1) 0.9s both;
   }

   .message-line {
       font-size: 1.1rem;
       color: rgba(255, 255, 255, 0.9);
       margin-bottom: 0.5rem;
       opacity: 0;
       transform: translateY(20px);
       animation: messageSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
   }

   .message-line:nth-child(1) { animation-delay: 1.2s; }
   .message-line:nth-child(2) { animation-delay: 1.5s; }
   .message-line:nth-child(3) { animation-delay: 1.8s; }
   .message-line:nth-child(4) { animation-delay: 2.1s; }

   .loading-progress-container {
       animation: progressEntrance 1s cubic-bezier(0.4, 0, 0.2, 1) 1.2s both;
   }

   .loading-progress {
       width: 300px;
       height: 6px;
       background: rgba(255, 255, 255, 0.1);
       border-radius: 3px;
       overflow: hidden;
       margin: 0 auto 1rem;
       border: 1px solid rgba(255, 255, 255, 0.2);
   }

   .progress-bar {
       width: 0;
       height: 100%;
       background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
       border-radius: 3px;
       animation: progressFill 2s cubic-bezier(0.4, 0, 0.2, 1) 1.5s forwards;
       box-shadow: 0 0 15px rgba(212, 163, 115, 0.5);
       position: relative;
       overflow: hidden;
   }
   
   .progress-bar::after {
       content: '';
       position: absolute;
       top: 0;
       left: -100%;
       width: 100%;
       height: 100%;
       background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
       animation: shimmer 2s infinite;
   }
   
   @keyframes shimmer {
       0% { left: -100%; }
       100% { left: 100%; }
   }

   .progress-text {
       color: rgba(255, 255, 255, 0.7);
       font-size: 0.9rem;
       font-weight: 500;
       animation: textFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) 2s both;
   }



   /* Animações */
   @keyframes logoEntrance {
       from {
           opacity: 0;
           transform: scale(0.8) translateY(-30px);
       }
       to {
           opacity: 1;
           transform: scale(1) translateY(0);
       }
   }

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

   @keyframes textGlow {
       from { text-shadow: 0 0 20px rgba(212, 163, 115, 0.7); }
       to { text-shadow: 0 0 35px rgba(212, 163, 115, 0.9), 0 0 50px rgba(212, 163, 115, 0.5); }
   }

   @keyframes containerEntrance {
       from {
           opacity: 0;
           transform: translateY(30px);
       }
       to {
           opacity: 1;
           transform: translateY(0);
       }
   }

   @keyframes lineExpand {
       from { width: 0; opacity: 0; }
       to { width: 200px; opacity: 1; }
   }

   @keyframes dotPulse {
       0%, 100% { 
           transform: scale(1);
           opacity: 0.7;
       }
       50% { 
           transform: scale(1.3);
           opacity: 1;
       }
   }

   @keyframes messageEntrance {
       from {
           opacity: 0;
           transform: translateY(30px);
       }
       to {
           opacity: 1;
           transform: translateY(0);
       }
   }

   @keyframes messageSlideIn {
       to {
           opacity: 1;
           transform: translateY(0);
       }
   }

   @keyframes progressEntrance {
       from {
           opacity: 0;
           transform: translateY(30px);
       }
       to {
           opacity: 1;
           transform: translateY(0);
       }
   }

   @keyframes progressFill {
       to { width: 100%; }
   }

   @keyframes textFadeIn {
       to { opacity: 1; }
   }



   /* Responsivo */
   @media (max-width: 768px) {
       .loading-logo-icon { font-size: 4rem; }
       .loading-logo-text { font-size: 2rem; letter-spacing: 2px; }
       .loading-line { width: 150px; }
       .loading-progress { width: 250px; }
       .message-line { font-size: 1rem; }
   }

   @media (max-width: 480px) {
       .loading-logo-icon { font-size: 3rem; }
       .loading-logo-text { font-size: 1.5rem; letter-spacing: 1px; }
       .loading-line { width: 120px; }
       .loading-progress { width: 200px; }
       .message-line { font-size: 0.9rem; }
       

       .loading-logo-icon { filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.3)); }
       .loading-logo-text { text-shadow: 0 0 15px rgba(212, 163, 115, 0.5); }
       .progress-bar { box-shadow: 0 0 8px rgba(212, 163, 115, 0.3); }
   }
   
   /* Prefers reduced motion */
   @media (prefers-reduced-motion: reduce) {
       .loading,
       .loading *,
       .hero * {
           animation: none !important;
           transition: none !important;
       }
       .progress-bar { width: 100% !important; }
       .progress-bar::after { animation: none !important; }
       .hero-image { animation: none !important; }
       .hero-title { animation: none !important; }
       .hero-badge { animation: none !important; }
   }
   
   .header {
       position: fixed;
       top: 0;
       left: 0;
       width: 100%;
       padding: 1.5rem 0;
       z-index: 100;
       transition: var(--transition-smooth);
       background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
   }
   .header.scrolled {
       background-color: rgba(74, 44, 42, 0.9);
       background-image: none;
       backdrop-filter: blur(12px);
       -webkit-backdrop-filter: blur(12px);
       box-shadow: var(--shadow-lg);
       padding: 0.8rem 0;
       border-bottom: 1px solid rgba(255, 255, 255, 0.1);
   }
   .header .container { 
       display: flex; 
       justify-content: space-between; 
       align-items: center; 
       flex-wrap: nowrap;
       gap: 1rem;
       max-width: 100%;
   }
   .header .logo { 
       display: flex; 
       align-items: center; 
       text-decoration: none; 
       color: var(--color-surface);
       flex-shrink: 0;
       min-width: 0;
   }
   .header.scrolled .logo { color: var(--color-surface); }
   .header .logo i { font-size: 2rem; margin-right: 0.5rem; color: var(--color-secondary); flex-shrink: 0; }
   .header .logo h1 { margin: 0; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
   .header .main-nav { 
       display: flex; 
       align-items: center; 
       gap: 1rem;
       flex-wrap: nowrap;
       flex-shrink: 0;
   }
   .header .main-nav a {
       text-decoration: none;
       color: var(--color-surface);
       font-weight: 500;
       position: relative;
       padding: 0.5rem 0;
       transition: color 0.3s ease;
       white-space: nowrap;
   }
   .header.scrolled .main-nav a { color: var(--color-background); }
   .header .main-nav a::after {
       content: '';
       position: absolute;
       bottom: 0;
       left: 0;
       width: 0;
       height: 2px;
       background-color: var(--color-secondary);
       transition: var(--transition-fast);
   }
   .header .main-nav a:hover::after { width: 100%; }
   .header-actions { 
       display: flex; 
       align-items: center; 
       gap: 0.75rem;
       flex-shrink: 0;
       min-width: 0;
   }
   
   /* Garantir que elementos importantes sempre apareçam */
   .delivery-info,
   .status-loja,
   .cart-btn {
       display: flex !important;
       visibility: visible !important;
       opacity: 1 !important;
   }
   
   @media (max-width: 1024px) {
       .header .logo h1 { font-size: 1.2rem; }
       .header .main-nav a { display: none; }
   }
   
   @media (max-width: 768px) {
       .header {
           padding: 0.8rem 0;
       }
       .header .container { 
           flex-wrap: nowrap;
           gap: 0.5rem;
           align-items: center;
           padding: 0 1rem;
       }
       .header .logo { 
           flex-shrink: 1;
           min-width: 0;
           max-width: 40%;
       }
       .header .logo h1 { 
           font-size: 0.9rem; 
           white-space: nowrap;
           overflow: hidden;
           text-overflow: ellipsis;
       }
       .header .logo i {
           font-size: 1.3rem;
           margin-right: 0.3rem;
           flex-shrink: 0;
       }
       .header .main-nav { 
           display: none;
       }
       .header-actions { 
           flex-shrink: 0;
           gap: 0.35rem;
           margin-left: auto;
           display: flex !important;
           align-items: center;
           flex-wrap: nowrap;
       }
       .delivery-info {
           padding: 0.3rem 0.55rem;
           font-size: 0.65rem;
           white-space: nowrap;
           display: flex !important;
           align-items: center;
           gap: 0.25rem;
           flex-shrink: 0;
           visibility: visible !important;
           opacity: 1 !important;
       }
       .delivery-info i {
           font-size: 0.65rem;
           flex-shrink: 0;
       }
       .delivery-info span {
           font-size: 0.65rem;
           white-space: nowrap;
           display: inline-block !important;
           visibility: visible !important;
           opacity: 1 !important;
       }
       .status-loja {
           padding: 0.3rem 0.55rem;
           font-size: 0.65rem;
           white-space: nowrap;
           display: flex !important;
           align-items: center;
           gap: 0.25rem;
           flex-shrink: 0;
           visibility: visible !important;
           opacity: 1 !important;
       }
       .status-loja span {
           font-size: 0.65rem;
           white-space: nowrap;
           display: inline-block;
       }
       .status-dot {
           width: 7px;
           height: 7px;
           flex-shrink: 0;
       }
       .cart-btn {
           font-size: 1.1rem;
           padding: 0.25rem;
           display: flex !important;
           align-items: center;
           justify-content: center;
           flex-shrink: 0;
           min-width: 30px;
           position: relative;
           visibility: visible !important;
           opacity: 1 !important;
       }
       .cart-count {
           font-size: 0.6rem;
           min-width: 14px;
           height: 14px;
           padding: 0 3px;
           line-height: 14px;
       }
   }
   
   @media (max-width: 480px) {
       .header .container {
           gap: 0.3rem;
           padding: 0 0.5rem;
       }
       .header .logo {
           max-width: 35%;
       }
       .header .logo h1 {
           font-size: 0.75rem;
       }
       .header .logo i {
           font-size: 1rem;
           margin-right: 0.25rem;
       }
       .header-actions {
           gap: 0.25rem;
       }
       .delivery-info {
           padding: 0.25rem 0.45rem;
           font-size: 0.6rem;
       }
       .delivery-info span {
           display: inline-block !important;
           font-size: 0.6rem;
           visibility: visible !important;
           opacity: 1 !important;
       }
       .status-loja {
           padding: 0.25rem 0.45rem;
           font-size: 0.6rem;
       }
       .status-loja span {
           font-size: 0.6rem;
       }
       .cart-btn {
           font-size: 1rem;
           min-width: 28px;
       }
   }
   
   @media (max-width: 360px) {
       .header .logo {
           max-width: 32%;
       }
       .header .logo h1 {
           font-size: 0.7rem;
       }
       .header-actions {
           gap: 0.2rem;
       }
       .delivery-info {
           padding: 0.25rem 0.4rem;
           font-size: 0.55rem;
       }
       .delivery-info span {
           font-size: 0.55rem;
           display: inline-block !important;
           visibility: visible !important;
           opacity: 1 !important;
       }
       .status-loja {
           padding: 0.25rem 0.4rem;
           font-size: 0.55rem;
       }
       .status-loja span {
           font-size: 0.55rem;
       }
       .cart-btn {
           font-size: 0.95rem;
           min-width: 26px;
       }
   }
   
   @media (max-width: 480px) {
       .header .container {
           gap: 0.3rem;
           padding: 0 0.5rem;
       }
       .header .logo h1 {
           font-size: 0.8rem;
       }
       .header .logo i {
           font-size: 1.1rem;
           margin-right: 0.2rem;
       }
       .delivery-info {
           padding: 0.3rem 0.5rem;
           font-size: 0.65rem;
       }
       .delivery-info span {
           display: inline-block !important;
           visibility: visible !important;
           opacity: 1 !important;
           font-size: 0.65rem;
       }
       .delivery-info i {
           font-size: 0.7rem;
       }
       .status-loja {
           padding: 0.3rem 0.5rem;
           font-size: 0.65rem;
       }
       .status-loja span {
           font-size: 0.65rem;
       }
       .cart-btn {
           font-size: 1.1rem;
       }
   }
   
   .status-loja {
       background-color: rgba(255, 255, 255, 0.1);
       color: var(--color-surface);
       border: 1px solid rgba(255, 255, 255, 0.2);
       backdrop-filter: blur(5px);
       padding: 0.5rem 1rem;
       border-radius: 50px;
       font-size: 0.85rem;
       font-weight: 500;
       display: flex;
       align-items: center;
       gap: 0.5rem;
       transition: all 0.3s ease;
   }
   
   .delivery-info {
       background-color: var(--color-secondary);
       color: var(--color-text);
       border: 1px solid rgba(255, 255, 255, 0.5);
       backdrop-filter: blur(5px);
       padding: 0.5rem 1rem;
       border-radius: 50px;
       font-size: 0.85rem;
       font-weight: 600;
       display: flex;
       align-items: center;
       gap: 0.5rem;
       transition: all 0.3s ease;
       animation: pulse-glow 2.5s infinite ease-in-out;
   }
   
   .header.scrolled .status-loja {
       background-color: rgba(255, 255, 255, 0.1);
       color: var(--color-surface);
       border-color: rgba(255, 255, 255, 0.2);
   }
   .header.scrolled .delivery-info {
       background-color: var(--color-secondary);
       color: var(--color-text);
       border-color: rgba(255, 255, 255, 0.5);
   }
   
   .status-dot { width: 10px; height: 10px; border-radius: 50%; transition: var(--transition-fast); }
   .status-dot.aberto { background-color: var(--color-success); }
   .status-dot.fechado { background-color: var(--color-error); }
   .cart-btn {
       position: relative;
       background: none;
       font-size: 1.5rem;
       color: var(--color-surface);
       transition: color 0.3s ease;
   }
   .header.scrolled .cart-btn { color: var(--color-surface); }
   .cart-count {
       position: absolute;
       top: -5px;
       right: -10px;
       background: var(--color-accent);
       color: white;
       width: 22px;
       height: 22px;
       border-radius: 50%;
       display: flex;
       justify-content: center;
       align-items: center;
       font-size: 0.75rem;
       font-weight: 600;
       border: 2px solid var(--color-surface);
       transform: scale(0);
       transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
   }
   .cart-count.visible { transform: scale(1); }
   
   
   .hero {
       position: relative;
       height: 100vh;
       display: flex;
       align-items: center;
       justify-content: center;
       text-align: center;
       color: white;
       overflow: hidden;
       will-change: transform;
   }
   
   /* Garantir centralização absoluta em todas as resoluções */
   .hero-content {
       position: relative;
       z-index: 2;
       width: 100%;
       max-width: 800px;
       padding: var(--container-padding);
       margin: 0 auto;
       display: flex;
       flex-direction: column;
       align-items: center;
       justify-content: center;
       text-align: center;
   }
   
   /* Forçar centralização de todos os elementos filhos */
   .hero-content > * {
       width: 100%;
       text-align: center;
   }
   
   .hero-background {
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       z-index: -2;
   }
   .hero-image {
       width: 100%;
       height: 100%;
       object-fit: cover;
       animation: kenburns 30s ease-in-out infinite;
       will-change: transform;
   }

   /* Usar logo-mobile no mobile */
   @media (max-width: 768px) {
       .hero-image {
           content: url('/fundo-site/logo-mobile.webp');
       }
       
       /* Ajustar posição do botão no mobile */
       .hero-button-container {
       position: absolute;
           bottom: 2rem;
           left: 50%;
           transform: translateX(-50%);
           width: 90%;
           max-width: 300px;
           z-index: 10;
       }
       
       .hero-content {
           position: relative;
           height: 100vh;
           display: flex;
           align-items: center;
           justify-content: center;
       }
       
       /* Garantir que o botão fique abaixo da logo */
       .hero {
           position: relative;
           overflow: hidden;
       }
   }

   .hero-title {
       font-family: var(--font-headings);
       font-weight: 700;
       text-transform: uppercase;
       letter-spacing: 2px;
       margin-bottom: 1.5rem;
       text-shadow: 0px 4px 25px rgba(0,0,0,0.8);
       line-height: 1.1;
       white-space: nowrap;
       overflow: visible;
       text-align: center;
       width: 100%;
       padding: 0.5rem 0;
       font-size: clamp(2.5rem, 8vw, 4rem);
       color: rgba(255, 255, 255, 0.98);
       position: relative;
       display: block;
       margin-left: auto;
       margin-right: auto;
       will-change: transform, opacity;
       animation: titleEntrance 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
   }
   
   @keyframes titleEntrance {
       from {
           opacity: 0;
           transform: translateY(30px) scale(0.95);
       }
       to {
           opacity: 1;
           transform: translateY(0) scale(1);
       }
   }
   .hero-title::after {
       content: '';
       position: absolute;
       bottom: -10px;
       left: 50%;
       transform: translateX(-50%);
       width: 0;
       height: 3px;
       background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
       border-radius: 2px;
       animation: expandLine 1.5s ease-out 1.5s forwards;
   }
   @keyframes expandLine {
       to {
           width: 200px;
       }
   }
   .hero-title .char-wrapper { display: inline-block; overflow: visible; }
   .hero-title .char {
       display: inline-block;
       transform: translateY(100%);
       opacity: 0;
       animation: revealText 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
       line-height: 1.2;
   }
   .hero-content p {
       font-size: 1.25rem;
       margin-bottom: 2.5rem;
       text-shadow: 0px 2px 10px rgba(0,0,0,0.7);
   }

   
   .hero-overlay {
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background: linear-gradient(
           135deg,
           rgba(141, 91, 76, 0.4) 0%,
           rgba(212, 163, 115, 0.3) 50%,
           rgba(74, 44, 42, 0.6) 100%
       );
       z-index: -1;
   }

   .hero-badge {
       display: inline-flex;
       align-items: center;
       justify-content: center;
       gap: 0.5rem;
       background: rgba(255, 255, 255, 0.95);
       color: var(--color-primary);
       padding: 0.75rem 1.5rem;
       border-radius: 50px;
       font-size: 0.9rem;
       font-weight: 600;
       font-family: var(--font-headings);
       margin-bottom: 1.5rem;
       backdrop-filter: blur(10px);
       box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
       transform: translateY(20px);
       opacity: 0;
       animation: slideInUp 0.8s ease-out 0.5s forwards;
       letter-spacing: 0.5px;
       text-align: center;
       margin-left: auto;
       margin-right: auto;
       will-change: transform, opacity;
       transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
   }
   
   .hero-badge:hover {
       transform: translateY(-3px) scale(1.02);
       box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
   }

   .hero-badge i {
       color: #FFD700;
       font-size: 1rem;
   }

   .hero-subtitle {
       font-size: 1.5rem;
       font-weight: 700;
       font-family: var(--font-body);
       color: #FFFFFF;
       margin-bottom: 1.5rem;
       max-width: 700px;
       line-height: 1.4;
       text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.6);
       text-align: center;
       margin-left: auto;
       margin-right: auto;
       letter-spacing: 0.3px;
       background: rgba(0, 0, 0, 0.3);
       padding: 1rem 1.5rem;
       border-radius: 10px;
       backdrop-filter: blur(5px);
   }

   .hero-description {
       font-size: 1.2rem;
       font-weight: 500;
       font-family: var(--font-body);
       color: #FFFFFF;
       margin-bottom: 2.5rem;
       max-width: 600px;
       line-height: 1.5;
       text-shadow: 0 3px 6px rgba(0, 0, 0, 0.7), 0 1px 3px rgba(0, 0, 0, 0.5);
       text-align: center;
       margin-left: auto;
       margin-right: auto;
       letter-spacing: 0.2px;
       background: rgba(0, 0, 0, 0.25);
       padding: 0.8rem 1.2rem;
       border-radius: 8px;
       backdrop-filter: blur(3px);
   }

   .hero-button-container {
       display: flex;
       flex-direction: column;
       align-items: center;
       justify-content: center;
       text-align: center;
       width: 100%;
   }

   .hero-features {
       display: flex;
       gap: 2rem;
       margin-top: 2rem;
       flex-wrap: wrap;
       justify-content: center;
       align-items: center;
       width: 100%;
   }

   .feature {
       display: flex;
       align-items: center;
       gap: 0.5rem;
       color: rgba(255, 255, 255, 0.9);
       font-size: 0.9rem;
       font-weight: 500;
       text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
   }

   .feature i {
       color: var(--color-secondary);
       font-size: 1.1rem;
       text-shadow: 0 0 10px rgba(212, 163, 115, 0.5);
   }
   
   
   .categories { padding: 5rem 0; text-align: center; }
   
   /* Campo de busca */
   .search-container {
       max-width: 600px;
       margin: 0 auto 2.5rem;
       padding: 0 1rem;
   }
   
   .search-wrapper {
       position: relative;
       display: flex;
       align-items: center;
       background-color: var(--color-surface);
       border: 2px solid var(--color-secondary);
       border-radius: 50px;
       padding: 0.9rem 1.2rem;
       box-shadow: 0 4px 12px rgba(212, 163, 115, 0.2);
       transition: var(--transition-smooth);
       gap: 0.5rem;
   }
   
   .search-wrapper:focus-within {
       border-color: var(--color-primary);
       box-shadow: 0 4px 20px rgba(141, 91, 76, 0.3);
       transform: translateY(-2px);
   }
   
   .search-icon {
       color: var(--color-secondary);
       font-size: 1.1rem;
       margin-right: 0.8rem;
       flex-shrink: 0;
   }
   
   .search-input {
       flex: 1;
       border: none;
       outline: none;
       background: transparent;
       color: var(--color-text);
       font-size: 1rem;
       font-family: inherit;
       padding: 0;
       min-width: 0;
   }
   
   .search-input::placeholder {
       color: var(--color-text-light);
       opacity: 0.7;
   }
   
   .search-btn {
       background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
       border: none;
       color: white;
       cursor: pointer;
       padding: 0.5rem 1rem;
       border-radius: 25px;
       display: none;
       align-items: center;
       justify-content: center;
       transition: var(--transition-smooth);
       flex-shrink: 0;
       font-size: 0.9rem;
       font-weight: 600;
       box-shadow: 0 2px 8px rgba(212, 163, 115, 0.3);
       margin-left: 0.5rem;
   }
   
   .search-btn:hover {
       transform: translateY(-2px);
       box-shadow: 0 4px 12px rgba(212, 163, 115, 0.4);
   }
   
   .search-btn:active {
       transform: translateY(0);
   }
   
   .search-clear {
       background: none;
       border: none;
       color: var(--color-text-light);
       cursor: pointer;
       padding: 0.3rem;
       margin-left: 0.5rem;
       border-radius: 50%;
       display: none;
       align-items: center;
       justify-content: center;
       transition: var(--transition-smooth);
       flex-shrink: 0;
   }
   
   .search-clear:hover {
       background-color: rgba(212, 163, 115, 0.1);
       color: var(--color-secondary);
   }
   
   /* Responsivo para botão de pesquisa */
   @media (max-width: 768px) {
       .search-btn {
           padding: 0.4rem 0.8rem;
           font-size: 0.85rem;
       }
       .search-wrapper {
           padding: 0.7rem 1rem;
       }
       .search-input {
           font-size: 0.9rem;
       }
   }
   
   @media (max-width: 480px) {
       .search-btn {
           padding: 0.35rem 0.7rem;
           font-size: 0.8rem;
       }
       .search-wrapper {
           padding: 0.6rem 0.8rem;
       }
   }
   
   .category-filters {
       display: flex;
       flex-wrap: wrap;
       justify-content: center;
       gap: 1rem;
   }
   .category-btn {
       background-color: var(--color-surface);
       color: var(--color-text-light);
       padding: 0.7rem 1.8rem;
       border: 2px solid var(--color-secondary);
       border-radius: 50px;
       font-weight: 500;
       transition: var(--transition-smooth);
       box-shadow: 0 2px 8px rgba(212, 163, 115, 0.15);
       display: inline-flex;
       align-items: center;
       gap: 0.5rem;
       position: relative;
       overflow: hidden;
   }
   
   
   .category-btn::after {
       content: '';
       position: absolute;
       top: 0;
       left: -100%;
       width: 100%;
       height: 100%;
       background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
       transition: left 0.6s ease;
   }
   
   .category-btn:hover::after {
       left: 100%;
   }
   .category-btn::before {
       content: ' ';
       display: block;
       width: 8px;
       height: 8px;
       border-radius: 50%;
       background-color: transparent;
       transition: var(--transition-smooth);
       transform: scale(0);
   }
   .category-btn.active,
   .category-btn:hover {
       background: linear-gradient(135deg, var(--color-primary), #a87c6e);
       color: var(--color-surface);
       border-color: var(--color-primary);
       transform: translateY(-3px);
       box-shadow: 0 8px 25px rgba(141, 91, 76, 0.3);
   }
   .category-btn.active::before {
       background: linear-gradient(135deg, var(--color-secondary), #e6b17a);
       transform: scale(1);
       box-shadow: 0 2px 8px rgba(212, 163, 115, 0.4);
   }
   
   
   .products-section { padding: 2rem 0 5rem; }
   
   .products-title {
       text-align: center;
       margin: 4rem 0 2rem 0;
       color: var(--color-primary);
       font-size: clamp(1.8rem, 5vw, 2.5rem);
       font-family: var(--font-headings);
       font-weight: 700;
       position: relative;
       padding-bottom: 0.5rem;
   }
   
   .products-title::after {
       content: '';
       position: absolute;
       bottom: 0;
       left: 50%;
       transform: translateX(-50%);
       width: 60px;
       height: 3px;
       background: var(--color-secondary);
       border-radius: 2px;
   }
   
   .products-grid {
       display: grid;
       grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
       gap: 2.5rem;
   }
   .product-card {
       background-color: var(--color-surface);
       border-radius: var(--border-radius);
       box-shadow: var(--shadow-md);
       overflow: hidden;
       transition: var(--transition-smooth);
       cursor: pointer;
       display: flex;
       flex-direction: column;
       position: relative;
       border: 1px solid var(--color-border);
   }
   .product-card:hover {
       transform: translateY(-10px);
       border-color: var(--color-secondary);
       box-shadow: var(--shadow-lg), 0 0 20px rgba(212, 163, 115, 0.2);
   }
   .product-image-container {
       width: 100%;
       height: 280px;
       overflow: hidden;
       position: relative;
   }
   .product-image {
       width: 100%;
       height: 100%;
       object-fit: cover;
       transition: transform 0.5s ease;
   }
   .product-card:hover .product-image { transform: scale(1.08); }
   .product-info { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
   .product-name { font-size: 1.3rem; margin-bottom: 0.5rem; color: var(--color-primary); }
   .product-description {
       font-size: 0.9rem;
       color: var(--color-text-light);
       flex-grow: 1;
       margin-bottom: 1rem;
       line-height: 1.5;
       display: -webkit-box;
       -webkit-line-clamp: 2;
       -webkit-box-orient: vertical;
       overflow: hidden;
   }
   .product-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
   .product-price { font-size: 1.2rem; font-weight: 600; color: var(--color-secondary); }
   .add-to-cart-btn {
       background-color: var(--color-primary);
       color: white;
       width: 45px;
       height: 45px;
       border-radius: 50%;
       display: flex;
       justify-content: center;
       align-items: center;
       font-size: 1.2rem;
       transition: var(--transition-smooth);
       box-shadow: var(--shadow-sm);
   }
   .add-to-cart-btn:hover {
       background-color: var(--color-text);
       transform: rotate(90deg) scale(1.1);
       box-shadow: var(--shadow-md);
   }
   
   
   .modal {
       position: fixed;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background-color: rgba(30, 20, 20, 0.6);
       backdrop-filter: blur(8px);
       -webkit-backdrop-filter: blur(8px);
       display: flex;
       justify-content: center;
       align-items: center;
       z-index: 200;
       opacity: 0;
       visibility: hidden;
       transition: opacity 0.4s ease, visibility 0.4s ease;
       padding: 1rem;
   }
   .modal.active { opacity: 1; visibility: visible; }
   .modal.active .modal-content { transform: scale(1) translateY(0); opacity: 1; }
   .modal-content {
       background-color: var(--color-surface);
       border-radius: var(--border-radius);
       box-shadow: var(--shadow-lg);
       max-width: 900px;
       width: 100%;
       position: relative;
       max-height: 90vh;
       overflow-y: auto;
       transform: scale(0.95) translateY(20px);
       opacity: 0;
       transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s ease;
   }
   .modal-close {
       position: absolute;
       top: 1rem;
       right: 1rem;
       background: none;
       font-size: 1.5rem;
       color: var(--color-text-light);
       width: 40px;
       height: 40px;
       border-radius: 50%;
       display: flex;
       justify-content: center;
       align-items: center;
       transition: var(--transition-fast);
       z-index: 10;
   }
   .modal-close:hover {
       background-color: var(--color-border);
       color: var(--color-primary);
       transform: rotate(90deg);
   }
   .modal-body {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 2.5rem;
       padding: 2.5rem;
   }
   .modal-image-container { border-radius: var(--border-radius); overflow: hidden; }
   .modal-image-container img { width: 100%; height: 100%; object-fit: cover; }
   .modal-info h3 { font-size: 2.2rem; color: var(--color-primary); }
   .modal-info h4 {
       font-size: 1.1rem;
       margin-top: 1.5rem;
       margin-bottom: 0.8rem;
       color: var(--color-primary);
       display: flex;
       align-items: center;
       gap: 0.5rem;
   }
   .size-options { display: flex; flex-wrap: wrap; gap: 0.8rem; }
   .size-option { position: relative; cursor: pointer; }
   .size-option input { position: absolute; opacity: 0; width: 0; height: 0; }
   .size-option span {
       display: block;
       padding: 0.8rem 1.2rem;
       border: 2px solid var(--color-border);
       border-radius: var(--border-radius-sm);
       text-align: center;
       transition: var(--transition-fast);
   }
   .size-option .size-price { font-size: 0.8rem; color: var(--color-text-light); }
   .size-option input:checked + span {
       border-color: var(--color-secondary);
       background-color: #fffaf0;
       box-shadow: 0 0 0 2px var(--color-secondary);
   }
   .quantity-controls {
       display: flex;
       align-items: center;
       gap: 1rem;
       background-color: #f9f9f9;
       border: 1px solid var(--color-border);
       border-radius: 50px;
       padding: 0.5rem;
       width: fit-content;
   }
   .qty-btn {
       background-color: var(--color-surface);
       width: 35px;
       height: 35px;
       border-radius: 50%;
       color: var(--color-primary);
       font-size: 1rem;
       box-shadow: var(--shadow-sm);
       transition: var(--transition-fast);
   }
   .qty-btn:hover { background-color: var(--color-primary); color: white; }
   .qty-value { font-weight: 600; font-size: 1.2rem; min-width: 30px; text-align: center; }
   .modal-footer {
       display: flex;
       justify-content: space-between;
       align-items: center;
       margin-top: 2rem;
       border-top: 1px solid var(--color-border);
       padding-top: 1.5rem;
   }
   
   .adicional-footer {
       margin-top: 1rem;
       border-top: 1px solid var(--color-border);
       padding-top: 1rem;
   }
   
   .modal-price { font-size: 1.8rem; font-weight: 700; color: var(--color-secondary); }
   
   
   .cart-sidebar {
       position: fixed;
       top: 0;
       right: -100%;
       width: 100%;
       max-width: 450px;
       height: 100%;
       background-color: var(--color-surface);
       box-shadow: var(--shadow-lg);
       z-index: 300;
       transition: right 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
       display: flex;
       flex-direction: column;
   }
   .cart-sidebar.active { right: 0; }
   .cart-header {
       display: flex;
       justify-content: space-between;
       align-items: center;
       padding: 1.5rem;
       border-bottom: 1px solid var(--color-border);
   }
   .cart-header h3 { margin: 0; color: var(--color-primary); display: flex; align-items: center; gap: 0.5rem; }
   .cart-close { background: none; font-size: 1.5rem; color: var(--color-text-light); }
   .cart-items { flex-grow: 1; overflow-y: auto; padding: 1.5rem; }
   .cart-empty-message { text-align: center; padding: 4rem 1rem; color: var(--color-text-light); }
   .cart-empty-message i { font-size: 4rem; margin-bottom: 1rem; color: var(--color-border); }
   .cart-item { display: flex; gap: 1rem; align-items: center; margin-bottom: 1.5rem; }
   .cart-item-image { width: 80px; height: 80px; object-fit: cover; border-radius: var(--border-radius-sm); }
   .cart-item-info { flex-grow: 1; }
   .cart-item-name { font-weight: 600; margin: 0; }
   .cart-item-details { font-size: 0.9rem; color: var(--color-text-light); margin: 0; }
   .cart-item-remove { background: none; color: var(--color-error); font-size: 1rem; opacity: 0.7; transition: var(--transition-fast); }
   .cart-item-remove:hover { opacity: 1; }
   .cart-footer { padding: 1.5rem; border-top: 1px solid var(--color-border); background-color: var(--color-background); }
   .total-line { display: flex; justify-content: space-between; margin-bottom: 0.8rem; font-size: 1rem; }
   .grand-total { font-weight: 600; font-size: 1.2rem; color: var(--color-primary); margin-top: 1rem; }
   .cart-buttons { display: flex; gap: 0.8rem; margin-top: 1.5rem; }
   .btn-continue-shopping { flex: 1; }
   .btn-checkout { flex: 2; }
   .btn-checkout.disabled { background: var(--color-border); color: var(--color-text-light); cursor: not-allowed; }
   
   
   .checkout-modal { max-width: 600px; }
   .modal-header-checkout { text-align: center; padding: 2rem 2rem 1rem; border-bottom: 1px solid var(--color-border); }
   #checkoutForm { padding: 2rem; }
   .form-group { margin-bottom: 1.5rem; }

.form-help {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #6c757d;
    font-style: italic;
}
   .form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; color: var(--color-primary); }
   .form-group input, .form-group textarea {
       width: 100%;
       padding: 0.9rem 1.2rem;
       border: 1px solid var(--color-border);
       border-radius: var(--border-radius-sm);
       transition: var(--transition-fast);
       background-color: #fdfdfd;
   }
   .form-group input:focus, .form-group textarea:focus {
       border-color: var(--color-secondary);
       box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.3);
   }
   .input-group { display: flex; }
   .input-group input { border-top-right-radius: 0; border-bottom-right-radius: 0; }
   
   #buscarCepBtn {
       border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
       background: var(--color-primary);
       color: var(--color-surface);
       padding: 0 1.2rem;
       transition: var(--transition-smooth);
   }
   #buscarCepBtn:hover {
       background: var(--color-secondary);
       transform: scale(1.05);
       box-shadow: 0 4px 10px rgba(0,0,0,0.1);
   }
   #buscarCepBtn i {
       transition: transform 0.3s ease;
   }
   #buscarCepBtn:hover i {
       transform: rotate(15deg);
   }
   
   .payment-methods { 
       display: flex; 
       gap: 1rem; 
       margin-bottom: 1.5rem; 
       flex-wrap: wrap; 
       justify-content: center;
   }
   
   /* =========================================================================
      SISTEMA INTELIGENTE DE BENEFÍCIOS DE FIDELIDADE
      ========================================================================= */
   
   .beneficios-cliente {
       background: linear-gradient(135deg, #ffd700, #ffed4e);
       border: 2px solid #ffd700;
       border-radius: var(--border-radius-md);
       padding: 1.5rem;
       margin: 1rem 0;
       box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
       animation: slideInDown 0.5s ease-out;
   }
   
   .beneficios-header {
       display: flex;
       align-items: center;
       gap: 0.5rem;
       margin-bottom: 1rem;
       font-weight: 700;
       font-size: 1.1rem;
       color: #000;
   }
   
   .beneficios-header i {
       color: #ff6b35;
       font-size: 1.2rem;
   }
   
   .beneficios-info {
       background: rgba(255, 255, 255, 0.9);
       border-radius: var(--border-radius-sm);
       padding: 1rem;
       margin-bottom: 1rem;
   }
   
   .beneficios-info p {
       margin: 0.25rem 0;
       color: #333;
       font-size: 0.9rem;
   }
   
   .beneficios-info strong {
       color: #000;
       font-size: 1rem;
   }
   
   .beneficios-disponiveis {
       display: flex;
       gap: 1rem;
       margin-bottom: 1rem;
       flex-wrap: wrap;
   }
   
   .beneficio-item {
       display: flex;
       align-items: center;
       gap: 0.5rem;
       padding: 0.75rem 1rem;
       border-radius: var(--border-radius-sm);
       font-weight: 600;
       font-size: 0.9rem;
       animation: pulse 2s infinite;
   }
   
   .beneficio-item.frete-gratis {
       background: linear-gradient(135deg, #10b981, #34d399);
       color: white;
       box-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
   }
   
   .beneficio-item.mimo-disponivel {
       background: linear-gradient(135deg, #8b5cf6, #a78bfa);
       color: white;
       box-shadow: 0 2px 10px rgba(139, 92, 246, 0.3);
   }
   
   .beneficios-mensagem {
       background: rgba(255, 255, 255, 0.95);
       border-radius: var(--border-radius-sm);
       padding: 1rem;
       font-weight: 600;
       color: #000;
       text-align: center;
       border-left: 4px solid #ff6b35;
   }
   
   @keyframes slideInDown {
       from {
           opacity: 0;
           transform: translateY(-20px);
       }
       to {
           opacity: 1;
           transform: translateY(0);
       }
   }
   
   @keyframes pulse {
       0%, 100% {
           transform: scale(1);
       }
       50% {
           transform: scale(1.05);
       }
   }
   .payment-method label {
       display: flex;
       align-items: center;
       justify-content: center;
       padding: 1rem;
       border: 2px solid var(--color-border);
       border-radius: var(--border-radius-sm);
       cursor: pointer;
       transition: all 0.3s ease;
       text-align: center;
       min-height: 80px;
       flex-direction: column;
       gap: 0.5rem;
       min-width: 120px;
       position: relative;
       overflow: hidden;
   }
   .payment-method label:hover { 
       border-color: var(--color-secondary); 
       transform: translateY(-2px);
       box-shadow: 0 4px 12px rgba(0,0,0,0.1);
   }
   .payment-method input[type="radio"]:checked + label {
       border-color: var(--color-primary);
       background: var(--color-primary);
       color: white;
       transform: translateY(-2px);
       box-shadow: 0 4px 12px rgba(141, 91, 76, 0.3);
   }
   .payment-method label i { font-size: 1.5rem; margin-right: 0; }
   .payment-method label span { font-weight: 500; }
   
   
   
   .troco-options {
       display: flex;
       flex-direction: column;
       gap: 0.8rem;
       margin-top: 0.5rem;
   }
   
   .troco-option {
       display: flex;
       align-items: center;
   }
   
   .troco-option-label {
       display: flex;
       align-items: center;
       gap: 0.5rem;
       cursor: pointer;
       font-weight: 400;
       color: var(--color-text);
       margin: 0;
       padding: 0.8rem;
       background: var(--color-background);
       border-radius: var(--border-radius-sm);
       border: 1px solid var(--color-border);
       transition: all 0.3s ease;
       flex: 1;
   }
   
   .troco-option-label:hover {
       border-color: var(--color-secondary);
       background: #fffaf0;
   }
   
   .troco-option input[type="radio"] {
       width: auto;
       margin: 0;
       cursor: pointer;
       transform: scale(1.2);
       margin-right: 0.8rem;
   }
   
   .troco-option input[type="radio"]:checked + .troco-option-label {
       border-color: var(--color-primary);
       background: var(--color-primary);
       color: white;
       box-shadow: 0 2px 8px rgba(141, 91, 76, 0.3);
   }
   
   .troco-option-label i {
       color: var(--color-secondary);
       font-size: 0.9rem;
       transition: color 0.3s ease;
   }
   
   .troco-option input[type="radio"]:checked + .troco-option-label i {
       color: white;
   }
   
   .cash-payment-details {
       background: var(--color-background);
       padding: 1.5rem;
       border-radius: var(--border-radius-sm);
       border: 1px solid var(--color-border);
       margin-top: 1rem;
   }
   
   .troco-info {
       margin-top: 1rem;
       padding-top: 1rem;
       border-top: 1px solid var(--color-border);
   }
   
   /* Estilos para seção PIX */
   .pix-payment-details {
       background: var(--color-background);
       padding: 1.5rem;
       border-radius: var(--border-radius-sm);
       border: 1px solid var(--color-border);
       margin-top: 1rem;
   }
   
   .pix-options {
       display: flex;
       flex-direction: column;
       gap: 0.8rem;
       margin-bottom: 1rem;
   }
   
   .pix-option {
       display: flex;
       align-items: center;
       gap: 0.8rem;
   }
   
   .pix-option input[type="radio"] {
       display: none;
   }
   
   .pix-option-label {
       display: flex;
       align-items: center;
       gap: 0.8rem;
       padding: 1rem 1.2rem;
       border: 2px solid var(--color-border);
       border-radius: var(--border-radius-sm);
       cursor: pointer;
       transition: var(--transition-fast);
       background-color: var(--color-background);
       font-weight: 500;
       width: 100%;
   }
   
   .pix-option input[type="radio"]:checked + .pix-option-label {
       border-color: var(--color-primary);
       background-color: rgba(141, 91, 76, 0.05);
       box-shadow: 0 0 0 3px rgba(141, 91, 76, 0.1);
   }
   
   .pix-option-label i {
       color: var(--color-primary);
       font-size: 1.2rem;
   }
   
   .pix-option input[type="radio"]:checked + .pix-option-label i {
       color: var(--color-primary);
   }
   
   .pix-info {
       margin-top: 1rem;
       padding: 1.5rem;
       background: rgba(141, 91, 76, 0.05);
       border-radius: var(--border-radius-sm);
       border: 1px solid rgba(141, 91, 76, 0.2);
   }
   
   .pix-chave-section h5 {
       margin-bottom: 1rem;
       color: var(--color-text);
       font-weight: 600;
   }
   
   .pix-chave-display {
       display: flex;
       align-items: center;
       gap: 1rem;
       margin-bottom: 1rem;
       padding: 1rem;
       background: var(--color-background);
       border: 2px solid var(--color-primary);
       border-radius: var(--border-radius-sm);
   }
   
   .pix-chave {
       font-family: 'Courier New', monospace;
       font-size: 1.2rem;
       font-weight: 600;
       color: var(--color-primary);
       letter-spacing: 1px;
   }
   
   .btn-copiar-pix {
       background: var(--color-primary);
       color: white;
       padding: 0.5rem 1rem;
       border-radius: var(--border-radius-sm);
       font-size: 0.9rem;
       font-weight: 500;
       transition: var(--transition-fast);
   }
   
   .btn-copiar-pix:hover {
       background: #7a4f42;
       transform: translateY(-1px);
   }
   
   .pix-instructions {
       margin-top: 1rem;
   }
   
   .pix-instructions p {
       margin-bottom: 0.8rem;
       font-size: 0.95rem;
       color: var(--color-text-light);
       line-height: 1.5;
   }
   
   .pix-instructions p i {
       color: var(--color-primary);
       margin-right: 0.5rem;
   }
   
   .pix-instructions strong {
       color: var(--color-text);
       font-weight: 600;
   }
   
   
   @media (max-width: 768px) {
       .payment-methods {
           flex-direction: column;
           gap: 0.8rem;
       }
       
       .payment-method label {
           min-height: 60px;
           padding: 0.8rem;
           flex-direction: row;
           justify-content: flex-start;
           text-align: left;
       }
       
       .payment-method label i {
           margin-right: 0.8rem;
       }
       
       .troco-options {
           gap: 0.6rem;
       }
       
       .troco-option-label {
           padding: 0.6rem;
           font-size: 0.9rem;
       }
       
       .cash-payment-details {
           padding: 1rem;
       }
       
       .pix-payment-details {
           padding: 1rem;
       }
       
       .pix-options {
           gap: 0.6rem;
       }
       
       .pix-option-label {
           padding: 0.8rem;
           font-size: 0.9rem;
       }
       
       .pix-chave-display {
           flex-direction: column;
           gap: 0.8rem;
           text-align: center;
       }
       
       .pix-chave {
           font-size: 1rem;
       }
   }
   
   @media (max-width: 480px) {
       .payment-method label {
           min-height: 50px;
           padding: 0.6rem;
           font-size: 0.9rem;
       }
       
       .payment-method label i {
           font-size: 1.2rem;
       }
   }
   
   
   #alertContainer {
       position: fixed;
       top: 90px;
       right: 20px;
       z-index: 500;
       display: flex;
       flex-direction: column;
       gap: 1rem;
   }
   .alert {
       width: 380px;
       padding: 1.2rem 1.5rem;
       border-radius: var(--border-radius-sm);
       box-shadow: var(--shadow-lg);
       display: flex;
       align-items: flex-start;
       gap: 1rem;
       animation: slideInUp 0.5s ease-out;
       border-left: 5px solid;
       background-color: var(--color-surface);
   }
   .alert.success { border-left-color: var(--color-success); }
   .alert.error { border-left-color: var(--color-error); }
   .alert.info { border-left-color: var(--color-secondary); }
   .alert-icon { font-size: 1.5rem; }
   .alert.success .alert-icon { color: var(--color-success); }
   .alert.error .alert-icon { color: var(--color-error); }
   .alert.info .alert-icon { color: var(--color-secondary); }
   .alert strong { display: block; font-weight: 600; margin-bottom: 0.3rem; color: var(--color-text); }
   .alert p { font-size: 0.95rem; margin: 0; line-height: 1.4; color: var(--color-text-light); }
   .alert-close { margin-left: auto; background: none; color: var(--color-text-light); opacity: 0.7; font-size: 1.5rem; }
   
   
   .store-closed-overlay {
       position: fixed;
       top: 0; left: 0; width: 100%; height: 100%;
       background: rgba(30, 20, 20, 0.7);
       z-index: 999;
       display: flex;
       align-items: center;
       justify-content: center;
       backdrop-filter: blur(5px);
   }
   .store-closed-content {
       background: var(--color-surface);
       padding: 3rem;
       border-radius: var(--border-radius);
       text-align: center;
       max-width: 450px;
       margin: 2rem;
       box-shadow: var(--shadow-lg);
       animation: slideInUp 0.5s ease-out;
   }
   .store-closed-content i { font-size: 4rem; color: var(--color-secondary); margin-bottom: 1.5rem; }
   .store-closed-content h3 { color: var(--color-primary); margin-bottom: 1rem; font-size: 2rem; }
   .store-closed-content p { color: var(--color-text-light); margin-bottom: 1.5rem; line-height: 1.6; }
   .store-hours {
       background: var(--color-background);
       padding: 1rem;
       border-radius: var(--border-radius-sm);
       border-left: 4px solid var(--color-secondary);
   }
   
   
   .footer {
       background: var(--color-text);
       color: #e0e0e0;
       padding: 4rem 0 2rem;
       margin-top: 4rem;
       border-top: 4px solid var(--color-primary);
   }
   .footer-content {
       display: grid;
       grid-template-columns: 2fr 1fr;
       gap: 3rem;
       margin-bottom: 3rem;
   }
   .footer-logo {
       display: flex;
       align-items: center;
       gap: 0.75rem;
       font-size: 1.8rem;
       font-weight: 700;
       color: var(--color-secondary);
       margin-bottom: 1rem;
   }
   .footer-logo i { font-size: 2.2rem; }
   .footer-description { color: #b0b0b0; line-height: 1.6; font-size: 0.95rem; max-width: 400px; }
   .footer-contact h4 {
       color: var(--color-primary);
       margin-bottom: 1rem;
       font-size: 1.2rem;
       font-weight: 600;
   }
   .footer-contact h4::after {
       content: '';
       position: absolute;
       bottom: 0;
       left: 0;
       width: 40px;
       height: 2px;
       background: var(--color-primary);
   }
   .contact-item { 
       display: flex; 
       align-items: center; 
       gap: 0.75rem; 
       margin-bottom: 1.5rem; 
       transition: transform 0.2s ease;
       
       position: relative;
       z-index: 1;
   }
   
   .contact-item:hover {
       transform: translateX(5px);
   }
   
   
   .contact-item:not(:first-of-type) {
       margin-top: 0;
   }
   .contact-item i { color: var(--color-secondary); width: 20px; text-align: center; }
   .contact-link { color: #b0b0b0; text-decoration: none; transition: var(--transition-fast); }
   .contact-link:hover { color: var(--color-secondary); }
   .footer-bottom {
       border-top: 1px solid #5a4a49;
       padding-top: 2rem;
       display: flex;
       justify-content: space-between;
       align-items: center;
       flex-wrap: wrap;
       gap: 1rem;
       font-size: 0.9rem;
       color: #909090;
   }
   
   .contact-subtitle {
       color: var(--color-text-light);
       font-size: 0.9rem;
       margin-bottom: 1.5rem;
       font-style: italic;
       line-height: 1.4;
   }
   
   
   
   
   @media (max-width: 992px) {
       .header .main-nav { display: none; }
       .modal-body { grid-template-columns: 1fr; }
       .footer-content { grid-template-columns: 1fr; }
   }
   
   @media (max-width: 768px) {
       html { font-size: 15px; }
       .header .container { padding: 0 1rem; }
       .hero { 
           height: 80vh; 
           min-height: 500px;
           /* Reduzir animações pesadas em mobile */
       }
       .hero-image { 
           animation: kenburns 20s ease-in-out infinite; 
           /* Ajustar logo para mobile */
           width: 100% !important;
           height: 100% !important;
           object-fit: cover !important;
       }

       .products-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.5rem; }
       .cart-sidebar { max-width: 100vw; }
       .footer-bottom { flex-direction: column; text-align: center; }
       .modal-footer { flex-direction: column; gap: 1rem; align-items: stretch; }
       .modal-footer .btn { width: 100%; }
   
   .adicional-footer { flex-direction: column; gap: 1rem; align-items: stretch; }
   .adicional-footer .btn { width: 100%; }
   
       
       .categories {
           position: relative;
       }
       
       .category-filters {
           flex-wrap: nowrap;
           overflow-x: auto;
           justify-content: flex-start;
           padding: 1rem var(--container-padding) 1.5rem;
           -webkit-overflow-scrolling: touch;
           scrollbar-width: none;
           margin: 0 calc(-1 * var(--container-padding));
           position: relative;
           
           background: linear-gradient(to right, 
               rgba(255,255,255,0.1) 0%, 
               rgba(255,255,255,0.05) 80%, 
               rgba(255,255,255,0) 100%);
       }
       
       
       .category-filters::before {
           content: '';
           position: absolute;
           left: 0;
           top: 0;
           width: 30px;
           height: 100%;
           background: linear-gradient(to right, rgba(255,255,255,0.8), transparent);
           pointer-events: none;
           z-index: 1;
       }
       
       
       .categories::after {
           content: '← Arraste para ver mais →';
           position: absolute;
           bottom: -1rem;
           left: 50%;
           transform: translateX(-50%);
           font-size: 0.85rem;
           color: #ffffff;
           opacity: 1;
           white-space: nowrap;
           pointer-events: none;
           animation: pulse 2s infinite;
           background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
           padding: 0.5rem 1.2rem;
           border-radius: 25px;
           box-shadow: 0 4px 15px rgba(0,0,0,0.3);
           font-weight: 600;
           z-index: 10;
           border: 2px solid rgba(255,255,255,0.2);
       }
       
       
       @keyframes pulse {
           0%, 100% { 
               opacity: 1; 
               transform: translateX(-50%) scale(1);
           }
           50% { 
               opacity: 1; 
               transform: translateX(-50%) scale(1.05);
           }
       }
       
       
       .category-filters {
           scroll-snap-type: x mandatory;
           scroll-behavior: smooth;
       }
       
       .category-btn {
           scroll-snap-align: start;
       }
       
       .category-filters::-webkit-scrollbar {
           display: none;
       }
       
       .category-btn {
           flex-shrink: 0;
           padding: 0.8rem 1.8rem;
           font-size: 0.9rem;
           white-space: nowrap;
           min-width: max-content;
       }
       
       
       .hero-content {
           padding: 1rem;
       }
       
       .hero-badge {
           font-size: 0.8rem;
           padding: 0.6rem 1.2rem;
       }
       
       .hero-subtitle {
           font-size: 1.2rem;
           margin-bottom: 0.8rem;
           max-width: 100%;
           padding: 0.8rem 1rem;
           background: rgba(0, 0, 0, 0.4);
       }
       
       .hero-description {
           font-size: 1rem;
           margin-bottom: 2rem;
           max-width: 100%;
           padding: 0.6rem 0.8rem;
           background: rgba(0, 0, 0, 0.35);
       }
       
       .hero-features {
           gap: 1rem;
           flex-direction: column;
           align-items: center;
       }
       
       .feature {
           font-size: 0.8rem;
       }
       
       .hero-content {
           padding: 2rem 1rem;
           text-align: center;
       }
       
       .hero-title {
           font-size: clamp(1.8rem, 6vw, 2.5rem);
           line-height: 1.1;
           letter-spacing: 1px;
           white-space: nowrap;
           overflow: visible;
           text-align: center;
           width: 100%;
       }
       
       .hero-content p {
           font-size: 1.1rem;
           margin-bottom: 2rem;
           padding: 0 0.5rem;
       }
   }
   
   @media (max-width: 480px) {
       .header .logo h1 { font-size: 1.4rem; }
       .header-actions { gap: 0.5rem; }
       .delivery-info, .status-loja { padding: 0.4rem 0.8rem; font-size: 0.75rem; }
       .products-grid { grid-template-columns: 1fr; }
       #alertContainer { right: 10px; left: 10px; width: auto; }
       
       /* Otimizações para telas muito pequenas */
       .hero { 
           height: 70vh; 
           min-height: 400px;
       }
       .hero-image { 
           animation: none; /* Desabilitar animação em telas muito pequenas para performance */
           width: 100% !important;
           height: 100% !important;
           object-fit: cover !important;
       }
   
       
       .hero-title {
           font-size: clamp(1.5rem, 5vw, 2rem);
           line-height: 1.1;
           letter-spacing: 0.5px;
           white-space: nowrap;
           overflow: visible;
           text-align: center;
           width: 100%;
           padding: 0 0.5rem;
       }
       
       .hero-content p {
           font-size: 1rem;
           padding: 0 1rem;
           line-height: 1.4;
       }
       
       
       .category-filters {
           padding: 1rem 0.5rem 2.5rem;
           margin: 0;
       }
       
       .categories::after {
           font-size: 0.75rem;
           bottom: -0.8rem;
           padding: 0.4rem 1rem;
           background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
           color: white;
           opacity: 1;
           z-index: 15;
       }
       
       .category-btn {
           padding: 0.7rem 1.5rem;
           font-size: 0.85rem;
       }
       
       
      .categories {
          padding: 3rem 0 4rem 0;
      }
      
      .search-container {
          max-width: 100%;
          margin: 0 auto 2rem;
          padding: 0 1rem;
      }
      
      .search-wrapper {
          padding: 0.8rem 1rem;
      }
      
      .search-input {
          font-size: 0.95rem;
      }
      
      .products-section {
          padding: 1rem 0 3rem;
       }
   }
   
   /* Orientação landscape em mobile */
   @media (max-width: 768px) and (orientation: landscape) {
       .hero { 
           height: 100vh; 
           min-height: 300px;
       }
       .hero-image { 
           animation: none; /* Desabilitar animação em landscape para performance */
           width: 100% !important;
           height: 100% !important;
           object-fit: cover !important;
       }
   }
   
   
   
   
   .instagram-link {
       position: relative;
       display: inline-flex;
       align-items: center;
       gap: 0.5rem;
       padding: 0.5rem 0.75rem;
       border-radius: 8px;
       background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
       background-size: 200% 200%;
       color: white !important;
       text-decoration: none;
       font-weight: 600;
       font-size: 0.9rem;
       transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
       overflow: hidden;
       box-shadow: 0 2px 10px rgba(220, 39, 67, 0.3);
       border: 1px solid rgba(255, 255, 255, 0.1);
   }
   
   .instagram-link:hover {
       background-position: right center;
       transform: translateY(-2px) scale(1.02);
       box-shadow: 0 8px 25px rgba(220, 39, 67, 0.5);
       color: white !important;
       border-color: rgba(255, 255, 255, 0.3);
   }
   
   .instagram-link .instagram-text {
       display: inline-block;
       transition: transform 0.3s ease;
   }
   
   .instagram-link:hover .instagram-text {
       transform: scale(1.05);
   }
   
   .instagram-link .instagram-hover {
       position: absolute;
       top: 50%;
       left: 50%;
       transform: translate(-50%, -50%);
       opacity: 0;
       transition: opacity 0.3s ease;
       white-space: nowrap;
       font-size: 0.8rem;
   }
   
   .instagram-link:hover .instagram-hover {
       opacity: 1;
   }
   
   .instagram-link:hover .instagram-text {
       opacity: 0;
   }
   
   
   .instagram-link::before {
       content: '';
       position: absolute;
       top: 0;
       left: -100%;
       width: 100%;
       height: 100%;
       background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
       transition: left 0.5s ease;
   }
   
   .instagram-link:hover::before {
       left: 100%;
   }
   
   
   @media (max-width: 480px) {
       .instagram-link {
           padding: 0.4rem 0.6rem;
           font-size: 0.8rem;
       }
       
       .instagram-link .instagram-hover {
           font-size: 0.7rem;
       }
   }
   
   
   
   
   
   
   .phone-link {
       position: relative;
       display: inline-flex;
       align-items: center;
       gap: 0.5rem;
       padding: 0.5rem 0.75rem;
       border-radius: 8px;
       background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
       color: white !important;
       text-decoration: none;
       font-weight: 600;
       font-size: 0.9rem;
       transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
       overflow: hidden;
       box-shadow: 0 2px 10px rgba(76, 175, 80, 0.3);
       border: 1px solid rgba(255, 255, 255, 0.1);
   }
   
   .phone-link:hover {
       transform: translateY(-2px) scale(1.02);
       box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
       color: white !important;
       border-color: rgba(255, 255, 255, 0.3);
   }
   
   .phone-link .phone-text {
       display: inline-block;
       transition: transform 0.3s ease;
   }
   
   .phone-link:hover .phone-text {
       transform: scale(1.05);
   }
   
   .phone-link .phone-hover {
       position: absolute;
       top: 50%;
       left: 50%;
       transform: translate(-50%, -50%);
       opacity: 0;
       transition: opacity 0.3s ease;
       white-space: nowrap;
       font-size: 0.8rem;
   }
   
   .phone-link:hover .phone-hover {
       opacity: 1;
   }
   
   .phone-link:hover .phone-text {
       opacity: 0;
   }
   
   
   .whatsapp-link {
       position: relative;
       display: inline-flex;
       align-items: center;
       gap: 0.5rem;
       padding: 0.5rem 0.75rem;
       border-radius: 8px;
       background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
       color: white !important;
       text-decoration: none;
       font-weight: 600;
       font-size: 0.9rem;
       transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
       overflow: hidden;
       box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
       border: 1px solid rgba(255, 255, 255, 0.1);
   }
   
   .whatsapp-link:hover {
       transform: translateY(-2px) scale(1.02);
       box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
       color: white !important;
       border-color: rgba(255, 255, 255, 0.3);
   }
   
   .whatsapp-link .whatsapp-text {
       display: inline-block;
       transition: transform 0.3s ease;
   }
   
   .whatsapp-link:hover .whatsapp-text {
       transform: scale(1.05);
   }
   
   .whatsapp-link .whatsapp-hover {
       position: absolute;
       top: 50%;
       left: 50%;
       transform: translate(-50%, -50%);
       opacity: 0;
       transition: opacity 0.3s ease;
       white-space: nowrap;
       font-size: 0.8rem;
   }
   
   .whatsapp-link:hover .whatsapp-hover {
       opacity: 1;
   }
   
   .whatsapp-link:hover .whatsapp-text {
       opacity: 0;
   }
   
   
   .phone-link::before,
   .whatsapp-link::before {
       content: '';
       position: absolute;
       top: 0;
       left: -100%;
       width: 100%;
       height: 100%;
       background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
       transition: left 0.5s ease;
   }
   
   .phone-link:hover::before,
   .whatsapp-link:hover::before {
       left: 100%;
   }
   
   
   @media (max-width: 480px) {
       .phone-link,
       .whatsapp-link {
           padding: 0.4rem 0.6rem;
           font-size: 0.8rem;
       }
       
       .phone-link .phone-hover,
       .whatsapp-link .whatsapp-hover {
           font-size: 0.7rem;
       }
   }

/* ===== COUPON STYLES (FRONTEND) ===== */

/* Coupon Input Section */
.coupon-section {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.coupon-section:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.coupon-section h4 {
    color: var(--color-text);
    margin: 0 0 16px 0;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.coupon-section h4 i {
    color: var(--color-secondary);
    font-size: 18px;
}

/* Coupon Input Group */
.coupon-input-group {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.coupon-input-group input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    font-size: 14px;
    color: var(--color-text);
    background: var(--color-surface);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.coupon-input-group input:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(var(--color-secondary-rgb), 0.1);
}

.coupon-input-group input::placeholder {
    color: var(--color-text-muted);
    text-transform: none;
    letter-spacing: normal;
    font-weight: normal;
}

.coupon-apply-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.coupon-apply-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(var(--color-secondary-rgb), 0.3);
}

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

.coupon-apply-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.coupon-apply-btn.loading {
    pointer-events: none;
}

.coupon-apply-btn.loading i {
    animation: spin 1s linear infinite;
}

/* Applied Coupon Display */
.applied-coupon {
    background: linear-gradient(135deg, rgba(var(--color-success-rgb), 0.1) 0%, rgba(var(--color-success-rgb), 0.05) 100%);
    border: 1px solid rgba(var(--color-success-rgb), 0.3);
    border-radius: 10px;
    padding: 16px;
    margin: 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: slideInDown 0.3s ease;
}

.applied-coupon-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.applied-coupon-icon {
    width: 40px;
    height: 40px;
    background: var(--color-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.applied-coupon-details h5 {
    margin: 0 0 4px 0;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 600;
}

.applied-coupon-details p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 12px;
}

.applied-coupon-code {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: var(--color-success);
    background: rgba(var(--color-success-rgb), 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    letter-spacing: 1px;
}

.applied-coupon-remove {
    background: none;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.applied-coupon-remove:hover {
    background: rgba(var(--color-danger-rgb), 0.1);
    color: var(--color-danger);
}

/* Coupon Messages */
.coupon-message {
    padding: 12px 16px;
    border-radius: 8px;
    margin: 12px 0;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: slideInDown 0.3s ease;
}

.coupon-message.success {
    background: rgba(var(--color-success-rgb), 0.1);
    color: var(--color-success);
    border: 1px solid rgba(var(--color-success-rgb), 0.3);
}

.coupon-message.error {
    background: rgba(var(--color-danger-rgb), 0.1);
    color: var(--color-danger);
    border: 1px solid rgba(var(--color-danger-rgb), 0.3);
}

.coupon-message.warning {
    background: rgba(var(--color-warning-rgb), 0.1);
    color: var(--color-warning);
    border: 1px solid rgba(var(--color-warning-rgb), 0.3);
}

.coupon-message i {
    font-size: 16px;
}

/* Coupon Discount in Summary */
.coupon-discount-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-top: 1px solid var(--color-border);
    color: var(--color-success);
    font-weight: 600;
    animation: slideInDown 0.3s ease;
}

.coupon-discount-line .discount-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.coupon-discount-line .discount-amount {
    font-size: 16px;
    font-weight: 700;
}

.coupon-discount-line i {
    color: var(--color-success);
    font-size: 16px;
}

/* Coupon Loading State */
.coupon-loading {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-muted);
    font-size: 14px;
    padding: 8px 0;
}

.coupon-loading i {
    animation: spin 1s linear infinite;
}

/* Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Coupon Styles */
@media (max-width: 768px) {
    .coupon-input-group {
        flex-direction: column;
        gap: 8px;
    }
    
    .coupon-apply-btn {
        width: 100%;
        justify-content: center;
    }
    
    .applied-coupon {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .applied-coupon-remove {
        align-self: flex-end;
    }
    
    .coupon-section {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .coupon-section h4 {
        font-size: 14px;
    }
    
    .coupon-input-group input {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .coupon-apply-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .applied-coupon {
        padding: 12px;
    }
    
    .applied-coupon-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .applied-coupon-details h5 {
        font-size: 13px;
    }
    
    .applied-coupon-details p {
        font-size: 11px;
    }
}







/* Estilos responsivos para dispositivos móveis */
@media (max-width: 768px) {

    .floating-icon {
        font-size: 1.2rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .section-subtitle,
    .products-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .scroll-indicator {
        bottom: 1rem;
    }

    .scroll-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {

    .floating-icon {
        font-size: 1rem;
    }

    .hero-features {
        gap: 0.8rem;
        margin-top: 1rem;
    }

    .feature {
        font-size: 0.8rem;
    }
}



/* Efeitos de brilho */
.badge-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    border-radius: 50px;
    animation: badgeGlow 3s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes badgeGlow {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0.8; transform: scale(1.1); }
}

.title-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(ellipse, rgba(212, 163, 115, 0.2) 0%, transparent 70%);
    animation: titleGlow 4s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes titleGlow {
    0% { opacity: 0.2; transform: scale(1); }
    100% { opacity: 0.6; transform: scale(1.05); }
}

/* Botão com respiração e partículas */
.breathing-btn {
    animation: breathing 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

@keyframes breathing {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50px;
    animation: btnGlow 2s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes btnGlow {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0.8; transform: scale(1.1); }
}

.btn-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.btn-particles::before,
.btn-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: btnParticle 3s ease-in-out infinite;
}

.btn-particles::before {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.btn-particles::after {
    top: 60%;
    right: 20%;
    animation-delay: 1.5s;
}

@keyframes btnParticle {
    0%, 100% { opacity: 0; transform: translateY(0) scale(0); }
    50% { opacity: 1; transform: translateY(-20px) scale(1); }
}

/* Efeitos de scroll avançados */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.title-underline {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
    border-radius: 2px;
    animation: underlineExpand 1.5s ease-out 0.5s forwards;
}

@keyframes underlineExpand {
    to { width: 100px; }
}

/* Gradientes animados */
.hero-overlay {
    background: linear-gradient(
        135deg,
        rgba(141, 91, 76, 0.4) 0%,
        rgba(212, 163, 115, 0.3) 50%,
        rgba(74, 44, 42, 0.6) 100%
    );
    animation: gradientShift 10s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { 
        background: linear-gradient(
            135deg,
            rgba(141, 91, 76, 0.4) 0%,
            rgba(212, 163, 115, 0.3) 50%,
            rgba(74, 44, 42, 0.6) 100%
        );
    }
    50% { 
        background: linear-gradient(
            135deg,
            rgba(212, 163, 115, 0.3) 0%,
            rgba(141, 91, 76, 0.4) 50%,
            rgba(255, 215, 0, 0.2) 100%
        );
    }
}

/* Efeito Ripple nos botões */
.btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: rippleEffect 0.6s linear;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Melhorias nas animações existentes */
.floating-icon {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.floating-icon:hover {
    transform: scale(1.2) rotate(10deg);
    filter: brightness(1.5) drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}

/* Efeitos de hover aprimorados */
.hero-badge:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.hero-title:hover .title-glow {
    opacity: 0.8;
    transform: scale(1.1);
}

/* Responsivo para os novos efeitos */
@media (max-width: 768px) {
    
}

/* =========================================================================
      CHECKOUT ULTRA-PREMIUM - EFEITOS VISUAIS INCRÍVEIS
      ========================================================================= */

   /* Campos premium com efeitos mágicos */
   .premium-field {
       position: relative;
       margin-bottom: 2rem;
       animation: fieldEntrance 0.8s ease-out forwards;
       opacity: 0;
       transform: translateY(30px);
   }

   .premium-field:nth-child(1) { animation-delay: 0.1s; }
   .premium-field:nth-child(2) { animation-delay: 0.2s; }
   .premium-field:nth-child(3) { animation-delay: 0.3s; }
   .premium-field:nth-child(4) { animation-delay: 0.4s; }
   .premium-field:nth-child(5) { animation-delay: 0.5s; }
   .premium-field:nth-child(6) { animation-delay: 0.6s; }
   .premium-field:nth-child(7) { animation-delay: 0.7s; }
   .premium-field:nth-child(8) { animation-delay: 0.8s; }

   @keyframes fieldEntrance {
       to {
           opacity: 1;
           transform: translateY(0);
       }
   }

   /* Labels premium com brilho */
   .premium-label {
       display: flex;
       align-items: center;
       gap: 0.8rem;
       margin-bottom: 0.8rem;
       font-weight: 600;
       color: var(--color-primary);
       font-size: 1.1rem;
       position: relative;
       cursor: pointer;
   }

   .premium-label i {
       color: var(--color-secondary);
       font-size: 1.2rem;
       transition: all 0.3s ease;
   }

   .premium-label:hover i {
       transform: scale(1.2) rotate(5deg);
       color: var(--color-primary);
   }

   .label-glow {
       position: absolute;
       top: -5px;
       left: -5px;
       right: -5px;
       bottom: -5px;
       background: radial-gradient(circle, rgba(212, 163, 115, 0.2) 0%, transparent 70%);
       border-radius: 8px;
       opacity: 0;
       transition: all 0.3s ease;
       z-index: -1;
   }

   .premium-label:hover .label-glow {
       opacity: 1;
       transform: scale(1.1);
   }

   /* Inputs premium com efeitos mágicos */
   .premium-input {
       width: 100%;
       padding: 1rem 1.2rem;
       border: 2px solid var(--color-border);
       border-radius: 12px;
       font-size: 1rem;
       background: rgba(255, 255, 255, 0.95);
       transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
       position: relative;
       z-index: 1;
   }

   .premium-input:focus {
       outline: none;
       border-color: var(--color-secondary);
       box-shadow: 0 0 0 4px rgba(212, 163, 115, 0.1);
       transform: translateY(-2px);
       background: rgba(255, 255, 255, 1);
   }

   .premium-input:hover {
       border-color: var(--color-primary);
       transform: translateY(-1px);
   }

   .input-glow {
       position: absolute;
       top: 0;
       left: 0;
       right: 0;
       bottom: 0;
       background: linear-gradient(45deg, 
           rgba(212, 163, 115, 0.1) 0%, 
           rgba(141, 91, 76, 0.05) 50%, 
           rgba(255, 215, 0, 0.08) 100%);
       border-radius: 12px;
       opacity: 0;
       transition: all 0.4s ease;
       z-index: -1;
   }

   .premium-input:focus + .input-glow {
       opacity: 1;
       animation: inputGlowPulse 2s ease-in-out infinite;
   }

   @keyframes inputGlowPulse {
       0%, 100% { opacity: 0.3; }
       50% { opacity: 0.6; }
   }

   /* Grupos de input premium */
   .premium-input-group {
       display: flex;
       gap: 0.5rem;
       align-items: stretch;
   }

   .premium-input-group .premium-input {
       flex: 1;
   }

   .premium-btn {
       padding: 1rem 1.5rem;
       background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
       color: white;
       border: none;
       border-radius: 12px;
       font-weight: 600;
       cursor: pointer;
       transition: all 0.3s ease;
       position: relative;
       overflow: hidden;
   }

   .premium-btn:hover {
       transform: translateY(-2px) scale(1.02);
       box-shadow: 0 8px 25px rgba(212, 163, 115, 0.3);
   }

   .btn-glow {
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
       border-radius: 12px;
       opacity: 0;
       transition: all 0.3s ease;
       z-index: -1;
   }

   .premium-btn:hover .btn-glow {
       opacity: 1;
       animation: btnGlowPulse 1.5s ease-in-out infinite;
   }

   @keyframes btnGlowPulse {
       0%, 100% { opacity: 0.3; }
       50% { opacity: 0.8; }
   }

   /* Seções premium */
   .premium-section {
       background: linear-gradient(135deg, 
           rgba(255, 255, 255, 0.1) 0%, 
           rgba(212, 163, 115, 0.05) 100%);
       border-radius: 16px;
       padding: 2rem;
       margin: 2rem 0;
       border: 1px solid rgba(212, 163, 115, 0.2);
       position: relative;
       overflow: hidden;
   }

   .premium-section::before {
       content: '';
       position: absolute;
       top: 0;
       left: -100%;
       width: 100%;
       height: 100%;
       background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
       transition: left 0.8s ease;
   }

   .premium-section:hover::before {
       left: 100%;
   }

   .premium-section-title {
       display: flex;
       align-items: center;
       gap: 1rem;
       margin-bottom: 1.5rem;
       color: var(--color-primary);
       font-size: 1.3rem;
       font-weight: 700;
       position: relative;
   }

   .premium-section-title i {
       color: var(--color-secondary);
       font-size: 1.4rem;
   }

   .title-glow {
       position: absolute;
       top: -10px;
       left: -10px;
       right: -10px;
       bottom: -10px;
       background: radial-gradient(ellipse, rgba(212, 163, 115, 0.15) 0%, transparent 70%);
       border-radius: 16px;
       opacity: 0;
       transition: all 0.3s ease;
       z-index: -1;
   }

   .premium-section:hover .title-glow {
       opacity: 1;
       transform: scale(1.05);
   }

   /* Métodos de pagamento premium */
   .premium-payment-methods {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
       gap: 1rem;
   }

   .premium-payment-method {
       position: relative;
   }

   .premium-payment-label {
       display: flex;
       align-items: center;
       gap: 1rem;
       padding: 1.5rem;
       background: rgba(255, 255, 255, 0.9);
       border: 2px solid var(--color-border);
       border-radius: 12px;
       cursor: pointer;
       transition: all 0.3s ease;
       position: relative;
       overflow: hidden;
   }

   .premium-payment-label:hover {
       border-color: var(--color-secondary);
       transform: translateY(-3px);
       box-shadow: 0 8px 25px rgba(212, 163, 115, 0.2);
   }

   .premium-payment-label i {
       color: var(--color-secondary);
       font-size: 1.5rem;
       transition: all 0.3s ease;
   }

   .premium-payment-label:hover i {
       transform: scale(1.2) rotate(5deg);
       color: var(--color-primary);
   }

   .payment-glow {
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background: radial-gradient(circle, rgba(212, 163, 115, 0.1) 0%, transparent 70%);
       border-radius: 12px;
       opacity: 0;
       transition: all 0.3s ease;
       z-index: -1;
   }

   .premium-payment-label:hover .payment-glow {
       opacity: 1;
       animation: paymentGlowPulse 2s ease-in-out infinite;
   }

   @keyframes paymentGlowPulse {
       0%, 100% { opacity: 0.1; }
       50% { opacity: 0.3; }
   }

   /* Botão de submit premium */
   .premium-submit-btn {
       width: 100%;
       padding: 1.5rem 2rem;
       background: linear-gradient(135deg, var(--color-primary), #a87c6e);
       color: white;
       border: none;
       border-radius: 16px;
       font-size: 1.2rem;
       font-weight: 700;
       cursor: pointer;
       transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
       position: relative;
       overflow: hidden;
       animation: submitBreathing 4s ease-in-out infinite;
   }

   @keyframes submitBreathing {
       0%, 100% { transform: scale(1); }
       50% { transform: scale(1.02); }
   }

   .premium-submit-btn:hover {
       transform: translateY(-3px) scale(1.03);
       box-shadow: 0 12px 35px rgba(141, 91, 76, 0.4);
   }

   .btn-content {
       display: flex;
       align-items: center;
       gap: 1rem;
       position: relative;
       z-index: 2;
   }

   .btn-glow {
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
       border-radius: 16px;
       opacity: 0;
       transition: all 0.3s ease;
       z-index: 1;
   }

   .premium-submit-btn:hover .btn-glow {
       opacity: 1;
       animation: submitGlowPulse 2s ease-in-out infinite;
   }

   @keyframes submitGlowPulse {
       0%, 100% { opacity: 0.3; }
       50% { opacity: 0.8; }
   }

   .btn-particles {
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       overflow: hidden;
       z-index: 1;
   }

   .btn-particles::before,
   .btn-particles::after {
       content: '';
       position: absolute;
       width: 6px;
       height: 6px;
       background: rgba(255, 255, 255, 0.8);
       border-radius: 50%;
       animation: submitParticle 3s ease-in-out infinite;
   }

   .btn-particles::before {
       top: 20%;
       left: 20%;
       animation-delay: 0s;
   }

   .btn-particles::after {
       top: 60%;
       right: 20%;
       animation-delay: 1.5s;
   }

   @keyframes submitParticle {
       0%, 100% { opacity: 0; transform: translateY(0) scale(0); }
       50% { opacity: 1; transform: translateY(-30px) scale(1); }
   }

   /* Elementos de fundo flutuantes */
   .checkout-background-elements {
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       pointer-events: none;
       z-index: 0;
       overflow: hidden;
   }

   .floating-shape {
       position: absolute;
       border-radius: 50%;
       background: linear-gradient(45deg, 
           rgba(212, 163, 115, 0.1) 0%, 
           rgba(255, 215, 0, 0.05) 100%);
       animation: shapeFloat 15s ease-in-out infinite;
   }

   .shape-1 {
       width: 100px;
       height: 100px;
       top: 10%;
       left: 5%;
       animation-delay: 0s;
   }

   .shape-2 {
       width: 150px;
       height: 150px;
       top: 60%;
       right: 10%;
       animation-delay: 5s;
   }

   .shape-3 {
       width: 80px;
       height: 80px;
       bottom: 20%;
       left: 15%;
       animation-delay: 10s;
   }

   @keyframes shapeFloat {
       0%, 100% { 
           transform: translateY(0px) rotate(0deg) scale(1);
           opacity: 0.3;
       }
       50% { 
           transform: translateY(-30px) rotate(180deg) scale(1.1);
           opacity: 0.6;
       }
   }

   /* Responsivo para mobile */
   @media (max-width: 768px) {
       .premium-payment-methods {
           grid-template-columns: 1fr;
       }
       
       .premium-input {
           padding: 0.8rem 1rem;
           font-size: 0.9rem;
       }
       
       .premium-submit-btn {
           padding: 1.2rem 1.5rem;
           font-size: 1rem;
       }
       
       .floating-shape {
           display: none; /* Desabilitar em mobile para performance */
       }
   }

   /* Estrela de destaque piscando */
   .destaque-star {
       position: absolute;
       top: 10px;
       right: 10px;
       font-size: 24px;
       z-index: 10;
       animation: starTwinkle 2s ease-in-out infinite;
       filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
   }

   .produto-destaque {
       position: relative;
       border: 2px solid #FFD700;
       box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
       animation: destaqueGlow 3s ease-in-out infinite;
   }

   @keyframes starTwinkle {
       0%, 100% {
           transform: scale(1) rotate(0deg);
           opacity: 1;
       }
       25% {
           transform: scale(1.2) rotate(90deg);
           opacity: 0.8;
       }
       50% {
           transform: scale(0.9) rotate(180deg);
           opacity: 1;
       }
       75% {
           transform: scale(1.1) rotate(270deg);
           opacity: 0.9;
       }
   }

   @keyframes destaqueGlow {
       0%, 100% {
           box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
       }
       50% {
           box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
       }
   }

   /* Modal de Tipo de Entrega */
   .tipo-entrega-modal {
       max-width: 1000px !important;
       background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
   }

   .modal-header-tipo-entrega {
       text-align: center;
       padding: 2.5rem 2.5rem 1.5rem;
       border-bottom: 2px solid var(--color-border);
       background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
       color: white;
       border-radius: var(--border-radius) var(--border-radius) 0 0;
   }

   .modal-header-tipo-entrega h3 {
       font-size: 2.2rem;
       font-weight: 700;
       margin-bottom: 0.5rem;
       color: white;
       text-shadow: 0 2px 4px rgba(0,0,0,0.2);
   }

   .modal-header-tipo-entrega p {
       font-size: 1.1rem;
       opacity: 0.9;
       margin: 0;
   }

   .tipo-entrega-options {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 2rem;
       padding: 2.5rem;
   }

   .tipo-entrega-option {
       background: white;
       border: 3px solid var(--color-border);
       border-radius: var(--border-radius);
       padding: 2rem;
       text-align: center;
       transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
       position: relative;
       overflow: hidden;
       box-shadow: var(--shadow-sm);
   }

   .tipo-entrega-option::before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       right: 0;
       height: 4px;
       background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
       transform: scaleX(0);
       transition: transform 0.3s ease;
   }

   .tipo-entrega-option:hover {
       border-color: var(--color-secondary);
       transform: translateY(-5px);
       box-shadow: var(--shadow-lg);
   }

   .tipo-entrega-option:hover::before {
       transform: scaleX(1);
   }

   .option-icon {
       font-size: 3rem;
       color: var(--color-primary);
       margin-bottom: 1.5rem;
       transition: transform 0.3s ease;
   }

   .tipo-entrega-option:hover .option-icon {
       transform: scale(1.1);
   }

   .option-content h4 {
       font-size: 1.5rem;
       font-weight: 700;
       color: var(--color-primary);
       margin-bottom: 1rem;
       font-family: var(--font-headings);
   }

   .option-description {
       color: var(--color-text-light);
       margin-bottom: 1.5rem;
       line-height: 1.6;
   }

   .option-benefits {
       list-style: none;
       margin: 0 0 1.5rem 0;
       padding: 0;
       text-align: left;
   }

   .option-benefits li {
       display: flex;
       align-items: center;
       gap: 0.5rem;
       margin-bottom: 0.5rem;
       color: var(--color-text);
       font-size: 0.95rem;
   }

   .option-benefits i {
       color: var(--color-success);
       font-size: 0.9rem;
       min-width: 16px;
   }

   .option-price {
       background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
       padding: 1rem;
       border-radius: var(--border-radius-sm);
       margin-bottom: 1.5rem;
       border: 1px solid var(--color-border);
   }

   .price-label {
       display: block;
       font-size: 0.9rem;
       color: var(--color-text-light);
       margin-bottom: 0.3rem;
   }

   .price-value {
       font-size: 1.2rem;
       font-weight: 700;
       color: var(--color-success);
   }

   .btn-choose-option {
       background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
       color: white;
       border: none;
       padding: 1rem 2rem;
       border-radius: 50px;
       font-size: 1rem;
       font-weight: 600;
       cursor: pointer;
       transition: all 0.3s ease;
       width: 100%;
       position: relative;
       overflow: hidden;
       box-shadow: var(--shadow-md);
   }

   .btn-choose-option::before {
       content: '';
       position: absolute;
       top: 0;
       left: -100%;
       width: 100%;
       height: 100%;
       background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
       transition: left 0.5s ease;
   }

   .btn-choose-option:hover::before {
       left: 100%;
   }

   .btn-choose-option:hover {
       transform: translateY(-2px);
       box-shadow: var(--shadow-lg);
   }

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

   .tipo-entrega-footer {
       padding: 1.5rem 2.5rem 2.5rem;
       text-align: center;
       border-top: 1px solid var(--color-border);
       background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
   }

   .info-text {
       color: var(--color-text-light);
       font-size: 0.95rem;
       margin: 0;
       display: flex;
       align-items: center;
       justify-content: center;
       gap: 0.5rem;
   }

   .info-text i {
       color: var(--color-primary);
   }

   .info-text strong {
       color: var(--color-primary);
   }

   /* Responsividade para o modal de tipo de entrega */
   @media (max-width: 768px) {
       .tipo-entrega-options {
           grid-template-columns: 1fr;
           gap: 1.5rem;
           padding: 1.5rem;
       }

       .modal-header-tipo-entrega {
           padding: 2rem 1.5rem 1rem;
       }

       .modal-header-tipo-entrega h3 {
           font-size: 1.8rem;
       }

       .tipo-entrega-option {
           padding: 1.5rem;
       }

       .option-icon {
           font-size: 2.5rem;
       }

       .tipo-entrega-footer {
           padding: 1rem 1.5rem 1.5rem;
       }
   }

   .modal-body {
       /* Estilos existentes do modal-body */
   }
   
   /* ========================================
      ESTILOS PARA CAMPO "COLHER"
      ======================================== */
   
   .colher-options {
       display: flex;
       flex-direction: column;
       gap: 1rem;
       margin-top: 0.5rem;
   }
   
   .colher-option {
       display: flex;
       align-items: center;
       gap: 1rem;
       padding: 1rem;
       border: 2px solid var(--color-border);
       border-radius: var(--border-radius-sm);
       background: var(--color-surface);
       cursor: pointer;
       transition: var(--transition-smooth);
       position: relative;
       overflow: hidden;
   }
   
   .colher-option::before {
       content: '';
       position: absolute;
       top: 0;
       left: -100%;
       width: 100%;
       height: 100%;
       background: linear-gradient(90deg, transparent, rgba(141, 91, 76, 0.1), transparent);
       transition: left 0.5s ease;
   }
   
   .colher-option:hover::before {
       left: 100%;
   }
   
   .colher-option:hover {
       border-color: var(--color-primary);
       transform: translateY(-2px);
       box-shadow: var(--shadow-md);
   }
   
   .colher-option:active {
       transform: translateY(0);
   }
   
   .colher-radio {
       width: 20px;
       height: 20px;
       accent-color: var(--color-primary);
       cursor: pointer;
   }
   
   .colher-text {
       display: flex;
       align-items: center;
       gap: 0.75rem;
       font-weight: 500;
       color: var(--color-text);
       flex: 1;
   }
   
   .colher-text i {
       font-size: 1.2rem;
       transition: var(--transition-fast);
   }
   
   .colher-option:has(.colher-radio:checked) {
       border-color: var(--color-primary);
       background: rgba(141, 91, 76, 0.05);
       box-shadow: var(--shadow-sm);
   }
   
   .colher-option:has(.colher-radio:checked) .colher-text i {
       color: var(--color-primary);
       transform: scale(1.1);
   }
   
   .colher-option:has(.colher-radio:checked)::after {
       content: '';
       position: absolute;
       top: 0;
       right: 0;
       width: 0;
       height: 0;
       border-style: solid;
       border-width: 0 20px 20px 0;
       border-color: transparent var(--color-primary) transparent transparent;
   }
   
   /* Responsividade para campo colher */
   @media (max-width: 768px) {
       .colher-options {
           gap: 0.75rem;
       }
       
       .colher-option {
           padding: 0.75rem;
       }
       
       .colher-text {
           font-size: 0.9rem;
           gap: 0.5rem;
       }
       
       .colher-radio {
           width: 18px;
           height: 18px;
       }
   }
</rewritten_file>
/* ================================
   TEMA BLACK FRIDAY
   ================================ */

.black-friday-active {
    --color-primary: #000000;
    --color-secondary: #FF0000;
    --color-accent: #FFD700;
}

.black-friday-active body {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

.black-friday-product {
    position: relative;
}

.black-friday-product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #FF0000, #FFD700);
    opacity: 0.1;
    z-index: -1;
}

.black-friday-badge {
    background: linear-gradient(135deg, #FF0000, #FF6B00);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 0.5rem;
    animation: pulse-glow 2s ease-in-out infinite;
}

.black-friday-ribbon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #FF0000, #FF6B00);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    animation: pulse-glow 2s ease-in-out infinite;
}

.product-price-container {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.price-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.product-price-original {
    font-size: 0.875rem;
    color: #999;
    text-decoration: line-through;
}

.black-friday-active .product-card {
    border: 2px solid #FF0000;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}

.black-friday-active .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 0, 0, 0.5);
}

.black-friday-active .header {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-bottom: 3px solid #FF0000;
}

.black-friday-active .hero-title {
    background: linear-gradient(135deg, #FF0000, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.6);
    }
}

/* ================================
   ESTILOS DE NATAL
   ================================ */

/* Botão flutuante de Natal */
.natal-floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    cursor: pointer;
    animation: slideInFromRight 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: drop-shadow(0 4px 12px rgba(196, 30, 58, 0.4));
}

.natal-floating-close {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #c41e3a;
    border: 2px solid #c41e3a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.natal-floating-close:hover {
    background: #c41e3a;
    color: white;
    transform: scale(1.1);
}

.natal-floating-content {
    background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.5);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
    white-space: nowrap;
}

.natal-floating-btn:hover .natal-floating-content {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(196, 30, 58, 0.7);
    background: linear-gradient(135deg, #d42e4a 0%, #9b1010 100%);
}

.natal-floating-icon {
    font-size: 1.5rem;
    animation: natalSpin 3s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.natal-floating-text {
    font-size: 1rem;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.natal-floating-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    animation: shine 3s infinite;
    pointer-events: none;
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(150px);
        opacity: 0;
    }
    60% {
        transform: translateX(-10px);
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    50% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
    100% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
}

@media (max-width: 768px) {
    .natal-floating-btn {
        bottom: 15px;
        right: 15px;
    }
    
    .natal-floating-content {
        padding: 0.85rem 1.2rem;
        font-size: 0.9rem;
        gap: 0.6rem;
    }
    
    .natal-floating-icon {
        font-size: 1.3rem;
    }
    
    .natal-floating-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .natal-floating-content {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .natal-floating-text {
        font-size: 0.85rem;
    }
    
    .natal-floating-close {
        width: 20px;
        height: 20px;
        font-size: 0.65rem;
        top: -6px;
        right: -6px;
    }
}

/* Modal de Natal */
.natal-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.natal-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.natal-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    z-index: 10001;
}

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

.natal-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #333;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    z-index: 10002;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.natal-modal-close:hover {
    background: #c41e3a;
    color: white;
    transform: rotate(90deg);
}

.natal-modal-content .natal-form-container {
    padding: 2rem;
    display: block !important;
}

@media (max-width: 768px) {
    .natal-modal-content {
        max-width: 95%;
        max-height: 95vh;
        border-radius: 15px;
    }
    
    .natal-modal-content .natal-form-container {
        padding: 1.5rem;
    }
    
    .natal-modal-close {
        top: 10px;
        right: 10px;
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}

.natal-btn-icon {
    font-size: 1.2rem;
    animation: natalSpin 3s linear infinite;
}

@keyframes natalPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
    }
    50% {
        box-shadow: 0 6px 25px rgba(196, 30, 58, 0.7), 0 0 30px rgba(255, 215, 0, 0.3);
    }
}

@keyframes natalSpin {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(10deg); }
    100% { transform: rotate(0deg); }
}

.natal-section {
    position: relative;
    padding: 6rem 2rem 4rem;
    background: linear-gradient(180deg, #fff8f8 0%, #ffe8e8 30%, #fff5f5 60%, #ffffff 100%);
    overflow: hidden;
    min-height: 100vh;
    width: 100%;
}

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

.natal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(196, 30, 58, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 0, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.natal-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.snowflakes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    color: #c41e3a;
    font-size: 2rem;
    animation: snowfall 10s linear infinite;
    opacity: 0.6;
}

.snowflake:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 8s; }
.snowflake:nth-child(2) { left: 30%; animation-delay: 2s; animation-duration: 10s; }
.snowflake:nth-child(3) { left: 50%; animation-delay: 4s; animation-duration: 12s; }
.snowflake:nth-child(4) { left: 70%; animation-delay: 1s; animation-duration: 9s; }
.snowflake:nth-child(5) { left: 90%; animation-delay: 3s; animation-duration: 11s; }
.snowflake:nth-child(6) { left: 20%; animation-delay: 5s; animation-duration: 13s; }

@keyframes snowfall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

.natal-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
    padding: 2rem 0;
}

.natal-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #c41e3a 0%, #8b0000 50%, #c41e3a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    letter-spacing: -0.02em;
}

.natal-icon {
    font-size: clamp(2rem, 4vw, 3rem);
    animation: natalSpin 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(196, 30, 58, 0.3));
}

.natal-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #8b0000;
    font-weight: 600;
    margin-top: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.natal-info-box {
    background: white;
    border: 3px solid #c41e3a;
    border-radius: 20px;
    padding: 2rem;
    margin: 0 auto 4rem;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    box-shadow: 0 8px 30px rgba(196, 30, 58, 0.25);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.natal-info-box::before {
    content: '✨';
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 2rem;
    background: white;
    padding: 0 10px;
}

.natal-info-box::after {
    content: '✨';
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 2rem;
    background: white;
    padding: 0 10px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #8b0000;
    font-weight: 500;
}

.info-item i {
    color: #c41e3a;
    font-size: 1.2rem;
}

.natal-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
    padding: 0 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
    .natal-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 2rem;
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .natal-products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }
}

.natal-product-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(196, 30, 58, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid rgba(196, 30, 58, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.natal-product-card::before {
    content: '🎁';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.natal-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.3);
    border-color: #c41e3a;
}

.natal-product-card:hover::before {
    opacity: 1;
    animation: natalSpin 2s ease-in-out infinite;
}

.natal-product-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background: linear-gradient(135deg, #ffe5e5 0%, #fff 100%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-bottom: 3px solid rgba(196, 30, 58, 0.1);
}

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

.natal-product-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(to bottom, white 0%, #fffaf5 100%);
}

.natal-product-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #c41e3a;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.natal-product-desc {
    color: #555;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}

.natal-product-size {
    color: #8b0000;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.natal-product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #c41e3a;
    margin-top: auto;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(196, 30, 58, 0.2);
}

.natal-quantity-control {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
    padding: 0.5rem;
    background: #f8f8f8;
    border-radius: 12px;
    visibility: visible !important;
    opacity: 1 !important;
}

.natal-qty-btn {
    background: linear-gradient(135deg, #c41e3a, #8b0000);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.natal-qty-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.4);
}

.natal-qty-btn:active {
    transform: scale(0.95);
}

.natal-qty-input {
    width: 70px;
    height: 35px;
    text-align: center;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    background: white;
    transition: all 0.3s ease;
    -moz-appearance: textfield;
    appearance: textfield;
}

.natal-qty-input::-webkit-inner-spin-button,
.natal-qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.natal-qty-input:focus {
    outline: none;
    border-color: #c41e3a;
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

.natal-qty-input::-webkit-inner-spin-button,
.natal-qty-input::-webkit-outer-spin-button {
    opacity: 1;
    cursor: pointer;
}

.natal-add-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.natal-add-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.5);
    background: linear-gradient(135deg, #d42e4a 0%, #9b1010 100%);
}

.natal-form-container {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(196, 30, 58, 0.25);
    border: 3px solid #c41e3a;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto 4rem;
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .natal-form-container {
        padding: 2rem 1.5rem;
        margin: 0 auto 2rem;
    }
}

.form-title {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.02em;
}

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

.natal-form-container label {
    display: block;
    margin-bottom: 0.5rem;
    color: #8b0000;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.natal-form-container input,
.natal-form-container textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
    font-family: inherit;
}

.natal-form-container input:focus,
.natal-form-container textarea:focus {
    outline: none;
    border-color: #c41e3a;
    box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.15);
    background: white;
}

.radio-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 150px;
}

.radio-label:hover {
    border-color: #c41e3a;
    background: #fff5f5;
}

.radio-label input[type="radio"] {
    width: auto;
    margin: 0;
}

.radio-label input[type="radio"]:checked + span {
    color: #c41e3a;
    font-weight: 600;
}

.natal-resumo {
    background: #fff5f5;
    border: 2px solid #c41e3a;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.natal-resumo::before {
    content: '🎄';
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 1.5rem;
    background: white;
    padding: 0 8px;
}

.natal-resumo h4 {
    color: #c41e3a;
    margin-bottom: 1rem;
}

#natalResumoItens {
    margin-bottom: 1rem;
}

.resumo-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #ffe5e5;
}

.natal-total {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #c41e3a;
}

.natal-total strong {
    display: block;
    font-size: 1.3rem;
    color: #c41e3a;
    margin-bottom: 0.5rem;
}

.natal-total small {
    color: #8b0000;
    font-size: 0.9rem;
}

.natal-submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.natal-submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.natal-submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.natal-submit-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

.natal-submit-btn:active {
    transform: scale(0.98);
}

@media (max-width: 768px) {
    .natal-title {
        font-size: 2rem;
    }
    
    .natal-icon {
        font-size: 1.8rem;
    }
    
    .natal-products-grid {
        grid-template-columns: 1fr;
    }
    
    .radio-group {
        flex-direction: column;
    }
    
    .radio-label {
        width: 100%;
    }
}
