:root {
  --font-display: "Oswald", "Inter", system-ui, sans-serif;
  --font-sans: "Inter", system-ui, sans-serif;
  --background: #ffffff;
  --foreground: #202226;
  --card: #ffffff;
  --muted: #f4f5f7;
  --border: #e6e8eb;
  --brand-orange: #f06a0a;
  --brand-blue: #2372f5; 
  --brand-dark: #202126; 
  --shadow-elegant: 0 20px 60px -20px rgba(32, 33, 38, 0.25);
  --shadow-glow: 0 0 40px rgba(240, 106, 10, 0.35);
}

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

section[id], div[id] {
  scroll-margin-top: 95px; 
}

label {
    color: #333;
}

.scroll-offset {
  scroll-margin-top: 140px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
  box-sizing: border-box;
}

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

.flex-wrap { 
  flex-wrap: wrap; 
}

.gap-4 { 
  gap: 1rem; 
}

.gap-5 { 
  gap: 1.25rem; 
}

.gap-10 { 
  gap: 2.5rem; 
}

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

.text-orange { 
  color: var(--brand-orange); 
}

.icon-orange { 
  color: var(--brand-orange); 
  fill: currentColor; 
}

.bg-muted { 
  background-color: var(--muted); 
}

.max-w-2xl { 
  max-w: 42rem; 
  margin: 0 auto; 
}

.max-w-3xl { 
  max-w: 48rem; 
  margin: 0 auto; 
}

.max-w-4xl { 
  max-w: 56rem; 
  margin: 0 auto; 
}

.max-w-5xl { 
  max-w: 64rem; 
  margin: 0 auto; 
}

.mt-6 { 
  margin-top: 1.5rem; 
}

.mt-8 { 
  margin-top: 2rem; 
}

.shrink-0 { 
  flex-shrink: 0; 
}

.sr-only { 
  position: absolute; 
  width: 1px; 
  height: 1px; 
  padding: 0; 
  margin: -1px; 
  overflow: hidden; 
  clip: rect(0,0,0,0); 
  border: 0; 
}

[data-lucide] {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
}

.grid-2, .grid-3, .footer-grid { 
  display: grid; 
  grid-template-columns: 1fr; 
}

.top-bar {
  position: relative !important;
  background-color: #2c2c2c !important;
  padding: 0 !important;
  width: 100% !important;
  height: 40px !important;
  z-index: 1002;
  transition: height 0.3s ease-in-out;
}

.top-bar.scrolled {
  max-height: 0;
  opacity: 0;
  padding: 0;
  overflow: hidden;
}

.top-bar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}

.top-bar-phones {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.phone-link {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 14px !important;
  text-align: left !important;
  width: 100%;
}

.phone-link:hover { 
  color: var(--brand-orange); 
}

.top-bar-links { 
  display: flex; 
  align-items: center; 
  gap: 16px; 
  letter-spacing: 0.05em; 
}

.top-bar-links a {
  color: #ffffff !important;
  text-decoration: none !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 13px !important;
  letter-spacing: 0.05em !important;
  text-align: left !important;
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(44, 44, 44, 0.25); 
  backdrop-filter: blur(4px); 
  box-shadow: none;
  transition: all 0.3s ease-in-out;
}

.main-header.scrolled {
  background-color: rgba(44, 44, 44, 0.95) !important;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo-img { 
  h-height: 3.5rem; 
  max-width: 240px; 
  object-fit: contain; 
}

.main-nav { 
  display: flex; 
  align-items: center; 
  gap: 4px; 
  font-size: 14px; 
  font-weight: 600; 
  color: #ffffff; 
}

.nav-item > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  transition: color 0.2s;
}

.nav-item > a:hover { 
  color: var(--brand-orange); 
}

.has-dropdown { 
  position: relative; 
}

.dropdown-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 100%;
  padding-top: 8px;
  min-width: 240px;
  z-index: 50;
  transition: all 0.2s;
}

