:root {
  --color-accent: #005a74;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-flicker 0.2s steps(1) infinite;
}

@keyframes grain-flicker {
  0% { background-position: 0 0; }
  25% { background-position: -8% 4%; }
  50% { background-position: 4% -8%; }
  75% { background-position: -4% -4%; }
  100% { background-position: 4% 4%; }
}

body {
  font-family: 'Poppins', sans-serif;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #f5f5f5;
}

.hero-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0), rgba(10, 10, 10, 1));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #f5f5f5;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-logo-frame {
  width: min(75vw, 1100px);
  aspect-ratio: 16 / 9;
  border: none;
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero-logo-frame {
    width: min(99%, 720px);
  }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  z-index: 10;
  background-color: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(6px);
}

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

.logo-img {
  height: 45px;
  width: auto;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 35px;
}

.nav-links a {
  color: #f5f5f5;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--color-accent);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 20;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #f5f5f5;
}

.reel {
  background-color: #0a0a0a;
  padding: 40px 20px 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.reel h2 {
  color: #f5f5f5;
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 50px;
}

.reel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
  max-width: 950px;
  margin: 0 auto;
  position: relative;
}

.reel-info {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(0);
  width: 340px;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  pointer-events: none;
}

.reel-info-left {
  right: 100%;
  margin-right: 40px;
  transform: translateY(-50%) translateX(-30px);
}

.reel-info-right {
  left: 100%;
  margin-left: 40px;
  transform: translateY(-50%) translateX(30px);
}

.reel-info.is-visible {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.reel-info ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.reel-info li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  color: #f5f5f5;
  font-size: 1.4rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.25;
  letter-spacing: 0.2px;
  text-align: left;
  pointer-events: auto;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.reel-info li:hover {
  border-color: var(--color-accent);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.02)), linear-gradient(rgba(0, 90, 116, 0.14), rgba(0, 90, 116, 0.14));
  box-shadow: 0 0 25px -6px rgba(0, 90, 116, 0.6);
  transform: translateX(4px);
}

.reel-info-right li:hover {
  transform: translateX(-4px);
}

.reel-info-icon-wrap {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 90, 116, 0.15);
  border: 1px solid rgba(0, 90, 116, 0.5);
}

.reel-info-icon {
  width: 24px;
  height: 24px;
}

.reel-label {
  width: 90%;
  padding: 14px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  color: #f5f5f5;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 1px;
  text-align: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.reel-item:hover .reel-label {
  border-color: var(--color-accent);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)), linear-gradient(rgba(0, 90, 116, 0.10), rgba(0, 90, 116, 0.10));
  box-shadow: 0 0 25px -5px rgba(0, 90, 116, 0.5);
}

.reel-loop {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.reel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.reel-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1080 / 1440;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.reel-item:hover .reel-video-wrap {
  box-shadow: 0 0 30px -5px rgba(0, 90, 116, 0.5);
}

.servicios {
  background-color: #0a0a0a;
  padding: 150px 20px 100px 20px;
  text-align: center;
}

.servicios h2 {
  color: #f5f5f5;
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 60px;
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.servicio-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03) 40%, rgba(0, 0, 0, 0.2) 100%), #141414;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
  padding: 40px 25px;
  text-align: left;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  overflow: hidden;
}

.servicio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  transition: left 0.6s ease;
}

.servicio-card::after {
  content: '';
  position: absolute;
  top: -30px;
  left: -30px;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, rgba(230, 235, 240, 0.35), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.servicio-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-5px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03) 40%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(rgba(0, 90, 116, 0.10), rgba(0, 90, 116, 0.10)), #141414;
  box-shadow: 0 0 25px -5px rgba(0, 90, 116, 0.5);
}

.servicio-card:hover::before {
  left: 100%;
}

.servicio-card:hover::after {
  border-color: var(--color-accent);
}

.servicio-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.servicio-card:hover .servicio-icon {
  transform: translateY(-3px);
}

.servicio-card h3 {
  color: #f5f5f5;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 15px;
}

.servicio-card p {
  color: #999999;
  font-size: 0.9rem;
  line-height: 1.6;
  font-weight: 300;
}

.portfolio {
  background-color: #0a0a0a;
  padding: 150px 20px 100px 20px;
  text-align: center;
}

