/*
Theme Name: Primícia Supplements
Description: Tema WooCommerce focado em vendas de suplementos com técnicas de persuasão e conversão
Version: 1.0.0
Author: DRDIM TECNOLOGIA
Author URI: https://drdim.com.br
Text Domain: primicia
Domain Path: /languages/
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
Tags: e-commerce, woocommerce, supplements, landing-page, conversion-focused
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

.page-content {
    max-width: 960px;
    margin: 60px auto;
    padding: 40px 30px;
    background: linear-gradient(to bottom, #ffffff, #f7f9fb);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    font-family: 'Segoe UI', sans-serif;
    color: #222;
    line-height: 1.8;
    font-size: 1.1rem;
}

.page-content h1,
.page-content h2,
.page-content h3 {
    color: #111;
    margin-bottom: 0.6em;
    font-weight: 700;
}

.page-content h1 {
    font-size: 2.4rem;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0.3em;
    margin-bottom: 1.2em;
}

.page-content h2 {
    font-size: 2rem;
    margin-top: 2em;
}

.page-content h3 {
    font-size: 1rem;
    margin-top: 1.8em;
}

.page-content p {
    margin-bottom: 1.5em;
    color: #444;
}

.page-content ul,
.page-content ol {
    padding-left: 1.8em;
    margin-bottom: 1.5em;
}

.page-content li {
    margin-bottom: 0.5em;
}

.page-content a {
    color: #c92027;
    text-decoration: underline;
    transition: all 0.2s ease;
}

.page-content a:hover {
    color: #a30000;
    text-decoration: none;
}

.page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2em 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.page-content blockquote {
    background: #f2f2f2;
    border-left: 4px solid #c92027;
    padding: 1em 1.5em;
    font-style: italic;
    color: #555;
    margin: 2em 0;
    border-radius: 6px;
}

.page-content strong {
    color: #111;
    font-weight: 600;
}

.page-content em {
    color: #666;
    font-style: italic;
}

@media (max-width: 768px) {
    .page-content {
        padding: 25px 20px;
    }

    .page-content h1 {
        font-size: 2rem;
    }

    .page-content h2 {
        font-size: 1.5rem;
    }
}

/* Benefits Section */
.benefits-section {
    padding: 80px 20px;
    background: #fff;
}

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

.benefit-item {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    background: linear-gradient(145deg, #F8FAFC, #F1F5F9);
    transition: all 0.3s ease;
    border: 1px solid rgba(107, 70, 193, 0.1);
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(107, 70, 193, 0.15);
    background: linear-gradient(145deg, #fff, #F8FAFC);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-purple);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(107, 70, 193, 0.3);
}

.benefit-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Social Proof */
.social-proof {
    padding: 80px 20px;
    background: var(--gradient-purple);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.social-proof::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.2) 0%, rgba(76, 29, 149, 0.8) 100%);
}