.has-dropdown:hover .dropdown-menu { 
  visibility: visible; 
  opacity: 1; 
}

.dropdown-arrow {
  position: absolute;
  left: 24px;
  top: 2px;
  width: 0; height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--brand-orange);
}

.dropdown-menu ul {
  background-color: #2c2c2c;
  list-style: none;
  padding: 8px 0;
  margin: 0;
  border-radius: 6px;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.3);
}

.dropdown-menu ul li a {
  display: block;
  padding: 8px 16px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
}

.dropdown-menu ul li a:hover { 
  background-color: var(--brand-orange); 
  color: #ffffff; 
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.hero-content { 
  max-width: 42rem; 
  padding: 80px 0; 
}

.hero-content h1 {
  display: block !important;
  margin: 0 0 16px 0 !important;
  padding: 0 !important;
  height: auto !important;
  overflow: visible !important;
}

.hero-logo-img { 
  display: block !important;
  width: 100% !important; 
  max-width: 340px !important; 
  height: auto !important; 
}

.badge { 
  padding: 8px 16px; 
  font-size: 24px; 
  font-family: var(--font-display); 
  font-weight: 600; 
  text-transform: uppercase; 
  letter-spacing: 0.05em; 
}

.badge-container { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 12px; 
  margin-top: 16px; 
}

.badge { 
  padding: 8px 16px; 
  font-size: 24px; 
  font-family: var(--font-display); 
  font-weight: 600; 
  text-transform: uppercase; 
  tracking-width: 0.05em; 
}

.badge.bg-orange { 
  background-color: var(--brand-orange); 
}

.badge.bg-blue { 
  background-color: var(--brand-blue); 
}
.hero-text { 
  margin-top: 24px; 
  max-width: 32rem; 
  color: rgba(255,255,255,0.85); 
  font-size: 18px; 
}
.hero-actions { 
  margin-top: 32px; 
  display: flex; 
  flex-wrap: wrap; 
  gap: 12px; 
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 6px;
  padding: 12px 24px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-orange { 
  background-color: var(--brand-orange); 
  color: #ffffff; 
}

.btn-orange:hover { 
  opacity: 0.9; 
}

.btn-glow { 
  box-shadow: var(--shadow-glow); 
}

.btn-blur { 
  background-color: rgba(255,255,255,0.1); 
  border: 1px solid rgba(255,255,255,0.3); 
  color: #ffffff; 
  backdrop-filter: blur(4px); 
}

.btn-blur:hover { 
  background-color: rgba(255,255,255,0.2); 
}

.btn-outline-orange { 
  border: 2px solid var(--brand-orange); 
  background: transparent; 
  color: var(--brand-orange); 
}

.btn-outline-orange:hover { 
  background-color: var(--brand-orange); 
  color: #ffffff; 
}

.section-nav-bar {
  background-color: transparent !important;
  width: 100% !important;
  padding: 0 !important;
  margin-top: 40px !important;
  margin-bottom: 60px !important; 
}

.section-nav-bar .container {
  background-color: transparent !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 16px !important;
  flex-wrap: wrap;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

#funciona.scroll-offset {
  scroll-margin-top: 140px;
  padding-top: 40px !important;
  padding-bottom: 80px !important;
}

.btn-nav {
  background-color: #2c2c2c !important;
  color: #ffffff !important;
  padding: 10px 20px !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  border-radius: 6px !important;
  transition: background 0.2s ease-in-out;
}

.btn-nav:hover {
  background-color: #3e3e3e !important;
}

.btn-nav.btn-orange {
  background-color: #f06a0a !important; 
}

.btn-nav.btn-orange:hover {
  opacity: 0.9 !important;
}

.section-title {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 24px !important;
  margin-top: 0 !important;
  margin-bottom: 32px !important;
}

.title-line { 
  height: 1px; 
  flex: 1; 
  max-width: 80px; 
  background-color: var(--border); 
}
.section-title h2 { 
  font-family: var(--font-display); 
  font-size: 36px; 
  font-weight: 700; 
  text-transform: uppercase; 
  text-align: center; 
  margin: 0; 
}



.sub-subtitle {
  font-family: 'Oswald', system-ui, sans-serif !important;
  font-size: 26px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  margin-top: 10px !important;
  margin-bottom: 20px !important;
}

.text-block-center {
  max-width: 720px !important; 
  margin: 32px auto 48px auto !important; 
  text-align: center !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 15.5px !important;
  line-height: 1.65 !important;
  color: #4b5563 !important; 
}

.text-block-center p {
  margin-bottom: 18px !important;
}

.card { 
  background-color: var(--card); 
  border: 1px solid var(--border); 
  border-radius: 12px; 
  padding: 24px; 
  box-sizing: border-box; 
}

.card-hover { 
  transition: transform 0.2s, box-shadow 0.2s; 
}

.card-hover:hover { 
  transform: translateY(-2px); 
  box-shadow: var(--shadow-elegant); 
}

.card-icon { 
  width: 48px; 
  height: 48px; 
  background-color: rgba(240,106,10,0.1); 
  color: var(--brand-orange); 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  margin: 0 auto 16px; 
}
.card-title { 
  font-family: var(--font-display); 
  font-size: 20px; 
  font-weight: 700; 
  margin-bottom: 4px; 
}

.card-desc { 
  font-size: 14px; 
  color: #6b7280; 
}

.gallery-wrapper {
  position: relative !important;
  max-width: 800px !important;
  margin: 0 auto !important;
}

.gallery-container {
  overflow: hidden;
  border-radius: 12px !important; 
  box-shadow: var(--shadow-elegant);
}

.gallery-img {
  display: block;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.gallery-nav-btn { 
  position: absolute; 
  top: 50%; 
  transform: translateY(-50%); 
  width: 48px; 
  height: 48px; 
  border-radius: 50%; 
  background-color: #ffffff; 
  color: var(--brand-dark); 
  border: none; 
  box-shadow: 0 4px 6px rgba(0,0,0,0.1); 
  cursor: pointer; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  transition: all 0.2s; 
  z-index: 10; 
}

.gallery-nav-btn:hover { 
  background-color: var(--brand-orange); 
  color: #ffffff; 
}

.gallery-nav-btn.prev { 
  left: -24px; 
}

.gallery-nav-btn.next { 
  right: -24px; 
}

.gallery-dots {
  position: absolute;
  bottom: -25px !important;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.gallery-dots .dot {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background-color: #d1d5db !important;
  border: none !important;
  padding: 0 !important;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gallery-dots .dot.active {
  width: 24px !important;
  background-color: #f06a0a !important;
  border-radius: 4px !important;
}

#galeria.scroll-offset {
  scroll-margin-top: 140px;
  padding-top: 90px !important; 
  padding-bottom: 90px !important;
  background-color: #f4f5f7 !important;
}

#galeria .section-title {
  margin-bottom: 48px !important;
}

#galeria p.text-center {
  margin-top: 40px !important;
  max-width: 620px !important; 
  margin-right: auto !important;
  margin-left: auto !important;
  text-align: center !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 15.5px !important;
  line-height: 1.6 !important;
  color: #4b5563 !important;
}

.specs-image-box {
  background-color: rgba(244, 245, 247, 0.5) !important;
  border-radius: 16px !important;
  padding: 24px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.specs-image-box img {
  max-width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
}

.card.border-box {
  background-color: #ffffff !important;
  border: 1px solid #e6e8eb !important;
  border-radius: 12px !important;
  padding: 16px 20px !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
  box-sizing: border-box;
}

.border-box { 
  padding: 20px; 
}

.spec-label {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  color: #f06a0a !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
}

.spec-label [data-lucide] {
  width: 16px !important;
  height: 16px !important;
}

.spec-value {
  font-family: 'Oswald', system-ui, sans-serif !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
  margin-top: 6px !important;
}

.specs-note {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 12px !important;
  color: #6b7280 !important;
  font-style: italic !important;
  margin-top: 16px !important;
}

#caracteristicas.scroll-offset {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
  background-color: #ffffff !important;
}

.grid-2.max-w-5xl.items-center {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 40px !important; 
  align-items: center !important;
  max-width: 1000px !important;
  margin: 0 auto !important;
}

.grid-2.max-w-5xl.items-center > div:last-child {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  height: 100% !important;
}

.grid-2.gap-4 {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 16px !important;
}

.card.border-box {
  background-color: #ffffff !important;
  border: 1px solid #e6e8eb !important;
  border-radius: 12px !important;
  padding: 20px !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
}

.faq-container {
  max-width: 760px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
}

.faq-item {
  background-color: transparent !important;
  border: none !important;
  border-radius: 12px !important;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}

.faq-toggle {
  width: 100% !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  background-color: #f06a0a !important; 
  border: none !important;
  padding: 18px 24px !important; 
  border-radius: 12px !important; 
  cursor: pointer;
  text-align: left !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05) !important;
}

.faq-toggle span {
  font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #ffffff !important; 
}

.faq-arrow {
  color: #ffffff !important;
  background: transparent !important;
  padding: 0 !important;
  width: 20px !important;
  height: 20px !important;
  transition: transform 0.3s ease !important;
  flex-shrink: 0;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  background-color: #ffffff !important;
  border-bottom-left-radius: 12px !important;
  border-bottom-right-radius: 12px !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05) !important;
  transition: max-height 0.3s ease-out !important;
}

