 /* ===========================================
       Ú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;

      /* HTML6 variables */
      --html6-bg-light: #f7f7f7;
      --html6-text-dark: #4a4a4a;
      --html6-text-gray: #666666;
      --html6-gold: #c9a961;
      --html6-gold-dark: #b08f4d;

         /* 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;

      --industrys-gold:#d4af37;
      --industrys-text:#555;
    }

    /* 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;
    }

   /* ===========================
       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;
}

    /* ===========================================
       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: 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 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(4, 1fr);
      gap: 40px;
    }

    #html7-section .html7-service-card {
      position: relative;
      padding-left: 35px;
      padding-top: 70px;
      padding-bottom: 30px;
      transition: all 0.7s ease;
      display: flex;
      flex-direction: column;
      align-items: start;
      
    }

    
    #html7-section .html7-icon-circle {
      width: 60px;
      height: 60px;
      background: #B9913D;
      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);
      margin-top: 10px;
      margin-bottom: 12px;
    }

    #html7-section .html7-service-list {
      margin-bottom: 5px;
      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: 8px;
    }

    #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;
    }     


    
/* =========================
   industrys 1 - HERO
========================= */
.industrys-hero{
  width:100%;
  height:245px;
  overflow:hidden;
  position:relative;
}

.industrys-hero img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:top;
}

/* =========================
   industrys 1 - CONTENT
========================= */
.industrys-content{
  max-width:1200px;
  margin:0 auto;
  padding:60px 20px;
  font-family:Arial, Helvetica, sans-serif;
}

.industrys-text-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:60px;
  margin-bottom:80px;
}

.industrys-text p{
  line-height:1.7;
  color:var(--industrys-text);
  margin-bottom:25px;
}

/* =========================
   CHECK LIST
========================= */
.industrys-check{
  list-style:none;
}

.industrys-check-item{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:12px;
  color:var(--industrys-text);
  font-size:16px;
  line-height:1;
}

.industrys-check-icon{
  width:20px;
  height:20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  border:2px solid var(--industrys-gold);
  flex:0 0 20px;
  box-sizing:content-box;
}

/* =========================
   PRODUCTS
========================= */
.industrys-products{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  margin-bottom: 20px;
}

.industrys-product-card{
  background:#fff;
  padding:30px 20px;
  border-radius:12px;
  text-align:center;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
  position: relative; /* Clave para el popup absoluto */
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;

}
/* Mostrar al hacer Hover */
/* Mostrar al hacer Hover sobre la CARD o sobre el POPUP mismo */
.industrys-product-card:hover .product-popup-left {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition-delay: 0s;
}

.industrys-product-card:hover .product-popup-right {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition-delay: 0s;
}


.industrys-product-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: -20px; /* Crea un "puente" invisible de 20px */
  width: 25px;
  height: 100%;
}
/* Estilo Base del Popup */
.product-popup-left {
  position: absolute;
  top: 0;
  left: 80%;
  width: 310px;
  background: #F1F1F1;
  color: black;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 10px 10px 30px rgba(0,0,0,0.2);
  z-index: 100;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
}


/* Estilo Base del Popup */
.product-popup-right {
  position: absolute;
  top: 0;
  right: 80%;
  width: 310px;
  background: #F1F1F1;
  color: black;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 10px 10px 30px rgba(0,0,0,0.2);
  z-index: 100;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
}

/* Estilos internos del contenido */
.popup-inner h3 {
  color: #c9a24f; /* El dorado de tu diseño */
  font-size: 16px;
  margin-bottom: 12px;
  border-bottom: 1px solid #333;
  padding-bottom: 5px;
}

