/* ========================================
   VICTRIX 3D - CSS ORGANIZADO POR ORDEM HTML
   ======================================== */

/* ========================================
   1. RESET E VARIÁVEIS GLOBAIS
   ======================================== */
* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}

:root {
 --brand-midnight: #0f172a;
 --brand-indigo: #1e3a8a;
 --brand-royal: #2563eb;
 --brand-sky: #93c5fd;
 --brand-foam: #f8fafc;
 --brand-cloud: #e2e8f0;
 --brand-ink: #0b1120;
 --accent-sand: #fef3c7;
 --accent-lilac: #c4b5fd;
 --surface-card: #ffffff;
 --surface-muted: #dbeafe;
 --announcement-bar: var(--brand-indigo);
 --main-blue: var(--brand-royal);
 --main-title: #5f6976;
 --text-dark: #0f172a;
 --text-light: #94a3b8;
 --background-light: #f8fafcef;
}


body {
 font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
 line-height: 1.6;
 color: var(--text-dark);
 background: var(--brand-foam);
 padding-top: 125px; /* Altura do topbar fixo (65px announcement + 60px header) */
}
/* ========================================
   Whatsapp
   ======================================== */

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 3px rgba(0,0,0,0.3);
  z-index: 1000;
}
.whatsapp-float img {
  width: 35px;
  margin-top: 12px;
}
.whatsapp-float:hover {
  background-color: #1EBE5B;
}

/* ========================================
   3. HEADER 
   ======================================== */
.topbar {
  background: var(--announcement-bar);
  color: white;
  display: flex;
  flex-direction: column; /* Muda a direção para vertical */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
}
.announcement-bar {
  height: 65px;
  padding: 10px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex; 
  justify-content: center; 
  align-items: center;
  text-align: center; 
}
.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding: 0 40px;
 background: var(--background-light);
 color: var(--text-dark);

}

.brand {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  color: inherit;
}

.brand-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon {
  width: 24px;
  height: 24px;
 stroke: var(--text-dark);
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 10px;
  flex-direction: row;
}

.main-nav a {
 color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.main-nav a:hover {
 color: var(--brand-sky);
}

/* ========================================
   4. MAIN CONTAINER
   ======================================== */
main {
  background: var(--background-light);
}

/* ========================================
   SOBRE PAGE LAYOUT
   ======================================== */
.page-hero {
  padding: 60px 24px;
  background: linear-gradient(120deg, #0f172a 0%, #1e3a8a 50%, #2563eb 100%);
  color: #f8fafc;
  grid-template-columns: 1fr;
  gap: 32px;
}

.page-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: #93c5fd;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.15;
  margin: 16px 0 24px;
}

.page-hero__content p {
  color: #e2e8f0;
}

.page-hero__media {
  display: grid;
  gap: 20px;
}

.page-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.4);
  min-height: 240px;
  background: rgba(15, 23, 42, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-media__placeholder {
  color: #fef3c7;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 24px;
}

.page-media figcaption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  font-size: 0.9rem;
  color: #dbeafe;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.page-media__phrase {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.page-media--impressora {
  background: radial-gradient(circle at top, rgba(254, 243, 199, 0.6), rgba(15, 23, 42, 0.85));
}

.page-media--fundadores {
  background: radial-gradient(circle at center, rgba(99, 102, 241, 0.5), rgba(15, 23, 42, 0.85));
}

.sobre-valores,
.sobre-linha-tempo,
.sobre-equipa,
.sobre-cta {
  padding: 60px 24px;
}

.sobre-valores {
 background: var(--surface-card);
}

.sobre-valores header,
.sobre-linha-tempo header,
.sobre-equipa header {
  max-width: 640px;
  margin-bottom: 40px;
}

.sobre-valores h2,
.sobre-linha-tempo h2,
.sobre-equipa h2,
.sobre-cta h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  color: var(--text-dark);
}