.portfolio h2 {
  color: #f5f5f5;
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 60px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.portfolio-item {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
}

.portfolio-placeholder {
  aspect-ratio: 4 / 3;
  background-color: #1a1a1a;
  border: 1px dashed #3a3a3a;
  transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-placeholder {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  text-align: left;
}

.portfolio-name {
  color: #f5f5f5;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 4px;
}

.portfolio-ver {
  color: #999999;
  font-size: 0.8rem;
  font-weight: 300;
  position: relative;
}

.portfolio-item:hover .portfolio-ver {
  color: var(--color-accent);
}

.contacto {
  background-color: #0a0a0a;
  padding: 150px 20px 120px 20px;
  text-align: center;
}

.contacto h2 {
  color: #f5f5f5;
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.contacto-intro {
  color: #999999;
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 40px;
}

.whatsapp-direct-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 36px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 40px;
  color: #f5f5f5;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  font-style: italic;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.whatsapp-direct-btn:hover {
  border-color: var(--color-accent);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)), linear-gradient(rgba(0, 90, 116, 0.15), rgba(0, 90, 116, 0.15));
  box-shadow: 0 0 30px -5px rgba(0, 90, 116, 0.6);
  transform: translateY(-3px);
}

.whatsapp-direct-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.whatsapp-direct-icon svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 480px) {
  .whatsapp-direct-btn {
    padding: 16px 28px;
    font-size: 1rem;
  }
}

.contacto-divider {
  color: #555555;
  font-size: 0.85rem;
  font-weight: 300;
  margin: 40px 0;
}

.contacto-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contacto-form input,
.contacto-form textarea {
  background-color: #141414;
  border: 1px solid #2a2a2a;
  color: #f5f5f5;
  padding: 14px 16px;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
}

.contacto-form input::placeholder,
.contacto-form textarea::placeholder {
  color: #666666;
}