.faq-content p {
  font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
  color: #4b5563 !important;
  margin: 0 !important;
  padding: 20px 24px 24px 24px !important;
}

.faq-item.open {
  border-color: #d1d5db !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05) !important;
}

.faq-item.open .faq-arrow {
  transform: rotate(90deg) !important;
}

.faq-item.open .faq-content {
  max-height: 300px !important; 
}

.faq-item.open .faq-toggle {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

#preguntas.scroll-offset {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
  background-color: #f4f5f7 !important;
}

#preguntas .section-title {
  margin-bottom: 48px !important;
}

.contact-section { 
  padding-top: 80px; 
  padding-bottom: 40px; 
  background-size: cover; 
  background-position: center; 
  color: #ffffff; 
}

.contact-section h2 { 
  font-family: var(--font-display); 
  font-size: 48px; 
  font-weight: 700; 
  text-transform: uppercase; 
  margin: 0; 
}

.contact-text {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 18px !important;
  color: rgba(255, 255, 255, 0.9) !important;
  max-width: 640px;
  margin: 0 auto 12px auto;
  line-height: 1.5 !important;
}

.contact-freephone {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 16px !important;
  color: #f06a0a !important;
  font-weight: 700 !important;
  margin-bottom: 36px !important;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px !important;
  margin-bottom: 48px !important;
}