.sobre-valores__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.sobre-valores__grid article {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 24px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.sobre-valores__grid article:hover {
  transform: translateY(-6px);
  border-color: #93c5fd;
}

.sobre-valores__grid h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
  color: var(--text-dark);
}

.sobre-linha-tempo {
 background: var(--surface-muted);
}

.sobre-linha-tempo ol {
  list-style: none;
  display: grid;
  gap: 20px;
  margin-top: 20px;
  counter-reset: linha;
}

.sobre-linha-tempo li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  padding: 20px;
 background: var(--surface-card);
  border-radius: 18px;
 border: 1px solid rgba(147, 197, 253, 0.6);
}

.sobre-linha-tempo .ano {
  font-weight: 700;
  font-size: 1.5rem;
 color: var(--brand-midnight);
}

.sobre-equipa__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.sobre-equipa__cards article {
 background: var(--surface-card);
  border-radius: 24px;
 border: 1px solid rgba(226, 232, 240, 0.6);
  padding: 28px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.sobre-equipa__cards h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.sobre-equipa__cards small {
  color: var(--text-light);
  display: block;
  margin-top: 8px;
}

.sobre-cta {
 background: var(--brand-midnight);
 color: var(--brand-foam);
  border-radius: 40px 40px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 24px;
}

.sobre-cta__content p {
  color: #cbd5f5;
  max-width: 52ch;
  margin-top: 12px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 56px;
  padding: 0 32px;
  border-radius: 999px;
 background: var(--accent-sand);
 color: var(--brand-midnight);
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.page-section {
  padding: 60px 24px;
}

.page-section.light {
  background: #ffffff;
}

.page-section.soft {
  background: #f8fafc;
}

.section-title {
  font-size: clamp(2rem, 3vw, 2.75rem);
  color: var(--text-dark);
}

.section-subtitle {
  color: var(--text-light);
  margin-top: 12px;
  max-width: 60ch;
}

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

.gallery-grid figure {
 border-radius: 20px;
 border: 1px dashed var(--brand-sky);
 padding: 28px;
 text-align: center;
 color: var(--brand-midnight);
 font-weight: 600;
 background: var(--surface-card);
}

.gallery-grid figcaption {
  margin-top: 12px;
  font-size: 0.9rem;
 color: var(--text-light);
}

.contact-list {
  list-style: none;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.contact-list li, 
.contact-list li a{
 font-size: 1rem;
 color: var(--brand-cloud);
}


.info-card {
 background: var(--surface-card);
  border-radius: 24px;
 border: 1px solid rgba(226, 232, 240, 0.6);
  padding: 32px;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
}

.info-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.faq-list {
  margin-top: 32px;
  display: grid;
  gap: 20px;
}

.faq-item {
 background: var(--surface-card);
  border-radius: 20px;
 border: 1px solid rgba(226, 232, 240, 0.6);
  padding: 24px;
}

.faq-item h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.form-wrapper {
 background: var(--surface-card);
  border-radius: 28px;
 border: 1px solid rgba(226, 232, 240, 0.6);
  padding: 32px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  margin-top: 40px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  gap: 8px;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
 border: 1px solid rgba(203, 213, 245, 0.8);
 border-radius: 12px;
 padding: 12px;
 font: inherit;
 background: var(--brand-foam);
}

.form-grid textarea {
  min-height: 140px;
  resize: vertical;
}

.upload-field {
  margin-top: 16px;
}

.page-note {
  margin-top: 16px;
  color: var(--text-light);
  font-size: 0.9rem;
}
/* ========================================
   6. LOGO SECTION IMAGEM RESPONSIVA
   ======================================== */
.logo-section {
  text-align: center;
  padding: 30px 20px; /* Aumentei um pouco o padding para dar espaço */
  height: auto;
}
.logo-section img {
  width: 100%;
  max-width: 1200px;
  max-height: 600px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* ========================================
   Botão de epoca especial 
   ======================================== */
.season-highlight-card {
    display: flex;
    justify-content: center;
    width: 100%;
    text-decoration: none;
}
.season-highlight-title {
    background: linear-gradient(135deg, #f60404, #280601);
    color: white;
    padding: 15px 25px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 12px;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    letter-spacing: 1px;
    border: 2px solid #ffffff55;
}

/* Hover natalício */
.season-highlight-title:hover {
    background: linear-gradient(135deg, #f94144, #f9c74f);
    transform: scale(1.05);
    box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

/* Efeito de brilho leve */
.season-highlight-title::after {
    margin-left: 8px;
    opacity: 0.8;
}
.category-highlight-section {
  padding: 60px 40px;
}

/* ========================================
   7. CATEGORY HIGHLIGHT SECTION
   ======================================== */
.category-main-title {
  text-align: left;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--main-title);
}

.category-highlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.category-highlight-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
}

.category-highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.category-highlight-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.category-highlight-title {
  padding: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  border-radius: 0 0 16px 16px;
}

/* ========================================
   8. NEW ARRIVALS SECTION
   ======================================== */
.new-arrivals-section {
  padding: 60px 40px;
}

.new-arrivals-title {
  text-align: left;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--main-title);
}

.new-arrivals-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.new-arrival-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px 0 rgba(41,37,53,0.10);
  padding: 18px 18px 21px 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.17s, transform 0.17s;
  min-width: 0;
  min-height: 280px;
}

.new-arrival-card:hover {
  box-shadow: 0 14px 38px 0 rgba(41,37,53,0.18);
  transform: translateY(-5px) scale(1.017);
}

.badge-new {
  position: absolute;
  left: 12px;
  top: 12px;
  background: #dc2626;
  color: white;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}

.new-arrival-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}

.new-arrival-card h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  text-align: center;
  color: var(--text-dark);
}

.price {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--main-blue);
}

