    /* ===========================
       ÚNICO :root GLOBAL CON TODAS LAS VARIABLES PREFIJADAS
       =========================== */
    :root {
      /* HTML 1 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;

      /* HTML 2 variables */
      --html2-bg-page: #f5f5f5;
      --html2-max-w: 1400px;
      --html2-padding-global: 40px;
      --html2-gris-oscuro: #5a5a5a;
      --html2-gris-med: #6a6a6a;
      --html2-gris-text: #4a4a4a;
      --html2-verde: #2d8659;
      --html2-verde-dark: #246b47;
      --html2-dorado: #d4a84a;
      --html2-dorado-dark: #c09639;
      --html2-card-radius: 20px;
      --html2-transition-fast: 0.3s ease;
      --html2-shadow-card: 0 8px 24px rgba(0,0,0,0.12);

      /* HTML 4 variables */
      --html7-gray-light: #f5f5f5;
      --html7-gray-mid: #7a7a7a;
      --html7-gray-dark: #4a4a4a;
      --html7-gray-line: #c0c0c0;
      --html7-green-dark: #006837;
      --html7-btn-grad-from: #7a7a7a;
      --html7-btn-grad-to: #6a6a6a;
    }

    /* Reset global */
    *, *::before, *::after {
      box-sizing: border-box;
    }
    html, body {
      margin: 0;
      padding: 0;
      height: 100%;
      scroll-behavior: smooth;
    }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; margin: 0; padding: 0; }
    img { display: block; max-width: 100%; height: auto; }

    /* ===========================
       ESTILOS ENCAPSULADOS HTML 1
       =========================== */
    #html1-section {
      font-family: 'Roboto', Arial, Helvetica, sans-serif;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      scroll-behavior: smooth;
    }

    #html1-section .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 .html1-site-header.html1-scrolled {
      box-shadow: 0 6px 24px rgba(0,0,0,0.18);
    }

    #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 {
      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 .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-hero {
      position: relative;
      width: 100%;
      height: 100vh;
      min-height: 700px;
      background-image: url('./images/gse.webp');
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: center;
      padding-top: 90px;

    }

    #html1-section .html1-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0,0,0,0.6);
      z-index: 1;
    }

    #html1-section .html1-hero-content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 0 20px;
      max-width: 1100px;
      margin: 0 auto;
      color: #fff;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 1s ease, transform 1s ease;
    }

    #html1-section .html1-hero-content.html1-visible {
      opacity: 1;
      transform: translateY(0);
    }

    #html1-section .html1-hero-title {
      color: #ffffff;
      font-size: 54px;
      font-weight: 700;
      line-height: 1.2;
      margin: 0 0 30px 0;
      text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    }

    #html1-section .html1-hero-desc {
      color: #ffffff;
      font-size: 18px;
      font-weight: 400;
      line-height: 1.6;
      margin: 0 0 40px 0;
      max-width: 900px;
      text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    }

    #html1-section .html1-btn-cta {
      background: var(--html1-gris-medio);
      color: #ffffff;
      padding: 16px 40px;
      border-radius: 30px;
      font-size: 16px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(0,0,0,0.3);
      transition: background 0.3s ease, transform 0.3s ease;
    }

    #html1-section .html1-btn-cta:hover {
      background: var(--html1-gris-medio-claro);
      transform: scale(1.05);
    }

    #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-btn-cta:focus,
    #html1-section .html1-hamburger:focus {
      outline: 3px solid rgba(0,104,56,0.18);
      outline-offset: 3px;
    }

  

    /* ===========================
       ESTILOS ENCAPSULADOS HTML 2
       =========================== */
    #html2-section {
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      background: var(--html2-bg-page);
      color: var(--html2-gris-oscuro);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    #html2-section .html2-wrap {
      max-width: var(--html2-max-w);
      margin: 0 auto;
      padding: var(--html2-padding-global);
      /*min-height: 100vh;*/
    }

    #html2-section .html2-top-section {
      display: flex;
      gap: 30px;
      align-items: center;
      width: 100%;
    }

    #html2-section .html2-col-left { width: 20%; margin-right: 60px;}
    #html2-section .html2-col-mid { width: 38%; }
    #html2-section .html2-col-right { width: 38%; }

    #html2-section .html2-sidebar {
      padding-left: 20px;
      background: transparent;
      
    }
    #html2-section .html2-sidebar::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 8px;               /* grosor de la barra */
      height: 100%;
      background: linear-gradient(
        to bottom,
        #d7d7d7,   /* gris claro arriba */
        #3a3a3a    /* gris oscuro abajo */
      );
      border-radius: 2px;       /* opcional */
    }

    #html2-section .html2-sidebar h2 {
      margin: 0;
      color: var(--html2-gris-oscuro);
      font-weight: 700;
      font-size: 32px;
      font-family: inherit;
      line-height: 1.05;
    }

    #html2-section .html2-sidebar .html2-subtitle {
      margin-top: 15px;
      color: #6a6a6a;
      font-size: 20px;
      line-height: 1.5;
      font-weight: 400;
    }

    #html2-section .html2-card {
      background: #ffffff;
      border-radius: var(--html2-card-radius);
      box-shadow: var(--html2-shadow-card);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform var(--html2-transition-fast), box-shadow var(--html2-transition-fast);
      will-change: transform;
    }

    #html2-section .html2-card:hover {
      transform: scale(1.02);
      box-shadow: 0 14px 40px rgba(0,0,0,0.14);
    }

    #html2-section .html2-card .html2-card-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

    #html2-section .html2-card .html2-card-body {
      padding: 30px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    #html2-section .html2-brand-logo {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }

    #html2-section .html2-chevrons {
      display: flex;
      gap: 6px;
      align-items: center;
      justify-content: center;
      margin-bottom: -4px;
    }

    #html2-section .html2-chevrons svg {
      display: block;
      width: 34px;
      height: 12px;
    }

    #html2-section .html2-brand-text {
      display: flex;
      gap: 8px;
      align-items: baseline;
      justify-content: center;
    }

    #html2-section .html2-brand-text .html2-ilasas {
      color: var(--html2-gris-med);
      font-weight: 700;
      font-size: 28px;
    }

    #html2-section .html2-brand-text .html2-division {
      font-weight: 700;
      font-size: 28px;
    }

    #html2-section .html2-card .html2-desc {
      color: var(--html2-gris-text);
      font-size: 14px;
      line-height: 1.6;
      margin: 20px 0;
      max-width: 100%;
    }

    #html2-section .html2-features {
      width: 100%;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: flex-start;
    }

    #html2-section .html2-feature-item {
      display: flex;
      gap: 12px;
      align-items: center;
      color: var(--html2-gris-text);
      font-size: 14px;
    }

    #html2-section .html2-check-circle {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    #html2-section .html2-check-green { background: var(--html2-verde); }
    #html2-section .html2-check-gold { background: var(--html2-dorado); }

    #html2-section .html2-check-circle svg {
      width: 14px;
      height: 14px;
    }

    #html2-section .html2-card .html2-btn {
      display: inline-block;
      width: 100%;
      text-align: center;
      padding: 14px 30px;
      border-radius: 8px;
      color: #ffffff;
      font-weight: 600;
      border: none;
      cursor: pointer;
      margin-top: 25px;
      transition: background var(--html2-transition-fast), transform 0.12s ease;
    }

    #html2-section .html2-card .html2-btn:active {
      transform: translateY(1px);
    }

    #html2-section .html2-btn-green { background: var(--html2-verde); }
    #html2-section .html2-btn-green:hover { background: linear-gradient(to bottom, #9a9a9a, #3f3f3f); }

    #html2-section .html2-btn-gold { background: var(--html2-dorado); }
    #html2-section .html2-btn-gold:hover { background: linear-gradient(to bottom, #9a9a9a, #3f3f3f);}

    #html2-section .html2-col-mid,
    #html2-section .html2-col-right {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    #html2-section .html2-bottom-section {
      margin-top: 140px;
      text-align: center;
    }

    #html2-section .html2-bottom-section h3 {
      color: var(--html2-gris-text);
      font-size: 36px;
      font-weight: 700;
      margin: 0 0 50px 0;
    }

    #html2-section .html2-logos-container {
      display: flex;
      justify-content: space-evenly;
      align-items: center;
      margin-bottom: 100px;
    }

    #html2-section .html2-logos-container .html2-logo {
      height: auto;
      width: 250px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    #html2-section .html2-logos-grid {
      display: none;
    }

    #html2-section .html2-reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
      will-change: opacity, transform;
    }

    #html2-section .html2-reveal.html2-show {
      opacity: 1;
      transform: translateY(0);
    }

    #html2-section .html2-btn:focus,
    #html2-section .html2-card:focus {
      outline: 3px solid rgba(0,0,0,0.06);
      outline-offset: 3px;
    }

     /* 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: 80px;
            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;
        }

    /* ===========================
       ESTILOS ENCAPSULADOS HTML 3
       =========================== */
    #html3-section {
      font-family: 'Poppins', sans-serif;
      background: #000;
      overflow-x: hidden;
    }

    #html3-section .html3-hero {
      width: 100%;
      display: flex;
      position: relative;
      padding: 80px 50px 80px 50px;
      background-image: url("./images/aceite_back.webp");
      background-size: cover;
      background-position: right;
      /*filter: saturate(0.5) brightness(0.8);*/
      -webkit-mask-image: linear-gradient(transparent 0%, black 5%);
      mask-image: linear-gradient(transparent 0%, black 5%);

    }

    #html3-section .html3-hero-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.45);
    }

    #html3-section .html3-hero-left {
      position: relative;
      width: 40%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      z-index: 2;
    }

    #html3-section .html3-left-accent {
      width: 10px;
      height: 120px;
      background: linear-gradient(
        to bottom,
        #10D312,   /* gris claro arriba */
        #016308    /* gris oscuro abajo */
      );
      margin-bottom: 25px;
    }

    #html3-section .html3-hero-left h1 {
      color: white;
      font-size: 35px;
      font-weight: 700;
      line-height: 1.2;
      max-width: 520px;
    }

    #html3-section .html3-hero-left p {
      color: white;
      font-size: 18px;
      line-height: 1.6;
      max-width: 480px;
    }

    #html3-section .html3-hero-right {
      position: relative;
      width: 60%;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      z-index: 2;
    }

    #html3-section .html3-stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    #html3-section .html3-card {
      background: white;
      padding: 32px;
      border-radius: 20px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      transition: all 0.3s ease;
    }

    #html3-section .html3-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    }

    #html3-section .html3-card-icon {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: #3a3a3a;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }

    #html3-section .html3-card-icon svg {
      width: 32px;
      height: 32px;
      fill: white;
    }

    #html3-section .html3-card-number {
      font-size: 54px;
      font-weight: 800;
      color: #1a1a1a;
      margin-bottom: 8px;
    }

    #html3-section .html3-card-subtitle {
      font-size: 15px;
      font-weight: 700;
      color: #1a1a1a;
      letter-spacing: 0.5px;
      margin-bottom: 16px;
      text-transform: uppercase;
    }

    #html3-section .html3-card-text {
      font-size: 14px;
      color: #4a5568;
      line-height: 1.6;
    }

    #html3-section .html3-card-text .html3-highlight {
      color: #2b6cb0;
      font-weight: 600;
    }

   

    /* ===========================
       ESTILOS ENCAPSULADOS HTML 4
       =========================== */
    #html7-section {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: var(--html7-gray-light);
      color: var(--html7-gray-dark);
    }

    #html7-section .html7-header {
      text-align: center;
      padding: 60px 30px 80px;
      max-width: 1400px;
      margin: 0 auto;
      background: var(--html7-gray-light);
    }

    #html7-section .html7-header h1 {
      font-size: 42px;
      letter-spacing: -0.5px;
      color: var(--html7-gray-dark);
      font-weight: 700;
      margin: 0;
    }

    #html7-section .html7-header p {
      margin-top: 15px;
      font-size: 18px;
      color: var(--html7-gray-mid);
    }

    #html7-section .html7-services-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 40px 100px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
    }

    #html7-section .html7-service-card {
      position: relative;
      padding-left: 35px;
      padding-top: 80px;
      padding-bottom: 30px;
      transition: all 0.7s ease;
      display: flex;
      flex-direction: column;
      align-items: start;
      justify-content: end;
    }

    #html7-section .html7-icon-circle {
      width: 60px;
      height: 60px;
      background: var(--html7-green-dark);
      border-radius: 50%;
      position: absolute;
      left: 25px;
      top: -25px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    }

    #html7-section .html7-icon-line {
      position: absolute;
      left: 60px;
      top: 30px;
      height: 3px;
      background: var(--html7-gray-line);
      width: calc(100% - 60px);
    }

    #html7-section .html7-service-card h3 {
      font-size: 26px;
      color: var(--html7-gray-dark);
      margin-bottom: 20px;
      font-weight: 700;
    }

    #html7-section .html7-service-card p {
      font-size: 15px;
      color: var(--html7-gray-mid);
      text-align: justify;
      line-height: 1.6;
      margin-bottom: 25px;
    }

    #html7-section .html7-service-list {
      margin-bottom: 30px;
      padding: 0;
    }

    #html7-section .html7-service-list li {
      list-style: none;
      display: flex;
      align-items: center;
      font-size: 15px;
      color: var(--html7-gray-mid);
      margin-bottom: 12px;
    }

    #html7-section .html7-service-list li::before {
      content: "✓";
      color: var(--html7-green-dark);
      font-weight: bold;
      margin-right: 10px;
      font-size: 18px;
    }

    #html7-section .html7-service-btn {
      display: inline-block;
      padding: 16px 35px;
      background: linear-gradient(90deg, var(--html7-btn-grad-from), var(--html7-btn-grad-to));
      color: white;
      border: none;
      border-radius: 25px;
      cursor: pointer;
      font-size: 15px;
      font-weight: 500;
      text-align: center;
      margin-top: 20px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.15);
      transition: background 0.3s ease;
    }

    #html7-section .html7-service-btn:hover {
      background: #5a5a5a;
    }

   
    /* ===========================
       ESTILOS ENCAPSULADOS HTML 5
       =========================== */
    #html5-section {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: #1f1f1f;
      color: white;
      padding: 80px 60px;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      box-sizing: border-box;
    }

    #html5-section .html5-container {
      display: flex;
      width: 100%;
      max-width: 1600px;
      gap: 60px;
    }

    #html5-section .html5-left {
      width: 50%;
    }

    #html5-section .html5-brand {
      margin-bottom: 50px;
    }

    #html5-section .html5-brand .html5-title {
      font-size: 42px;
      font-weight: bold;
      font-style: italic;
    }

    #html5-section .html5-brand .html5-title .html5-grupo {
      color: #00cc44;
    }

    #html5-section .html5-brand .html5-title .html5-ilasas {
      color: #b0b0b0;
    }

    #html5-section .html5-brand .html5-subtitle {
      margin-top: 6px;
      font-size: 12px;
      font-weight: 700;
      color: white;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    #html5-section .html5-shell-logo {
      width: 32px;
      height: 32px;
      background: radial-gradient(circle, red, orange);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: bold;
      color: white;
      border: 2px solid rgba(255,255,255,0.2);
    }

    #html5-section h1 {
      font-size: 48px;
      font-weight: 800;
      line-height: 1.2;
      margin: 0 0 24px 0;
    }

    #html5-section .html5-subtitle-text {
      font-size: 18px;
      color: #c0c0c0;
      line-height: 1.6;
      margin-bottom: 40px;
    }

    #html5-section .html5-benefits {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    #html5-section .html5-benefit-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 16px;
      color: white;
    }

    #html5-section .html5-check-circle {
      width: 24px;
      height: 24px;
      background: #00cc44;
      border: 2px solid #009933;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      font-size: 14px;
      font-weight: bold;
      color: white;
    }

    #html5-section .html5-right {
      width: 50%;
      display: flex;
      align-items: center;
    }

    #html5-section .html5-form-box {
      background: white;
      color: #333333;
      border-radius: 12px;
      padding: 40px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.15);
      width: 100%;
    }

    #html5-section .html5-form-label {
      font-weight: 600;
      font-size: 14px;
      margin-bottom: 8px;
      display: block;
    }

    #html5-section input,
    #html5-section select,
    #html5-section textarea {
      width: 100%;
      padding: 12px 16px;
      font-size: 15px;
      border-radius: 6px;
      border: 1px solid #dddddd;
      outline: none;
      transition: all 0.3s ease;
      box-sizing: border-box;
      font-family: inherit;
    }

    #html5-section input:focus,
    #html5-section select:focus,
    #html5-section textarea:focus {
      border-color: #00aa33;
    }

    #html5-section textarea {
      height: 100px;
      resize: vertical;
    }

    #html5-section .html5-form-row {
      display: flex;
      gap: 16px;
      margin-bottom: 20px;
    }

    #html5-section .html5-form-row .html5-half {
      width: 50%;
    }

    #html5-section .html5-privacy {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      color: #666666;
      margin-bottom: 24px;
    }

    #html5-section .html5-privacy a {
      color: #00aa33;
      text-decoration: underline;
    }

    #html5-section button {
      width: 100%;
      padding: 16px 32px;
      font-size: 16px;
      font-weight: 600;
      color: white;
      background: #007a1f;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    #html5-section button:hover {
      background: #009933;
    }

    
   .privacy-backdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.6);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
  font-family: Arial, Helvetica, sans-serif;
}

