/* ============================================
   CLUBE DE TIRO TRIUNFO - MAIN STYLESHEET
   ============================================ */



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


/* CSS Variables */
:root {
  /* Dark Theme Colors */
  --bg-dark: #0a0a0a;
  --bg-dark-2: #111111;
  --bg-dark-3: #1a1a1a;
  
  /* Light Theme Colors */
  --paper: #f5efe3;
  --paper-2: #efe6d6;
  
  /* Text Colors */
  --text-light: #f7f3ea;
  --text-dark: #121212;
  --text-muted-light: #cecece;
  --text-muted-dark: rgba(18, 18, 18, 0.72);
  
  /* Accent Colors */
  --red-primary: #b01616;
  --red-hover: #d11b1b;
  --red-glow: rgba(176, 22, 22, 0.4);
  --gold: #c9a227;
  --gold-light: #e8c547;
  
  /* Borders & Lines */
  --border-light: rgba(255, 255, 255, 0.12);
  --border-dark: rgba(0, 0, 0, 0.10);
  
  /* Shadows */
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.3);
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.2);
  --shadow-glow-red: 0 0 30px rgba(176, 22, 22, 0.3);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --radius-full: 999px;
  
  /* Spacing */
  --max-width: 1200px;
  --section-padding: 120px;
  
  /* Typography */
  --font-display: "Oswald", "Impact", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--font-body);
  color: var(--text-light);
  background: var(--bg-dark);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* Container */
.container {
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
}

/* Section Base */
.section {
  position: relative;
  padding: var(--section-padding) 0;
  content-visibility: auto;
  contain-intrinsic-size: 1000px 800px;
}

.section--dark {
  background: linear-gradient(180deg, var(--bg-dark), var(--bg-dark-2));
  color: var(--text-light);
}

.section--light {
  background: linear-gradient(180deg, var(--paper), var(--paper-2));
  color: var(--text-dark);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-muted-light);
  font-size: 1.1rem;
}

.section--light .section-header p {
  color: var(--text-muted-dark);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-normal);
}

.header--scrolled {
  background: rgba(10, 10, 10, 0.95);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 2rem;
}

/* Logo / Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.brand__logo-img {
  width: 110px;
  object-fit: contain;
}

.brand__logo {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--red-primary), #8a1111);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-glow-red);
  position: relative;
  overflow: hidden;
}

.brand__logo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/target-icon.svg') center/60% no-repeat;
  opacity: 0.9;
}

.brand__logo span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.brand__text {
  display: flex;
  flex-direction: column;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-light);
}

.brand__location {
  font-size: 0.75rem;
  color: var(--text-muted-light);
}

/* Nav Links */
.nav__links {
  display: flex;
  gap: 0.5rem;
}

.nav__link {
  padding: 0.6rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted-light);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  position: relative;
}

.nav__link:hover {
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.08);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--red-primary);
  transition: all var(--transition-fast);
  transform: translateX(-50%);
}

.nav__link:hover::after {
  width: 60%;
}

/* Nav Actions */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Mobile Menu Toggle */
.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-light);
  font-size: 1.5rem;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.98);
  z-index: 999;
  padding: 100px 24px 40px;
  flex-direction: column;
  gap: 1rem;
  overflow-y: auto;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu__link {
  display: block;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
  transition: all var(--transition-fast);
}

.mobile-menu__link:hover {
  background: var(--red-primary);
  border-color: var(--red-primary);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: rgba(0, 0, 0, 0.56);
  color: var(--text-light);
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

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

/* Primary/Red Button */
.btn--primary {
  background: linear-gradient(135deg, var(--red-primary), #8a1111);
  border-color: var(--red-hover);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--red-hover), var(--red-primary));
  box-shadow: var(--shadow-md), 0 0 40px rgba(176, 22, 22, 0.5);
}

/* Button with Bullet Icon */
.btn--bullet {
  padding-left: 2.5rem;
}