.contact-actions .btn {
  padding: 14px 32px !important;
  font-size: 16px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.8) !important;
}

.contact-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-badges [data-lucide="check-circle-2"],
.contact-badges .icon-orange {
  color: #f06a0a !important;
  fill: transparent !important;
}

.main-footer {
  background-color: #222327 !important; 
  color: #9ca3af !important;
  padding: 60px 0 30px 0 !important;
  font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
  font-size: 14px !important;
}

.main-footer .footer-grid {
  display: grid !important;
  grid-template-columns: 1.8fr 1.3fr 1fr 1.3fr !important;
  gap: 40px !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
}

.footer-logo-text {
  font-family: 'Oswald', system-ui, sans-serif !important;
  font-size: 28px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  text-transform: uppercase !important;
  letter-spacing: 0.02em !important;
  margin-bottom: 8px !important;
}

.footer-tagline {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  text-transform: uppercase !important;
  line-height: 1.4 !important;
  margin-bottom: 16px !important;
  letter-spacing: 0 !important;
}

.footer-desc {
  font-size: 13.5px !important;
  line-height: 1.6 !important;
  color: #9ca3af !important;
}

.footer-title {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #9ca3af !important; 
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  margin-top: 0 !important;
  margin-bottom: 20px !important;
  border: none !important;
  padding: 0 !important;
}