.privacy-modal{
  background:#ffffff;
  width:95%;
  max-width:900px;
  border-radius:12px;
  box-shadow:0 25px 50px -12px rgba(0,0,0,0.25);
  display:flex;
  flex-direction:column;
  max-height:90vh;
  animation:privacyFade .3s ease;
}

@keyframes privacyFade{
  from{opacity:0; transform:translateY(15px)}
  to{opacity:1; transform:translateY(0)}
}

.privacy-header{
  background:#246B47;
  padding:18px 24px;
  color:#ffffff;
  border-radius:12px 12px 0 0;
}

.privacy-title{
  margin:0;
  font-size:20px;
  font-weight:600;
}

.privacy-content{
  padding:24px;
  overflow-y:auto;
  font-size:14px;
  line-height:1.7;
  color:#4b5563;
}

.privacy-content h3{
  margin-top:18px;
  color:#1f2937;
  font-size:15px;
}

.privacy-content ul{
  padding-left:20px;
}

.privacy-checks{
  padding:20px 24px;
  border-top:1px solid #e5e7eb;
  background:#f9fafb;
}

.privacy-check{
  display:flex;
  gap:12px;
  margin-bottom:12px;
  cursor:pointer;
}

.privacy-check input{
  appearance:none;
  min-width:18px;
  height:18px;
  border-radius:4px;
  border:2px solid #2f8a57;
  margin-top:3px;
  position:relative;
}

