 /* ===========================================
       ÚNICO :root GLOBAL CON TODAS LAS VARIABLES
       =========================================== */
    :root {
      /* HTML1 variables */
      --html1-verde: #006838;
      --html1-verde-oscuro: #004d28;
      --html1-gris: #a8a8a8;
      --html1-gris-medio: #888888;
      --html1-gris-medio-claro: #999999;
      --html1-texto: #333333;
      --html1-shell-rojo: #DD1D21;
      --html1-shell-amarillo: #FBCE07;

      /* HTML3 variables */
      --html3-bg: #F9F9F9;
      --html3-card-border: #4A4A4A;
      --html3-card-radius: 12px;
      --html3-card-w: 320px;
      --html3-card-h: 110px;
      --html3-icon-size: 55px;
      --html3-icon-inner-size: 24px;
      --html3-icon-left: 25px;
      --html3-icon-top: -27.5px;
      --html3-connector-w: 60px;
      --html3-connector-h: 3px;
      --html3-font-family: 'Roboto', sans-serif;
      --html3-gold-grad: linear-gradient(135deg, #D4AF37, #C7A050);
      --html3-text-color: #4A4A4A;

      /* HTML4 variables */
      --html4-page-bg: #F5F5F5;
      --html4-container-max: 1400px;
      --html4-text-dark: #4A4A4A;
      --html4-text-medium: #777777;
      --html4-card-shadow: rgba(0,0,0,0.08);
      --html4-border-dark: #2A2A2A;
      --html4-gold-grad-start: #C9A052;
      --html4-gold-grad-end: #B89350;
      --html4-gold-hover: #B08040;
      --html4-white: #FFFFFF;
      --html4-card-radius: 12px;
      --html4-process-width: 320px;
      --html4-process-height: 90px;
      --html4-icon-size: 50px;
      --html4-font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;

      /* HTML5 variables */
      --html5-bg-page: #f5f5f5;
      --html5-text-dark: #5a5a5a;
      --html5-text-medium: #666666;
      --html5-product-title: #4a4a4a;
      --html5-gold: #c9a961;
      --html5-gold-hover: #b89850;
      --html5-card-bg: #ffffff;
      --html5-card-radius: 12px;
      --html5-card-shadow: 0 4px 12px rgba(0,0,0,0.08);
      --html5-card-shadow-hover: 0 8px 20px rgba(0,0,0,0.12);
      --html5-max-width: 1400px;
      --html5-font-stack: Arial, "Helvetica Neue", Helvetica, sans-serif;

      /* HTML6 variables */
      --html6-bg-light: #f7f7f7;
      --html6-text-dark: #4a4a4a;
      --html6-text-gray: #666666;
      --html6-gold: #c9a961;
      --html6-gold-dark: #b08f4d;
    }

    /* Reset global */
    *{box-sizing: border-box;}
    html,body{height:100%; margin:0; padding:0; scroll-behavior: smooth;}
    a{color:inherit; text-decoration:none}
    ul{list-style:none; margin:0; padding:0}

    /* ===========================================
       SECCIÓN HTML1 - HEADER/NAV
       =========================================== */
    #html1-section {
      font-family: 'Roboto', Arial, Helvetica, sans-serif;
      -webkit-font-smoothing:antialiased;
      -moz-osx-font-smoothing:grayscale;
    }

    #html1-section header.html1-site-header{
      position: fixed;
      top:0;
      left:0;
      right:0;
      background:#ffffff;
      padding:15px 40px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      height:110px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      z-index: 1000;
      transition: box-shadow 0.25s ease, background 0.25s ease, padding 0.25s ease;
    }

    #html1-section header.html1-site-header.html1-scrolled{
      box-shadow: 0 6px 24px rgba(0,0,0,0.18);
      background: #ffffff;
    }

    #html1-section .html1-header-left, 
    #html1-section .html1-header-center, 
    #html1-section .html1-header-right{
      display:flex;
      align-items:center;
    }

    #html1-section .html1-logo-wrap{
      display:flex;
      flex-direction:column;
      align-items:flex-start;
      line-height:1;
    }

    #html1-section .html1-logo-main{
      font-size:36px;
      display:flex;
      align-items:flex-end;
      gap:8px;
      font-family: 'Roboto', Arial, Helvetica, sans-serif;
    }

    #html1-section .html1-logo-main .html1-grupo{
      color: var(--html1-verde);
      font-weight:700;
      font-style: italic;
      font-size:36px;
    }

    #html1-section .html1-logo-main .html1-ilasas{
      color: var(--html1-gris);
      font-weight:400;
      font-size:36px;
    }

    #html1-section .html1-logo-sub{
      margin-top:4px;
      font-size:10px;
      color:#6b6b6b;
      text-transform:uppercase;
      letter-spacing:0.5px;
      display:flex;
      align-items:center;
      gap:8px;
      justify-content:flex-end;
      width:100%;
    }

    #html1-section .html1-shell-pill{
      display:inline-block;
      border-radius:50%;
      padding:2px 8px;
      background: var(--html1-shell-rojo);
      color: var(--html1-shell-amarillo);
      font-weight:700;
      font-size:10px;
      line-height:1;
      box-shadow: inset 0 -2px 0 rgba(0,0,0,0.05);
    }

    #html1-section nav.html1-site-nav{
      margin:0 40px;
    }

    #html1-section .html1-nav-list{
      display:flex;
      gap:30px;
      align-items:center;
      padding:0;
      margin:0;
    }

    #html1-section .html1-nav-list li a{
      color: var(--html1-texto);
      font-size:16px;
      font-weight:400;
      transition: color 0.3s ease;
      display:inline-flex;
      align-items:center;
      gap:6px;
    }

    #html1-section .html1-nav-list li a:hover{
      color: var(--html1-verde);
    }

    #html1-section .html1-header-right{
      align-items:center;
    }

    #html1-section .html1-icon-search{
      font-size:20px;
      color: var(--html1-texto);
      margin-right:20px;
      cursor:pointer;
      line-height:1;
      display:inline-flex;
      align-items:center;
      justify-content:center;
    }

    #html1-section .html1-btn-asesoria{
         background: linear-gradient(to bottom, #9a9a9a, #3f3f3f);
        color: white;
        font-weight: 500;
        padding: 10px 28px;
        border-radius: 20px;
        border: none;
        cursor: pointer;
        font-size: 14px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.25);
        transition: transform 0.2s ease;
    }

    #html1-section .html1-btn-asesoria:hover{
      background: var(--html1-verde-oscuro);
    }

    #html1-section .html1-hamburger{
      display:none;
      border:none;
      background:transparent;
    }

   

    #html1-section .html1-nav-list a:focus, 
    #html1-section .html1-btn-asesoria:focus, 
    #html1-section .html1-hamburger:focus{
      outline: 3px solid rgba(0,104,56,0.18);
      outline-offset: 3px;
    }

    /* ===========================================
       SECCIÓN HTML2 - HERO ILASAS INDUSTRIAL
       =========================================== */
    #html2-section {
      position: relative;
      width: 100%;
      height: 100vh;
      min-height: 700px;
      background-image: url('./images/Lubricante.jpg');
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: center;
      padding-top: 90px;
      font-family: 'Roboto', Arial, Helvetica, sans-serif;
    }

    #html2-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0,0,0,0.6);
      z-index: 1;
    }

    #html2-section::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
    }

    #html2-section .html2-container {
      width: 100%;
      max-width: 1400px;
      padding: 0 100px;
      margin-bottom: 100px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      position: relative;
      z-index: 2;
      animation: html2-fadeIn 1.5s ease forwards;
      opacity: 0;
    }

    #html2-section .html2-left {
      display: block;
      max-width: 600px;
      padding-left: 25px;
      border-left: 10px solid #B9913D;
      transform: translateX(-50px);
      animation: html2-slideInLeft 0.8s ease-out 0.15s forwards;
      opacity: 0;
    }

    #html2-section .html2-left h1 {
      margin: 0 0 20px 0;
      color: #ffffff;
      font-size: 45px;
      font-weight: 700;
      line-height: 1.02;
      letter-spacing: 0.5px;
    }

    #html2-section .html2-left p {
      margin: 0;
      color: #ffffff;
      font-size: 19px;
      font-weight: 400;
      line-height: 1.6;
      opacity: 0.95;
    }

    #html2-section .html2-right {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 12px;
      text-align: center;
      transform: translateX(50px);
      animation: html2-slideInRight 0.8s ease-out 0.25s forwards;
      opacity: 0;
    }

    #html2-section .html2-logo {
      width: 80px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    #html2-section .html2-brand {
      margin: 6px 0 0 0;
      font-size: 78px;
      font-weight: 700;
      color: #CCCCCC;
      letter-spacing: 4px;
      line-height: 0.9;
    }

    #html2-section .html2-subbrand {
      margin: 4px 0 0 0;
      font-size: 34px;
      font-weight: 700;
      color: #FFC107;
      letter-spacing: 9px;
    }

    #html2-section .html2-left, 
    #html2-section .html2-right, 
    #html2-section .html2-brand, 
    #html2-section .html2-subbrand {
      transition: all 0.3s ease;
    }

    @keyframes html2-fadeIn {
      0% { opacity: 0; transform: none; }
      100% { opacity: 1; }
    }

    @keyframes html2-slideInLeft {
      0% { opacity: 0; transform: translateX(-50px); }
      100% { opacity: 1; transform: translateX(0); }
    }

    @keyframes html2-slideInRight {
      0% { opacity: 0; transform: translateX(50px); }
      100% { opacity: 1; transform: translateX(0); }
    }

    #html2-section .html2-logo svg { display: block; width: 80px; height: 80px; }

   

    /* ===========================================
       SECCIÓN HTML3 - TARJETAS DE SERVICIOS
       =========================================== */
    #html3-section {
      font-family: var(--html3-font-family);
      color: var(--html3-text-color);
      -webkit-font-smoothing:antialiased;
      -moz-osx-font-smoothing:grayscale;
    }

    #html3-section .html3-servicios-container{
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0;
      align-content: center;
    }

    #html3-section .html3-servicio-card{
      /*width: var(--html3-card-w);*/
      height: var(--html3-card-h);
      border: 2.5px solid var(--html3-card-border);
      border-radius: var(--html3-card-radius);
      background: #FFFFFF;
      padding: 20px 20px 20px 70px;
      position: relative;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      display: flex;
      align-items: center;
      cursor: pointer;
      transition: transform .3s ease, box-shadow .3s ease;
      flex-shrink: 0;
    }

    #html3-section .html3-servicio-card:hover{
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    }

    #html3-section .html3-icono-circulo{
      width: var(--html3-icon-size);
      height: var(--html3-icon-size);
      border-radius: 50%;
      background: var(--html3-gold-grad);
      position: absolute;
      top: 20px;
      left: -25px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
      z-index: 2;
    }

    #html3-section .html3-icono-circulo i{
      color: #ffffff;
      font-size: var(--html3-icon-inner-size);
      line-height: 1;
      display: block;
    }

    #html3-section .html3-servicio-texto{
      margin: 0;
      font-size: 20px;
      font-weight: 700;
      color: var(--html3-text-color);
      line-height: 1.4;
      display: block;
    }

    #html3-section .html3-linea-conectora{
      background: var(--html3-card-border);
      margin: 0;
      flex-shrink: 0;
      display: block;
    }

    #html3-section .html3-linea-conectora.html3-horizontal{
      width: var(--html3-connector-w);
      height: 2.5px;
      align-self: center;
    }

  

    /* ===========================================
       SECCIÓN HTML4 - LUBRICACIÓN ESPECIALIZADA
       =========================================== */
    #html4-section {
      font-family: var(--html4-font-family);
      background: var(--html4-page-bg);
      color: var(--html4-text-dark);
      -webkit-font-smoothing:antialiased;
      -moz-osx-font-smoothing:grayscale;
      line-height:1.4;
    }

    #html4-section .html4-wrap{
      max-width: var(--html4-container-max);
      margin: 0 auto;
      padding: 0 20px;
    }

    #html4-section header.html4-title-section{
      text-align: center;
      padding-top: 60px;
    }

    #html4-section header .html4-main-title{
      font-size: 42px;
      color: var(--html4-text-dark);
      font-weight:700;
      margin: 0 0 10px 0;
    }

    #html4-section header .html4-subtitle{
      font-size: 18px;
      color: var(--html4-text-medium);
      font-weight:400;
      margin:0;
    }

    #html4-section .html4-cards-section{
      padding-bottom: 80px;
      margin-top: 40px;
    }

    #html4-section .html4-cards-grid{
      display:grid;
      grid-template-columns: repeat(5, 1fr);
      gap:25px;
    }

    #html4-section .html4-card{
      background: var(--html4-white);
      border-radius: var(--html4-card-radius);
      box-shadow: 0 4px 12px var(--html4-card-shadow);
      overflow:hidden;
      display:flex;
      flex-direction:column;
      transition: transform .3s ease, box-shadow .3s ease;
    }

    #html4-section .html4-card:hover{
      transform: scale(1.02);
      box-shadow: 0 10px 28px rgba(0,0,0,0.14);
    }

    #html4-section .html4-card img{
      width:100%;
      height:260px;
      object-fit:cover;
      display:block;
    }

    #html4-section .html4-card-content{
      padding:25px;
      flex:1;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }

    #html4-section .html4-card h3{
      margin:0 0 15px 0;
      font-size:26px;
      color:var(--html4-text-dark);
      font-weight:700;
    }

    #html4-section .html4-card p{
      margin:0 0 20px 0;
      color:#666666;
      font-size:14px;
      line-height:1.6;
      flex:0 0 auto;
    }

    #html4-section .html4-card .html4-btn{
      display:inline-block;
      background: linear-gradient(180deg, var(--html4-gold-grad-start), var(--html4-gold-grad-end));
      color: #fff;
      padding:10px 24px;
      border-radius:4px;
      border:none;
      font-size:14px;
      font-weight:600;
      cursor:pointer;
      text-decoration:none;
      text-align:center;
      transition: background .18s ease, transform .12s ease;
      align-self:flex-start;
    }

    #html4-section .html4-card .html4-btn:hover{
      background: var(--html4-gold-hover);
      transform: translateY(-2px);
    }

   

    #html4-section .html4-visually-hidden{ 
      position:absolute !important; 
      height:1px; 
      width:1px; 
      overflow:hidden; 
      clip:rect(1px,1px,1px,1px); 
      white-space:nowrap;
    }

    /* ===========================================
       SECCIÓN HTML5 - MINERÍA PRODUCTOS
       =========================================== */
    #html5-section {
      font-family: var(--html5-font-stack);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      color: var(--html5-text-dark);
      -webkit-text-size-adjust: 100%;
    }

    #html5-section .html5-page {
      width: 100%;
      max-width: var(--html5-max-width);
      margin: 0 auto;
    }

    #html5-section .html5-hero {
      display: grid;
      grid-template-columns: 45% 55%;
      gap: 0;
      align-items: center;
      min-height: 520px;
    }

    #html5-section .html5-hero-left {
      padding: 80px 60px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
    }

    #html5-section .html5-hero-left .html5-title {
      margin: 0 0 30px 0;
      color: var(--html5-text-dark);
      font-size: 48px;
      font-weight: 700;
      line-height: 1.05;
    }

    #html5-section .html5-hero-left .html5-lead {
      margin: 0 0 35px 0;
      color: var(--html5-text-medium);
      font-size: 16px;
      line-height: 1.8;
      text-align: left;
      max-width: 720px;
    }

    #html5-section .html5-features {
      list-style: none;
      padding: 0;
      margin: 0 0 35px 0;
      width: 100%;
      max-width: 480px;
    }

    #html5-section .html5-feature-item {
      display: flex;
      align-items: center;
      margin-bottom: 12px;
      color: var(--html5-text-medium);
      font-size: 16px;
      line-height: 1;
    }

    #html5-section .html5-feature-icon {
      width: 20px;
      height: 20px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      border: 2px solid var(--html5-gold);
      flex: 0 0 20px;
      position: relative;
      box-sizing: content-box;
    }

    #html5-section .html5-feature-text {
      margin-left: 12px;
      color: var(--html5-text-medium);
      font-size: 16px;
      display: inline-block;
      vertical-align: middle;
    }

    #html5-section .html5-cta {
      appearance: none;
      -webkit-appearance: none;
      border: none;
      background: var(--html5-gold);
      color: #ffffff;
      padding: 14px 28px;
      border-radius: 4px;
      font-size: 15px;
      font-weight: 500;
      cursor: pointer;
      transition: background-color 0.3s ease, box-shadow 0.2s ease;
      margin-top: 35px;
    }

    #html5-section .html5-cta:hover,
    #html5-section .html5-cta:focus {
      background: var(--html5-gold-hover);
      outline: none;
    }

    #html5-section .html5-hero-right {
      width: 100%;
      height: auto;
      position: relative;
      overflow: hidden;
    }

    #html5-section .html5-hero-right img {
      width: 100%;
      height: auto;
      object-fit: cover;
      display: block;
      min-height: 520px;
    }

    #html5-section .html5-products {
      margin-top: 60px;
      padding: 0 60px 80px 60px;
    }

    #html5-section .html5-products-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
      align-items: start;
    }

    #html5-section .html5-product-card {
      background: var(--html5-card-bg);
      border-radius: var(--html5-card-radius);
      box-shadow: var(--html5-card-shadow);
      padding: 30px 25px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    #html5-section .html5-product-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--html5-card-shadow-hover);
    }

    #html5-section .html5-product-image {
      width: 180px;
      height: auto;
      display: block;
      margin: 0 0 25px 0;
      object-fit: contain;
    }

    #html5-section .html5-product-title {
      margin: 0 0 15px 0;
      color: var(--html5-product-title);
      font-size: 28px;
      font-weight: 700;
    }

    #html5-section .html5-product-desc {
      margin: 0 0 25px 0;
      color: var(--html5-text-medium);
      font-size: 14px;
      line-height: 1.6;
      max-width: 320px;
    }

    #html5-section .html5-product-btn {
      appearance: none;
      -webkit-appearance: none;
      border: none;
      background: var(--html5-gold);
      color: #ffffff;
      padding: 12px 24px;
      border-radius: 4px;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      transition: background-color 0.3s ease, box-shadow 0.2s ease;
    }

    #html5-section .html5-product-btn:hover,
    #html5-section .html5-product-btn:focus {
      background: var(--html5-gold-hover);
      outline: none;
    }

  

    #html5-section .html5-cta:focus, 
    #html5-section .html5-product-btn:focus {
      box-shadow: 0 0 0 3px rgba(201,169,97,0.18);
    }

    /* ===========================================
       SECCIÓN HTML6 - MANUFACTURA & TRANSPORTE
       =========================================== */
    #html6-section {
      font-family: Arial, sans-serif;
      background: var(--html6-bg-light);
      padding: 40px;
    }

    #html6-section .html6-container {
      max-width: 1400px;
      margin: 0 auto;
    }

    #html6-section section {
      padding: 0;
      display: flex;
      gap: 60px;
    }

    #html6-section .html6-col {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    #html6-section .html6-section-img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }

    #html6-section .html6-content {
      padding: 60px 80px;
    }

    #html6-section h2 {
      font-size: 42px;
      font-weight: 700;
      color: var(--html6-text-dark);
      margin-bottom: 30px;
      letter-spacing: -0.5px;
    }

    #html6-section p {
      font-size: 15px;
      color: var(--html6-text-gray);
      line-height: 1.8;
      margin-bottom: 30px;
    }

    #html6-section ul {
      list-style: none;
      margin-bottom: 35px;
    }

    #html6-section .html6-list-item {
      display: flex;
      align-items: center;
      margin-bottom: 12px;
    }

    #html6-section .html6-icon-check {
      width: 20px;
      height: 20px;
      border: 2px solid var(--html6-gold);
      border-radius: 50%;
      position: relative;
      margin-right: 12px;
    }

    #html6-section .html6-icon-check::after {
      content: "✓";
      color: var(--html6-gold);
      font-size: 14px;
      position: absolute;
      top: -2px;
      left: 3px;
    }

    #html6-section .html6-list-item span {
      color: var(--html6-text-dark);
      font-size: 15px;
    }

    #html6-section button {
      background: var(--html6-gold);
      color: #ffffff;
      padding: 14px 32px;
      border: none;
      border-radius: 3px;
      font-size: 15px;
      font-weight: 500;
      cursor: pointer;
      transition: background 0.3s ease;
      width: auto;
    }

    #html6-section button:hover {
      background: var(--html6-gold-dark);
    }
    #html6-section .html6-section1 .html6-content-col {
      flex: 0 0 44%;
    }

    #html6-section .html6-section2 .html6-content-col {
      flex: 0 0 44%;
    }
    .img-ilaslogo{
      height: 45px;
    }
     /* CONTENEDOR EN 3 COLUMNAS */
        .navbar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            gap: 20px;
        }

        /* --- LOGOS IZQUIERDA --- */
        .brand-container {
            display: flex;
            flex-direction: column;
        }

        .logo-top img {
            height: 45px;
            max-width: 100%;
            transition: height 0.3s ease;
        }

        .logo-bottom img {
            height: 40px;
            max-width: 100%;
            margin-top: 5px;
            transition: height 0.3s ease;
        }

        /* --- MENÚ CENTRAL --- */
        .nav-center {
            list-style: none;
            display: flex;
            gap: 25px;
            justify-content: center;
            flex: 1;
        }

        .nav-center a {
            color: #333333;
            text-decoration: none;
            font-size: 16px;
            font-weight: 400;
            transition: color 0.2s;
        }

        .nav-center a:hover {
            color: var(--color-green);
        }

        /* --- ACCIONES DERECHA --- */
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .btn-asesoria {
           background: linear-gradient(to bottom, #9a9a9a, #3f3f3f);
            color: white;
            font-weight: 500;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-size: 14px;
            border: none;
            cursor: pointer;
            transition: opacity 0.3s;
        }

        .btn-asesoria:hover {
            opacity: 0.9;
            background:#004d28;
        }

        /* --- ICONO BURGER --- */
        .burger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
            z-index: 1002;
        }

        .burger-line {
            width: 25px;
            height: 3px;
            background-color: #333;
            transition: all 0.3s ease;
        }

    @media (max-width: 1286px) {
      .img-ilaslogo{
        height: 20px 
      }
    }

    @media (max-width: 1200px){
      #html4-section .html4-cards-grid{ grid-template-columns: repeat(3, 1fr); }
    }

    @media (max-width: 1100px){
      #html3-section .html3-servicios-container{
        flex-direction: column;
        padding: 60px 20px;
      }

      #html3-section .html3-linea-conectora.html3-horizontal{
        width: 3px;
        height: 40px;
        align-self: center;
        margin: 0;
      }

      #html3-section .html3-servicio-card{
        margin: 0 auto;
      }
    }


  @media (max-width: 1024px){
      #html1-section header.html1-site-header{ padding:15px 20px; }
      #html1-section .html1-nav-list{ gap:20px; }
      #html1-section .html1-nav-list li a{ font-size:14px; }
        #html5-section .html5-products-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      #html5-section .html5-hero {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
      }
      #html5-section .html5-hero-left {
        padding: 60px 40px;
      }
      #html5-section .html5-hero-right img {
        min-height: 400px;
      }
       #html6-section {
        padding: 20px;
      }
      #html6-section section {
        gap: 40px;
      }
      #html6-section .html6-content {
        padding: 40px;
      }
      #html6-section h2 {
        font-size: 36px;
      }
       /* Mostrar burger */
            .burger-menu {
                display: flex;
            }

            /* Reducir tamaño de logos */
            .logo-top img { height: 25px; }
            .logo-bottom img { height: 20px; }

            /* Ocultar menú desktop */
            .nav-center {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: white;

                flex-direction: column;
                align-items: center;
                gap: 20px;

                max-height: 0;
                overflow: hidden;

                
                padding: 0;
                transition: max-height 0.4s ease, padding 0.4s ease;
            }

            /* Cuando está abierto */
            .nav-center.active {
                max-height: 500px;
                padding: 25px 0;
            }


            /* Acciones abajo del menú */
            .nav-actions {
                position: absolute;
                top: calc(100% + 290px);
                left: 0;
                width: 100%;
                flex-direction: column;
                padding-bottom: 20px;
                display: none;
            }


            /* Oculta acciones en desktop pero visibles al abrir */
            .navbar-container {
                justify-content: space-between;
            }
  }

   @media (max-width: 1023px) and (min-width: 768px) {
      #html2-section .html2-container { padding: 0 60px; }
      #html2-section .html2-left h1 { font-size: 48px; }
      #html2-section .html2-brand { font-size: 64px; }
      #html2-section .html2-subbrand { font-size: 30px; letter-spacing: 8px; }
    }

 @media (max-width: 900px){
      #html4-section .html4-cards-grid{ grid-template-columns: repeat(2, 1fr); }
    }

  @media (max-width: 768px){
      #html5-section .html5-products-grid {
        grid-template-columns: 1fr;
      }
      
      #html5-section .html5-products {
        padding-left: 40px;
        padding-right: 40px;
      }
        #html1-section header.html1-site-header{
        flex-direction: column;
        align-items:flex-start;
        height:auto;
        padding:12px 18px;
        gap:12px;
      }
      #html1-section .html1-logo-wrap{ margin-bottom:0; }
      #html1-section nav.html1-site-nav{
        order:3;
        width:100%;
      }
      #html1-section .html1-nav-list{
        display:none;
        flex-direction:column;
        background:#ffffff;
        width:100%;
        padding:12px 16px;
        gap:12px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.08);
        border-radius:8px;
        margin-top:6px;
      }
      #html1-section .html1-nav-list.html1-open{
        display:flex;
      }
      #html1-section .html1-header-right{
        margin-left:auto;
        order:2;
      }
      #html1-section .html1-logo-main{ font-size:32px; }
      #html1-section .html1-logo-main .html1-grupo, 
      #html1-section .html1-logo-main .html1-ilasas{ font-size:32px; }
      #html1-section .html1-btn-asesoria{ margin-top:10px; }
      #html1-section .html1-hamburger{
        display:inline-flex;
        cursor:pointer;
        align-items:center;
        justify-content:center;
        width:40px;
        height:40px;
        border-radius:6px;
        background:transparent;
        border:1px solid rgba(0,0,0,0.06);
      }
      #html1-section .html1-icon-search{ margin-right:8px; }
        #html6-section section {
        flex-direction: column;
      }
      #html6-section .html6-content {
        padding: 30px 25px;
      }
      #html6-section h2 {
        font-size: 32px;
      }
      #html6-section p {
        font-size: 14px;
      }
      #html6-section button {
        width: 100%;
      }
  }

       @media (max-width: 767px) {
      #html2-section .html2-container {
        padding: 30px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: 150px;
      }

      #html2-section .html2-left {
        padding-left: 25px;
        border-left: 5px solid #B9913D;
        max-width: 100%;
        transform: none;
      }

      #html2-section .html2-left h1 { font-size: 38px; margin-top: 16px; }
      #html2-section .html2-left p { font-size: 16px; }

      #html2-section .html2-right {
        order: -1;
        margin-bottom: 10px;
        transform: none;
      }

      #html2-section .html2-brand { font-size: 48px; letter-spacing: 3px; }
      #html2-section .html2-subbrand { font-size: 22px; letter-spacing: 6px; }
    }

      @media (max-width: 600px){
      #html4-section .html4-wrap{ padding: 0 15px; }
      #html4-section header .html4-main-title{ font-size: 32px; }
      #html4-section header .html4-subtitle{ font-size: 16px; }
      #html4-section .html4-cards-grid{ grid-template-columns: 1fr; }
    }
     @media (max-width: 480px) {
      #html5-section .html5-hero-left {
        padding: 40px 30px;
      }
      #html5-section .html5-products {
        padding: 0 30px 40px 30px;
      }
      #html5-section .html5-hero-left .html5-title {
        font-size: 36px;
      }
      #html5-section .html5-hero-left .html5-lead {
        font-size: 15px;
      }
      #html5-section .html5-hero-right img {
        min-height: 240px;
      }
    }

     @media (max-width: 400px){
      #html3-section .html3-servicio-card{
        width: 280px;
        padding: 20px 20px 20px 65px;
      }

      #html3-section .html3-servicio-texto{
        font-size: 18px;
      }
    }


      @media (prefers-reduced-motion: reduce) {
      #html2-section .html2-container, 
      #html2-section .html2-left, 
      #html2-section .html2-right { 
        animation: none; 
        transition: none; 
        opacity: 1; 
        transform: none; 
      }
    }