/*
Theme Name: Braspump Theme
Theme URI: https://braspump.com.br
Author: Braspump
Author URI: https://braspump.com.br
Description: Tema customizado para Braspump com suporte a WooCommerce.
Version: 1.0.0
Text Domain: braspump
*/

/* WordPress Core Alignment Classes */
.alignleft { float: left; margin-right: 1.5em; }
.alignright { float: right; margin-left: 1.5em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.wp-caption { background: #fff; border: 1px solid #f0f0f0; max-width: 100%; padding: 5px 3px 10px; text-align: center; }
.wp-caption img { border: 0 none; height: auto; margin: 0; max-width: 98.5%; padding: 0; width: auto; }
.wp-caption p.wp-caption-text { font-size: 11px; line-height: 17px; margin: 0; padding: 0 4px 5px; }

/* Braspump Design System - Standalone CSS */

:root {
  --radius: 0.625rem;
  --background: #ffffff;
  --foreground: #2a225a;
  --card: #ffffff;
  --card-foreground: #2a225a;
  --popover: #ffffff;
  --popover-foreground: #2a225a;
  --primary: #2a225a;
  --primary-foreground: #ffffff;
  --brand-gold: #fac904;
  --brand-gold-foreground: #2a225a;
  --secondary: #f4f4f4;
  --secondary-foreground: #2a225a;
  --muted: #f4f4f4;
  --muted-foreground: #666666;
  --accent: #fac904;
  --accent-foreground: #2a225a;
  --destructive: #ff4444;
  --destructive-foreground: #ffffff;
  --border: #e5e5e5;
  --input: #e5e5e5;
  --ring: #2a225a;
  --light-blue: #82cdef;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-color: var(--border);
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: "Poppins", "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

h1, h2, h3, h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
}

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

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1 1 0%; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.shrink-0 { flex-shrink: 0; }

.grid { display: grid; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-7 { gap: 1.75rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:items-center { align-items: center; }
  .md\:-mt-12 { margin-top: -3rem; }
  .md\:-mt-24 { margin-top: -6rem; }
}

@media (min-width: 1024px) {
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* Utilities */
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.inset-x-0 { left: 0; right: 0; }
.top-0 { top: 0; }
.z-50 { z-index: 50; }
.z-10 { z-index: 10; }

.overflow-hidden { overflow: hidden; }
.pointer-events-none { pointer-events: none; }

.min-h-screen { min-height: 100vh; }
.min-h-\[720px\] { min-height: 720px; }

.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-11 { height: 2.75rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-56 { height: 14rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-11 { width: 2.75rem; }
.w-auto { width: auto; }
.w-full { width: 100%; }

.m-0 { margin: 0; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-20 { margin-top: 5rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }

.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pt-40 { padding-top: 10rem; }
.pb-3 { padding-bottom: 0.75rem; }
.pb-32 { padding-bottom: 8rem; }

/* Colors */
.bg-background { background-color: var(--background); }
.bg-primary { background-color: var(--primary); }
.bg-brand-gold { background-color: var(--brand-gold); }
.bg-muted { background-color: var(--muted); }
.bg-card { background-color: var(--card); }
.bg-brand-gold\/15 { background-color: color-mix(in oklch, var(--brand-gold), transparent 85%); }
.bg-white\/5 { background-color: rgba(255, 255, 255, 0.05); }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-primary\/10 { background-color: rgba(42, 34, 90, 0.1); }
.bg-primary\/90 { background-color: rgba(42, 34, 90, 0.9); }

.text-foreground { color: var(--foreground); }
.text-primary { color: var(--primary); }
.text-primary-foreground { color: var(--primary-foreground); }
.text-brand-gold { color: var(--brand-gold); }
.text-brand-gold-foreground { color: var(--brand-gold-foreground); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-white { color: #fff; }
.text-primary-foreground\/60 { color: color-mix(in oklch, var(--primary-foreground), transparent 40%); }
.text-primary-foreground\/70 { color: color-mix(in oklch, var(--primary-foreground), transparent 30%); }
.text-primary-foreground\/80 { color: color-mix(in oklch, var(--primary-foreground), transparent 20%); }

.border { border-style: solid; border-width: 1px; }
.border-2 { border-style: solid; border-width: 2px; }
.border-t { border-top-style: solid; border-top-width: 1px; }
.border-border { border-color: var(--border); }
.border-primary { border-color: var(--primary); }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-white\/90 { border-color: rgba(255, 255, 255, 0.9); }
.border-brand-gold { border-color: var(--brand-gold); }
.border-brand-gold\/50 { border-color: color-mix(in oklch, var(--brand-gold), transparent 50%); }
.border-white\/5 { border-color: rgba(255, 255, 255, 0.05); }

/* Typography */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-center { text-align: center; }
.font-light { font-weight: 300; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-\[0\.3em\] { letter-spacing: 0.3em; }
.leading-none { line-height: 1; }
.leading-relaxed { line-height: 1.625; }
.leading-snug { line-height: 1.375; }

/* Effects & Misc */
.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-2xl { border-radius: 1rem; }
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); }
.drop-shadow-2xl { filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)); }
.drop-shadow-\[0_4px_0_rgba\(0\,0\,0\,0\.15\)\] { filter: drop-shadow(0 4px 0 rgba(0, 0, 0, 0.15)); }

.transition { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.hover\:text-brand-gold:hover { color: var(--brand-gold); }
.hover\:border-brand-gold:hover { border-color: var(--brand-gold); }
.hover\:bg-primary\/90:hover { background-color: color-mix(in oklch, var(--primary), transparent 10%); }
.hover\:bg-primary:hover { background-color: var(--primary); }
.hover\:text-primary-foreground:hover { color: var(--primary-foreground); }
.hover\:brightness-110:hover { filter: brightness(1.1); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.hover\:shadow-2xl:hover { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }

.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:scale-\[1\.02\] { transform: scale(1.02); }
.group:hover .group-hover\:opacity-0 { opacity: 0; }
.group:hover .group-hover\:opacity-100 { opacity: 1; }

.opacity-0 { opacity: 0; }
.opacity-100 { opacity: 1; }
.scale-90 { transform: scale(0.9); }
.scale-105 { transform: scale(1.05); }
.scale-110 { transform: scale(1.1); }
.duration-500 { transition-duration: 500ms; }

.rotate-45 { transform: rotate(45deg); }
.-translate-y-1\/2 { transform: translateY(-50%); }

.aspect-square { aspect-ratio: 1 / 1; }
.object-contain { object-fit: contain; }

.min-h-\[3rem\] { min-height: 3rem; }
.max-h-full { max-height: 100%; }
.max-h-\[520px\] { max-height: 520px; }

/* Custom Reference Effects */
.text-outline {
  text-shadow: 2px 2px 0px var(--primary);
}

.hero-title {
  font-size: clamp(3rem, 10vw, 6.5rem);
  color: var(--brand-gold);
  line-height: 0.9;
  font-weight: 900;
  text-transform: uppercase;
  filter: drop-shadow(4px 4px 0px rgba(42, 34, 90, 0.8));
}

.diamond-bg {
  position: absolute;
  width: 450px;
  height: 450px;
  border: 15px solid var(--brand-gold);
  transform: rotate(45deg);
  z-index: 0;
}

.wave-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

.page-banner {
  background-color: var(--brand-gold);
  color: var(--primary);
  border-radius: 999px;
  padding: 1.5rem 4rem;
  display: inline-block;
  margin-top: -3rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.btn-primary {
  background-color: var(--brand-gold);
  color: var(--primary);
  border-radius: 999px;
  padding: 1rem 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(250, 201, 4, 0.4);
  filter: brightness(1.05);
}

/* Custom */
.\!text-brand-gold { color: var(--brand-gold) !important; }

/* Fancy Text Animation */
.fancy-text-container {
  display: inline-block;
  height: 1.15em;
  overflow: hidden;
  vertical-align: bottom;
  margin-left: 0.25em;
  min-width: 6em;
}

.fancy-text-words {
  display: block;
  animation: cycle-text 12s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

.fancy-text-words span {
  display: block;
  height: 1.15em;
  line-height: 1.15em;
}

@keyframes cycle-text {
  0%, 20% { transform: translateY(0); }
  25%, 45% { transform: translateY(-1.15em); }
  50%, 70% { transform: translateY(-2.3em); }
  75%, 95% { transform: translateY(-3.45em); }
  100% { transform: translateY(0); }
}

.footer-title {
  color: var(--brand-gold);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-link:hover {
  color: var(--brand-gold);
  padding-left: 5px;
}

/* ==========================================================================
   WooCommerce Custom Styles (Braspump Identity)
   ========================================================================== */

/* Product Title & Price */
.woocommerce div.product .product_title {
    color: var(--primary);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.woocommerce div.product p.price, 
.woocommerce div.product span.price {
    color: var(--primary);
    font-weight: 900;
    font-size: 1.75rem;
}

/* Add to Cart Button */
.woocommerce #respond input#submit.alt, 
.woocommerce a.button.alt, 
.woocommerce button.button.alt, 
.woocommerce input.button.alt {
    background-color: var(--brand-gold);
    color: var(--primary);
    font-weight: 900;
    border-radius: 9999px;
    padding: 1rem 2.5rem;
    text-transform: uppercase;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    margin-top: 1rem;
}

.woocommerce #respond input#submit.alt:hover, 
.woocommerce a.button.alt:hover, 
.woocommerce button.button.alt:hover, 
.woocommerce input.button.alt:hover {
    background-color: var(--brand-gold);
    filter: brightness(1.1);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.woocommerce #respond input#submit.alt.disabled, 
.woocommerce #respond input#submit.alt.disabled:hover, 
.woocommerce #respond input#submit.alt:disabled, 
.woocommerce #respond input#submit.alt:disabled:hover, 
.woocommerce #respond input#submit.alt:disabled[disabled], 
.woocommerce #respond input#submit.alt:disabled[disabled]:hover, 
.woocommerce a.button.alt.disabled, 
.woocommerce a.button.alt.disabled:hover, 
.woocommerce a.button.alt:disabled, 
.woocommerce a.button.alt:disabled:hover, 
.woocommerce a.button.alt:disabled[disabled], 
.woocommerce a.button.alt:disabled[disabled]:hover, 
.woocommerce button.button.alt.disabled, 
.woocommerce button.button.alt.disabled:hover, 
.woocommerce button.button.alt:disabled, 
.woocommerce button.button.alt:disabled:hover, 
.woocommerce button.button.alt:disabled[disabled], 
.woocommerce button.button.alt:disabled[disabled]:hover, 
.woocommerce input.button.alt.disabled, 
.woocommerce input.button.alt.disabled:hover, 
.woocommerce input.button.alt:disabled, 
.woocommerce input.button.alt:disabled:hover, 
.woocommerce input.button.alt:disabled[disabled], 
.woocommerce input.button.alt:disabled[disabled]:hover {
    background-color: #e5e7eb;
    color: #9ca3af;
    transform: none;
    box-shadow: none;
}

/* Quantity Input */
.woocommerce .quantity .qty {
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    min-height: 52px;
}

/* Product Tabs (Description, Additional Info) */
.woocommerce div.product .woocommerce-tabs ul.tabs {
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 2rem;
    padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    background-color: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    border-radius: 0;
    margin: 0 1rem 0 0;
    padding: 0.5rem 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
    display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    background-color: transparent;
    border-bottom: 3px solid var(--brand-gold);
    z-index: 2;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    color: var(--primary);
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    font-size: 0.875rem;
}

/* Product Meta (SKU, Categories) */
.woocommerce div.product .product_meta {
    font-size: 0.875rem;
    color: #6b7280;
    border-top: 1px solid #e5e7eb;
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.woocommerce div.product .product_meta a {
    color: var(--primary);
    font-weight: 700;
}

/* Variation Select Dropdowns */
.woocommerce table.variations {
    margin-bottom: 1.5rem;
}

.woocommerce table.variations td.label {
    padding-right: 1rem;
    color: var(--primary);
}

.woocommerce table.variations label {
    font-weight: 900;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.woocommerce table.variations select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    background-color: #fff;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
    outline: none;
    transition: border-color 0.2s;
}

.woocommerce table.variations select:focus {
    border-color: var(--brand-gold);
}

.woocommerce div.product form.cart .reset_variations {
    color: #ef4444;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-top: 0.5rem;
    display: inline-block;
}

/* Sale Badge */
.woocommerce span.onsale {
    background-color: var(--brand-gold);
    color: var(--primary);
    font-weight: 900;
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    min-height: auto;
    min-width: auto;
    line-height: 1;
    top: 1rem;
    left: 1rem;
    right: auto;
}

/* Images Container */
.woocommerce div.product div.images {
    border-radius: 1.5rem;
    overflow: hidden;
    background-color: #f3f4f6; /* bg-muted */
    padding: 2rem;
}

.woocommerce div.product div.images img {
    mix-blend-mode: multiply;
}