.btn--bullet::before {
  content: '';
  position: absolute;
  left: 12px;
  width: 20px;
  height: 20px;
  background: url('../assets/bullet.svg') center/contain no-repeat;
  transition: transform var(--transition-normal);
}

.btn--bullet:hover::before {
  transform: rotate(360deg);
}

.btn--bullet:active::before {
  animation: bulletSpin 0.3s ease;
}

@keyframes bulletSpin {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.2); }
  100% { transform: rotate(360deg) scale(1); }
}

/* Small Button */
.btn--sm {
  padding: 0.6rem 1rem;
  font-size: 0.7rem;
}

/* Large Button */
.btn--lg {
  padding: 1rem 2rem;
  font-size: 0.9rem;
}

/* Light theme buttons */
.section--light .btn:not(.btn--primary) {
  background: rgba(0, 0, 0, 0.05);
  border-color: var(--border-dark);
  color: var(--text-dark);
}

.section--light .btn:not(.btn--primary):hover {
  background: rgba(0, 0, 0, 0.1);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}

.hero > .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 80px);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: opacity 0.8s ease-in-out;
}

.hero__bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero__bg-video.loaded {
  opacity: 1;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: 
    linear-gradient(180deg, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0.7) 30%, rgba(10, 10, 10, 0.7) 70%, rgba(10, 10, 10, 0.8) 100%);
}

/* Animated Target Background */
.hero__targets {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__target {
  position: absolute;
  opacity: 0.08;
  animation: floatTarget 20s ease-in-out infinite;
}

.hero__target:nth-child(1) {
  top: 10%;
  left: 5%;
  width: 200px;
  animation-delay: 0s;
}

.hero__target:nth-child(2) {
  top: 60%;
  right: 10%;
  width: 150px;
  animation-delay: -5s;
}

.hero__target:nth-child(3) {
  bottom: 20%;
  left: 15%;
  width: 100px;
  animation-delay: -10s;
}

@keyframes floatTarget {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

/* Hero Content */
.hero__content {
  text-align: center;
  max-width: 900px;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.hero__badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  font-size: 0.8rem;
  color: var(--text-muted-light);
}

.badge__icon {
  width: 20px;
  height: 20px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--red-primary), #8a1111);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--text-light);
}

.hero__title {
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero__title span {
  color: var(--red-primary);
  text-shadow: 0 0 150px rgb(0 0 0);
}

.hero__subtitle {
  font-size: 1.2rem;
  color: var(--text-muted-light);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Hero Features Strip */
.features-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.85);
  border-top: 1px solid var(--border-light);
  backdrop-filter: blur(10px);
}

.features-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.25rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted-light);
}

.feature-item__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item__icon svg {
  width: 18px;
  height: 18px;
  fill: var(--text-light);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about__content {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-dark);
  /* box-shadow: var(--shadow-lg); */
}

.about__content h3 {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.about__content p {
  color: var(--text-muted-dark);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* Benefits List */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin: 1rem 0 1.25rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(0,0,0,0.04);
}

.benefit-item__icon {
  width: 22px;
  height: 22px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--red-primary), #8a1111);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  flex-shrink: 0;
}

.benefit-item span {
  font-size: 0.95rem;
  color: var(--text-dark);
  fill: currentColor;
}

/* About Image */
.about__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  /* box-shadow: var(--shadow-lg); */
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.about__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(176, 22, 22, 0.1), transparent);
  z-index: 1;
}

/* Silhouette Target Decoration */
.silhouette-decoration {
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 200px;
  height: 300px;
  opacity: 0.1;
  pointer-events: none;
}

/* ============================================
   ACTIVITIES SECTION
   ============================================ */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.activity-card {
  position: relative;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-normal);
  overflow: hidden;
}

.activity-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--red-primary);
  /* box-shadow: var(--shadow-glow-red); */
}

