/* Design Tokens & CSS Variables - Premium Light Theme */
:root {
  /* Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  
  --accent-burgundy: #881337;
  --accent-petrol: #0f766e;
  --accent-burgundy-light: #9f1239;
  --accent-petrol-light: #115e59;
  
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  
  --border-color: rgba(15, 23, 42, 0.08);
  --border-hover: rgba(15, 23, 42, 0.15);
  
  /* Glassmorphism (Adapted for Light Theme) */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-bg-hover: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(15, 23, 42, 0.06);
  --glass-blur: blur(16px);
  
  /* Fonts */
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Transitions */
  --transition-smooth: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.15s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.15s cubic-bezier(0.16, 1, 0.3, 1), color 0.15s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.15s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.15s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100%;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

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

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

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

/* Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 8rem 0;
}

.text-gradient {
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--text-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.accent-gradient {
  background: linear-gradient(135deg, var(--accent-burgundy), var(--accent-petrol));
}

.accent-text-gradient {
  background: linear-gradient(135deg, var(--accent-burgundy), var(--accent-petrol));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Header Component */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.header--scrolled {
  padding: 0.75rem 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.05);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: var(--transition-smooth);
}

.header--scrolled .container {
  height: 60px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.header--scrolled .logo-img {
  height: 32px;
}

.logo-text {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.logo-text span {
  font-weight: 400;
  color: var(--text-secondary);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-burgundy);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after {
  width: 100%;
}

.btn-contact {
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 700;
  border: 1px solid var(--accent-burgundy);
  background: transparent;
  color: var(--accent-burgundy);
  transition: var(--transition-smooth);
}

.btn-contact:hover {
  background: var(--accent-burgundy);
  color: #ffffff;
  transform: translateY(-1px);
}

/* Nav Experimental Button */
.btn-experimental-nav {
  display: none;
  width: 100%;
  padding: 1rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  color: #ffffff;
  background: var(--accent-burgundy);
  transition: var(--transition-smooth);
}

.btn-experimental-nav:hover {
  background: var(--accent-burgundy-light);
}

/* Mobile Menu Toggle Button (hidden on desktop) */
.menu-toggle-btn {
  display: none;
  font-size: 1.5rem;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.nav-close-btn {
  display: none;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.nav-close-btn:hover, .menu-toggle-btn:hover {
  color: var(--accent-burgundy);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.22;
  filter: grayscale(80%) contrast(105%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, transparent 5%, var(--bg-primary) 65%),
              linear-gradient(to bottom, transparent, var(--bg-primary) 98%);
  z-index: -1;
}

.hero-content {
  max-width: 685px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-badge {
  align-self: flex-start;
  padding: 0.5rem 1.25rem;
  background: rgba(136, 19, 55, 0.05);
  border: 1px solid rgba(136, 19, 55, 0.15);
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-burgundy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-badge::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-primary);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  margin-top: 1rem;
}

.btn-primary {
  padding: 1rem 2.25rem;
  border-radius: 12px;
  font-weight: 700;
  color: #ffffff;
  background: var(--accent-burgundy);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18), 0 6px 8px rgba(0, 0, 0, 0.12);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(136, 19, 55, 0.35);
  background: var(--accent-burgundy-light);
}

.btn-secondary {
  padding: 1rem 2.25rem;
  border-radius: 12px;
  font-weight: 700;
  border: 2px solid var(--border-color);
  background: transparent;
  color: var(--text-primary);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-secondary:hover {
  border-color: var(--text-primary);
  background: rgba(15, 23, 42, 0.03);
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.section-subtitle {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-burgundy);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.section-desc-top {
  font-size: 1rem;
  color: var(--text-secondary);
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-cols: 1.1fr 0.9fr;
  gap: 4.5rem;
  align-items: flex-start;
}

.about-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Team Grid */
.team-heading {
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: 2rem;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.team-grid {
  display: grid;
  grid-template-cols: 1fr 1fr;
  gap: 1.5rem;
}

/* Unified Team Card Styling */
.team-unified-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 2rem;
  display: grid;
  grid-template-cols: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
  transition: var(--transition-smooth);
}

.team-unified-card:hover {
  border-color: var(--accent-burgundy);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.team-ceo-side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.team-ceo-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.ceo-image-box {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #ffffff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15), 0 4px 6px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.ceo-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ceo-meta h4 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.ceo-role {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-burgundy);
  letter-spacing: 0.08em;
}

.ceo-bio {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}

.ceo-bio p {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.ceo-bio p i {
  color: var(--accent-petrol);
  margin-top: 0.2rem;
  font-size: 1rem;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}

.team-specialties-side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border-left: 2px solid var(--border-color);
  padding-left: 2rem;
  height: 100%;
  justify-content: center;
}

.specialties-box {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.specialties-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.specialties-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.specialties-list li i {
  color: var(--accent-burgundy);
  font-size: 1.25rem;
  width: 24px;
  text-align: center;
}

.team-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  transition: var(--transition-smooth);
}

.team-card:hover {
  background: #ffffff;
  border-color: var(--accent-burgundy);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.04);
  transform: translateY(-2px);
}

.team-image-box {
  width: 65px;
  height: 65px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  flex-shrink: 0;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-info-box h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
  color: var(--text-primary);
}

.team-info-box p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Installations space Carousel (Gym Space Gallery) */
.installations-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.spaces-slider-wrapper {
  position: relative;
  width: 100%;
}

.spaces-slider {
  display: flex;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
  background: #ffffff;
  aspect-ratio: 4 / 3;
  width: 100%;
  max-width: 100%;
}

.space-slide {
  min-width: 100%;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.space-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.spaces-slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
  gap: 1rem;
}

.spaces-slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.spaces-slider-btn:hover {
  background: var(--accent-burgundy);
  color: #ffffff;
  border-color: transparent;
}

.spaces-slider-dots {
  display: flex;
  gap: 0.5rem;
}

.spaces-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-hover);
  transition: var(--transition-fast);
  cursor: pointer;
}

.spaces-slider-dot.active {
  background: var(--accent-burgundy);
  width: 20px;
  border-radius: 9999px;
}

/* Services and Modalities (services-grid & service-card) */
.services-grid {
  display: grid;
  grid-template-cols: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
}

.service-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.015);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-burgundy);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.04);
}

