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

:root {
  --color-primary: #C41E1E;
  --color-primary-dark: #9A1515;
  --color-secondary: #2A2A2A;
  --color-accent: #D43030;
  --color-bg: #0A0A0A;
  --color-bg-light: #111111;
  --color-bg-card: #161616;
  --color-text: #F0F0F0;
  --color-text-light: #A0A0A0;
  --color-border: rgba(255, 255, 255, 0.08);
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

html { scroll-behavior: auto; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

button, a, input, textarea, select {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  text-wrap: balance;
}

section[id] { scroll-margin-top: 80px; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  background: var(--color-primary);
  color: #fff;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
}
.skip-link:focus { top: 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .container { padding: 0 40px; } }
@media (min-width: 1200px) { .container { padding: 0; } }

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(10, 10, 10, 0.3);
}
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
@media (min-width: 768px) { .navbar-inner { padding: 0 40px; } }
@media (min-width: 1200px) { .navbar-inner { padding: 0; } }

.navbar-logo img { height: 50px; width: auto; }

.navbar-links { display: none; gap: 32px; align-items: center; }
@media (min-width: 1024px) { .navbar-links { display: flex; } }

.navbar-links a {
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  transition: color 0.3s ease;
}
.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}
.navbar-links a:hover { color: var(--color-primary); }
.navbar-links a:hover::after { width: 100%; }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger span {
  width: 28px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.98);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  overscroll-behavior: contain;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.3s ease;
}
.mobile-menu a:hover { color: var(--color-primary); }

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  will-change: transform;
  z-index: 1;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.6) 50%, rgba(196, 30, 30, 0.15) 100%);
  z-index: 2;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.07;
  z-index: 2;
  animation: float 8s ease-in-out infinite;
}
.hero-blob-1 {
  width: 400px; height: 400px;
  background: var(--color-primary);
  top: -100px; right: -100px;
  animation-delay: 0s;
}
.hero-blob-2 {
  width: 300px; height: 300px;
  background: #fff;
  bottom: -50px; left: -80px;
  animation-delay: 3s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-25px); }
}

.hero-text {
  position: absolute;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  text-transform: uppercase;
  letter-spacing: -4px;
  line-height: 0.9;
  white-space: nowrap;
  will-change: transform;
  user-select: none;
  pointer-events: none;
}
.hero-text-top { top: 15%; left: 5%; }
.hero-text-bottom { bottom: 10%; right: 5%; }

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}
.hero-content .hero-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  padding: 8px 20px;
  border-radius: 2px;
  margin-bottom: 24px;
}
.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero-content h1 span { color: var(--color-primary); }
.hero-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}
.hero-cta:hover {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: .7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-heading);
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { top: -100%; }
  50% { top: 0; }
  100% { top: 100%; }
}

.showcase { padding: 120px 0; background: var(--color-bg); }
.showcase-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) {
  .showcase-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 24px; }
}
.showcase-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 300px;
}
@media (min-width: 768px) {
  .showcase-item:first-child { grid-row: span 2; min-height: 500px; }
  .showcase-item:not(:first-child) { min-height: 240px; }
}
.showcase-item img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.showcase-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  z-index: 2;
}
.showcase-item-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.showcase-item-overlay p {
  font-size: .9rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}

.marquee {
  padding: 60px 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg);
}
.marquee-track {
  display: flex;
  gap: 60px;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
}
.marquee-item {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}
.marquee-item.accent { color: rgba(196, 30, 30, 0.15); }
.marquee-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-primary);
  opacity: 0.3;
  flex-shrink: 0;
}

.valores { padding: 120px 0; background: var(--color-bg-light); }
.valores-header { text-align: center; margin-bottom: 80px; }
.valores-header .section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 16px;
}
.valores-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.valores-header p {
  font-size: 1.1rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}