.privacy-check input:checked{
  background:#2f8a57;
}

.privacy-check input:checked::after{
  content:"✓";
  position:absolute;
  top:-2px;
  left:3px;
  font-size:14px;
  color:#ffffff;
}

.privacy-check span{
  font-size:14px;
  color:#374151;
}

.privacy-required{
  color:#d32f2f;
  font-weight:600;
}

.privacy-actions{
  padding:16px 24px;
  display:flex;
  justify-content:flex-end;
  background:#f3f4f6;
  border-radius:0 0 12px 12px;
}

.privacy-btn{
  background:#246B47;
  color:#ffffff;
  border:none;
  padding:10px 22px;
  border-radius:10px;
  font-size:14px;
  cursor:pointer;
}

.privacy-btn:disabled{
  background:#a7d3bb;
  cursor:not-allowed;
}

        .mv-section {
            background: #F5F5F5;
            padding: 60px 20px;
            font-family: "Segoe UI", Roboto, Arial, sans-serif;
            color: #1a1a1a;
            width: 100%;
            overflow-x: hidden;
        }

        .mv-container {
            max-width: 1100px;
            margin: auto;
        }

        .mv-heading {
            font-size: 42px;
            font-weight: 700;
            color: #0f7a33;
            margin-bottom: 40px;
            text-align: center;
        }

        .mv-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            margin-bottom: 60px;
        }

        .mv-card {
            border-left: 6px solid #0f7a33;
            padding: 25px 30px;
            background: #f9f9f9;
        }

        .mv-card h3 { font-size: 28px; color: #0f7a33; margin-top: 0; }
        .mv-card p { font-size: 17px; line-height: 1.5; }

        /* --- SECCIÓN VALORES --- */
        .values-title {
            font-size: 36px;
            font-weight: 700;
            color: #0f7a33;
            margin-bottom: 80px; /* Reducido para acercar el contenido */
            text-align: center;
        }

        .values-circle-container {
            position: relative;
            width: 100%;
            max-width: 850px; /* Reducido para compactar */
            height: 600px;    /* Altura ajustada para reducir espacios verticales */
            margin: 0 auto;
        }

        .values-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 160px;
            height: 160px;
            border: 3px solid #0f7a33;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            font-weight: 800;
            font-size: 20px;
            color: #0f7a33;
            background: #fff;
            z-index: 10;
            box-shadow: 0 0 15px rgba(0,0,0,0.05);
        }

        .value {
            position: absolute;
            width: 300px; /* Un poco más compactos */
            height: 220px;
            background: #ffffff;
            border-radius: 110px;
            padding: 20px 30px;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            z-index: 5;
            border: 1px solid #f0f0f0;
        }
        .mv-image-wrapper {
          margin-top: 150px;
          margin-bottom: 150px;
          width: 100%;
        }

        .mv-image {
          width: 100%;
          height: auto;
          display: block;
          object-fit: cover;
        }

        .value h4 { font-size: 18px; color: #0f7a33; margin: 0 0 5px 0; text-transform: uppercase; }
        .value p { font-size: 14px; color: #555; margin: 0; line-height: 1.35; }

        /* --- POSICIONES MÁS CERCANAS (Compactas) --- */
        .v1 { top: -60px; left: 50%; transform: translateX(-50%); } 
        .v2 { top: 18%; right: -20px; } 
        .v3 { bottom: 2%; right: 40px; }
        .v4 { bottom: 2%; left: 40px; }
        .v5 { top: 18%; left: -20px; }

        /* --- RESPONSIVE --- */
        @media (max-width: 1000px) {
            .values-circle-container { height: auto; display: flex; flex-direction: column; gap: 15px; }
            .values-center { position: relative; top: auto; left: auto; transform: none; width: 100%; border-radius: 8px; margin-bottom: 10px; height: 60px; }
            .value { position: relative; top: auto !important; left: auto !important; right: auto !important; bottom: auto !important; transform: none !important; width: 100%; height: auto; border-radius: 12px; text-align: left; padding: 20px; }
            .mv-grid { grid-template-columns: 1fr; }
        }
 @media (max-width: 1280px) {
   .logo-top img { height: 60px; }
 }

 @media (max-width: 1024px) {
    #html1-section .html1-site-header { padding: 15px 20px; }
      #html1-section .html1-nav-list { gap: 20px; }
      #html1-section .html1-nav-list li a { font-size: 14px; }
      #html1-section .html1-hero-title { font-size: 42px; }
      #html1-section .html1-hero-desc { font-size: 16px; }    

      
      #html2-section .html2-wrap { padding: 40px 40px; }
      #html2-section .html2-top-section {
        display: flex;
        flex-direction: column;
        gap: 20px;
      }
      #html2-section .html2-col-left { width: 100%; order: 0; margin-right: 0; }
      #html2-section .html2-sidebar {
        border-left: none;
        border-top: none;
        padding-top: 20px;
      }
      #html2-section .html2-col-mid,
      #html2-section .html2-col-right {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
      }
      #html2-section .html2-logos-container { display: none; }
      #html2-section .html2-logos-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        align-items: center;
        justify-items: center;
      }
      #html2-section .html2-logos-grid .html2-logo{
        height: auto;
        width: 130px;
      }

        #html3-section .html3-hero {
        flex-direction: column;
        height: auto;
        padding: 60px 30px;
      }
      #html3-section .html3-hero-left {
        width: 100%;
        padding-left: 0;
        margin-bottom: 40px;
      }
      #html3-section .html3-hero-right {
        width: 100%;
        padding-right: 0;
        justify-content: center;
      }
      #html3-section .html3-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
        margin: auto;
      }
        #html7-section .html7-header h1 {
        font-size: 38px;
      }
      #html7-section .html7-services-container {
        gap: 30px;
      }
      #html7-section .html7-service-card h3 {
        font-size: 24px;
      }
      #html7-section .html7-service-card p,
      #html7-section .html7-service-list li {
        font-size: 14px;
      }
       #html5-section {
        padding: 30px;
      }
      #html5-section .html5-container {
        flex-direction: column;
        gap: 40px;
      }
      #html5-section .html5-left,
      #html5-section .html5-right {
        width: 100%;
      }
       /* Mostrar burger */
            .burger-menu {
                display: flex;
            }

            /* Reducir tamaño de logos */
            .logo-top img { height: 35px; }
            .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: 768px) { 
 #html1-section .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 .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-hero-title { font-size: 32px; }
      #html1-section .html1-hero-desc { font-size: 15px; }
      #html1-section .html1-btn-cta { padding: 14px 30px; font-size: 15px; }
      #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; }

       #html2-section .html2-wrap { padding: 20px; }
      #html2-section .html2-sidebar h2 { font-size: 28px; }
      #html2-section .html2-sidebar .html2-subtitle { font-size: 15px; }
      #html2-section .html2-brand-text .html2-ilasas,
      #html2-section .html2-brand-text .html2-division { font-size: 22px; }
      #html2-section .html2-card .html2-desc,
      #html2-section .html2-feature-item { font-size: 13px; }
      #html2-section .html2-card .html2-card-image { height: 160px; }
      #html2-section .html2-bottom-section h3 { font-size: 30px; }
      #html2-section .html2-logos-grid { grid-template-columns: repeat(2, 1fr); }

        #html3-section .html3-hero {
        padding: 40px 24px;
        background-position: left;
      }
      #html3-section .html3-hero-left h1 {
        font-size: 38px;
      }
      #html3-section .html3-hero-left p {
        font-size: 16px;
      }
      #html3-section .html3-stats-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 18px;
      }
      #html3-section .html3-card {
        padding: 28px;
      }
      #html3-section .html3-card-number {
        font-size: 42px;
      }

        #html7-section .html7-services-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
      }
         #html5-section h1 {
        font-size: 36px;
      }
      #html5-section .html5-form-row {
        flex-direction: column;
      }
      #html5-section .html5-form-row .html5-half {
        width: 100%;
      }
}