.specs-list {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.specs-list li {
  font-size: 13px;
  margin-bottom: 5px;
  padding-left: 10px;
  border-left: 2px solid #c9a24f;
}

.popup-text {
  font-size: 13px;
  line-height: 1.5;
  color: #cbd5e0;
}

.popup-viscosity {
  margin-top: 2px;
  background: #2d3748;
  color: white;
  padding: 8px;
  border-radius: 4px;
  font-size: 14px;
  text-align: center;
}

/* Flecha para el Popup que sale a la DERECHA */
.product-popup-left::before {
  content: "";
  position: absolute;
  top: 20px; /* Altura de la flecha */
  left: -15px; /* Ajusta esto para pegarla al popup */
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 15px solid #0D682E; /* Debe ser el mismo color que el fondo de tu popup */
  filter: drop-shadow(-5px 0 5px rgba(0,0,0,0.1)); /* Sombra para que no se pierda en el blanco */
}

/* Flecha para el Popup que sale a la IZQUIERDA */
.product-popup-right::before {
  content: "";
  position: absolute;
  top: 20px;
  right: -15px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #0D682E; /* Debe ser el mismo color que el fondo de tu popup */
  filter: drop-shadow(5px 0 5px rgba(0,0,0,0.1));
}

/* =========================
   RESPONSIVE (Ajuste Crítico)
   ========================= */

/* En tablets/laptops pequeñas, si el popup se sale de la pantalla, lo centramos o movemos */
@media (max-width: 1200px) {
  .product-popup-left {
    width: 280px;
  }
  .product-popup-right {
    width: 280px;
  }
}


.industrys-product-card img{
  max-width:180px;
}

.industrys-product-card h3{
  font-size:20px;
  margin-bottom:10px;
}

.industrys-product-card p{
  font-size:14px;
  color:#666;
  margin-bottom:20px;
}

.industrys-btn{
  display:inline-block;
  padding:10px 18px;
  background:#c9a24f;
  color:#fff;
  border-radius:6px;
  font-size:14px;
  text-decoration:none;
}

.industrys-btn:hover{
  background:#b08c3e;
}

 @media (max-width: 1350px) {
      #html7-section .html7-services-container {
        grid-template-columns: repeat(2, 1fr);
      }
    }

 @media (max-width: 1286px) {
      .img-ilaslogo{
        height: 20px 
      }
    }


 @media (max-width: 1280px) {
   .logo-top img { height: 60px; }
   .industrys-hero{ height:180px; }
   
 }
 
   
    @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 {
        padding: 30px;
      }
      #html5-section .html5-container {
        flex-direction: column;
        gap: 40px;
      }
      #html5-section .html5-left,
      #html5-section .html5-right {
        width: 100%;
      }

       #html6-section {
        padding: 20px;
      }
      #html6-section section {
        gap: 40px;
      }
      #html6-section .html6-content {
        padding: 40px;
      }
      #html6-section h2 {
        font-size: 36px;
      }

         #html7-section .html7-header h1 {
        font-size: 38px;
      }
      #html7-section .html7-services-container {
        gap: 30px;
        grid-template-columns: repeat(2, 1fr);
      }
      #html7-section .html7-service-card h3 {
        font-size: 24px;
      }
      #html7-section .html7-service-card p,
      #html7-section .html7-service-list li {
        font-size: 14px;
      }
       /* 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: 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; }
           #html5-section h1 {
        font-size: 36px;
      }
      #html5-section .html5-form-row {
        flex-direction: column;
      }
      #html5-section .html5-form-row .html5-half {
        width: 100%;
      }
    }
@media(max-width:992px){
  .industrys-text-grid{ grid-template-columns:1fr; }
  .industrys-products{ grid-template-columns:repeat(2,1fr); }
  .industrys-hero{ height:100px; }
}

 @media (max-width: 900px){
      #html4-section .html4-cards-grid{ grid-template-columns: repeat(2, 1fr); }
    }

  @media (max-width: 768px){
   
        #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%;
      }

      #html7-section .html7-services-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
      }
  }

       @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:576px){
        .industrys-products{ grid-template-columns:1fr; }
        .industrys-hero{ height:70px; }
         .product-popup-left {
            left: 0;
            top: 0; 
            width: 100%;
            transform: translateY(10px);
            margin-top: 10px;
          }
            .product-popup-right {
            left: 0;
            top: 0; 
            width: 100%;
            transform: translateY(10px);
            margin-top: 10px;
          }
          
          .industrys-product-card:hover .product-popup-left {
            transform: translateY(0);
          }
      }
      
     @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; 
      }
    }


    /* --- 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;
}

.mobile-list li a{
  width: 100%;
}

/* LÍNEA VERDE MÓVIL: Efecto al tocar o pasar el mouse */
.mobile-list li:hover {
    color: #008f39;
}

.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;
}