.valores-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 768px) {
  .valores-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .valores-grid .valor-item {
    padding: 40px;
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
  }
  .valores-grid .valor-item:nth-child(2n) { border-right: none; }
  .valores-grid .valor-item:nth-last-child(-n+2) { border-bottom: none; }
}
@media (min-width: 1024px) {
  .valores-grid { grid-template-columns: repeat(4, 1fr); }
  .valores-grid .valor-item { border-bottom: none !important; }
  .valores-grid .valor-item:last-child { border-right: none; }
}
.valor-item { text-align: center; padding: 40px 20px; }
.valor-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(196, 30, 30, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.valor-icon .material-icons { font-size: 28px; color: var(--color-primary); }
.valor-item h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.valor-item p {
  font-size: .95rem;
  color: var(--color-text-light);
  font-weight: 300;
  line-height: 1.7;
}

.fullwidth-parallax {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fullwidth-parallax-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  will-change: transform;
}
.fullwidth-parallax-img img { width: 100%; height: 100%; object-fit: cover; }
.fullwidth-parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.7);
  z-index: 1;
}
.fullwidth-parallax-text {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}
.fullwidth-parallax-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.fullwidth-parallax-text h2 .char { display: inline-block; }
.fullwidth-parallax-text h2 .word { display: inline-block; }
.fullwidth-parallax-text p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.8;
}

.productos { padding: 120px 0; background: var(--color-bg); }
.productos-header { text-align: center; margin-bottom: 80px; }
.productos-header .section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 16px;
}
.productos-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.productos-header p {
  font-size: 1.1rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}
.productos-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .productos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .productos-grid { grid-template-columns: repeat(3, 1fr); } }
.producto-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  min-height: 320px;
  cursor: pointer;
}
.producto-card-img { width: 100%; height: 280px; overflow: hidden; }
.producto-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.producto-card:hover .producto-card-img img { transform: scale(1.05); }
.producto-card-content { padding: 28px; }
.producto-card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.producto-card-content p {
  font-size: .9rem;
  color: var(--color-text-light);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 16px;
}
.producto-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}
.producto-card-cta:hover { color: #fff; }

.big-scroll {
  padding: 80px 0;
  overflow: hidden;
  background: var(--color-bg-light);
}
.big-scroll-inner {
  position: relative;
  white-space: nowrap;
  will-change: transform;
}
.big-scroll-text {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -2px;
  color: rgba(255, 255, 255, 0.03);
  display: inline-block;
}
.big-scroll-text span { color: rgba(196, 30, 30, 0.08); }

.gallery { padding: 120px 0; background: var(--color-bg); position: relative; }
.gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 70%, rgba(196, 30, 30, 0.03), transparent 60%);
  pointer-events: none;
}
.gallery-header { text-align: center; margin-bottom: 80px; position: relative; z-index: 1; }
.gallery-header .section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 16px;
}
.gallery-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
}
.gallery-masonry {
  columns: 1;
  column-gap: 20px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) { .gallery-masonry { columns: 2; } }
@media (min-width: 1024px) { .gallery-masonry { columns: 3; } }
.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.03); }

.process { padding: 120px 0; background: var(--color-bg-light); }
.process-header { text-align: center; margin-bottom: 80px; }
.process-header .section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 16px;
}
.process-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
}
.process-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; } }
.process-step { position: relative; text-align: center; padding: 32px 16px; }
.process-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(196, 30, 30, 0.15);
  line-height: 1;
  margin-bottom: 16px;
}
.process-step h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.process-step p {
  font-size: .9rem;
  color: var(--color-text-light);
  font-weight: 300;
  line-height: 1.7;
}
@media (min-width: 1024px) {
  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -16px;
    width: 32px;
    height: 1px;
    background: var(--color-border);
  }
}

.testimonials { padding: 120px 0; background: var(--color-bg); }
.testimonials-header { text-align: center; margin-bottom: 80px; }
.testimonials-header .section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 16px;
}
.testimonials-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  perspective: 1000px;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: border-color 0.3s ease;
}
.testimonial-card:hover { border-color: rgba(196, 30, 30, 0.3); }
.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  color: var(--color-primary);
  opacity: 0.15;
  line-height: 1;
  position: absolute;
  top: 16px;
  left: 24px;
}
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 20px; }
.testimonial-stars .material-icons { font-size: 18px; color: var(--color-primary); }
.testimonial-text {
  font-size: .95rem;
  color: var(--color-text-light);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--color-border);
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-info h4 {
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
}
.testimonial-info p {
  font-size: .8rem;
  color: var(--color-text-light);
  font-weight: 300;
}