.service-img-box {
  height: 250px;
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.service-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: var(--transition-smooth);
}

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

.service-content {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.service-tag {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent-petrol);
  letter-spacing: 0.08em;
  background: rgba(15, 118, 110, 0.06);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(15, 118, 110, 0.12);
}

.service-card:nth-child(even) .service-tag {
  color: var(--accent-burgundy);
  background: rgba(136, 19, 55, 0.06);
  border-color: rgba(136, 19, 55, 0.12);
}

.service-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
}

.service-description-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.service-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0.5rem 0 1rem;
}

.service-features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text-secondary);
}

.service-features-list li i {
  color: var(--accent-petrol);
  font-size: 0.85rem;
}

.service-card:nth-child(even) .service-features-list li i {
  color: var(--accent-burgundy);
}

.btn-service-action {
  margin-top: auto;
  width: 100%;
  padding: 1rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.service-card:hover .btn-service-action {
  background: var(--accent-burgundy);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15), 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Schedule Button Box inside Group Classes */
.schedule-download-container {
  margin: 0.25rem 0;
}

.btn-schedule-download {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-petrol);
  background: rgba(15, 118, 110, 0.05);
  border: 1px solid rgba(15, 118, 110, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  width: 100%;
  justify-content: center;
  transition: var(--transition-fast);
}

.btn-schedule-download:hover {
  background: var(--accent-petrol);
  color: #ffffff;
  border-color: transparent;
}

/* Testimonials Slide (Screenshot Carrossel) */
.testimonials-slider-wrapper {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  position: relative;
  padding: 1rem 0;
}

.testimonials-slider {
  display: flex;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--border-color);
  background: #ffffff;
  position: relative;
  width: 100%;
  max-width: 100%;
}

.testimonial-slide {
  min-width: 100%;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.testimonial-img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  gap: 1rem;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-btn:hover {
  background: var(--accent-burgundy);
  color: #ffffff;
  border-color: transparent;
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-hover);
  transition: var(--transition-fast);
  cursor: pointer;
}

.slider-dot.active {
  background: var(--accent-burgundy);
  width: 20px;
  border-radius: 9999px;
}

/* Floating WhatsApp Widget */
.whatsapp-floating-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  z-index: 999;
  transition: var(--transition-smooth);
  animation: pulseWidget 2s infinite;
}