/* ========================================
   9. WHY BUY SECTION
   ======================================== */
.why-buy-section {
  padding: 60px 40px;
}

.why-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--main-title);
}

.why-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.why-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 24px;
  transition: transform 0.3s;
}

.why-card:hover {
  transform: translateY(-4px);
}

.why-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

.why-card-text h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

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

/* Background variants for why cards */
.why-bg-1 {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.why-bg-2 {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.why-bg-3 {
  background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
}

/* ========================================
   10. COMMUNITY FEED SECTION
   ======================================== */
.community-feed-section {
  padding: 60px 40px;
}

.community-feed-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--main-title);
}

.community-feed-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.community-feed-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.community-feed-card:hover {
  transform: scale(1.05);
}

.community-feed-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* ========================================
   11. FOOTER
   ======================================== */
.footer-multicol {
  background: #1f2937;
  color: white;
  padding: 40px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  text-align: center;
  margin-bottom: 24px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: white;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: white;
}

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

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: white;
}

.footer-socials {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  transition: background 0.2s;
}

.footer-socials a:hover {
  background: rgba(255,255,255,0.2);
}

.footer-copyright {
  text-align: center;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #374151;
  color: #9ca3af;
  font-size: 0.875rem;
}

/* ========================================
   PÁGINAS SECUNDÁRIAS - SHOWCASE SECTION
   ======================================== */
.showcase-section {
  background: white;
  padding: 60px 20px;
}

.showcase-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.showcase-content h2 {
  font-size: 2.5rem;
  color: var(--main-blue);
  margin-bottom: 40px;
  font-weight: 700;
}