.contact { padding: 120px 0; background: var(--color-bg-light); }
.contact-header { text-align: center; margin-bottom: 80px; }
.contact-header .section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 16px;
}
.contact-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
}
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 60px; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(196, 30, 30, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon .material-icons,
.contact-info-icon .fab { font-size: 22px; color: var(--color-primary); }
.contact-info-text h4 {
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.contact-info-text p,
.contact-info-text a {
  font-size: .9rem;
  color: var(--color-text-light);
  font-weight: 300;
  transition: color 0.3s ease;
}
.contact-info-text a:hover { color: var(--color-primary); }
.contact-map {
  margin-top: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.contacto-form .form-group { margin-bottom: 24px; }
.contacto-form label {
  display: block;
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 600;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.contacto-form input,
.contacto-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-border);
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: #fff;
  transition: border-color 0.3s ease;
}
.contacto-form input::placeholder,
.contacto-form textarea::placeholder { color: rgba(255, 255, 255, 0.2); }
.contacto-form input:focus,
.contacto-form textarea:focus {
  border-color: var(--color-primary);
  outline: none;
}
.contacto-form textarea { resize: vertical; min-height: 100px; }
.contacto-form .btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: var(--color-primary);
  color: #fff;
  border: none;
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.contacto-form .btn-submit:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}
.form-success {
  display: none;
  padding: 20px;
  background: rgba(196, 30, 30, 0.1);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-md);
  text-align: center;
  color: #fff;
  font-weight: 500;
  margin-top: 16px;
}
.form-success.visible { display: block; }

.site-footer {
  background: #060606;
  padding: 80px 0 0;
  border-top: 1px solid var(--color-border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand p {
  font-size: .9rem;
  color: var(--color-text-light);
  font-weight: 300;
  line-height: 1.8;
  margin-top: 16px;
  max-width: 300px;
}
.footer-brand img { height: 45px; width: auto; margin-bottom: 8px; }
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  font-size: .9rem;
  color: var(--color-text-light);
  font-weight: 300;
  transition: color 0.3s ease;
}
.footer-col ul li a:hover { color: var(--color-primary); }
.footer-social { display: flex; gap: 16px; margin-top: 16px; }
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--color-text-light);
  text-decoration: none;
  transition: border-color 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}
.footer-social a:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(196, 30, 30, 0.1);
}
.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.footer-bottom p {
  font-size: .8rem;
  color: var(--color-text-light);
  font-weight: 300;
}
.footer-bottom a { color: var(--color-primary); transition: color 0.3s ease; }
.footer-bottom a:hover { color: #fff; }

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  animation: whatsappPulse 2s ease-in-out infinite;
}
.whatsapp-float i { font-size: 28px; color: #fff; }
@keyframes whatsappPulse {
  0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.1); }
  100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

.cursor-follower {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  display: none;
}
@media (min-width: 1024px) { .cursor-follower { display: block; } }

.faq { padding: 120px 0; background: var(--color-bg); }
.faq-header { text-align: center; margin-bottom: 80px; }
.faq-header .section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 16px;
}
.faq-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
}
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}
.faq-question h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  flex: 1;
  padding-right: 16px;
}
.faq-question .material-icons {
  color: var(--color-primary);
  transition: transform 0.3s ease;
  font-size: 24px;
}
.faq-question[aria-expanded="true"] .material-icons { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p {
  padding: 0 0 24px;
  font-size: .95rem;
  color: var(--color-text-light);
  font-weight: 300;
  line-height: 1.8;
}

.section-separator {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(196, 30, 30, 0.2), transparent);
}
