 <style>
    :root {
      --primary: #ffc107;
      --primary-dark: #e0a800;
      --bg-dark: #111111;
      --bg-light: #f4f4f4;
      --text-dark: #222222;
      --text-muted: #666666;
      --accent: #ff6b35;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: 'Open Sans', Arial, sans-serif;
      background-color: var(--bg-light);
      color: var(--text-dark);
    }

    a {
      color: inherit;
    }

    /* HEADER */
    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background-color: rgba(17,17,17,0.96);
      color: white;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 40px;
    }

    .logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  display: flex;
  align-items: center;
}

.logo-icon img {
  width: 50px;
  height: auto;
  object-fit: contain;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text span:first-child {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

.logo-text span:last-child {
  font-size: 0.75rem;
  color: #cccccc;
}
    }

    nav {
      display: flex;
      align-items: center;
      gap: 20px;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.9rem;
    }

    nav a {
      color: white;
      text-decoration: none;
      font-weight: 600;
      position: relative;
    }

    nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -4px;
      width: 0;
      height: 2px;
      background-color: var(--primary);
      transition: width 0.25s ease;
    }

    nav a:hover::after {
      width: 100%;
    }

   .nav-cta {
  background-color: #ffc107;
  color: #111;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
  background-color: #e0a800;
  transform: translateY(-1px);
}


    /* HAMBURGER */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 4px;
      cursor: pointer;
    }

    .hamburger span {
      width: 22px;
      height: 2px;
      background-color: white;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .nav-open .line1 {
      transform: translateY(6px) rotate(45deg);
    }

    .nav-open .line2 {
      opacity: 0;
    }

    .nav-open .line3 {
      transform: translateY(-6px) rotate(-45deg);
    }

    /* MOBILE NAV */
    @media (max-width: 768px) {
      header {
        padding: 10px 18px;
      }

      nav {
        position: absolute;
        top: 56px;
        left: 0;
        right: 0;
        background-color: #111;
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 18px 16px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
      }

      nav.open {
        max-height: 260px;
      }

      .nav-links {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
      }

      .nav-cta {
        margin-top: 6px;
      }

      .hamburger {
        display: flex;
      }
    }

    /* HERO */
    .hero {
      position: relative;
      background: url('img/25.jpg') center/cover no-repeat;
      color: white;
      min-height: 65vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: left;
      padding: 80px 20px;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, rgba(0,0,0,0.75), rgba(0,0,0,0.35));
    }

    .hero-inner {
      position: relative;
      max-width: 1100px;
      width: 100%;
      display: grid;
      grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.4fr);
      gap: 40px;
      align-items: center;
    }

    .hero-text h1 {
      font-family: 'Montserrat', sans-serif;
      font-size: 2.6rem;
      margin: 0 0 12px;
    }

    .hero-text h1 span {
      color: var(--primary);
    }

    .hero-text p {
      font-size: 1rem;
      max-width: 520px;
      color: #f1f1f1;
      margin-bottom: 18px;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 18px;
    }

    .badge {
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.4);
      padding: 6px 12px;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: #f8f8f8;
    }

    .hero-cta-group {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    .btn-primary {
  background-color: #ffc107;
  color: #111;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn-primary:hover {
  background-color: #e0a800;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.45);
}


    .btn-secondary {
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.6);
      padding: 10px 20px;
      text-decoration: none;
      font-size: 0.9rem;
      color: #f8f8f8;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: background-color 0.2s ease, color 0.2s ease;
    }

    .btn-secondary:hover {
      background-color: rgba(255,255,255,0.1);
    }

    .hero-side-card {
      background-color: rgba(17,17,17,0.9);
      border-radius: 14px;
      padding: 18px 18px 20px;
      box-shadow: 0 12px 30px rgba(0,0,0,0.6);
      backdrop-filter: blur(4px);
    }

    .hero-side-card h3 {
      margin: 0 0 6px;
      font-family: 'Montserrat', sans-serif;
      font-size: 1.1rem;
    }

    .hero-side-card p {
      margin: 0 0 12px;
      font-size: 0.85rem;
      color: #dddddd;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      margin-top: 10px;
    }

    .stat-box {
      background-color: #1f1f1f;
      border-radius: 10px;
      padding: 10px;
      text-align: center;
    }

    .stat-box h4 {
      margin: 0;
      font-size: 1.1rem;
      color: var(--primary);
      font-family: 'Montserrat', sans-serif;
    }

    .stat-box span {
      display: block;
      font-size: 0.7rem;
      color: #cccccc;
      margin-top: 2px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    @media (max-width: 900px) {
      .hero-inner {
        grid-template-columns: minmax(0, 1fr);
      }

      .hero {
        text-align: left;
        padding: 70px 18px 60px;
      }

      .hero-text h1 {
        font-size: 2.1rem;
      }
    }

    @media (max-width: 600px) {
      .hero {
        text-align: left;
      }

      .hero-text h1 {
        font-size: 1.8rem;
      }

      .hero-badges {
        gap: 6px;
      }
    }

    /* SECTIONS BASE */
    section {
      max-width: 1100px;
      margin: auto;
      padding: 60px 20px;
    }

    .section-title {
      text-align: center;
      margin-bottom: 10px;
      font-family: 'Montserrat', sans-serif;
      font-size: 1.9rem;
    }

    .section-subtitle {
      text-align: center;
      margin: 0 auto 30px;
      max-width: 520px;
      font-size: 0.95rem;
      color: var(--text-muted);
    }

    /* ABOUT */
    #about {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.3fr);
      gap: 40px;
      align-items: center;
    }

    .about-text p {
      line-height: 1.6;
      color: var(--text-muted);
      font-size: 0.95rem;
    }

    .about-list {
      margin-top: 14px;
      list-style: none;
      padding: 0;
    }

    .about-list li {
      margin-bottom: 6px;
      font-size: 0.9rem;
    }

    .about-list li::before {
      content: "✔";
      color: var(--primary);
      margin-right: 6px;
      font-size: 0.8rem;
    }

    .about-highlight {
      margin-top: 14px;
      padding: 10px 12px;
      border-left: 3px solid var(--primary);
      background-color: #ffffff;
      border-radius: 6px;
      font-size: 0.9rem;
      color: var(--text-dark);
    }

    .about-image {
      position: relative;
    }

    .about-main-img {
      width: 100%;
      border-radius: 14px;
      box-shadow: 0 12px 28px rgba(0,0,0,0.18);
      object-fit: cover;
      max-height: 320px;
    }

    .about-floating-card {
      position: absolute;
      bottom: -18px;
      left: 12px;
      background-color: #111;
      color: white;
      padding: 10px 14px;
      border-radius: 10px;
      font-size: 0.8rem;
      box-shadow: 0 10px 24px rgba(0,0,0,0.4);
    }

    .about-floating-card strong {
      color: var(--primary);
    }

    @media (max-width: 900px) {
      #about {
        grid-template-columns: minmax(0, 1fr);
      }

      .about-image {
        order: -1;
      }
    }

    /* SERVICES */
    #services {
      background-color: #ffffff;
      border-radius: 24px;
      margin-top: 20px;
      margin-bottom: 20px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 18px;
      margin-top: 20px;
    }

    .service-box {
      background-color: #fafafa;
      padding: 18px 16px;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.04);
      text-align: left;
      font-size: 0.9rem;
      font-weight: 600;
      display: flex;
      flex-direction: column;
      gap: 6px;
      border: 1px solid transparent;
      transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    }

    .service-box:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
      border-color: rgba(0,0,0,0.06);
    }

    .service-tag {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--text-muted);
    }

    /* PROJECTS */
    #projects {
      padding-top: 40px;
    }

    .projects-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 18px;
      margin-top: 20px;
    }

    .project-card {
      background-color: #ffffff;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 8px 22px rgba(0,0,0,0.08);
      display: flex;
      flex-direction: column;
    }

    .project-card img {
      width: 100%;
      height: 160px;
      object-fit: cover;
    }

    .project-body {
      padding: 12px 14px 14px;
      font-size: 0.9rem;
    }

    .project-body h3 {
      margin: 0 0 4px;
      font-family: 'Montserrat', sans-serif;
      font-size: 1rem;
    }

    .project-meta {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-bottom: 6px;
    }

    /* TESTIMONIALS */
    #testimonials {
      padding-top: 40px;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 18px;
      margin-top: 20px;
    }

    .testimonial-card {
      background-color: #ffffff;
      border-radius: 14px;
      padding: 16px 16px 18px;
      box-shadow: 0 8px 22px rgba(0,0,0,0.06);
      font-size: 0.9rem;
      position: relative;
      overflow: hidden;
    }

    .testimonial-card::before {
      content: "“";
      position: absolute;
      font-size: 4rem;
      color: rgba(0,0,0,0.06);
      top: -18px;
      left: 10px;
    }

    .testimonial-text {
      margin-bottom: 10px;
      color: var(--text-muted);
    }

    .testimonial-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.8rem;
    }

    .testimonial-name {
      font-weight: 600;
    }

    .stars {
      color: #ffb400;
      font-size: 0.8rem;
    }

    /* CONTACT */
    #contact {
      padding-top: 40px;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.2fr);
      gap: 30px;
      margin-top: 20px;
    }

    .contact-info p {
      font-size: 0.95rem;
      color: var(--text-muted);
      margin-bottom: 8px;
    }

    .contact-info strong {
      color: var(--text-dark);
    }

    .contact-highlight {
      margin-top: 12px;
      padding: 10px 12px;
      border-radius: 8px;
      background-color: #ffffff;
      border-left: 3px solid var(--accent);
      font-size: 0.9rem;
    }

    .contact-form {
      background-color: #ffffff;
      border-radius: 14px;
      padding: 18px 18px 20px;
      box-shadow: 0 8px 22px rgba(0,0,0,0.06);
    }

    .contact-form label {
      display: block;
      font-size: 0.8rem;
      margin-bottom: 4px;
      font-weight: 600;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 8px 10px;
      border-radius: 6px;
      border: 1px solid #dddddd;
      font-family: inherit;
      font-size: 0.9rem;
      margin-bottom: 10px;
      outline: none;
      transition: border-color 0.18s ease, box-shadow 0.18s ease;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 2px rgba(255,193,7,0.25);
    }

    .contact-form button {
      border: none;
      cursor: pointer;
    }

    @media (max-width: 900px) {
      .contact-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    /* FOOTER */
    footer {
      background-color: #111111;
      color: #f1f1f1;
      padding: 30px 20px 18px;
      margin-top: 40px;
    }

    .footer-inner {
      max-width: 1100px;
      margin: auto;
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
      gap: 26px;
      font-size: 0.85rem;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 8px;
    }

    .footer-logo .logo-icon {
      box-shadow: 0 6px 16px rgba(0,0,0,0.5);
    }

    .footer-logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }

    .footer-logo-text span:first-child {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
    }

    .footer-logo-text span:last-child {
      font-size: 0.75rem;
      color: #bbbbbb;
    }

    .footer-col h4 {
      margin: 0 0 8px;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.9rem;
    }

    .footer-col p,
    .footer-col a {
      margin: 0 0 4px;
      color: #cccccc;
      text-decoration: none;
      font-size: 0.8rem;
    }

    .footer-col a:hover {
      color: var(--primary);
    }

    .footer-bottom {
      max-width: 1100px;
      margin: 18px auto 0;
      border-top: 1px solid #333333;
      padding-top: 10px;
      font-size: 0.75rem;
      color: #aaaaaa;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 6px;
    }

    @media (max-width: 800px) {
      .footer-inner {
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
      }
    }

    @media (max-width: 600px) {
      .footer-inner {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    /* FLOATING CTA */
    .floating-cta {
      position: fixed;
      right: 16px;
      bottom: 18px;
      z-index: 1200;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .floating-btn {
      width: 48px;
      height: 48px;
      border-radius: 999px;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: var(--primary);
      color: #111;
      box-shadow: 0 10px 24px rgba(0,0,0,0.35);
      cursor: pointer;
      text-decoration: none;
      font-size: 1.2rem;
      transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
    }

    .floating-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 30px rgba(0,0,0,0.45);
      background-color: var(--primary-dark);
    }

    .floating-label {
      position: absolute;
      right: 58px;
      bottom: 6px;
      background-color: #111;
      color: #f1f1f1;
      padding: 6px 10px;
      border-radius: 999px;
      font-size: 0.75rem;
      white-space: nowrap;
      box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    }

    @media (max-width: 480px) {
      .floating-label {
        display: none;
      }
    }

    /* SIMPLE FADE-IN ANIMATION */
    .fade-in {
      opacity: 0;
      transform: translateY(10px);
      animation: fadeInUp 0.7s ease forwards;
    }

    .fade-delay-1 {
      animation-delay: 0.15s;
    }

    .fade-delay-2 {
      animation-delay: 0.3s;
    }

    .fade-delay-3 {
      animation-delay: 0.45s;
    }

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .lang-btn {
  cursor: pointer;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(255,255,255,0.15);
  color: white;
  transition: 0.2s;
  margin-left: 15px;
}

.lang-btn:hover {
  background: rgba(255,255,255,0.3);
}
.translate-btn {
  position: sticky;
  top: 20px;
  right: 20px;
  background: #ffffff;
  color: #111;
  padding: 8px 14px;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  z-index: 9999;
  transition: 0.2s;
}

.translate-btn:hover {
  background: #277DF5;
}

/* Cuando Google Translate se carga, reemplaza el botón */
.goog-te-gadget {
  font-size: 0 !important;
}

.goog-te-gadget select {
  background: #ffc107;
  color: #111;
  border: none;
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
}.marquee-gallery {
  position: relative;
  overflow: hidden;
  pointer-events: auto;
  width: 100%;
  padding: 20px 0;
  height: 180px;
}

/* PC — auto‑scroll infinito funcionando */
@media (min-width: 769px) {
  .marquee-track {
    display: flex;
    gap: 20px;
    overflow-x: hidden; /* ← IMPORTANTE: evita que el navegador bloquee el auto-scroll */
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: auto;
    scroll-snap-type: none; /* ← DESACTIVAR snap en PC */
  }
}

/* MÓVIL — scroll suave con el dedo */
@media (max-width: 768px) {
  .marquee-track {
    display: flex;
    gap: 20px;
    overflow-x: auto; /* ← permitir arrastrar con el dedo */
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* ← suavidad en iPhone */
    scroll-snap-type: x mandatory; /* ← solo en móvil */
  }

  .marquee-track img {
    scroll-snap-align: start;
  }
}

.marquee-track img {
  width: 250px;
  height: 160px;
  object-fit: cover;
  pointer-events: auto;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.marquee-track img:hover {
  transform: scale(1.05);
}

/* PUNTITOS PARA SELECCIONAR POSICIONES DE IMAGENES */
.dots {
  display: flex;
  justify-content: center;
  margin-top: 5px;
  gap: 8px;
  position: relative;
  z-index: 50; /* Poner puntitos encima del slider */
  pointer-events: auto; /* Permitir clics */
}

.dot {
  width: 12px;
  height: 12px;
  background: #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: #000000;
  transform: scale(1.2);
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 99999;
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.arrow {
  position: absolute;
  top: 50%;
  font-size: 50px;
  color: white;
  cursor: pointer;
  user-select: none;
}

.arrow.left { left: 40px; }
.arrow.right { right: 40px; }
}
  </style>