  /* ===== RESET & BASE ===== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: #f8fafc;
      color: #0b1a2e;
      line-height: 1.5;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

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

    /* ===== HEADER ===== */
    .header {
      background: #0b1a2e;
      color: #fff;
      padding: 12px 0;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }

    .header .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    .logo img {
      height: 44px;
      width: auto;
      filter: brightness(0) invert(1);
    }

    .nav .menu {
      display: flex;
      list-style: none;
      gap: 28px;
      font-weight: 500;
      font-size: 0.95rem;
    }

    .nav .menu a {
      color: rgba(255,255,255,0.8);
      transition: color 0.2s;
      position: relative;
    }

    .nav .menu a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: #f5b342;
      transition: width 0.25s;
    }

    .nav .menu a:hover {
      color: #fff;
    }

    .nav .menu a:hover::after {
      width: 100%;
    }

   

    /* Hamburguesa */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
    }

    .hamburger span {
      width: 28px;
      height: 3px;
      background: #fff;
      border-radius: 6px;
      transition: 0.25s;
    }

    /* ===== HERO ===== */
   /* ===== HERO CON ZOOM ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #0b1a2e;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 26, 46, 0.55);
  z-index: 1;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1.2s ease, transform 6s ease;
  will-change: transform, opacity;
}

.hero-slider img.active {
  opacity: 1;
  transform: scale(1);
}

/* Efecto zoom-out para la imagen que se va */
.hero-slider img.leaving {
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 5s ease;
}

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 760px;
      padding: 20px;
      color: #fff;
    }

    .hero-content h1 {
      font-size: 3.2rem;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 16px;
      letter-spacing: -0.02em;
    }

    .hero-content p {
      font-size: 1.25rem;
      opacity: 0.9;
      margin-bottom: 32px;
      font-weight: 300;
    }

    .btn-principal {
      background: #f5b342;
      color: #0b1a2e;
      padding: 16px 48px;
      border-radius: 60px;
      font-weight: 700;
      font-size: 1.1rem;
      display: inline-block;
      transition: 0.2s;
      box-shadow: 0 8px 28px rgba(245, 179, 66, 0.35);
      letter-spacing: 0.4px;
    }

    .btn-principal:hover {
      background: #e6a130;
      transform: translateY(-3px);
      box-shadow: 0 14px 34px rgba(245, 179, 66, 0.45);
    }

    /* ===== SECCIONES ===== */
    .section-title {
      text-align: center;
      margin-bottom: 48px;
    }

    .section-title h2 {
      font-size: 2.4rem;
      font-weight: 700;
      color: #0b1a2e;
      letter-spacing: -0.02em;
    }

    .section-title p {
      color: #475569;
      font-size: 1.1rem;
      margin-top: 8px;
      font-weight: 400;
    }

    .section-badge {
      display: inline-block;
      background: #eef2ff;
      color: #2d3b5c;
      padding: 6px 18px;
      border-radius: 30px;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.3px;
      margin-bottom: 12px;
    }

    /* ===== SERVICES ===== */
    .services {
      padding: 80px 0;
      background: #fff;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 32px;
    }

    .service-card {
      background: #f8fafc;
      border-radius: 28px;
      overflow: hidden;
      transition: 0.3s;
      box-shadow: 0 4px 14px rgba(0,0,0,0.02);
      border: 1px solid #edf2f7;
    }

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px -12px rgba(0,0,0,0.12);
      border-color: #e2e8f0;
    }

    .service-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      background: #eef2f7;
    }

    .service-content {
      padding: 24px 20px 28px;
    }

    .service-content h3 {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .service-content p {
      color: #475569;
      font-size: 0.95rem;
      margin-bottom: 18px;
    }

    .service-content a {
      color: #0b1a2e;
      font-weight: 600;
      font-size: 0.9rem;
      border-bottom: 2px solid #f5b342;
      padding-bottom: 2px;
      transition: 0.2s;
      display: inline-block;
    }

    .service-content a:hover {
      color: #f5b342;
      border-color: #0b1a2e;
    }

    /* ===== FEATURED ===== */
    .featured {
      padding: 80px 0;
      background: #f8fafc;
    }

    .featured-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 32px;
    }

    .product-card {
      background: #fff;
      border-radius: 28px;
      overflow: hidden;
      transition: 0.3s;
      box-shadow: 0 4px 14px rgba(0,0,0,0.02);
      border: 1px solid #edf2f7;
    }

    .product-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 40px -12px rgba(0,0,0,0.1);
    }

    .product-card img {
      width: 100%;
      height: 210px;
      object-fit: cover;
      background: #eef2f7;
    }

    .product-info {
      padding: 20px 20px 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .product-info h3 {
      font-weight: 700;
      font-size: 1.1rem;
    }

    .product-btn {
      background: #0b1a2e;
      color: #fff;
      padding: 8px 22px;
      border-radius: 40px;
      font-weight: 600;
      font-size: 0.85rem;
      transition: 0.2s;
    }

    .product-btn:hover {
      background: #f5b342;
      color: #0b1a2e;
    }

    /* ===== STATS ===== */
    .stats {
      padding: 60px 0;
      background: #0b1a2e;
      color: #fff;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 24px;
      text-align: center;
    }

    .stat-item h3 {
      font-size: 2.8rem;
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    .stat-item p {
      opacity: 0.7;
      font-weight: 400;
      font-size: 0.95rem;
      margin-top: 4px;
    }

    /* ===== WHY US ===== */
    .why-us {
      padding: 80px 0;
      background: #fff;
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 32px;
    }

    .why-card {
      background: #f8fafc;
      padding: 32px 24px;
      border-radius: 28px;
      text-align: center;
      border: 1px solid #edf2f7;
      transition: 0.25s;
    }

    .why-card:hover {
      border-color: #f5b342;
      background: #fffcf5;
    }

    .why-card span {
      font-size: 2.2rem;
      color: #f5b342;
      display: block;
      margin-bottom: 12px;
      font-weight: 300;
    }

    .why-card h3 {
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .why-card p {
      color: #475569;
      font-size: 0.95rem;
    }

    /* ===== BRANCHES ===== */
    .branches {
      padding: 80px 0;
      background: #f8fafc;
    }

    .branches-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 32px;
    }

    .branch-card {
      background: #fff;
      padding: 32px 24px;
      border-radius: 32px;
      box-shadow: 0 4px 14px rgba(0,0,0,0.02);
      border: 1px solid #edf2f7;
      transition: 0.25s;
      text-align: center;
    }

    .branch-card:hover {
      transform: translateY(-4px);
      border-color: #f5b342;
      box-shadow: 0 16px 32px -12px rgba(0,0,0,0.08);
    }

    .branch-icon {
      font-size: 2.4rem;
      margin-bottom: 12px;
    }

    .branch-card h3 {
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .branch-address {
      color: #475569;
      font-size: 0.9rem;
      margin-bottom: 12px;
    }

    .branch-card p {
      color: #475569;
      font-size: 0.95rem;
      margin-bottom: 18px;
    }

    .branch-btn {
      display: inline-block;
      padding: 8px 24px;
      border-radius: 40px;
      background: #0b1a2e;
      color: #fff;
      font-weight: 600;
      font-size: 0.85rem;
      transition: 0.2s;
    }

    .branch-btn:hover {
      background: #f5b342;
      color: #0b1a2e;
    }

    /* ===== FOOTER ===== */
    .footer {
      background: #0b1a2e;
      color: rgba(255,255,255,0.9);
      padding: 48px 0 24px;
    }

    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 32px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      padding-bottom: 32px;
    }

    .footer-content h3 {
      font-weight: 700;
      margin-bottom: 8px;
      font-size: 1.1rem;
    }

    .footer-content p {
      opacity: 0.7;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .copyright {
      max-width: 1200px;
      margin: 0 auto;
      padding: 24px 24px 0;
      text-align: center;
      font-size: 0.85rem;
      opacity: 0.5;
    }

    /* ===== WHATSAPP FLOAT ===== */
    

    /* ===== RESPONSIVE ===== */
    @media (max-width: 992px) {
      .hero-content h1 {
        font-size: 2.6rem;
      }
    }

    @media (max-width: 768px) {
      .hamburger {
        display: flex;
      }

      .nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #0b1a2e;
        padding: 20px 24px;
        box-shadow: 0 12px 28px rgba(0,0,0,0.2);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: 0.3s ease;
        opacity: 0;
        pointer-events: none;
      }

      .nav.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        opacity: 1;
        pointer-events: all;
      }

      .nav .menu {
        flex-direction: column;
        gap: 18px;
      }

      .nav .menu a {
        font-size: 1.1rem;
      }

      

      .hero-content h1 {
        font-size: 2.2rem;
      }

      .section-title h2 {
        font-size: 2rem;
      }

      .stat-item h3 {
        font-size: 2.2rem;
      }

      .services-grid,
      .featured-grid,
      .why-grid,
      .branches-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 480px) {
      .services-grid,
      .featured-grid,
      .why-grid,
      .branches-grid {
        grid-template-columns: 1fr;
      }

      .hero-content h1 {
        font-size: 1.8rem;
      }

      .btn-principal {
        padding: 14px 32px;
        font-size: 1rem;
      }

      .stat-item h3 {
        font-size: 2rem;
      }
    }

    /* efecto slider */
    .hero-slider img:not(.active) {
      opacity: 0;
      transition: opacity 1s ease;
    }

    .hero-slider img.active {
      opacity: 1;
      transition: opacity 1.2s ease;
    }