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

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

:root {
  --black:   #0a0a0a;
  --white:   #ffffff;
  --gray:    #f7f7f7;
  --border:  #e5e5e5;
  --muted:   #777777;
  --green:   #3fb24e;
  --navy:    #0a0a0a;
  --text:    #0a0a0a;
  --gray-bg: #f7f7f7;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--black);
  background: #fff;
}

h1, h2, h3 {
  font-family: 'Barlow Condensed', sans-serif;
}

/* ── NAVBAR ── */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 72px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.navbar.scrolled {
  border-bottom-color: var(--border);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
}

.navbar-logo img { height: 64px; }

.navbar-links {
  display: flex;
  list-style: none;
  gap: 36px;
}

.navbar-links a {
  text-decoration: none;
  color: var(--black);
  font-size: 11px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.25s;
}

.navbar-links a.active,
.navbar-links a:hover { border-bottom-color: var(--black); }

/* mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* ── HERO ── */
.hero {
  min-height: calc(100vh - var(--navbar-h, 72px));
  background: url('../img/hero-bg.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding: 80px 96px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.22) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 560px;
}

/* ── HERO WORD ANIMATION ── */
@keyframes wordGlow {
  0%, 40%, 100% {
    opacity: 1;
    text-shadow: none;
  }
  20% {
    opacity: 0.75;
    text-shadow: 0 0 32px rgba(255,255,255,0.55), 0 0 8px rgba(255,255,255,0.3);
  }
}

.hero-word {
  display: inline-block;
}

.hw-1 { animation: wordGlow 9s ease-in-out infinite 0s; }
.hw-2 { animation: wordGlow 9s ease-in-out infinite 3s; }
.hw-3 { animation: wordGlow 9s ease-in-out infinite 6s; }

.hero-tag {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 18px;
}

.hero-content h1 {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-content p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  margin-bottom: 8px;
  opacity: 0.8;
  line-height: 1.7;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: transparent;
  color: var(--black);
  padding: 12px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid var(--black);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.5px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary:hover {
  background: var(--black);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
}

.btn-ghost-white {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 12px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid #fff;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.5px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}
.btn-ghost-white:hover {
  background: #fff;
  color: var(--black);
  transform: translateY(-2px);
}

.btn-green {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-green:hover {
  background: #2e9440;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(63,178,78,0.35);
}

/* ── SECTION DIVIDERS ── */
.performance-section,
.nossas-section,
.gallery-section,
.partners-section,
.fabrics-section,
.shirts-section {
  border-top: 1px solid var(--border);
}

/* ── PERFORMANCE ── */
.performance-section {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 100px 80px;
}

.performance-text { flex: 1; }
.performance-text h2 { font-size: 56px; font-weight: 900; line-height: 1.0; letter-spacing: -0.5px; margin-bottom: 20px; text-transform: uppercase; }
.performance-text p { font-size: 14px; color: #666; line-height: 1.75; margin-bottom: 32px; }

.performance-images {
  flex: 1;
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: flex-start;
}

.comparison-item {
  text-align: center;
  background: var(--gray);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 20px;
}

.comparison-item .comp-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--muted);
}

.comp-label .icon-x { color: #e74c3c; font-size: 20px; }
.comp-label .icon-check { color: #27ae60; font-size: 20px; }

.comparison-item img { width: 200px; height: auto; }

/* ── NOSSAS CAMISETAS ── */
.nossas-section {
  display: flex;
  align-items: center;
  gap: 60px;
  background: var(--gray-bg);
  padding: 100px 80px;
}

.nossas-section .nossas-img {
  width: 380px;
  height: 280px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.nossas-text h2 { font-size: 48px; font-weight: 900; letter-spacing: -0.5px; margin-bottom: 36px; text-transform: uppercase; }

.feature { margin-bottom: 28px; padding-left: 16px; border-left: 3px solid var(--green); }
.feature h3 { font-size: 14px; font-weight: 700; margin-bottom: 6px; color: var(--navy); }
.feature p { font-size: 13px; color: #666; line-height: 1.7; }

/* ── SHARED SECTION TYPOGRAPHY ── */
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  text-align: center;
  text-transform: uppercase;
}
.section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
  margin-bottom: 0;
  text-align: center;
  letter-spacing: 0.2px;
}

/* ── GALLERY CAROUSEL ── */
.gallery-section {
  padding: 100px 80px;
}

.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.gallery-header-left .section-title {
  text-align: left;
  margin-bottom: 6px;
}

.gallery-header-left .section-subtitle {
  text-align: left;
  margin: 0;
}

.gallery-header-right {
  display: flex;
  gap: 8px;
  align-items: center;
}

.carousel-wrapper { overflow: hidden; }

.carousel-track {
  display: flex;
  gap: 14px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-card {
  flex: 0 0 300px;
  height: 380px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--gray);
  position: relative;
  cursor: pointer;
}

.carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.carousel-card:hover img {
  transform: scale(1.04);
}

.carousel-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 16px 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
}

.carousel-card:hover .carousel-card-overlay {
  opacity: 1;
}

.carousel-card-overlay span {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  transform: translateY(6px);
  transition: transform 0.3s ease;
}

.carousel-card:hover .carousel-card-overlay span {
  transform: translateY(0);
}

.carousel-btn {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--border);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  line-height: 1;
}
.carousel-btn:hover {
  background: var(--black);
  border-color: var(--black);
  color: #fff;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
}

.carousel-dot {
  width: 24px;
  height: 2px;
  background: var(--border);
  cursor: pointer;
  border: none;
  border-radius: 2px;
  transition: background 0.2s ease;
  padding: 0;
}
.carousel-dot.active { background: var(--black); }

/* ── PARTNERS ── */
.partners-section {
  background: var(--gray-bg);
  padding: 100px 80px;
  text-align: center;
}

.partners-tag {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 8px;
}

.partners-grid {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.partner-card {
  width: 280px;
  height: 170px;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.partner-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ── FOOTER ── */
.footer {
  background: var(--black);
  color: #fff;
  padding: 60px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-left h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.footer-left p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  opacity: 0.5;
  margin-bottom: 24px;
  line-height: 1.6;
  max-width: 320px;
}

.footer-socials { display: flex; gap: 18px; }
.footer-socials a {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  opacity: 0.65;
  transition: opacity 0.2s, transform 0.2s;
}
.footer-socials a:hover { opacity: 1; transform: translateY(-2px); }

.footer-bottom {
  text-align: center;
  background: var(--black);
  color: rgba(255,255,255,0.3);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  padding: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ── PAGE HERO ── */
.page-hero {
  padding: 72px 80px 60px;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
}

.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--black);
  text-transform: uppercase;
}

/* ── PRODUCTS HOME SECTION ── */
.products-home-section {
  padding: 100px 80px;
  border-top: 1px solid var(--border);
}

.products-home-header {
  text-align: center;
  margin-bottom: 48px;
}

/* ── PRODUCTS SECTION ── */
.products-section { padding: 0 80px 100px; }

.products-scroll {
  display: flex;
  gap: 12px;
  justify-content: center;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.products-scroll::-webkit-scrollbar { display: none; }

.product-card {
  flex: 0 0 260px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--gray);
  border: 1px solid var(--border);
  position: relative;
  cursor: pointer;
  scroll-snap-align: start;
  transition: transform 0.35s ease, border-color 0.3s ease, box-shadow 0.35s ease;
}

.product-card:hover {
  transform: scale(1.04);
  border-color: var(--black);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.product-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  border-radius: 6px 6px 0 0;
  transition: transform 0.4s ease;
}

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

.product-card-buy {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  background: #fff;
  color: var(--black);
  padding: 9px 22px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  pointer-events: none;
}

.product-card:hover .product-card-buy {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.product-name {
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}

.product-label { display: none; }

/* ── FABRIC SECTION ── */
.fabrics-section {
  background: var(--gray-bg);
  padding: 100px 80px;
  text-align: center;
}

.fabrics-tag {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 6px;
}

.fabrics-title { font-size: 36px; font-weight: 800; margin-bottom: 48px; }

.fabrics-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.fabric-card {
  width: 280px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.fabric-card img { width: 100%; height: 210px; object-fit: cover; }

.fabric-info {
  background: var(--navy);
  color: #fff;
  padding: 20px 22px;
  text-align: left;
}

.fabric-info h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; letter-spacing: 0.2px; }
.fabric-info p { font-size: 12px; opacity: 0.75; line-height: 1.6; }

/* ── SHIRT MODELS ── */
.shirts-section { padding: 100px 80px; text-align: center; }

.shirts-subtitle {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 8px;
}

.shirts-grid {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.shirt-card { width: 210px; border-radius: 6px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.07); }

.shirt-card img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  background: #f5f5f5;
  padding: 12px;
}

.shirt-name {
  background: var(--navy);
  color: #fff;
  padding: 13px 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
}

.shirt-desc {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 0 14px 14px;
  font-size: 11px;
  text-align: center;
  line-height: 1.6;
}

/* ── PERSONALIZAÇÃO ── */
.personalizacao-section {
  padding: 100px 80px;
  text-align: center;
}

.personalizacao-header h2 { font-size: 38px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 10px; }
.personalizacao-header .pers-sub { font-size: 14px; color: #999; margin-bottom: 52px; }

.personalizacao-body {
  display: flex;
  align-items: center;
  gap: 60px;
  text-align: left;
}

.personalizacao-img {
  flex-shrink: 0;
  width: 380px;
  height: 280px;
  border-radius: 4px;
  overflow: hidden;
  background: #c8d8d4;
}

.personalizacao-img img { width: 100%; height: 100%; object-fit: cover; }

.btn-group { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }

.btn-link-block { text-decoration: none; }
.btn-link-note { font-size: 11px; color: #888; margin-top: 6px; display: block; letter-spacing: 0.2px; }

/* ── FAQ ── */
.faq-section { padding: 100px 80px; text-align: center; }

.faq-section .section-title { margin-bottom: 56px; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 48px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.faq-item h3 { font-size: 14px; font-weight: 700; margin-bottom: 10px; color: var(--navy); }
.faq-item p { font-size: 13px; color: #666; line-height: 1.75; }
.faq-item p a { color: var(--navy); font-weight: 600; }

.faq-highlight { font-weight: 700; color: var(--navy); }

/* ── CONTACT ── */
.contact-section {
  padding: 100px 80px;
  text-align: center;
}

.contact-header h2 { font-size: 38px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 12px; }
.contact-header .contact-form-sub { font-size: 14px; color: #999; margin-bottom: 48px; line-height: 1.6; }

.contact-body {
  display: flex;
  gap: 40px;
  align-items: stretch;
  text-align: left;
}

.contact-form-wrap {
  background: var(--navy);
  border-radius: 6px;
  padding: 40px;
  flex: 1;
  max-width: 480px;
}

.form-field { margin-bottom: 20px; }

.form-field label {
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.form-field input:focus,
.form-field textarea:focus { border-color: rgba(255,255,255,0.5); }

.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.4); }

.form-field textarea { height: 110px; resize: none; }

.btn-form {
  width: 100%;
  background: var(--green);
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  margin-top: 8px;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-form:hover {
  background: #2e9440;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(63,178,78,0.4);
}

.contact-image {
  flex: 1;
  border-radius: 6px;
  overflow: hidden;
  min-height: 340px;
}

.contact-image img { width: 100%; height: 100%; object-fit: cover; }

.contact-socials {
  padding: 100px 80px;
  text-align: center;
  background: var(--gray-bg);
}

.contact-socials h2 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 48px;
}

.social-row { display: flex; justify-content: center; gap: 48px; }

.social-link {
  font-size: 48px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, filter 0.2s;
  display: inline-block;
}
.social-link:hover { transform: scale(1.15); }
.social-link.wa { color: #25D366; }
.social-link.ig { color: #E1306C; }
.social-link.mail { color: #4285F4; }

/* ── INTRO SEQUENCE ── */
.intro-sequence {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 10000;
  overflow: hidden;
  background-color: white;
  transition: opacity 0.5s ease-in-out;
}

.intro-gif-container {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: white;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.intro-gif {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  transition: opacity 0.5s;
}

.intro-video-container {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: black;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.intro-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.enter-button {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
  color: white;
  padding: 1rem 2rem;
  font-size: clamp(24px, 5vw, 40px);
  font-weight: bold;
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -2px rgba(0,0,0,.05);
  cursor: pointer;
  transition: all 0.3s;
  opacity: 0;
  z-index: 10001;
  text-shadow: 4px 4px 10px rgba(0,0,0,.9);
  touch-action: manipulation;
  font-family: 'Inter', sans-serif;
}

.enter-button:hover {
  color: white;
  background: transparent;
  text-shadow: 0 0 10px rgba(255,255,255,.8), 0 0 20px rgba(255,255,255,.6);
}

.enter-button:active { transform: translateX(-50%) scale(0.95); }

body.intro-active { overflow: hidden; height: 100%; }
body.content-visible { overflow-y: auto; height: auto; }

/* ── PAGE TRANSITIONS ── */
.page-transition-overlay {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
}

/* Aplicado pelo inline script no <head> ANTES do browser renderizar — sem transition = instantâneo */
html.pt-active .page-transition-overlay {
  opacity: 1;
  pointer-events: all;
}

/* Saindo de uma página: fade-in animado */
.page-transition-overlay.pt-out {
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.4s ease;
}

/* Chegando em uma nova página: fade-out suave após o GIF rodar */
.page-transition-overlay.pt-in {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.page-transition-overlay img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

/* ── ENHANCEMENTS ── */

/* Product cards: handled in products section above */

/* Fabric cards: lift no hover */
.fabric-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.fabric-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.13);
}

/* Shirt cards: lift no hover */
.shirt-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.shirt-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.13);
}

/* Carousel cards: handled by gallery CSS above */

/* Partner cards: lift no hover */
.partner-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.14);
}

/* FAQ items: highlight no hover */
.faq-item {
  padding: 20px;
  border-radius: 4px;
  border-left: 3px solid transparent;
  transition: background 0.25s, border-color 0.25s;
}
.faq-item:hover {
  background: #f7f8fa;
  border-left-color: var(--navy);
}

/* Footer socials: handled in footer section above */

/* Contact socials: manter scale + adicionar cor suave */
.social-link {
  transition: transform 0.2s, filter 0.2s;
}
.social-link:hover { filter: brightness(1.15); }

/* Nossas img: zoom sutil no hover */
.nossas-section .nossas-img {
  transition: transform 0.4s ease;
  overflow: hidden;
}
.nossas-section:hover .nossas-img { transform: scale(1.02); }

/* Personalizacao img: zoom sutil no hover */
.personalizacao-img {
  transition: box-shadow 0.3s ease;
}
.personalizacao-img:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.12); }

/* Imagens do carrossel: zoom suave */
.carousel-card img {
  transition: transform 0.4s ease;
}
.carousel-card:hover img { transform: scale(1.06); }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .navbar { padding: 14px 24px; }
  .navbar-links { display: none; flex-direction: column; position: absolute; top: 61px; left: 0; right: 0; background: #fff; padding: 20px 24px; gap: 18px; border-bottom: 1px solid #eee; box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
  .navbar-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .hero { padding: 48px 28px; min-height: 420px; }
  .hero-content h1 { font-size: 42px; letter-spacing: -1px; }
  .section-title { font-size: 32px; }

  .performance-section,
  .nossas-section { flex-direction: column; padding: 48px 24px; gap: 36px; }

  .contact-section { padding: 48px 24px; }
  .contact-body { flex-direction: column; gap: 36px; }

  .personalizacao-section { padding: 48px 24px; }
  .personalizacao-body { flex-direction: column; gap: 36px; }

  .performance-images { flex-direction: column; align-items: center; }

  .nossas-section .nossas-img,
  .personalizacao-img { width: 100%; height: 220px; }

  .gallery-section,
  .partners-section,
  .fabrics-section,
  .shirts-section,
  .faq-section,
  .contact-socials,
  .products-section { padding: 48px 24px; }

  .gallery-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .gallery-header-right { align-self: flex-end; }

  .page-hero { padding: 48px 24px 40px; }
  .page-hero h1 { font-size: 36px; letter-spacing: -0.5px; }

  .faq-grid { grid-template-columns: 1fr; gap: 8px; }

  .footer { flex-direction: column; align-items: flex-start; padding: 48px 24px; gap: 28px; }

  .partners-grid { flex-direction: column; align-items: center; }
  .partner-card { width: 100%; max-width: 340px; }

  .contact-form-wrap { max-width: 100%; }
  .contact-image { min-height: 220px; }
}