.footer-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  text-align: left !important; 
  align-items: flex-start !important; 
}

.footer-list li {
  font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
  font-size: 13.5px !important;
  line-height: 1.6 !important;
  color: #ffffff !important;
  text-align: left !important;
  width: 100% !important; 
}

.footer-list li a {
  text-align: left !important;
  display: inline-block !important;
}

.footer-list a {
  color: #ffffff !important;
  text-decoration: none !important;
  transition: color 0.2s ease-in-out !important;
}

.footer-list a:hover {
  color: #f06a0a !important;
}

.text-orange, 
.footer-list a.text-orange {
  color: #f06a0a !important;
  font-weight: 600 !important;
  transition: opacity 0.2s ease-in-out !important;
}

.footer-list a.text-orange:hover {
  color: #f06a0a !important; 
  opacity: 0.85 !important; 
}

.footer-list [data-lucide="mail"] {
  color: #f06a0a !important;
  width: 16px !important;
  height: 16px !important;
  margin-right: 4px;
}

.footer-list .flex-start {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 6px !important;
}

.footer-logo-image-container {
  display: block !important;
  max-width: 220px !important;
  margin-bottom: 16px !important; 
  text-align: left !important; 
}

.footer-logo-img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
}

.text-muted-white {
  color: #ffffff !important; 
  font-weight: 600 !important;
  display: inline-block;
  margin-right: 4px;
}

.flex-start {
  display: flex !important;
  align-items: flex-start !important;
}

.gap-2 { 
  gap: 8px !important; 
}

.shrink-0 { 
  flex-shrink: 0 !important; 
}

.footer-bottom {
  max-width: 1200px !important;
  margin: 48px auto 0 auto !important;
  padding: 24px 24px 0 24px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.seo-text {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 11.5px !important;
  line-height: 1.8 !important;
  color: #55575c !important;
  text-align: justify !important;
  margin-bottom: 30px !important;
}

.seo-text a {
  color: #6b7280 !important; 
  text-decoration: none !important;
  transition: color 0.2s ease-in-out !important;
}

.seo-text a:hover {
  color: #ffffff !important;
}

.seo-text strong {
  font-weight: 600 !important;
}

.copyright-link {
  color: inherit !important;
  text-decoration: none !important;
}
.copyright-link:hover {
  color: #f06a0a !important;
}

.copyright-text {
  font-size: 13px !important;
  color: #9ca3af !important;
  text-align: left !important;
}

.footer-copyright-row {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 16px !important;
  margin-top: 32px !important;
  padding-top: 20px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 100% !important;
}

.footer-socials {
  display: flex !important;
  gap: 20px !important;
  align-items: center !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.footer-socials a [data-lucide],
.footer-socials a svg {
  width: 20px !important;
  height: 20px !important;
  color: #9ca3af !important;
  display: inline-block !important;
  transition: color 0.2s ease-in-out !important;
}

.footer-socials a:hover [data-lucide],
.footer-socials a:hover svg {
  color: #ffffff !important;
}

.footer-socials a svg.lucide-icon {
  width: 20px !important;
  height: 20px !important;
  display: inline-block !important;
  vertical-align: middle !important;
  color: #9ca3af !important; 
  transition: color 0.2s ease-in-out !important;
}

.footer-socials a:hover svg.lucide-icon {
  color: #ffffff !important; 
}

.floating-whatsapp { 
  position: fixed; 
  bottom: 20px; 
  right: 20px; 
  z-index: 100; 
  width: 56px; 
  height: 56px; 
  border-radius: 50%; 
  background-color: var(--brand-orange); 
  color: #ffffff; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  box-shadow: var(--shadow-glow); 
  transition: transform 0.2s; 
  text-decoration: none; 
}

.floating-whatsapp:hover { 
  transform: scale(1.1); 
}
  
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
}

.top-bar ~ .main-header {
  top: 38px; 
}

.top-bar.scrolled ~ .main-header {
  top: 0;
}

.hero-section {
  padding-top: 0 !important;
}

.sr-only { 
  position: absolute; 
  width: 1px; 
  height: 1px; 
  padding: 0; 
  margin: -1px; 
  overflow: hidden; 
  clip: rect(0,0,0,0); 
  border: 0; 
}

#contactar.contact-section {
  padding-top: 100px !important;
  padding-bottom: 80px !important;
  background-size: cover;
  background-position: center;
}