.social-proof h2 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.testimonial {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stars {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.testimonial cite {
    font-weight: 700;
    color: var(--text-dark);
    font-style: normal;
}

/* Final CTA */
.final-cta {
    padding: 80px 20px;
    background: var(--gradient-purple-alt);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
}

.final-cta h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta-button {
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 20px 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}


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

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

/* Sobrescrever qualquer max-width limitante do body */
body {
    max-width: none !important;
    width: 100% !important;
}

:root {
    /* Nova Paleta Roxa/Violeta */
    --primary-purple: #6B46C1;      /* Roxo principal */
    --secondary-purple: #8B5CF6;    /* Roxo claro */
    --dark-purple: #4C1D95;         /* Roxo escuro */
    --light-purple: #A78BFA;        /* Roxo bem claro */
    --gradient-purple: linear-gradient(135deg, #6B46C1 0%, #8B5CF6 100%);
    --gradient-purple-alt: linear-gradient(45deg, #4C1D95, #6B46C1);
    
    /* Cores complementares */
    --accent-color: #F59E0B;        /* Dourado para CTAs */
    --success-color: #10B981;       /* Verde para sucesso */
    --warning-color: #F59E0B;       /* Amarelo para avisos */
    --error-color: #EF4444;         /* Vermelho para erros */
    
    /* Neutros */
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --bg-light: #F9FAFB;
    --bg-dark: #111827;
    --white: #FFFFFF;
    --black: #000000;
}

body {
    font-family: 'Roboto', Arial, sans-serif !important;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--gradient-purple);
}

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

/* Utilitários */
.screen-reader-text {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Header */

.site-header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(107, 70, 193, 0.15);
    width: 100%;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(107, 70, 193, 0.1);
}

.top-bar {
    background: var(--dark-purple);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-header {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    color: var(--text-dark);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 70px;
    color: var(--text-dark);
}
/* Site Branding/Logo */
.site-branding {
    display: flex;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
}

.site-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-logo img {
    max-height: 50px;
    width: auto;
    height: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0px 0px 1px white);
}

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

/* Header Navigation */
.header-nav {
    display: flex;
    align-items: center;
}

.header-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-nav li {
    margin: 0;
}

.header-nav a {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.header-nav a:hover {
    color: white;
    background: var(--primary-purple);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.3);
}

.header-nav a.current-menu-item,
.header-nav a.current_page_item {
    color: white;
    background: var(--accent-color);
    box-shadow: 0 3px 10px rgba(245, 158, 11, 0.3);
}

.site-title a {
    color: #fff;
    text-decoration: none;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.main-navigation .nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-navigation a {
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.main-navigation a:hover {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-toggle,
.cart-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    cursor: pointer;
    padding: 12px;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
}

.search-toggle:hover,
.cart-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    font-size: 12px;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Menu Mobile */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

/* Hero Section */
.hero-section {
  background: var(--gradient-purple);
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Efeito de espelho base */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(135deg, 
      rgba(255, 255, 255, 0.1) 0%,
      rgba(196, 122, 255, 0.2) 25%,
      rgba(168, 85, 247, 0.15) 50%,
      rgba(139, 69, 255, 0.1) 75%,
      transparent 100%
    );
  animation: mirrorReflection 4s ease-in-out infinite;
  opacity: 0.6;
  backdrop-filter: blur(1px);
}

/* Feixe de luz principal */
.hero-section::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 150%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 40%,
    rgba(255, 255, 255, 0.3) 45%,
    rgba(196, 122, 255, 0.4) 50%,
    rgba(255, 255, 255, 0.3) 55%,
    rgba(255, 255, 255, 0.1) 60%,
    transparent 70%
  );
  transform: translateX(100%) skewX(-15deg);
  animation: lightSweep 3s ease-in-out infinite;
  opacity: 0.8;
  mix-blend-mode: overlay;
}

/* Reflexos secundários */
.hero-light-reflections {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.hero-light-reflections::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -100px;
  width: 300px;
  height: 60px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2) 20%,
    rgba(196, 122, 255, 0.3) 50%,
    rgba(255, 255, 255, 0.2) 80%,
    transparent
  );
  border-radius: 50px;
  transform: skewX(-20deg);
  animation: lightBar1 2.5s ease-in-out infinite;
  filter: blur(2px);
}

.hero-light-reflections::after {
  content: '';
  position: absolute;
  top: 60%;
  right: -150px;
  width: 200px;
  height: 40px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15) 30%,
    rgba(168, 85, 247, 0.25) 50%,
    rgba(255, 255, 255, 0.15) 70%,
    transparent
  );
  border-radius: 30px;
  transform: skewX(-25deg);
  animation: lightBar2 3.2s ease-in-out infinite;
  filter: blur(1px);
}

/* Pontos de luz brilhantes */
.hero-sparkles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-sparkles .sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(196, 122, 255, 0.6) 50%,
    transparent 100%
  );
  border-radius: 50%;
  opacity: 0;
  animation: sparkleFlash 2s ease-in-out infinite;
  box-shadow: 
    0 0 10px rgba(255, 255, 255, 0.5),
    0 0 20px rgba(196, 122, 255, 0.3);
}

.hero-sparkles .sparkle:nth-child(1) {
  top: 25%;
  right: 15%;
  animation-delay: 0.2s;
}

.hero-sparkles .sparkle:nth-child(2) {
  top: 45%;
  right: 35%;
  animation-delay: 0.6s;
  animation-duration: 2.5s;
}

.hero-sparkles .sparkle:nth-child(3) {
  top: 65%;
  right: 20%;
  animation-delay: 1.1s;
  animation-duration: 1.8s;
}

.hero-sparkles .sparkle:nth-child(4) {
  top: 35%;
  right: 50%;
  animation-delay: 1.6s;
  animation-duration: 2.2s;
}

/* Efeito de cristal/prisma */
.hero-prism-effect {
  position: absolute;
  top: 30%;
  right: -50px;
  width: 100px;
  height: 100px;
  background: conic-gradient(
    from 45deg,
    rgba(255, 255, 255, 0.1),
    rgba(196, 122, 255, 0.2),
    rgba(168, 85, 247, 0.15),
    rgba(139, 69, 255, 0.1),
    rgba(255, 255, 255, 0.1)
  );
  border-radius: 50%;
  animation: prismRotate 4s linear infinite;
  opacity: 0.7;
  filter: blur(1px);
  mix-blend-mode: screen;
}

/* Animações */
@keyframes lightSweep {
  0% {
    transform: translateX(100%) skewX(-15deg);
    opacity: 0;
  }
  20% {
    opacity: 0.8;
  }
  100% {
    transform: translateX(-150%) skewX(-15deg);
    opacity: 0;
  }
}

