    /* ===========================
       Ú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;
    }

    /* Reset global */
    *, *::before, *::after {
      box-sizing: border-box;
    }
    html, body {
      margin: 0;
      padding: 0;
      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;
    }

     /* 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;
        }

        #resultado-aceite{
          padding: 0 100px 0 100px;
        }

    /* ===========================
       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; }    

       #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; }

        #resultado-aceite{
          padding: 0 20px 0 20px;
        }

         #html5-section h1 {
        font-size: 36px;
      }
      #html5-section .html5-form-row {
        flex-direction: column;
      }
      #html5-section .html5-form-row .html5-half {
        width: 100%;
      }


}


.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%;
}

 .oil-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 95vh;
  padding: 20px;
  margin-top: 90px;
  background-color: #1F1F1F;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

.oil-card {
  display: flex;
  align-items: stretch;
  max-width: 1300px;
  width: 100%;
  min-height: 550px;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
}

.oil-left {
  flex: 1;
  padding: 40px; /* Un poco más de aire */
}

/* AQUÍ ESTÁ TU IMAGEN DE LA DERECHA */
.oil-right {
  flex: 1;
  background: url('https://m.media-amazon.com/images/I/71d49aix0-L._AC_SL1500_.jpg') center center / cover no-repeat;
}

.oil-left h2 {
  color: #f5a623;
  margin-bottom: 10px;
}

.oil-left p {
  margin-bottom: 20px;
  color: #ccc;
}

/* Estilos para los Selects */
.oil-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.oil-select {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: #2a2a2a;
  color: #fff;
  outline: none;
}

/* Botón con Spinner */
.oil-btn {
  position: relative;
  padding: 16px;
  background: #0b6b3a;
  border: none;
  border-radius: 25px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  transition: background 0.3s;
}

.oil-btn:hover { background: #0d8246; }

.oil-btn.is-loading .btn-text {
  visibility: hidden;
  opacity: 0;
}

.oil-btn.is-loading::after {
  content: "";
  position: absolute;
  width: 20px; height: 20px;
  top: 50%; left: 50%;
  margin: -10px 0 0 -10px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Estilos de las CARDS de resultado */
.oil-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.oil-card-item {
  background: #222;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  border: 1px solid #333;
}

.oil-card-item img {
  width: 100%;
  max-height: 150px;
  object-fit: contain;
  margin-bottom: 15px;
}

.oil-card-item .oil-label {
  display: block;
  font-size: 11px;
  color: #f5a623;
  text-transform: uppercase;
  font-weight: bold;
}

.oil-card-item .oil-name {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.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;
}

/* --- 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 */
    }
}

/* 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;
  }
        .oil-card {
        flex-direction: column;
      }

      .oil-right {
        flex: none;
        height: 220px;
      }
}

.privacy-content ul {
  list-style-type: disc;
  padding-left: 25px;
  margin-bottom: 15px;
}

.privacy-content li {
  display: list-item;
}