#contactar.contact-section h2 {
  font-family: 'Oswald', 'Inter', system-ui, sans-serif !important;
  color: #ffffff !important;
  font-size: 52px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: -0.01em !important;
  margin-bottom: 24px !important;
  display: block !important;
}

.mobile-topbar-btn, .mobile-menu-btn {
  display: none !important;
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.btn-send {
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.help-block.with-errors {
    color: #ff5050;
    margin-top: 5px;
}

.scroll-offset, 
#galeria, 
#funciona {
  scroll-margin-top: 0 !important;
}

@media (min-width: 1024px) {
  .footer-grid { 
    grid-template-columns: repeat(4, 1fr); 
  }
  .main-nav {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 20px !important;
    position: relative !important;
    background: transparent !important;
    box-shadow: none !important;
    width: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .nav-item.has-dropdown {
    position: relative;
  }

  .nav-item.has-dropdown:hover .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin-top: 0 !important;
  }

  .dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background-color: #2c2c2c !important;
    min-width: 240px !important;
    padding: 12px 0 !important;
    border-radius: 4px !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3) !important;
    display: none; 
    z-index: 1000;
  }

  .dropdown-menu ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .dropdown-menu ul li a {
    display: block !important;
    padding: 10px 20px !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 14px !important;
    transition: background 0.2s ease;
  }

  .dropdown-menu ul li a:hover {
    background-color: rgba(240, 106, 10, 0.1) !important;
    color: #f06a0a !important;
  }
}

@media (min-width: 768px) {
  .grid-2 { 
    grid-template-columns: repeat(2, 1fr); 
  }
  .grid-3 { 
    grid-template-columns: repeat(3, 1fr); 
  }
  .footer-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
}