@keyframes mirrorReflection {
  0%, 100% {
    transform: translateX(0%) scaleX(1);
    opacity: 0.6;
  }
  50% {
    transform: translateX(-5%) scaleX(1.02);
    opacity: 0.8;
  }
}

@keyframes lightBar1 {
  0% {
    transform: translateX(0) skewX(-20deg);
    opacity: 0;
  }
  30% {
    opacity: 0.7;
  }
  100% {
    transform: translateX(-500px) skewX(-20deg);
    opacity: 0;
  }
}

@keyframes lightBar2 {
  0% {
    transform: translateX(0) skewX(-25deg);
    opacity: 0;
  }
  25% {
    opacity: 0.5;
  }
  100% {
    transform: translateX(-400px) skewX(-25deg);
    opacity: 0;
  }
}

@keyframes sparkleFlash {
  0%, 70%, 100% {
    opacity: 0;
    transform: scale(1);
  }
  35% {
    opacity: 1;
    transform: scale(1.5);
  }
}

@keyframes prismRotate {
  0% {
    transform: rotate(0deg) translateX(0);
    opacity: 0.3;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    transform: rotate(360deg) translateX(-20px);
    opacity: 0.3;
  }
}

/* Efeito glassmorphism sutil */
.hero-glass-overlay {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 200px;
  height: 300px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  animation: glassFloat 6s ease-in-out infinite;
  opacity: 0.4;
}

@keyframes glassFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

/* Responsividade */
@media (max-width: 768px) {
  .hero-section::after {
    width: 120%;
    height: 150%;
  }
  
  .carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
    flex-direction: column;
  }
  
  .hero-light-reflections::before {
    width: 200px;
    height: 40px;
  }
  
  .hero-light-reflections::after {
    width: 150px;
    height: 30px;
  }
  
  .hero-glass-overlay {
    width: 150px;
    height: 200px;
  }
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    flex: 1;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    background: linear-gradient(45deg, #fff, #F3E8FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #E5E7EB;
    margin-bottom: 30px;
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.hero-cta-btn {
    background: var(--gradient-purple-alt);
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(107, 70, 193, 0.4);
    border: 2px solid var(--accent-color);
}

.hero-cta-btn:hover {
    /* transform: translateY(0px); */
    box-shadow: 0 12px 35px rgba(107, 70, 193, 0.6);
    background: var(--accent-color);
    border-color: var(--accent-color);
}
.fade-slider {
  position: relative;
  width: 100%;
  max-width: 500px; /* ajuste conforme necessário */
  height: auto;
}

.fade-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  animation: fadeCycle 8s infinite;
  transition: opacity 1s ease-in-out;
}

.fade-slider .slide-2 {
  animation-delay: 4s;
}

@keyframes fadeCycle {
  0% { opacity: 0; }
  10% { opacity: 1; }
  40% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 0; }
}

.hero-image {
    flex: 1;
    text-align: center;
    max-width: 500px;
    position: relative;
    z-index: 1;
}


.athlete-image {
  max-width: 85%;
  height: auto;
  filter: brightness(1.1) contrast(1.2) drop-shadow(0 20px 60px rgba(0,0,0,0.3));
  border-radius: 20px;
}