.activity-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgba(176, 22, 22, 0.3), rgba(176, 22, 22, 0.1));
  border: 1px solid rgba(176, 22, 22, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.activity-card__icon svg {
  width: 30px;
  height: 30px;
  fill: var(--text-light);
}

.activity-card h4 {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.activity-card p {
  color: var(--text-muted-light);
  font-size: 0.95rem;
  color: white;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform var(--transition-normal);
}

.gallery__item:hover {
  transform: scale(1.02);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery__item:hover img {
  transform: scale(1.1);
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.6));
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.gallery__item:hover::after {
  opacity: 1;
}

/* ============================================
   STRUCTURE SECTION
   ============================================ */
.structure-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.structure__content {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
}

.structure__content h3 {
  margin-bottom: 1rem;
}

.structure__content p {
  color: var(--text-muted-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* Security Features */
.security-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.security-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.security-item__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--red-primary), #8a1111);
  display: flex;
  align-items: center;
  justify-content: center;
}

.security-item__icon svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.security-item span {
  font-size: 0.85rem;
  font-weight: 500;
}

/* Structure Image Carousel */
.structure__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
}

.structure__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  /* box-shadow: var(--shadow-md); */
}

.structure__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform var(--transition-slow);
}

.structure__image:hover img {
  transform: scale(1.05);
}

.structure__image--large {
  grid-column: span 2;
}

/* ============================================
   MEMBERSHIP SECTION
   ============================================ */
.membership-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.membership-card {
  padding: 3rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-dark);
  /* box-shadow: var(--shadow-lg); */
}

.membership-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.membership-card p {
  color: var(--text-muted-dark);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.membership-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.step {
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.03);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-dark);
}

.step__number {
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--red-primary), #8a1111);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
}

.step h5 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.step p {
  font-size: 0.85rem;
  color: var(--text-muted-dark);
  margin: 0;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact__info {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
}

.contact__info h3 {
  margin-bottom: 1rem;
}

.contact__info p {
  color: var(--text-muted-light);
  margin-bottom: 1.5rem;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.contact-details {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted-light);
}

.contact-detail strong {
  color: var(--text-light);
}

/* Map */
.contact__map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  /* box-shadow: var(--shadow-lg); */
  min-height: 400px;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

.map-overlay {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  padding: 1rem;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.map-overlay__text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.map-overlay__text strong {
  font-family: var(--font-display);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.map-overlay__text span {
  font-size: 0.8rem;
  color: var(--text-muted-light);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #070707;
  border-top: 1px solid var(--border-light);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.footer-col p {
  font-size: 0.9rem;
  color: var(--text-muted-light);
  line-height: 1.7;
}

.footer-col a {
  display: block;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--text-muted-light);
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--text-light);
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted-light);
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.float-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
}

.float-whatsapp .btn {
  padding: 1rem 1.5rem;
  /* box-shadow: var(--shadow-lg), var(--shadow-glow-red); */
}

.float-whatsapp .btn::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--red-primary), var(--red-hover));
  z-index: -1;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(1.05); }
}

/* ============================================
   DECORATIVE ELEMENTS
   ============================================ */
/* Torn Paper Effect */
.torn-edge {
  position: absolute;
  left: 0;
  right: 0;
  height: 50px;
  background-repeat: repeat-x;
  background-size: auto 100%;
  pointer-events: none;
  z-index: 10;
}

.torn-edge--top {
  top: -1px;
  transform: rotate(180deg);
}

.torn-edge--bottom {
  bottom: -1px;
}