.whatsapp-floating-widget:hover {
  transform: scale(1.08) translateY(-2px);
  background-color: #20ba5a;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

@keyframes pulseWidget {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Modal Booking Overlay & Content */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 1.5rem;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 28px;
  width: 100%;
  max-width: 550px;
  padding: 2.5rem;
  position: relative;
  transform: translateY(30px) scale(0.95);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-content {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.modal-close:hover {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  transform: rotate(90deg);
}

.modal-header {
  margin-bottom: 1.5rem;
  text-align: center;
}

.modal-category {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-burgundy);
  margin-bottom: 0.4rem;
  display: block;
}

.modal-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.modal-subtitle-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.modal-body {
  display: flex;
  flex-direction: column;
}

.modal-btn-action {
  width: 100%;
  padding: 1rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  color: #ffffff;
  background: var(--accent-burgundy);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18), 0 6px 8px rgba(0, 0, 0, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: none;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.modal-btn-action:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(136, 19, 55, 0.25);
  background: var(--accent-burgundy-light);
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-cols: 1.15fr 0.85fr;
  gap: 4.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-lead {
  font-size: 1.15rem;
  color: var(--text-secondary);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.005);
  transition: var(--transition-smooth);
}

.contact-method-item:hover {
  border-color: var(--accent-burgundy);
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(136, 19, 55, 0.05);
  border: 1px solid rgba(136, 19, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-burgundy);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-method-details {
  flex-grow: 1;
  min-width: 0;
}

.contact-method-details h4 {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  letter-spacing: 0.05em;
}

.contact-method-details p {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.5;
}

.contact-direct-link {
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.contact-direct-link:hover {
  color: var(--accent-burgundy);
}

/* Location map links & texts */
.location-links-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.25rem;
  width: 100%;
  max-width: 100%;
}

.location-map-link {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--accent-petrol);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  width: 100%;
  max-width: 100%;
  word-break: break-word;
}

.location-map-link:hover {
  color: var(--accent-burgundy);
  transform: translateX(4px);
}

.location-text-nonlink {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Contact Form Container */
.contact-form-container {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 28px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
}

.form-box-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-row {
  display: grid;
  grid-template-cols: 1fr 1fr;
  gap: 1.5rem;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.form-input, .form-textarea, .form-select {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1rem;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  outline: none;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--accent-petrol);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.05);
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23475569'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.25rem;
  padding-right: 2.5rem;
}

.form-select option {
  background: #ffffff;
  color: var(--text-primary);
}

.btn-form-submit {
  padding: 1rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  color: #ffffff;
  background: var(--accent-burgundy);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18), 0 6px 8px rgba(0, 0, 0, 0.12);
  border: none;
  transition: var(--transition-smooth);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(136, 19, 55, 0.25);
  background: var(--accent-burgundy-light);
}

/* Footer Component */
.footer {
  border-top: 1px solid var(--border-color);
  padding: 5rem 0.25rem;
  background: var(--bg-secondary);
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand-logo img {
  height: 48px;
  width: auto;
}

.footer-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 300px;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.social-link:hover {
  background: var(--accent-burgundy);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-3px);
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-nav-title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 1rem;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--accent-burgundy);
  padding-left: 4px;
}

.footer-link-text {
  font-size: 1rem;
  color: var(--text-secondary);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
    letter-spacing: -0.04em;
  line-height: 1.1;
}
  .about-grid, .contact-grid {
    grid-template-cols: 1fr;
    gap: 4rem;
  }
  .installations-container {
    order: 1;
  }
  .services-grid {
    grid-template-cols: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
  .section {
    padding: 6rem 0;
  }
  .section-title {
    font-size: 2rem;
    letter-spacing: -0.03em;
  line-height: 1.2;
}
  .header .container {
    height: 70px;
  }
  .logo-text {
    font-size: 1.22rem;
  }
  .logo-img {
    height: 32px;
  }
  .menu-toggle-btn {
    display: block;
  }
  .nav-close-btn {
    display: block;
  }
  .nav {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    border-left: 1px solid var(--border-color);
    box-shadow: -10px 0 30px rgba(15, 23, 42, 0.05);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 2rem;
    align-items: flex-start;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 99;
  }
  .nav.active {
    transform: translateX(0);
  }
  .nav-link {
    font-size: 1.25rem;
    width: 100%;
    border-bottom: 1px solid rgba(15, 23, 42, 0.04);
    padding-bottom: 0.75rem;
  }
  .nav-link::after {
    display: none;
  }
  .btn-contact {
    display: none;
  }
  .btn-experimental-nav {
    display: block;
    margin-top: 1rem;
  }
  .hero {
    padding-top: 80px;
  }
  .hero-title {
    font-size: 2.75rem;
    letter-spacing: -0.04em;
  line-height: 1.1;
}
  .hero-description {
    font-size: 1.05rem;
  }
  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
  }
  .btn-primary, .btn-secondary, .btn-form-submit {
    width: 100%;
    justify-content: center;
  }
  .team-grid {
    grid-template-cols: 1fr;
  }
  /* Removed team-unified-card rules from 768px query to keep it side-by-side on wider screens */
  .contact-form-container {
    padding: 2rem;
  }
  .footer-grid {
    grid-template-cols: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .whatsapp-floating-widget {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
  }
  .modal-included-grid, .pt-packs-grid {
    grid-template-cols: 1fr;
    gap: 1.5rem;
  }
}