/* Countdown Section */
.countdown-section {
    background: linear-gradient(45deg, #ee49ef, transparent);
    padding: 30px 20px;
    position: relative;
    margin-top: -67px;
    z-index: 2;
}

.countdown-content {
    max-width: 300px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    flex-direction: row;
}

.countdown-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.countdown-display {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Roboto', monospace;
}

.time-unit {
    text-align: center;
    background: rgba(139, 92, 246, 0.3);
    padding: 10px 15px;
    border-radius: 12px;
    min-width: 70px;
    border: 1px solid var(--light-purple);
}

.time-unit span {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    color: var(--accent-color);
}

.time-unit label {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
    color: #E5E7EB;
}

.time-separator {
    font-size: 2rem;
    font-weight: 900;
    margin: 0 5px;
    color: var(--accent-color);
}

.countdown-text {
    font-size: 1rem;
    font-weight: 500;
    margin-top: 10px;
    opacity: 0.9;
    color: #E5E7EB;
}

/* Carrossel de Produtos */
.products-carousel-container {
    flex: 1;
    margin-left: 10%;
    max-width: 700px;
}

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

.carousel-header h4 {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

.carousel-controls {
    display: flex;
    gap: 10px;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--accent-color);
    color: var(--text-dark);
    transform: scale(1.1);
}

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

.products-carousel {
    overflow: hidden;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    backdrop-filter: blur(10px);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.carousel-product-card {
    flex: 0 0 200px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.carousel-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(107, 70, 193, 0.2);
}

.carousel-product-image {
    position: relative;
    align-items: center;
    display: flex;
    align-content: center;
    height: 250px;
    overflow: hidden;
    background: var(--gradient-purple);
    justify-content: space-around;
}

.carousel-product-image img {
    width: 65%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.carousel-discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
}

.carousel-product-info {
    text-align: center;
}

.carousel-product-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
    height: 2.6em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.carousel-product-price {
    font-size: 1rem;
    font-weight: 900;
    color: var(--primary-purple);
    margin-bottom: 12px;
}

.carousel-buy-btn {
    background: var(--gradient-purple);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
	margin-bottom: 20px;
}

.carousel-buy-btn:hover {
    background: var(--accent-color);
    color: var(--text-dark);
    transform: translateY(-1px);
}

/* Responsividade do Countdown + Carrossel */
@media (max-width: 1024px) {
    .countdown-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .countdown-info {
        min-width: auto;
        text-align: center;
    }
    
    .products-carousel-container {
        max-width: 100%;
    }
    
    .carousel-product-card {
        flex: 0 0 180px;
    }
}

@media (max-width: 768px) {
    .countdown-section {
        padding: 30px 15px;
		margin-top: 0px;
    }
    
    .countdown-display {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .time-unit {
        min-width: 60px;
        padding: 8px 12px;
    }
    
    .time-unit span {
        font-size: 1.5rem;
    }
    
    .time-separator {
        font-size: 1.5rem;
    }
    
    .carousel-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .carousel-product-card {
        flex: 0 0 160px;
    }
    
    .carousel-product-image {
        height: 250px;
    }
    
    .carousel-product-info {
        padding: 12px;
    }
    
    .carousel-product-title {
        font-size: 0.8rem;
        height: 2.4em;
    }
    
    .carousel-product-price {
        font-size: 0.9rem;
    }
    
    .carousel-buy-btn {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .carousel-product-card {
        flex: 0 0 200px;
    }
    
    .carousel-product-image {
        height: 100px;
    }
    
    .carousel-product-info {
        padding: 10px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .time-unit {
        min-width: 50px;
        padding: 6px 10px;
    }
    
    .time-unit span {
        font-size: 1.2rem;
    }
    
    .time-separator {
        font-size: 1.2rem;
    }
}

/* Produtos */
.featured-products {
    padding: 80px 20px;
    background: var(--bg-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.products-grid .product img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.products-grid .product .woocommerce-LoopProduct-link {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.products-grid .product .woocommerce-LoopProduct-link .attachment-woocommerce_thumbnail {
    width: 100%;
    aspect-ratio: 1 / 1; /* mantém imagem quadrada */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    overflow: hidden;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(107, 70, 193, 0.15);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(107, 70, 193, 0.25);
    border-color: var(--light-purple);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: var(--gradient-purple);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    mix-blend-mode: multiply;
}

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

.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.product-info {
    padding: 25px;
    text-align: center;
}

.product-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.product-category {
    color: var(--secondary-purple);
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--primary-purple);
    margin-bottom: 20px;
}

.product-buy-btn {
    background: var(--gradient-purple);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    box-shadow: 0 6px 20px rgba(107, 70, 193, 0.3);
}

.product-buy-btn:hover {
    background: var(--gradient-purple-alt);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.4);
}

/* Free Shipping Banner */
.free-shipping-banner {
    background: var(--gradient-purple-alt);
    padding: 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.free-shipping-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.free-shipping-content h2 {
    color: white;
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta-button {
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 20px 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    border: 2px solid var(--accent-color);
}

.cta-button:hover {
    background: #fff;
    color: var(--primary-purple);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.6);
    border-color: #fff;
}

/* Footer */
.site-footer {
    background: var(--bg-dark);
    color: #fff;
}

.footer-main {
    padding: 60px 20px 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column h3,
.footer-column h4 {
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-column p {
    color: #D1D5DB;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--light-purple);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--primary-purple);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.3);
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.contact-info {
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 15px;
}

.contact-item strong {
    color: var(--light-purple);
    display: block;
    margin-bottom: 5px;
}

.trust-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    background: var(--primary-purple);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(107, 70, 193, 0.3);
}

.footer-payment {
    background: rgba(17, 24, 39, 0.8);
    padding: 30px 20px;
    border-top: 1px solid var(--primary-purple);
}

.payment-methods h4 {
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-icon {
    background: var(--primary-purple);
    color: #fff;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.3);
    transition: all 0.3s ease;
}

.payment-icon:hover {
    background: var(--accent-color);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-top: 1px solid rgba(107, 70, 193, 0.3);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    color: #9CA3AF;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.footer-legal {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--light-purple);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    background: #25d366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

/* Popup de Urgência */
.urgency-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 39, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.urgency-popup.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: white;
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    max-width: 400px;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 60px rgba(107, 70, 193, 0.3);
    border: 2px solid var(--light-purple);
}

.urgency-popup.show .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.popup-close:hover {
    color: var(--primary-purple);
}

.popup-content h3 {
    color: var(--primary-purple);
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.popup-content p {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.popup-countdown {
    background: var(--gradient-purple);
    color: white;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(107, 70, 193, 0.3);
}

.countdown-time {
    font-size: 1.5rem;
    font-weight: 900;
    font-family: monospace;
}

.popup-cta {
    background: var(--gradient-purple);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 25px;
    display: inline-block;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(107, 70, 193, 0.3);
}

.popup-cta:hover {
    background: var(--accent-color);
    color: var(--text-dark);
    transform: translateY(-2px);
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 15px;
        padding: 0 15px;
        min-height: 60px;
    }
    
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--gradient-purple);
        padding: 20px;
        border-radius: 0 0 20px 20px;
        box-shadow: 0 10px 30px rgba(107, 70, 193, 0.3);
    }
    
    .main-navigation.toggled {
        display: block;
    }
    
    .main-navigation .nav-menu {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-navigation a {
        padding: 12px 20px;
        border-radius: 25px;
        background: rgba(255, 255, 255, 0.1);
        text-align: center;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    

@media (max-width: 480px) {
    /* Header mobile optimizations */
    .site-header {
        padding: 5px 0;
        min-height: 50px;
    }
    
    .header-content {
        padding: 8px 15px;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .header-logo img {
        max-height: 30px;
    }
    
    .header-nav {
        order: 3;
        margin-top: 5px;
    }
    
    .header-nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .header-nav a {
        font-size: 0.9rem;
        padding: 5px 10px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .social-proof h2 {
        font-size: 2rem;
    }
    
    .countdown-display {
        gap: 5px;
    }
    
    .time-unit {
        min-width: 50px;
        padding: 6px 10px;
    }
    
    .time-unit span {
        font-size: 1.2rem;
    }
    
    .time-separator {
        font-size: 1.5rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
}

/* Animações com a nova paleta */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(107, 70, 193, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(107, 70, 193, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(107, 70, 193, 0.4);
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 20px rgba(107, 70, 193, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
    }
    100% {
        box-shadow: 0 0 20px rgba(107, 70, 193, 0.3);
    }
}

.hero-cta-btn {
    animation: pulse 3s infinite;
}

.product-card {
    animation: fadeInUp 0.6s ease forwards;
}

.benefit-item {
    animation: fadeInUp 0.6s ease forwards;
}

.testimonial {
    animation: fadeInUp 0.6s ease forwards;
}

/* Estados de hover melhorados */
.product-card:hover {
    animation: none;
}

.hero-cta-btn:hover {
    animation: glow 2s infinite;
}

/* Otimizações de performance */
.athlete-image,
.product-image img {
    will-change: transform;
}

.product-card,
.benefit-item {
    will-change: transform;
}

/* Acessibilidade */
:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-purple);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 4px;
}

.skip-link:focus {
    top: 6px;
}

/* Menu Mobile */
.menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Novos elementos da paleta roxa */
.gradient-text {
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.purple-shadow {
    box-shadow: 0 10px 40px rgba(107, 70, 193, 0.3);
}

.purple-border {
    border: 2px solid var(--light-purple);
}

.purple-glow {
    animation: glow 3s infinite;
}

/* Customizações específicas para a paleta */
.woocommerce .star-rating {
    color: var(--accent-color);
}

.woocommerce .price {
    color: var(--primary-purple);
    font-weight: 900;
}

.woocommerce .onsale {
    background: var(--accent-color);
    color: var(--text-dark);
    border-radius: 50%;
    font-weight: 900;
}

.woocommerce .button {
    background: var(--gradient-purple);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.woocommerce .button:hover {
    background: var(--gradient-purple-alt);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 70, 193, 0.3);
}

.woocommerce .added_to_cart {
    background: var(--success-color);
}

/* Elementos adicionais para consistência visual */
.highlight-purple {
    background: var(--light-purple);
    color: var(--text-dark);
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
}

.accent-border {
    border-left: 4px solid var(--accent-color);
    padding-left: 15px;
}

.purple-gradient-bg {
    background: var(--gradient-purple);
}

.dark-purple-bg {
    background: var(--dark-purple);
}
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .countdown-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .countdown-display {
        justify-content: center;
    }
    
    .time-unit {
        min-width: 60px;
        padding: 8px 12px;
    }
    
    .time-unit span {
        font-size: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .payment-icons {
        gap: 15px;
    }
    
    .payment-icon {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn span {
        display: none;
    }
    
    .popup-content {
        margin: 20px;
        padding: 30px;
    }
}
/* ========================================= */
/* ===== ESTILOS DO SLIDER HERO IMAGE ===== */
/* ========================================= */

/* O container precisa de position: relative para que as imagens absolutas fiquem dentro dele. */
.hero-image {
    position: relative;
    width: 500px;  /* Ajuste a largura conforme o design do seu site */
    height: 600px; /* Ajuste a altura conforme o design do seu site */
}

/* As imagens são empilhadas uma sobre a outra no mesmo lugar. */
.hero-image .athlete-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    
    /* Por padrão, todas as imagens ficam invisíveis. */
    opacity: 0; 
    
    /* Define a duração e o tipo da animação de fade. */
    transition: opacity 1s ease-in-out; 
}

/* A imagem que tiver a classe .active se tornará visível. */
.hero-image .athlete-image.active {
    opacity: 1;
	width: 100%;
  	height: auto;
  	max-width: 100%;
  	object-fit: contain; /* ou 'cover', se quiser preencher o container */
  	display: block;
	top: 105px;
}

/* ========================================= */
/* ===== ESTILOS DOS BOTÕES MELHORADOS ==== */
/* ========================================= */

/* Botão de link de afiliado e produto externo */
.affiliate-link,
.external-product {
    position: relative;
}

.affiliate-link::after,
.external-product::after {
    content: '🔗';
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 12px;
    opacity: 0.7;
}

/* Diferenciação visual para produtos externos do WooCommerce */
.external-product {
    border: 2px solid var(--accent-color);
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-color));
}

.external-product:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.4);
}

/* Botão AJAX de adicionar ao carrinho */
.ajax-add-to-cart {
    position: relative;
    transition: all 0.3s ease;
    font-size: 0.9rem; /* Texto menor para caber melhor */
    padding: 12px 20px; /* Padding ligeiramente maior */
}

.ajax-add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 70, 193, 0.4);
}

/* Botão de compra (afiliado) */
.affiliate-link {
    font-size: 1rem; /* Texto normal */
    font-weight: 700;
}

/* Classe utilitária para textos longos em botões */
.btn-long-text {
    font-size: 0.85rem !important;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Para telas menores, usar abreviação */
@media (max-width: 320px) {
    .ajax-add-to-cart::after {
        content: attr(data-short-text);
    }
    
    .ajax-add-to-cart .btn-text {
        display: none;
    }
}

/* Estados do botão AJAX */
.ajax-add-to-cart.loading {
    background: #ccc !important;
    cursor: not-allowed;
    pointer-events: none;
}

.ajax-add-to-cart.loading::after {
    content: '⏳';
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

.ajax-add-to-cart.added {
    background: var(--success-color) !important;
    color: white;
}

.ajax-add-to-cart.added::after {
    content: '✅';
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

/* Responsividade dos botões */
@media (max-width: 768px) {
    .affiliate-link::after {
        display: none;
    }
    
    /* Texto menor em mobile para botão de carrinho */
    .ajax-add-to-cart {
        font-size: 0.8rem;
        padding: 10px 15px;
    }
}

/* Abreviação em telas muito pequenas */
@media (max-width: 480px) {
    .ajax-add-to-cart .btn-text {
        font-size: 0.75rem;
    }
}

/* ===================================== */
/* ===== ESTILOS DA PÁGINA DA LOJA ===== */
/* ===================================== */

/* Container principal da loja */
.woocommerce-container {
    background: transparent;
    min-height: auto;
    padding: 0;
    margin: 0;
}

/* Margens e padding para todos os containers da loja */
.shop-hero .container,
.flash-deals .container,
.category-showcase .container,
.products-main .container,
.trust-signals .container,
.quick-faq .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero da Loja */
.shop-hero {
    background: var(--gradient-purple);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.shop-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.2) 0%, rgba(76, 29, 149, 0.8) 100%);
}

.shop-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.shop-hero-text {
    flex: 1;
    max-width: 600px;
}

.shop-hero-badge {
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.shop-hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.shop-hero-subtitle {
    font-size: 1.2rem;
    color: #E5E7EB;
    margin-bottom: 30px;
    line-height: 1.6;
}

.shop-hero-subtitle strong {
    color: var(--accent-color);
    font-weight: 700;
}

.shop-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.shop-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-color);
    line-height: 1;
}

.stat-icon {
    display: block;
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.shop-hero-image {
    flex: 1;
    max-width: 400px;
}

.hero-product-showcase {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.showcase-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.showcase-item:hover {
    transform: translateX(10px);
}

.product-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Ofertas Relâmpago */
.flash-deals {
    padding: 60px 0;
    background: linear-gradient(135deg, #de96eb 0%, #805ad4 100%);
    position: relative;
}

.deals-header {
    text-align: center;
    margin-bottom: 50px;
    color: white;
}

.deals-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.deals-icon {
    font-size: 2rem;
    animation: bounce 1s infinite;
}

.deals-title h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0;
}

.deals-timer {
    background: rgba(0,0,0,0.3);
    padding: 10px 20px;
    border-radius: 25px;
    font-family: monospace;
    font-size: 1.5rem;
    font-weight: 900;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.deal-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.deal-card:hover {
    transform: translateY(-10px);
}

.deal-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 900;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.deal-badge.new {
    background: #10B981;
    color: white;
}

.deal-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    overflow: hidden;
    margin-bottom: 15px;
    border-radius: 10px;
}

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

.demo-product {
    width: 100%;
    height: 100%;
    background: var(--gradient-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 1.2rem;
}

.deal-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.deal-prices {
    margin-bottom: 10px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
}

.new-price {
    color: var(--primary-purple);
    font-weight: 900;
    font-size: 1.3rem;
}

.deal-savings {
    background: #10B981;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.deal-btn {
    background: var(--gradient-purple);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 25px;
    display: block;
    text-align: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.deal-btn:hover {
    background: var(--gradient-purple-alt);
    transform: translateY(-2px);
}

.deal-card.recent .deal-btn {
    background: #10B981;
}

.deal-card.demo {
    opacity: 0.8;
    border: 2px dashed var(--accent-color);
}

/* Showcase de Categorias */
.category-showcase {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.category-card {
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-purple);
    box-shadow: 0 15px 40px rgba(107, 70, 193, 0.2);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.category-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.category-card p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.product-count {
    background: var(--primary-purple);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.category-link {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

/* Grid de Produtos Principal */
.products-main {
    padding: 60px 0;
    background: #f8f9fa;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.products-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-dark);
}

.view-toggle {
    display: flex;
    gap: 5px;
    background: white;
    padding: 5px;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.view-btn {
    padding: 10px 20px;
    border: none;
    background: transparent;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.view-btn.active,
.view-btn:hover {
    background: var(--primary-purple);
    color: white;
}

.products-results {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    flex-wrap: wrap;
    gap: 15px;
}

.sorting-info {
    color: var(--text-light);
    font-size: 0.9rem;
}

.products-grid.enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.enhanced-pagination {
    margin-top: 60px;
    text-align: center;
}

.pagination-info {
    margin-top: 20px;
    color: var(--text-light);
    font-style: italic;
}

/* No Products */
.no-products-section {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 20px;
    margin-top: 40px;
}

.no-products-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-products-section h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.admin-suggestions {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
    text-align: left;
}

.admin-suggestions h3 {
    color: #856404;
    margin-bottom: 15px;
}

.admin-suggestions ul {
    color: #856404;
    margin-bottom: 15px;
}

.admin-link {
    background: #007cba;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    font-weight: 600;
}

.suggestions {
    margin: 40px 0;
}

.suggestions h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.suggestion-tags {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.suggestion-tag {
    background: var(--primary-purple);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.suggestion-tag:hover {
    background: var(--accent-color);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.back-to-shop {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-purple);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 25px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.back-to-shop:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(107, 70, 193, 0.3);
}

/* Trust Signals */
.trust-signals {
    background: var(--bg-dark);
    padding: 30px 0;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.trust-icon {
    font-size: 2rem;
    color: var(--accent-color);
}

.trust-text strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.trust-text span {
    color: #9CA3AF;
    font-size: 0.9rem;
}

/* FAQ Rápido */
.quick-faq {
    background: white;
    padding: 50px 0;
}

.quick-faq h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 40px;
}

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

.faq-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-purple);
}

.faq-item strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.5;
}

/* Estados especiais da loja */
.woocommerce-container {
    background: transparent;
    min-height: auto;
    padding: 0;
}

/* Melhorias específicas para produtos WooCommerce na loja */
.woocommerce ul.products li.product {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.woocommerce ul.products li.product .woocommerce-loop-product__link {
    display: block;
}

.woocommerce ul.products li.product a img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

/* Responsividade da loja */
@media (max-width: 768px) {
    /* Ajustar margens em mobile */
    .shop-hero .container,
    .flash-deals .container,
    .category-showcase .container,
    .products-main .container,
    .trust-signals .container,
    .quick-faq .container {
        padding: 0 15px;
    }
    
    .shop-hero {
        padding: 60px 0;
    }
    
    .shop-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .shop-hero-title {
        font-size: 2.5rem;
    }
    
    .shop-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .deals-title {
        flex-direction: column;
        gap: 10px;
    }
    
    .deals-title h2 {
        font-size: 2rem;
    }
    
    .deals-timer {
        font-size: 1.2rem;
    }
    
    .deals-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .products-header {
        flex-direction: column;
        text-align: center;
    }
    
    .products-header h2 {
        font-size: 2rem;
    }
    
    .trust-items {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    /* Margens mínimas para telas pequenas */
    .shop-hero .container,
    .flash-deals .container,
    .category-showcase .container,
    .products-main .container,
    .trust-signals .container,
    .quick-faq .container {
        padding: 0 10px;
    }
    
    .shop-hero-title {
        font-size: 2rem;
    }
    
    .shop-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .deals-title h2 {
        font-size: 1.8rem;
    }
    
    .category-card {
        padding: 30px 20px;
    }
    
    .category-icon {
        font-size: 2.5rem;
    }
    
    .no-products-icon {
        font-size: 3rem;
    }
    
    .suggestion-tags {
        flex-direction: column;
        align-items: center;
    }
}

/* === ESTILOS PARA PÁGINAS DE PRODUTO INDIVIDUAL === */

/* Container da landing page do produto */
.product-landing-page {
    background: #f8f9fa;
    min-height: 100vh;
    width: 100%;
}

/* Hero do Produto */
.product-hero {
    background: white;
    padding: 60px 0;
    border-bottom: 1px solid #e5e7eb;
    width: 100%;
}

.product-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Imagens do Produto */
.product-images {
    position: relative;
}

.mega-discount-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: linear-gradient(45deg, #FF6B6B, #FF8E8E);
    color: white;
    padding: 15px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    z-index: 10;
    animation: pulse 2s infinite;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.discount-text {
    font-size: 0.8rem;
    line-height: 1;
}

.discount-number {
    font-size: 1.8rem;
    line-height: 1;
}

.main-product-image {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
}

.hero-product-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    max-height: 500px;
    object-fit: contain;
}

.placeholder-image {
    height: 400px;
    background: var(--gradient-purple);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}

.placeholder-text {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Informações Principais */
.product-info-main {
    padding: 20px 0;
}

.product-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.product-category {
    color: var(--primary-purple);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.product-title-hero {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 15px;
}

.title-highlight {
    display: block;
    font-size: 1.2rem;
    color: var(--primary-purple);
    font-weight: 500;
    margin-top: 5px;
}

/* Descrição e Benefícios */
.main-benefit {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding: 20px;
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.benefits-list li {
    padding: 10px 0;
    font-size: 1.1rem;
    color: var(--text-dark);
    border-bottom: 1px solid #e5e7eb;
}

.benefits-list li:last-child {
    border-bottom: none;
}

/* Seção de Preços */
.pricing-section {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid var(--primary-purple);
    margin-bottom: 30px;
    position: relative;
}

.current-price {
    color: var(--primary-purple);
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.old-price {
    color: #999;
    text-decoration: line-through;
    font-size: 1.5rem;
}

/* CTA Buttons */
.mega-cta {
    background: var(--gradient-purple);
    color: white;
    padding: 20px 30px;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(107, 70, 193, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    margin-bottom: 15px;
}

.mega-cta:hover {
    background: var(--gradient-purple-alt);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(107, 70, 193, 0.4);
    color: white;
    text-decoration: none;
}

.btn-icon {
    font-size: 1.5rem;
}

.btn-text {
    font-size: 1.2rem;
    line-height: 1;
}

.btn-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
    text-transform: none;
    letter-spacing: normal;
}

/* Seções da página de produto */
.product-benefits,
.usage-instructions,
.nutritional-info,
.testimonials-section,
.product-faq,
.final-cta-urgency,
.related-products-enhanced {
    padding: 60px 0;
    width: 100%;
}

.product-benefits {
    background: white;
}

.usage-instructions {
    background: var(--gradient-purple);
    color: white;
}

.nutritional-info {
    background: #f8f9fa;
}

.testimonials-section {
    background: white;
}

.product-faq {
    background: #f8f9fa;
}

.final-cta-urgency {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), #6b46c1);
    color: white;
}

.related-products-enhanced {
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 50px;
}

.usage-instructions .section-title,
.final-cta-urgency .section-title {
    color: white;
}

/* Responsividade para produtos */
@media (max-width: 768px) {
    .product-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-title-hero {
        font-size: 1rem;
    }
    
    .current-price {
        font-size: 2.5rem;
    }
    
    .mega-cta {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .product-hero {
        padding: 30px 0;
    }
    
    .product-hero-content {
        padding: 0 15px;
    }
    
    .product-title-hero {
        font-size: 1rem;
    }
    
    .current-price {
        font-size: 2rem;  
    }
    
    .mega-discount-badge {
        width: 100px;
        height: 100px;
        top: -15px;
        right: -15px;
    }
    
    .discount-number {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