/* Crosshair Cursor on hover over certain elements */
.crosshair-hover:hover {
  cursor: crosshair;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1024px) {
  .nav__links {
    display: none;
  }
  
  .nav__toggle {
    display: flex;
  }
  
  .about-grid,
  .structure-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  /* Mobile: Mapa antes do card de atendimento */
  .contact-grid {
    display: flex;
    flex-direction: column;
  }
  
  .contact__map {
    order: -1;
    margin-bottom: 2rem;
  }

  
  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .membership-steps {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }
  
  .container {
    width: calc(100% - 32px);
  }
    
  .hero__badges{
    display: none;
  }

  .features-strip__grid {
    grid-template-columns: 1fr;
    text-align: left;
    display: flex;
    justify-content: space-around;
  }

  
  .feature-item {
    justify-content: flex-start;
    display: flex;
    flex-direction: column;
    text-align: -webkit-center;
    max-width: 33%;
    min-width: 30%;
  }

  
  .activities-grid,
  .gallery {
    grid-template-columns: 1fr;
  }
  
  .security-features {
    grid-template-columns: 1fr;
  }
  
  .structure__images {
    grid-template-columns: 1fr;
  }
  
  .structure__image--large {
    grid-column: auto;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .brand__location {
    display: none;
  }
  
  .badge {
    flex-direction: column;
    max-width: 30%;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }
  
  .hero__subtitle {
    display: none;
  }
  
  .nav__actions .btn:not(.btn--primary) span {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero__ctas {
    flex-direction: column;
    width: 100%;
  }
  
  .hero__ctas .btn {
    width: 100%;
  }
  
  .map-overlay {
    flex-direction: column;
    text-align: center;
  }
  
  .float-whatsapp {
    bottom: 16px;
    right: 16px;
  }
}

/* ============================================
   GALLERY SLIDER
   ============================================ */
.gallery-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin: 0 auto;
}

.gallery-slider__track {
  display: flex;
  gap: 1rem;
  transition: transform 0.5s ease;
  cursor: grab;
}

.gallery-slider__track:active {
  cursor: grabbing;
}

.gallery-slider__item {
  flex: 0 0 calc(25% - 0.75rem);
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-slider__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-slider__item:hover img {
  transform: scale(1.05);
}

.gallery-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.gallery-slider__btn:hover {
  background: var(--red-primary);
  border-color: var(--red-primary);
}

.gallery-slider__btn svg {
  width: 24px;
  height: 24px;
}

.gallery-slider__btn--prev {
  left: 1rem;
}

.gallery-slider__btn--next {
  right: 1rem;
}

/* === GALERIA (Nosso Ambiente) - impedir arrastar a imagem / seleção === */
.gallery-slider__track,
.gallery-slider__track * {
  -webkit-user-select: none;
  user-select: none;
}

.gallery-slider__track img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none; /* faz o gesto "pegar" cair no track, não no img */
}

/* opcional: feedback de "arrastável" */
.gallery-slider__track {
  cursor: grab;
  touch-action: pan-y; /* deixa rolar a página na vertical no mobile */
}

.gallery-slider__track.is-dragging {
  cursor: grabbing;
}


@media (max-width: 1024px) {
  .gallery-slider__item {
    flex: 0 0 calc(33.333% - 0.67rem);
  }
}

@media (max-width: 768px) {
  .gallery-slider__item {
    flex: 0 0 calc(50% - 0.5rem);
  }
  
  .gallery-slider__btn {
    width: 40px;
    height: 40px;
  }
  
  .gallery-slider__btn svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .gallery-slider__item {
    flex: 0 0 100%;
  }
}

/* ============================================
   GUN ICON STYLES
   ============================================ */
.gun-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  display: inline-block;
  vertical-align: middle;
}

.bullet-icon {
  width: 20px;
  height: 20px;
  color: white !important;
  display: inline-block;
  vertical-align: middle;
}

/* ============================================
   BULLET SHINE EFFECT
   ============================================ */


.btn--bullet {
  position: relative;
  overflow: hidden;
}

.btn--bullet::before {
  content: '';
  position: absolute;
  top: 42%;
  right: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.8), transparent);
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.6s ease;
}

.btn--bullet:hover::before {
  width: calc(100% - 40px);
  opacity: 1;
  animation: bulletShine 1.5s ease-in-out infinite;
}

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

@media (max-width: 768px){
  .animate-fade-in-left,
  .animate-fade-in-right{
    transform: none !important;
  }
}


/* ============================================
   NOVO: ABOUT HIGHLIGHT
   ============================================ */