@media (max-width: 1024px) {
  .top-bar {
    display: block !important; 
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 40px !important;
    background-color: #2c2c2c !important;
    z-index: 1050 !important;
    padding: 0 !important;
    overflow: visible !important;
    visibility: visible !important;
    opacity: 1 !important;
    border-bottom: none !important;
    box-shadow: none !important;
  }

  .top-bar-container {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-end !important;
    padding: 0 16px !important;
    height: 40px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    visibility: visible !important;
  }

  .mobile-topbar-btn {
    display: flex !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    height: 100% !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 1055 !important;
  }

  .mobile-topbar-btn svg {
    display: block !important;
    width: 24px !important;
    height: 24px !important;
    color: #ffffff !important;
    stroke: #ffffff !important; 
    fill: none !important;
  }

  .top-bar-phones {
    display: none !important;
    position: absolute !important;
    top: 40px !important; 
    left: 0 !important;
    width: 100% !important;
    background-color: #2c2c2c !important;
    flex-direction: column !important;
    gap: 14px !important;
    padding: 20px 24px !important;
    box-sizing: border-box !important;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2) !important;
    z-index: 1060 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
  }

  .top-bar-links {
    display: none !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
    padding-top: 14px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
  }

  .top-bar-links a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 13px !important;
    letter-spacing: 0.05em !important;
    text-align: left !important;
    display: block !important;
  }

  .top-bar.open-active .top-bar-phones,
  .top-bar.open-active .top-bar-links {
    display: flex !important;
  }

  .phone-link {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 14px !important;
    text-align: left !important;
  }

  .main-header {
    position: fixed !important;
    top: 40px !important; 
    left: 0 !important;
    width: 100% !important;
    padding: 10px 0 !important;
    z-index: 1040 !important;
    background-color: #222327 !important; 
    background: #222327 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    margin-top: -1px !important; 
    border-top: none !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
  }

  .main-header.scrolled {
    top: 0 !important;
  }

  .header-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 16px !important;
    position: relative;
    height: 44px !important;
    box-sizing: border-box;
  }

  .mobile-menu-btn {
    display: flex !important;
    color: #ffffff !important;
    padding: 4px !important;
    z-index: 1045;
  }

  .logo-link {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .logo-img {
    height: 34px !important;
    width: auto !important;
    object-fit: contain !important;
  }

  .main-nav {
    display: none !important; 
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: 100% !important;
    background-color: #2c2c2c !important;
    flex-direction: column !important;
    padding: 8px 0 !important;
    box-shadow: 0 10px 15px rgba(0,0,0,0.2) !important;
    z-index: 1042 !important;
    max-height: 75vh;
    overflow-y: auto;
  }

  .main-header.menu-open .main-nav {
    display: flex !important;
  }
  
  .dropdown-menu {
    position: static !important;
    transform: none !important;
    display: none !important;
    width: 100% !important;
    box-shadow: none !important;
    padding: 0 !important;
    background-color: rgba(0,0,0,0.15) !important;
  }

  .nav-item.dropdown-active .dropdown-menu {
    display: block !important;
  }

  .nav-item.dropdown-active .chevron {
    transform: rotate(180deg);
    color: #f06a0a;
  }
  
  .hero-section {
    padding-top: 100px !important;
  }
}

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

@media (max-width: 768px){ 
  .gallery-nav-btn.prev { 
    left: 8px; 
  } 
  .gallery-nav-btn.next { 
    right: 8px; 
  } 
  .grid-2.max-w-5xl.items-center {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .grid-2.gap-4 {
    grid-template-columns: 1fr !important;
  }
  #contactar.contact-section h2 {
    font-size: 36px !important;
  }
  .contact-section h2 { 
    font-size: 32px; 
  } 
  .hero-content {
    padding: 40px 0 !important;
    text-align: center;
  }
  .hero-logo-img {
    max-width: 200px !important; 
    margin: 0 auto 10px auto !important;
  }
  .badge-container {
    justify-content: center !important; 
    gap: 8px !important;
    margin-top: 10px !important;
  }
  .badge {
    font-size: 14px !important;
    padding: 6px 12px !important;
  } 
  .hero-text {
    font-size: 15px !important;
    line-height: 1.5 !important;
    margin-top: 16px !important;
    color: rgba(255, 255, 255, 0.9) !important;
  }
  .hero-actions {
    margin-top: 24px !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
  }
  .hero-actions .btn {
    width: 100% !important;
    max-width: 260px !important;
    justify-content: center !important;
    padding: 10px 20px !important; 
    font-size: 15px !important;
  }
  .section-title h2 { 
    font-size: 28px; 
  } 
  .top-bar {
    display: none; 
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100%;
    height: auto;
    z-index: 10;
  }
  .main-header {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0; 
    left: 0;
    width: 100%;
    z-index: 9999; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
  }
  body {
    padding-top: 0 !important; 
  }
  .top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
  }
  .mobile-topbar-btn {
    margin-left: auto; 
  }
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
  }
  .mobile-menu-btn {
    order: 1;
    background: none;
    border: none;
  }
  .logo-link {
    order: 2; 
  }
  .logo-img {
    max-height: 40px; 
    width: auto;
    display: block;
  }
}

@media (max-width: 576px) {
  .main-footer .footer-grid { 
    grid-template-columns: 1fr !important; 
    gap: 32px !important; 
  }
}

@media (max-width: 480px) {
  .footer-logo-image-container {
    max-width: 180px !important;
  }
}