/* PT Packs Modal Custom Styling */
.pt-packs-modal-content {
  max-width: 950px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-included-services {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.modal-included-services h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  text-align: center;
}

.modal-included-grid {
  display: grid;
  grid-template-cols: 1fr 1fr;
  gap: 1.5rem;
}

.modal-included-item {
  display: flex;
  gap: 1rem;
}

.modal-included-item i {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(15, 118, 110, 0.05);
  border: 1px solid rgba(15, 118, 110, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-petrol);
  font-size: 1rem;
  flex-shrink: 0;
}

.modal-included-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: var(--text-primary);
}

.modal-included-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.pt-packs-grid {
  display: grid;
  grid-template-cols: 1fr 1fr;
  gap: 2rem;
}

.pt-pack-item-card {
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  position: relative;
  transition: var(--transition-smooth);
}

.pt-pack-item-card.featured {
  border-color: var(--accent-burgundy);
  box-shadow: 0 8px 24px rgba(136, 19, 55, 0.06);
}

.pt-pack-item-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
}

.pt-pack-badge {
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-petrol);
  background: rgba(15, 118, 110, 0.05);
  padding: 0.2rem 0.5rem;
  border-radius: 9999px;
}

.pt-pack-item-card.featured .pt-pack-badge {
  color: var(--accent-burgundy);
  background: rgba(136, 19, 55, 0.05);
}

.pt-pack-item-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
}

.pt-pack-price-badge {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  background: var(--bg-secondary);
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  width: fit-content;
}

.pt-pack-desc-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pt-pack-include-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}

.pt-pack-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.pt-pack-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.pt-pack-features li i {
  color: var(--accent-petrol);
  font-size: 0.85rem;
}

.pt-pack-item-card.featured .pt-pack-features li i {
  color: var(--accent-burgundy);
}

.pt-pack-cta-btn {
  margin-top: auto;
  width: 100%;
  padding: 1rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  color: #ffffff;
  background: var(--accent-burgundy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
}

.pt-pack-cta-btn:hover {
  background: var(--accent-burgundy-light);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15), 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 680px) {
  .team-unified-card {
    grid-template-cols: 1fr;
    gap: 3rem;
    padding: 2rem;
  }
  .team-ceo-header {
    flex-direction: column;
    text-align: center;
  }
  .team-specialties-side {
    border-left: none;
    border-top: 2px solid var(--border-color);
    padding-left: 0;
    padding-top: 2.5rem;
  }
}

/* Digital & Text-only Cards */
.text-only-card {
  min-height: 280px;
}