.showcase-pops {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.showcase-pop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.showcase-pop span {
  font-weight: 600;
  color: #333;
  font-size: 0.9rem;
}

/* Pop Figure Styles */
.pop-figure {
  width: 80px;
  height: 120px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pop-body {
  width: 60px;
  height: 80px;
  border-radius: 30px 30px 15px 15px;
  position: relative;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.pop-head {
  width: 50px;
  height: 50px;
  background: #ffdbac;
  border-radius: 50%;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Sport-specific styles */
.pop-american-football .pop-body {
  background: #6b7280;
}

.pop-american-football .pop-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}

.pop-soccer .pop-body {
  background: white;
  border: 2px solid #1f2937;
}

.pop-soccer .pop-ball {
  position: absolute;
  bottom: -10px;
  right: -5px;
  width: 15px;
  height: 15px;
  background: #1f2937;
  border-radius: 50%;
}

.pop-boxing .pop-body {
  background: #dc2626;
}

.pop-boxing .pop-gloves {
  position: absolute;
  top: 20px;
  left: -10px;
  width: 20px;
  height: 15px;
  background: #dc2626;
  border-radius: 10px;
}

.pop-boxing .pop-gloves::after {
  content: '';
  position: absolute;
  top: 0;
  right: -25px;
  width: 20px;
  height: 15px;
  background: #dc2626;
  border-radius: 10px;
}

.pop-swimming .pop-body {
  background: #2563eb;
}

.pop-swimming .pop-goggles {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 15px;
  background: #2563eb;
  border-radius: 15px;
}

.pop-tennis .pop-body {
  background: white;
  border: 2px solid #1f2937;
}

.pop-tennis .pop-racket {
  position: absolute;
  bottom: -5px;
  right: -8px;
  width: 20px;
  height: 25px;
  background: #1f2937;
  border-radius: 10px;
}

/* ========================================
   PÁGINAS SECUNDÁRIAS - PRODUCTS SECTION
   ======================================== */
.products-section {
  background-color: white;
  padding: 50px 0px;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.product-card {
  background: white;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(41,37,53,0.10);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  min-height: 2800px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 38px rgba(41,37,53,0.18);
}

.product-card h3 {
  font-size: 1.1rem;
  margin: 15px 0 10px 0;
  color: #333;
  font-weight: 600;
}

.product-card .price {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--main-blue);
  margin: 10px 0;
}

/* Product image placeholder */
.product-image-placeholder {
  width: 100%;
  height: 200px;
  background: #f3f4f6;
  border-radius: 8px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 0.9rem;
}

/* Color variations for products */
.color-variations {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 10px;
}

.color-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #e5e7eb;
  cursor: pointer;
  transition: transform 0.2s;
}

.color-dot:hover {
  transform: scale(1.2);
}

.color-dot.black {
  background: #1f2937;
}

.color-dot.grey {
  background: #6b7280;
}

.color-dot.red {
  background: #dc2626;
}

.color-dot.blue {
  background: #2563eb;
}

/* ========================================
   8. PRODUCT DISPLAY SECTION
   ======================================== */
   .product-display-section {
    padding: 15px 40px;
  }
  
  .product-display-title {
    text-align: left;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--main-title);
  }
  
  .product-display-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 0;
    padding: 0;
  }
  
  .product-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px 0 rgba(41,37,53,0.10);
    padding: 18px 18px 21px 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.17s, transform 0.17s;
    min-width: 0;
    min-height: 280px;
  }
  
  .product-card:hover {
    box-shadow: 0 14px 38px 0 rgba(41,37,53,0.18);
    transform: translateY(-5px) scale(1.017);
  }
  
  .badge-new {
    position: absolute;
    left: 12px;
    top: 12px;
    background: #dc2626;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
  }
  
  .product-card img {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
  }
  
  .product-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    text-align: center;
    color: var(--text-dark);
  }
  
  .price {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--main-blue);
  }
  .product-link {
    text-decoration: none; /* Remove o sublinhado */
    color: inherit;        /* Mantém a cor original do texto */
    display: block;        /* Garante que todo o card é clicável */
  }
/* ========================================
   PRODUCT DETAIL PAGE - CSS
   ======================================== */

/* Container principal da página */
.product-detail-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 40px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  background: #fff;
}