.html2-btn-link {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #246B47; /* verde corporativo */
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.html2-btn-link:hover {
  background: linear-gradient(to bottom, #9a9a9a, #3f3f3f);
  transform: translateY(-2px);
}

.contact-btn:hover{
  background: linear-gradient(to bottom, #9a9a9a, #3f3f3f) !important;
}

/* --- RESET Y HEADER --- */
.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    height: 80px;
    background: #fff;
    position: relative;
    z-index: 100;
}

.brand-container img { 
    height: 80px;
    max-width: 100%;
    transition: height 0.3s ease; 
}

/* --- DESKTOP MENU --- */
.nav-desktop-container { display: flex; }
.nav-desktop-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

/* Estilo base de los enlaces en Desktop */
.nav-desktop-links > li > a {
    text-decoration: none;
    color: #333333;
    font-weight: 400;
    font-size: 16px;
    position: relative; /* Necesario para la línea */
    padding-bottom: 8px; /* Espacio para la línea verde */
    transition: color 0.3s ease;
}

/* LÍNEA VERDE DESKTOP: El efecto hover */
.nav-desktop-links > li > a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #008f39; /* Verde ILASAS */
    transition: width 0.3s ease;
}

.nav-desktop-links > li > a:hover::after {
    width: 100%;
}

.nav-desktop-links > li > a:hover {
    color: #008f39;
}

/* Dropdowns Desktop */
.has-drop, .has-drop-right { position: relative; }
.drop-menu, .drop-menu-right {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    list-style: none;
    padding: 10px 0;
    min-width: 180px;
    display: none; 
}
.drop-menu-right { top: 0; left: 100%; }

.has-drop:hover > .drop-menu, 
.has-drop-right:hover > .drop-menu-right { display: block; }

/* Efecto hover en los items del submenú */
.drop-menu li a { 
    padding: 10px 20px; 
    display: block; 
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.drop-menu li a:hover { 
    background: #f5f5f5; 
    color: #008f39;
    padding-left: 25px; /* Pequeño desplazamiento a la derecha */
}

/* --- ICONOS Y ACCIONES --- */
.nav-actions-wrapper { display: flex; align-items: center; gap: 15px; }

/* Burger (Oculto en Desktop) */
.burger-menu { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.burger-menu span { width: 25px; height: 3px; background: #333; transition: 0.3s; }

/* --- MOBILE SIDE MENU --- */
.side-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 320px; height: 100%;
    background: #fff;
    z-index: 2000;
    transition: 0.4s;
    overflow: hidden;
}
.side-menu.open { right: 0; }
.side-menu-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    display: none; z-index: 1999;
}

.menu-panel {
    position: absolute;
    top: 0; left: 100%;
    width: 100%; height: 100%;
    background: #fff;
    padding: 20px;
    transition: 0.3s;
}
.menu-panel.active { left: 0; }

.mobile-list { list-style: none; padding: 0; margin-top: 20px; }
.mobile-list li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    display: flex; 
    justify-content: space-between;
    transition: color 0.3s ease;
    position: relative;
}

/* LÍNEA VERDE MÓVIL: Efecto al tocar o pasar el mouse */
.mobile-list li:hover {
    color: #008f39;
}
.mobile-list li a{
  width: 100%;
}

.mobile-list li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #008f39;
    transition: width 0.3s ease;
}

