/* Reset e Variáveis */

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

:root {
  --primary-color: #00d4ff;
  --secondary-color: #0099cc;
  --accent-color: #0066cc;
  --dark-bg: #FFD700;
  --darker-bg: #FFA500;
  --text-light: #1a1a1a;
  --text-gray: #666666;
  --transition: all 0.3s ease;
  --border-radius: 8px;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: #1e3a8a;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  z-index: 9999;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

/* Focus Visible */
*:focus-visible {
  outline: 3px solid #2563eb;
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #2563eb;
  outline-offset: 2px;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header e Navegação */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(135deg, #900001 0%, #a00002 25%, #b00003 50%, #a00002 75%, #900001 100%);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 255, 255, 0.1);
}

.navbar {
  padding: 1rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.5);
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.9)) brightness(1.5) contrast(1.2);
}

.logo-text {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.5);
}

.logo-line {
  display: inline-block;
  width: 45px;
  height: 28px;
  margin-left: 12px;
  vertical-align: middle;
  flex-shrink: 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.2rem;
}

.language-switcher {
  margin-left: 1rem;
}

.language-select {
  min-width: 4.5rem;
  padding: 0.4rem 1.8rem 0.4rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.language-select option {
  background: #900001;
  color: #ffffff;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.6), 0 0 15px rgba(255, 255, 255, 0.4);
}

.nav-link:hover {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(255, 255, 255, 1), 0 0 25px rgba(255, 255, 255, 0.8), 0 0 35px rgba(255, 255, 255, 0.6);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
  box-shadow: 0 0 15px rgba(255, 255, 255, 1);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  background: none;
  border: none;
  padding: 4px;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  transition: var(--transition);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.8), 0 0 15px rgba(255, 255, 255, 0.5);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-intro {
  text-align: left;
  margin-bottom: 4rem;
  padding: 0 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.hero-intro-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000000;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.hero-intro-small {
  font-size: 1.875rem; /* reduzido para caber numa linha */
  font-weight: 500;
  display: inline;
  vertical-align: baseline;
  text-transform: lowercase;
  letter-spacing: -0.01em;
}

.hero-intro-e {
  text-transform: uppercase;
}

.hero-intro-main {
  font-family: 'Playfair Display', serif;
  font-size: 2.375rem; /* reduzido para caber numa linha */
  font-weight: 400;
  color: #E60000;
  text-transform: none;
  font-style: normal;
  letter-spacing: -0.01em;
  display: inline;
}

@media (max-width: 768px) {
  .hero-intro-title {
    font-size: 1.8rem;
  }
  
  .hero-intro-small {
    font-size: 0.9rem;
  }
}

.hero-header {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px 3rem 20px;
  text-align: center;
  z-index: 1;
}

.hero-title-main {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #000000;
  white-space: nowrap;
  text-align: center;
}

.hero-description-main {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #000000;
  max-width: 100%;
  text-align: center;
}

.hero-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
  z-index: 1;
}

.hero-content {
  text-align: left;
  animation: fadeInUp 1s ease;
}

.hero-intro-text {
  color: #000000;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 500;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: stretch;
  animation: fadeInUp 1s ease;
  height: 100%;
}

.hero-videos {
  width: 100%;
  max-width: 620px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.hero-video-card {
  position: relative;
  min-height: 360px;
  border-radius: 12px;
  overflow: hidden;
  background: #111827;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.16);
}

.hero-video-label {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.68);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-img {
  width: 100%;
  max-width: 550px;
  height: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.hero-whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  z-index: 1000;
  color: #ffffff;
  text-decoration: none;
}

.hero-whatsapp-btn:hover {
  background: #20BA5A;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.hero-whatsapp-btn svg {
  width: 32px;
  height: 32px;
}

.hero-title {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #000000;
  white-space: nowrap;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-features {
  text-align: left;
  background: linear-gradient(135deg, #1a4d5e 0%, #0f2d3a 100%);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 550px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

.hero-features-intro {
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.hero-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

.hero-features-list li {
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.hero-features-list li strong {
  font-weight: 700;
  color: #ffffff;
}

.hero-features-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #00d4ff;
  font-size: 1.5rem;
  line-height: 1.4;
}

.hero-services-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #ffffff;
  color: #4a5568;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  align-self: flex-start;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-services-btn:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-features::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background-image: url('logo.webp');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
  filter: blur(0.5px);
}

.hero-features-list li {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  padding-left: 2rem;
  position: relative;
  z-index: 1;
  padding-bottom: 0;
  border-bottom: none;
}

.hero-features-list li:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.hero-features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.2rem;
  top: 0;
}

.hero-features-list li strong {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.05rem;
  display: inline;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #ffffff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

/* Sections */
.section {
  padding: 100px 0;
}

.section-alt {
  background-color: var(--darker-bg);
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

#servicios .section-title {
  color: #000000;
  background: none;
  -webkit-text-fill-color: #000000;
  background-clip: unset;
}

.services-balanceo-box {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.services-balanceo-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: start;
}

.services-balanceo-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-balanceo-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 8px;
  object-fit: contain;
  display: block;
}

.services-balanceo-content {
  display: flex;
  flex-direction: column;
}

.services-balanceo-text {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 1.5rem 0;
  font-weight: 500;
}

.services-balanceo-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.services-balanceo-list li {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
  padding-left: 2rem;
  position: relative;
}

.services-balanceo-list li:last-child {
  margin-bottom: 0;
}

.services-balanceo-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.2rem;
}

.services-balanceo-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #25D366;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 1.5rem;
  transition: all 0.3s ease;
  align-self: flex-start;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.services-balanceo-whatsapp-btn .btn-main-text {
  font-size: 1rem;
}

.services-balanceo-whatsapp-btn .btn-sub-text {
  font-size: 0.81rem; /* 3 pontos menor (16px - 3px = 13px, que é aproximadamente 0.81rem) */
}

.services-balanceo-whatsapp-btn:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.services-balanceo-whatsapp-btn svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .services-balanceo-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .services-balanceo-whatsapp-btn {
    align-self: stretch;
    justify-content: center;
  }
}

/* About Section */
.about-content {
  max-width: 1200px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-text {
  font-size: 1.1rem;
  color: var(--text-gray);
  line-height: 1.8;
}

.about-text h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.about-text p {
  margin-bottom: 1.5rem;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: #ffffff;
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 10px;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-gray);
  font-size: 1rem;
}

/* Services Content */
.services-content {
  max-width: 900px;
  margin: 0 auto;
  margin-top: 2rem;
}

.services-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 2rem;
  text-align: center;
}

.services-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-features li {
  background: #ffffff;
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.6;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.services-features li:hover {
  transform: translateX(5px);
  border-color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}

.services-features li strong {
  color: var(--primary-color);
  display: block;
  margin-bottom: 0.5rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: #ffffff;
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 10px;
  padding: 2rem;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.service-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.service-card p {
  color: var(--text-gray);
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  background-color: #ffffff;
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 5px;
  color: var(--text-light);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

/* Equipment Section */
#equipamento .section-title {
  color: #000000;
  margin-bottom: 1rem;
}

.equipment-intro {
  text-align: center;
  font-size: 1.2rem;
  color: #000000;
  margin-top: 0;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.equipment-wrapper {
  display: flex;
  gap: 2rem;
  max-width: 100%;
  margin: 0 auto;
  align-items: stretch;
}

.equipment-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-self: stretch;
}

.equipment-item-wrapper {
  background: #36454F;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex: 1;
  flex-direction: column;
  transition: var(--transition);
}

.equipment-image-section {
  text-align: center;
  margin-bottom: 0;
  padding: 1rem;
  background: #36454F;
}

.equipment-image {
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  display: block;
  object-fit: contain;
}

.equipment-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 2rem;
  transition: var(--transition);
  box-shadow: none;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.equipment-item-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
  border-color: var(--primary-color);
}

.equipment-card h3 {
  color: #ffffff;
  margin-bottom: 0.8rem;
  font-size: 1.8rem;
  font-weight: 700;
}

.equipment-title-link {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 2px solid transparent;
}

.equipment-title-link:hover {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.equipment-description {
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.5;
  font-size: 1rem;
}

.equipment-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

.equipment-features li {
  color: #ffffff;
  padding: 0.4rem 0;
  padding-left: 1.8rem;
  position: relative;
  font-size: 1rem;
  line-height: 1.4;
}

.equipment-features li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.2rem;
}

.equipment-price {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.equipment-buttons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.equipment-btn {
  flex: 1;
  min-width: 100px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.equipment-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  background-color: rgba(255, 255, 255, 0.2);
}

.btn-details {
  background-color: rgba(0, 212, 255, 0.2);
  border-color: rgba(0, 212, 255, 0.5);
}

.btn-details:hover {
  background-color: rgba(0, 212, 255, 0.4);
  border-color: rgba(0, 212, 255, 0.8);
}

.btn-ebay {
  background-color: rgba(255, 140, 0, 0.2);
  border-color: rgba(255, 140, 0, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-ebay svg {
  flex-shrink: 0;
  vertical-align: middle;
}

.btn-ebay:hover {
  background-color: rgba(255, 140, 0, 0.4);
  border-color: rgba(255, 140, 0, 0.8);
}

.btn-whatsapp {
  background-color: rgba(37, 211, 102, 0.2);
  border-color: rgba(37, 211, 102, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-whatsapp svg {
  flex-shrink: 0;
  vertical-align: middle;
}

.btn-whatsapp:hover {
  background-color: rgba(37, 211, 102, 0.4);
  border-color: rgba(37, 211, 102, 0.8);
}

@media (max-width: 768px) {
  .equipment-buttons {
    flex-direction: column;
  }
  
  .equipment-btn {
    width: 100%;
  }
}

.equipment-publication {
  width: 50%;
  background: #36454F;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1.8rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

.publication-title {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  margin-top: 0;
}

.publication-divider {
  border: none;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  margin: 1.2rem 0;
}

.publication-subtitle {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 1.2rem;
  margin-bottom: 0.7rem;
}

.publication-subtitle:first-of-type {
  margin-top: 1rem;
}

.publication-text {
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 2.0;
  margin-bottom: 0.7rem;
  text-align: justify;
}

.publication-text strong {
  font-weight: 700;
  color: #ffffff;
}

.publication-list {
  list-style: none;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.publication-list li {
  color: #ffffff;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
}

.publication-videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
}

.video-container {
  display: flex;
  flex-direction: column;
}

.video-title {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-align: center;
}

.publication-video {
  width: 100%;
  height: auto;
  max-height: 300px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #000000;
  object-fit: cover;
}

.publication-image-wrap {
  margin-top: 1.5rem;
  padding-top: 1rem;
}

.publication-image {
  width: 100%;
  max-height: 420px;
  display: block;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  object-fit: cover;
}

@media (max-width: 768px) {
  .publication-videos {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.publication-list li::before {
  content: '•';
  position: absolute;
  left: -1.5rem;
  font-weight: bold;
}

.publication-features {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.publication-features li {
  color: #000000;
  padding: 0.8rem 0;
  font-size: 1rem;
  line-height: 1.6;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.publication-features li:last-child {
  border-bottom: none;
}

/* Service Terms Section */
.service-terms {
  padding: 6rem 0;
  background: transparent;
}

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

.service-terms .section-title {
  color: #000000;
}

.section-subtitle {
  color: var(--text-gray);
  font-size: 1.1rem;
  margin-top: 1rem;
}

.terms-content {
  max-width: 1000px;
  margin: 0 auto;
}

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

.terms-section {
  background: transparent;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.terms-section h3 {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.terms-section h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  margin-top: 1rem;
}

.terms-section p {
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.terms-section ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.terms-section li {
  color: #ffffff;
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.terms-section li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Accordion Styles */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  background: #36454F;
  border-radius: var(--border-radius);
  border: 1px solid rgba(0, 212, 255, 0.3);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: var(--transition);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
  background: none;
  border: none;
  width: 100%;
  font-family: inherit;
  text-align: left;
  color: inherit;
}

.accordion-header:hover {
  background: rgba(0, 212, 255, 0.05);
}

.accordion-header h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  color: #ffffff;
}

.accordion-icon {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
  transition: transform 0.3s ease;
  min-width: 20px;
  text-align: center;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 2rem;
}

.accordion-item.active .accordion-content {
  max-height: 2000px;
  padding: 0 2rem 2rem;
}

.accordion-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

.accordion-content p {
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.accordion-content ul {
  list-style: none;
  padding: 0;
}

.accordion-content li {
  color: #ffffff;
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.accordion-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.balance-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .balance-types {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.balance-type {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.balance-type h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.balance-type p {
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.payment-terms {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.payment-terms h3 {
  color: #ffffff;
}

.payment-terms p {
  text-align: center;
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 600;
}

/* Gallery Section */
.gallery {
  padding: 6rem 0;
  background: transparent;
}

.gallery .section-title {
  color: #000000 !important;
  background: none !important;
  -webkit-text-fill-color: #000000 !important;
}

.gallery .section-subtitle {
  color: #000000 !important;
}

.gallery-content {
  margin-top: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 2px solid rgba(0, 212, 255, 0.2);
  transition: var(--transition);
  cursor: pointer;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.gallery-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.gallery-image-top {
  object-position: top;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

.gallery-video {
  overflow: hidden;
}

.gallery-video video {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.gallery-item:hover .gallery-video video {
  transform: none;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #900001 0%, #a00002 25%, #b00003 50%, #a00002 75%, #900001 100%);
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-title {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
  line-height: 1.6;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

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

.footer-subtitle {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-logo {
  height: 35px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.9)) brightness(1.5) contrast(1.2);
}

.footer-description {
  color: #ffffff;
  line-height: 1.6;
  opacity: 0.9;
  margin: 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  transition: var(--transition);
  opacity: 0.9;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-contact,
.footer-hours {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li,
.footer-hours li {
  color: #ffffff;
  margin-bottom: 0.8rem;
  line-height: 1.6;
  opacity: 0.9;
}

.footer-contact-link {
  color: #ffffff;
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact-link:hover {
  text-decoration: underline;
  opacity: 1;
}

.footer-legal-wrapper {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  width: 100%;
}

.footer-legal-links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-legal-link {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-legal-link:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-separator {
  color: #ffffff;
  opacity: 0.6;
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Sobre e Contacto Section */
.sobre-contacto {
  padding: 4rem 0;
  background: transparent;
}

.sobre-contacto-wrapper {
  display: flex;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.sobre-box-full {
  width: 100%;
  background: #36454F;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 2rem 0;
}

.sobre-box-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.sobre-box,
.contacto-box {
  width: 50%;
  background: #36454F;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sobre-contacto-title {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.sobre-contacto-content {
  color: #ffffff;
  line-height: 1.6;
}

.sobre-contacto-content p {
  color: #ffffff;
  margin-bottom: 1rem;
}

.contacto-item {
  margin-bottom: 1.2rem;
  color: #ffffff;
}

.contacto-item strong {
  color: #ffffff;
  font-weight: 600;
}

.contacto-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

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

.contacto-form label {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
}

.contacto-form input,
.contacto-form textarea {
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

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

.contacto-form input:focus,
.contacto-form textarea:focus {
  outline: none;
  border-color: rgba(0, 212, 255, 0.8);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

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

.contacto-form .btn {
  margin-top: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

@media (max-width: 768px) {
  .sobre-contacto-wrapper {
    flex-direction: column;
  }

  .sobre-box,
  .contacto-box {
    width: 100%;
  }
}

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

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: #ffffff;
  margin: auto;
  padding: 2rem;
  border-radius: 12px;
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.3s ease;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  font-weight: bold;
  color: #666;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
  background: none;
  border: none;
  padding: 0.25rem 0.5rem;
}

.modal-close:hover {
  color: #000;
  transform: scale(1.2);
}

.modal-title {
  color: #000000;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  padding-right: 2rem;
}

.modal-functionalities {
  margin-bottom: 2.5rem;
}

.functionalities-title {
  color: #000000;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.functionality-section {
  margin-bottom: 2rem;
}

.functionality-subtitle {
  color: #000000;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.functionality-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.functionality-list li {
  color: #000000;
  margin-bottom: 0.8rem;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.functionality-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #000000;
  font-weight: bold;
  font-size: 1.2rem;
}

.functionality-list li strong {
  font-weight: 600;
  color: #000000;
}

.modal-kit-content {
  margin-top: 2.5rem;
  margin-bottom: 0;
  padding-top: 2rem;
  border-top: 2px solid #e0e0e0;
}

.kit-content-title {
  color: #000000;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.kit-content-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.kit-content-list li {
  color: #000000;
  margin-bottom: 0.8rem;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.kit-content-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #000000;
  font-weight: bold;
  font-size: 1.2rem;
}

.kit-content-list li strong {
  font-weight: 600;
  color: #000000;
}

.functionality-intro {
  color: #000000;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.kit-content-intro {
  color: #000000;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
}

.spec-table-title {
  color: #000000;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.modal-table-container {
  overflow-x: auto;
  margin-top: 0;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.spec-table th,
.spec-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
  color: #000000;
}

.spec-table th {
  background-color: #f5f5f5;
  font-weight: 600;
  color: #000000;
  font-size: 1rem;
}

.spec-table tr:hover {
  background-color: #f9f9f9;
}

.spec-table td:first-child {
  font-weight: 500;
  width: 60%;
}

/* Legal Content Styles */
.legal-content {
  color: #000000;
  line-height: 1.8;
}

.legal-section {
  margin-bottom: 2rem;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-subtitle {
  color: #000000;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.legal-section p {
  color: #000000;
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

.legal-section a {
  color: #0066cc;
  text-decoration: none;
  transition: var(--transition);
}

.legal-section a:hover {
  text-decoration: underline;
  color: #0052a3;
}

.legal-list {
  list-style: disc;
  padding-left: 2rem;
  margin: 1rem 0;
}

.legal-list li {
  color: #000000;
  margin-bottom: 0.8rem;
  line-height: 1.8;
}

.legal-form-model {
  background-color: #f5f5f5;
  border: 1px solid #dddddd;
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 1rem;
}

.legal-form-model p {
  margin-bottom: 1rem;
  color: #000000;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .modal-content {
    padding: 1.5rem;
    width: 95%;
  }

  .modal-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .spec-table th,
  .spec-table td {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: linear-gradient(135deg, #900001 0%, #a00002 25%, #b00003 50%, #a00002 75%, #900001 100%);
    width: 100%;
    text-align: center;
    transition: var(--transition);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  .nav-menu.active {
    left: 0;
  }

  .language-switcher {
    margin-left: auto;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-header {
    padding-bottom: 2rem;
  }

  .hero-title-main {
    font-size: 1.8rem;
    white-space: normal;
  }

  .hero-description-main {
    font-size: 1rem;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-videos {
    max-width: 100%;
    grid-template-columns: 1fr;
  }

  .hero-video-card {
    min-height: 260px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-features {
    text-align: left;
  }

  .hero-whatsapp-btn {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
  }

  .hero-whatsapp-btn svg {
    width: 28px;
    height: 28px;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .equipment-content {
    width: 100%;
    max-width: 100%;
  }

  .conditions-grid {
    grid-template-columns: 1fr;
  }

  .equipment-wrapper {
    flex-direction: column;
  }

  .equipment-content {
    width: 100%;
  }

  .equipment-item-wrapper {
    flex: initial;
  }

  .equipment-publication {
    width: 100%;
    position: static;
    margin-top: 2rem;
  }

  .about-stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 150px;
  }
}