.contacto-form input:focus,
.contacto-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.contacto-form button {
  background-color: #f5f5f5;
  color: #0a0a0a;
  border: none;
  padding: 16px;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contacto-form button:hover {
  background-color: #cccccc;
}

@media (max-width: 768px) {

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: #0a0a0a;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: right 0.4s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .servicios-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .reel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 0;
  }

  .reel-label {
    width: 100%;
    font-size: 0.8rem;
    padding: 10px 8px;
    letter-spacing: 0.3px;
    white-space: normal;
    line-height: 1.2;
  }

  .reel-info li {
    padding: 12px 14px;
    font-size: 0.95rem;
    gap: 12px;
  }

  .reel-info-icon-wrap {
    width: 38px;
    height: 38px;
  }

  .reel-info-icon {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 1100px) {
  .reel-info {
    position: static;
    width: 100%;
    margin: 20px 0 0 0;
    transform: translateX(0) translateY(20px);
  }

  .reel-info.is-visible {
    transform: translateX(0) translateY(0);
  }
}

.form-success {
  display: none;
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
  background-color: #141414;
  border: 1px solid #3a3a3a;
  color: #f5f5f5;
  font-size: 0.95rem;
  font-weight: 300;
  text-align: center;
}

.form-success.active {
  display: block;
}

.cliente-body {
  background-color: #0a0a0a;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.password-gate {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.password-box {
  text-align: center;
  max-width: 320px;
  padding: 20px;
}

.password-logo {
  color: #f5f5f5;
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.password-label {
  color: #999999;
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 20px;
}

.password-box input {
  width: 100%;
  background-color: #141414;
  border: 1px solid #2a2a2a;
  color: #f5f5f5;
  padding: 14px 16px;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  margin-bottom: 14px;
  text-align: center;
}

.password-box input:focus {
  outline: none;
  border-color: #555555;
}

.password-box button {
  width: 100%;
  background-color: #f5f5f5;
  color: #0a0a0a;
  border: none;
  padding: 14px;
  font-size: 0.95rem;
  font-weight: 400;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.password-box button:hover {
  background-color: #cccccc;
}

.password-error {
  display: none;
  color: #d97070;
  font-size: 0.85rem;
  margin-top: 14px;
}

.cliente-content {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.cliente-card {
  max-width: 480px;
  text-align: center;
}

.cliente-logo {
  color: #999999;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.cliente-card h1 {
  color: #f5f5f5;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.cliente-intro {
  color: #bbbbbb;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 35px;
}

.cliente-btn {
  display: inline-block;
  background-color: #f5f5f5;
  color: #0a0a0a;
  text-decoration: none;
  padding: 16px 40px;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease;
}

.cliente-btn:hover {
  background-color: #cccccc;
}

.cliente-footer {
  color: #666666;
  font-size: 0.85rem;
  font-weight: 300;
  margin-top: 30px;
}

.cliente-footer a {
  color: #999999;
}

/* ===== FOOTER ===== */
.site-footer {
  background-color: #0a0a0a;
  color: #e5e5e5;
  padding: 60px 5% 20px;
  font-family: 'Poppins', sans-serif;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.footer-brand .footer-logo {
  height: 32px;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: #999;
  font-weight: 300;
}

.footer-nav h4,
.footer-contact h4,
.footer-social h4 {
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.footer-nav li,
.footer-contact li {
  margin-bottom: 10px;
  font-size: 0.9rem;
  font-weight: 300;
  color: #ccc;
}

.footer-nav a,
.footer-contact a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--color-accent);
}

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

.social-icon {
  color: #ccc;
  transition: color 0.25s ease, transform 0.25s ease;
  width: fit-content;
}

.social-icon:hover {
  color: var(--color-accent);
  transform: translateY(-2px);
}

/* Clientes */
.footer-clients {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.clients-label {
  font-size: 0.8rem;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.clients-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.client-logo {
  height: 36px;
  filter: grayscale(100%) brightness(1.6) opacity(0.6);
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.client-logo:hover {
  filter: grayscale(0%) brightness(1) opacity(1);
}

/* Línea final */
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #777;
}

#back-to-top {
  background: transparent;
  border: 1px solid #444;
  color: #ccc;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.25s ease;
}

#back-to-top:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

/* Responsive footer */
@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

.testimonios {
  background-color: #0a0a0a;
  padding: 150px 0 120px 0;
  text-align: center;
  overflow: hidden;
}

.testimonios h2 {
  color: #f5f5f5;
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 60px;
  padding: 0 20px;
}

.testimonios-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonios-track {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: testimonios-scroll 30s linear infinite;
}

.testimonios-track-wrap:hover .testimonios-track {
  animation-play-state: paused;
}

.testimonio-card {
  position: relative;
  width: 340px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03) 40%, rgba(0, 0, 0, 0.2) 100%), #141414;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 32px 28px;
  text-align: left;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.testimonio-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 0 25px -5px rgba(0, 90, 116, 0.5);
}

.testimonio-texto {
  color: #cccccc;
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 22px;
}

.testimonio-autor {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonio-nombre {
  color: #f5f5f5;
  font-size: 0.95rem;
  font-weight: 500;
}

.testimonio-cargo {
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 300;
}

@keyframes testimonios-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.333%);
  }
}

@media (max-width: 768px) {
  .testimonios {
    padding: 100px 0 80px 0;
  }

  .testimonio-card {
    width: 280px;
    padding: 26px 22px;
  }
}

/* ===== PROCESO ===== */
.proceso {
  background-color: #0a0a0a;
  padding: 150px 20px 100px 20px;
  text-align: center;
}

.proceso h2 {
  color: #f5f5f5;
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 70px;
}

.proceso-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.proceso-track::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 90, 116, 0.5), rgba(0, 90, 116, 0.5), transparent);
  z-index: 0;
}

.proceso-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.proceso-num {
  color: rgba(255, 255, 255, 0.15);
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.proceso-icon {
  width: 44px;
  height: 44px;
  background: #0a0a0a;
  padding: 10px;
  border: 1px solid #2a2a2a;
  border-radius: 50%;
  margin-bottom: 20px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.proceso-step:hover .proceso-icon {
  border-color: var(--color-accent);
  box-shadow: 0 0 20px -4px rgba(0, 90, 116, 0.6);
}

.proceso-step h3 {
  color: #f5f5f5;
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.proceso-step p {
  color: #999999;
  font-size: 0.85rem;
  line-height: 1.6;
  font-weight: 300;
  padding: 0 10px;
}

@media (max-width: 900px) {
  .proceso-track {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .proceso-track::before {
    display: none;
  }
}

/* ===== FAQ ===== */
.faq {
  background-color: #0a0a0a;
  padding: 100px 20px 150px 20px;
  text-align: center;
}

.faq h2 {
  color: #f5f5f5;
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 60px;
}

.faq-list {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
  text-align: left;
}

.faq-item.is-open {
  border-color: var(--color-accent);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 26px;
  color: #f5f5f5;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-toggle {
  color: var(--color-accent);
  font-size: 1.3rem;
  font-weight: 300;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
}

.faq-item.is-open .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 26px;
}

.faq-item.is-open .faq-answer {
  max-height: 200px;
  padding: 0 26px 22px 26px;
}

.faq-answer p {
  color: #999999;
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 300;
}