.text-only-card .service-content {
  padding: 2.5rem 2rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.text-only-card .service-description-text {
  margin-bottom: 2rem;
}

.text-only-card .btn-service-action {
  margin-top: auto;
}

.service-card.highlighted {
  border-color: var(--accent-burgundy);
  box-shadow: 0 10px 25px rgba(136, 19, 55, 0.05);
}

.service-card.highlighted .btn-service-action {
  background: var(--accent-burgundy);
  color: #ffffff;
  border-color: transparent;
}

.service-card.highlighted .btn-service-action:hover {
  background: var(--accent-burgundy-light);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15), 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 480px) {
  .modal-content {
    padding: 1.5rem;
    border-radius: 20px;
  }
  .modal-included-services {
    padding: 1.25rem;
  }
  .pt-pack-item-card {
    padding: 1.5rem;
  }
  .testimonials-slider-wrapper {
    max-width: 100%;
  }
  .logo-text {
    font-size: 1.05rem;
  }
  .logo-img {
    height: 28px;
  }
  .section-title {
    font-size: 1.75rem;
    letter-spacing: -0.03em;
  line-height: 1.2;
}
  .contact-lead {
    font-size: 0.95rem;
  }
  .contact-form-container {
    padding: 1.5rem;
    border-radius: 20px;
  }
  .contact-method-item {
    padding: 1.25rem;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
  }
  .contact-method-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .location-map-link {
    font-size: 0.85rem;
    flex-wrap: wrap;
  }
  .footer-brand-logo img {
    height: 32px;
  }
  .footer {
    padding: 3rem 0 2rem;
  }
  .footer-grid {
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  .about-grid, .contact-grid {
    gap: 2.5rem;
  }
}

/* Fix header formatting after adding Fazer Inscrição button */
.nav { gap: 1.2rem !important; }
.nav-link { white-space: nowrap !important; }
.btn-contact { white-space: nowrap !important; padding: 0.5rem 1rem !important; }
.header-buttons { flex-shrink: 0 !important; }

/* Fix overlapping and spacing */
.header-buttons { margin-left: 2vw !important; }
@media (max-width: 1200px) {
  .logo-text span { display: none !important; }
  .nav { gap: 1vw !important; }
  .nav-link { font-size: 1rem !important; }
  .btn-contact { padding: 0.5rem 0.75rem !important; font-size: 0.85rem !important; }
}

/* Stronger fix for overlapping */
@media (max-width: 1500px) {
  .logo-text span { display: none !important; }
  .nav { gap: 1vw !important; }
  .nav-link { font-size: 0.85rem !important; }
  .btn-contact { padding: 0.5rem 0.75rem !important; font-size: 0.85rem !important; }
}

/* CENTERING NAV AND BIGGER LOGO */
.header .container {
  display: flex !important;
  align-items: center !important;
  max-width: 1800px !important;
}
.logo {
  flex: 1 !important;
  display: flex !important;
  justify-content: flex-start !important;
}
@media (min-width: 1025px) {
  .nav {
    flex: 0 0 auto !important;
    justify-content: center !important;
  }
}
.header-buttons {
  flex: 1 !important;
  display: flex !important;
  justify-content: flex-end !important;
  gap: 1rem !important;
}
.logo-img {
  height: 55px !important; /* Bigger logo */
}

/* MODERN BUTTONS FOR HEADER */
.header-buttons .btn-contact {
  border-radius: 12px !important;
  padding: 0.5rem 1.2rem !important;
  font-weight: 600 !important;
  transition: transform 0.3s, opacity 0.3s, background-color 0.3s, color 0.3s ease !important;
  text-transform: none !important;
  border: 2px solid transparent !important;
}
.header-buttons .tally-form-link {
  background-color: var(--accent-petrol) !important;
  color: white !important;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15), 0 4px 6px rgba(0, 0, 0, 0.1) !important;
}
.header-buttons .tally-form-link:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(15, 118, 110, 0.3) !important;
  background-color: var(--accent-petrol-light) !important;
}
.header-buttons #btn-contact-header {
  background-color: transparent !important;
  border: 2px solid var(--accent-burgundy) !important;
  color: var(--accent-burgundy) !important;
}
.header-buttons #btn-contact-header:hover {
  background-color: var(--accent-burgundy) !important;
  color: white !important;
  transform: translateY(-2px) !important;
}

/* MODERN BUTTONS FOR HERO (EQUAL HEIGHT, UNIFORM LOOK) */
.hero-actions {
  display: flex !important;
  align-items: stretch !important;
  gap: 1rem !important;
  flex-wrap: wrap !important;
}
.hero-actions > * {
  flex: 1 !important;
  min-width: 220px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  padding: 1rem 1.5rem !important;
  border-radius: 12px !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  border: 2px solid transparent !important;
  white-space: normal !important;
  box-sizing: border-box !important;
}
#hero-btn-explore {
  background-color: var(--accent-burgundy) !important;
  color: white !important;
}
#hero-btn-subscribe {
  background-color: var(--accent-petrol) !important;
  color: white !important;
}
#hero-btn-learn {
  background-color: transparent !important;
  border: 2px solid rgba(255,255,255,0.6) !important;
  color: white !important;
}
#hero-btn-learn:hover {
  background-color: white !important;
  color: var(--text-primary) !important;
}

@media (max-width: 1024px) {
  .logo-img { height: 45px !important; }
  .header-buttons { display: none !important; }
  .logo { flex: unset !important; }
  .header .container { justify-content: space-between !important; }
}

/* UPDATE HERO BTN LEARN TO SOLID WHITE */
#hero-btn-learn {
  background-color: #ffffff !important;
  border: 2px solid #ffffff !important;
  color: var(--text-primary) !important;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15), 0 4px 6px rgba(0, 0, 0, 0.1) !important;
}
#hero-btn-learn:hover {
  background-color: rgba(255,255,255,0.85) !important;
  border-color: rgba(255,255,255,0.85) !important;
}



@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