/* Card do produto */
.product-detail-card {
  flex: 1 1 400px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(41,37,53,0.10);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.product-detail-card:hover {
  box-shadow: 0 14px 38px rgba(41,37,53,0.18);
  transform: translateY(-5px);
}

/* Imagem do produto */
.product-detail-card img {
  width: 100%;
  max-width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 24px;
}

/* Nome do produto */
.product-detail-card h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  text-align: center;
}

/* Preço */
.product-detail-card .price {
  font-size: 1.75rem;
  font-weight: bold;
  color: var(--main-blue);
  margin-bottom: 16px;
}

/* Descrição */
.product-detail-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 16px;
}

/* Badge de "Novo" */
.badge-new {
  position: absolute;
  left: 12px;
  top: 12px;
  background: #dc2626;
  color: white;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Botão de voltar / ação */
.product-detail-actions {
  display: flex;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.product-detail-actions a,
.product-detail-actions button {
  background: var(--main-blue);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}

.product-detail-actions a:hover,
.product-detail-actions button:hover {
  background: #1e40af;
  transform: translateY(-2px);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (min-width: 640px) {

  .header-main {
    padding: 0 40px;
  }

  .brand {
    font-size: 1.25rem;
  }

  .main-nav ul {
    flex-direction: row;
    gap: 24px;
  }

  .main-nav a {
    font-size: 1rem;
  }
  .page-hero,
  .sobre-valores,
  .sobre-linha-tempo,
  .sobre-equipa,
  .sobre-cta,
  .page-section {
    padding: 70px 40px;
  }

  .page-hero__eyebrow,
  .sobre-valores__eyebrow,
  .sobre-linha-tempo__eyebrow,
  .sobre-equipa__eyebrow {
    letter-spacing: 0.28rem;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 24px;
    text-align: center;
    margin-bottom: 24px;

  }
}

@media (min-width: 768px) {
  .page-hero {
    padding: 80px 5vw 60px;
    grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
    gap: 48px;
  }

  .page-hero__eyebrow {
    letter-spacing: 0.32rem;
    font-size: 0.75rem;
  }

  .sobre-linha-tempo li {
    grid-template-columns: 120px minmax(0, 1fr);
    text-align: left;
  }

  .sobre-cta {
    flex-direction: row;
    text-align: left;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }

  .category-highlight-grid,
  .new-arrivals-grid,
  .product-display-grid,
  .why-cards-grid,
  .community-feed-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 90%;
    margin: 0 auto;
    padding: 0 20px;
  }

  .product-card,
  .new-arrival-card,
  .why-card {
    padding: 18px;
  }

/* Organiza todas as colunas (VICTRIX 3D, Shop, Empresa, Ajuda, Info, Sociais) */
.footer-container {
  display: flex; 
  flex-wrap: wrap; 
  justify-content: space-around; 
  gap: 10px; 
  max-width: 1200px; 
  text-align: left; 
}

.footer-col {
  flex: 1 1 120px; 
  min-width: 100px; 
}
  .product-detail-section {
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
    padding: 0 40px;
  }

  .product-detail-card img {
    height: 320px;
  }
}

@media (min-width: 1024px) {

  .announcement-bar {
    font-size: 1rem;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .category-highlight-grid,
  .new-arrivals-grid,
  .product-display-grid,
  .why-cards-grid,
  .community-feed-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin: 0 auto;
    padding: 0;
  }
  .product-card img {
    width: 100%; 
    /* Adicione uma altura máxima ou fixa para uniformizar o visual */
    aspect-ratio: 1/1;
    object-fit: contain; /* Use 'contain' para mostrar a imagem completa sem cortar, ou 'cover' se preferir preencher o espaço, cortando as bordas */
    border-radius: 8px;
    margin-bottom: 12px;}

  .products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    padding: 0 40px;
  }

  .product-detail-section {
    max-width: 1200px;
    padding: 0 40px;
  }

  .product-detail-card img {
    height: 350px;
  }

  .why-card {
    flex-direction: row;
    text-align: left;
  }
}