.about-highlight{
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(0,0,0,0.04);
  margin: 1rem 0 1.25rem;
}

.about-highlight__icon{
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--red-primary), #8a1111);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.about-highlight__icon svg{
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.about-highlight__text{
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.about-highlight__text strong{
  color: var(--text-dark);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
}

.about-highlight__text span{
  color: var(--text-muted-dark);
  font-size: 0.95rem;
}

/* ============================================
   NOVO: PRESENÇA FEMININA
   ============================================ */
.women-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.women__content{
  padding: 2rem;
  background: rgba(255,255,255,0.70);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-dark);
  box-shadow: var(--shadow-lg);
}

.women__content h3{
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.women__content p{
  color: var(--text-muted-dark);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.women-points{
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.women-points li{
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: rgba(18,18,18,0.82);
  font-size: 0.95rem;
}

.women-dot{
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--red-primary), #8a1111);
  color: #fff;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 0.75rem;
  margin-top: 2px;
}

.women__images{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.women__image{
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.10);
  max-height: 210px;
}

.women__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* ============================================
   NOVO: EQUIPAMENTOS
   ============================================ */
.equip-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.equip-card{
  position: relative;
  padding: 2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  text-align: center;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.equip-card:hover{
  transform: translateY(-5px);
  background: rgba(255,255,255,0.08);
  border-color: var(--red-primary);
  box-shadow: var(--shadow-glow-red);
}

.equip-card__icon{
  width: 62px;
  height: 62px;
  margin: 0 auto 1.25rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgba(176,22,22,0.30), rgba(176,22,22,0.10));
  border: 1px solid rgba(176,22,22,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
}

.equip-icon{
  width: 34px;
  height: 34px;
  filter: brightness(0) invert(1);
}

.equip-card h4{
  margin-bottom: 0.7rem;
  font-size: 1.05rem;
}

.equip-card p{
  color: var(--text-muted-light);
  font-size: 0.9rem;
  line-height: 1.65;
}

.equip-note{
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 1.5rem 1.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
}

.equip-note__badge{
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.35);
  margin-bottom: 0.75rem;
}

.equip-note__icon{
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.equip-note__badge span{
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  font-weight: 700;
}

.equip-note p{
  color: var(--text-muted-light);
  max-width: 760px;
  margin: 0.25rem auto 0;
  line-height: 1.7;
}

/* ============================================
   RESPONSIVO NOVO
   ============================================ */
@media (max-width: 1024px){
  .women-grid{
    grid-template-columns: 1fr;
  }
  .equip-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px){
  .equip-grid{
    grid-template-columns: 1fr;
  }
  
  /* Mobile: Imagem antes do conteúdo nas seções */
  .about-grid,
  .women-grid,
  .structure-grid {
    display: flex;
    flex-direction: column;
  }
  
  .about__image,
  .women__images,
  .structure__images {
    order: -1;
    margin-bottom: 1.5rem;
  }
  
  /* Apenas 1 imagem no mobile */
  .about__image img:not(:first-child),
  .women__image:not(:first-child),
  .structure__image:not(:first-child) {
    display: none;
  }
  
  /* Altura fixa para as imagens no mobile */
  .about__image,
  .women__image:first-child,
  .structure__image:first-child {
    height: 220px;
    max-height: 220px;
  }
  
  .about__image img,
  .women__image:first-child img,
  .structure__image:first-child img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  
  .structure__images {
    display: block;
  }
  
  .structure__image:first-child {
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
  
  /* Botões 100% largura no mobile (exceto hero) */
  .about .btn,
  .activities .btn,
  .women .btn,
  .equipment .btn,
  .structure .btn,
  .membership .btn,
  .contact .btn,
  .section:not(.hero) .btn {
    width: 100%;
    justify-content: center;
  }
  
  /* Ajuste para grupos de botões */
  .about-actions,
  .cta-buttons,
  .activities-actions,
  .structure-cta,
  .membership-actions,
  .contact-actions {
    flex-direction: column;
    width: 100%;
  }
}