.mobile-list li:hover::after {
    width: 100%;
}

/* --- MEDIA QUERIES --- */
@media (max-width: 1280px) {
    .brand-container img { 
        height: 60px;
    }
}

@media (max-width: 1024px) {
    .nav-desktop-container { display: none; } 
    .burger-menu { display: flex; } 
    .brand-container img { 
        height: 55px;
    }
    .navbar-container {
        padding: 10px 20px; /* Menos espacio en los bordes en tablet/móvil */
    }
}

.contact-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-spinner {
  width: 18px;
  height: 18px;
  border: 3px solid rgba(255,255,255,0.4);
  border-top: 3px solid #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: none;
}

.contact-btn.loading .btn-spinner {
  display: inline-block;
}

.contact-btn.loading .btn-text {
  opacity: 0.7;
}

.contact-btn.loading {
  pointer-events: none;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}


.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}


.piepagina-contenedor {
  background: #1F1F1F;
  color: #ffffff;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  margin: auto;
  padding: 10px 40px 20px 40px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}

.piepagina-col h4 {
  margin-bottom: 15px;
  font-size: 16px;
}

.piepagina-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.piepagina-col ul li {
  margin-bottom: 8px;
  font-size: 14px;
}

.piepagina-col a {
  color: #ffffff;
  text-decoration: none;
}

.piepagina-col a:hover {
  text-decoration: underline;
}

.piepagina-col p {
  font-size: 14px;
  line-height: 1.6;
}

.mt {
  margin-top: 20px;
}

.tablesecondOffice{
  margin-top: 48px;
}
.piepagina-bottom {
  padding: 15px 20px;
  font-size: 14px;
  text-align: left;
  max-width: 1200px;
  color: #ffffff;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

/* Responsive */
@media (max-width: 1024px) {
  .piepagina-contenedor {
    grid-template-columns: repeat(4, 1fr);
  }
  .tablesecondOffice{
    margin-top: 0px;
  }
  
}

/* Responsive */
@media (max-width: 850px) {
  .piepagina-contenedor {
    grid-template-columns: repeat(3, 1fr);
  }
   .tablesecondOffice{
    margin-top: 48px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .piepagina-contenedor {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.privacy-content ul {
  list-style-type: disc;
  padding-left: 25px;
  margin-bottom: 15px;
}

.privacy-content li {
  display: list-item;
}