.ggo-tools-hub,
.ggo-tool-recommender-manual,
.ggo-fermar-search .ggo-smart-tool-slot {
    --ggo-gold: #DCA54A;
    --ggo-gold-dark: #B58839;
    --ggo-navy: #0F172A;
    --ggo-text: #4A4A4A;
    --ggo-muted: #64748B;
    --ggo-bg: #F8FAFC;
    --ggo-border: rgba(15, 23, 42, 0.08);
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

.ggo-tools-hub {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 18px 12px 28px;
    box-sizing: border-box;
}

.ggo-tools-head {
    background: linear-gradient(135deg, #ffffff 0%, #fff8ec 100%);
    border: 1px solid rgba(220, 165, 74, 0.22);
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    margin-bottom: 14px;
}

.ggo-tools-kicker {
    display: inline-flex;
    align-items: center;
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(220, 165, 74, 0.12);
    color: var(--ggo-gold-dark);
    font-size: 0.75rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.ggo-tools-head h2 {
    margin: 0;
    color: var(--ggo-navy);
    font-size: clamp(1.35rem, 4vw, 2rem);
    line-height: 1.1;
    font-weight: 850;
}

.ggo-tools-head p {
    margin: 8px 0 0;
    color: var(--ggo-muted);
    font-size: 0.95rem;
    line-height: 1.45;
}

.ggo-tools-local-search {
    display: flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    background: #fff;
    border-radius: 18px;
    padding: 10px 12px;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
    margin: 0 0 14px;
}

.ggo-tools-local-search .material-icons {
    color: var(--ggo-gold-dark);
    font-size: 24px;
}

.ggo-tools-local-search input {
    width: 100%;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    font-size: 0.95rem;
    color: var(--ggo-navy);
    background: transparent !important;
    padding: 5px 0 !important;
}

.ggo-tools-category {
    margin-top: 18px;
}

.ggo-tools-category-title {
    color: var(--ggo-navy);
    font-size: 0.88rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 10px 4px;
}

.ggo-tools-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.ggo-tool-card {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    min-height: 118px;
    padding: 13px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid var(--ggo-border);
    box-shadow: 0 5px 16px rgba(15, 23, 42, 0.06);
    text-decoration: none !important;
    color: inherit !important;
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
    position: relative;
    overflow: hidden;
}

.ggo-tool-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(220, 165, 74, 0.14), transparent 38%);
    opacity: 0;
    transition: opacity 0.16s ease;
}

.ggo-tool-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.10);
    border-color: rgba(220, 165, 74, 0.50);
}

.ggo-tool-card:hover::before {
    opacity: 1;
}

.ggo-tool-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 15px;
    background: linear-gradient(135deg, #fff 0%, #fff3dd 100%);
    border: 1px solid rgba(220, 165, 74, 0.26);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ggo-gold);
    position: relative;
    z-index: 1;
}

.ggo-tool-icon .material-icons {
    font-size: 25px;
}

.ggo-tool-body {
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 0;
}

.ggo-tool-top {
    display: flex;
    gap: 7px;
    align-items: flex-start;
    justify-content: space-between;
}

.ggo-tool-top h3 {
    margin: 0;
    color: var(--ggo-navy);
    font-size: 0.96rem;
    line-height: 1.15;
    font-weight: 850;
}

.ggo-tool-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: 3px 7px;
    border-radius: 999px;
    background: rgba(220, 165, 74, 0.13);
    color: var(--ggo-gold-dark);
    font-size: 0.68rem;
    font-weight: 850;
}

.ggo-tool-body p {
    margin: 6px 0 0;
    color: var(--ggo-text);
    font-size: 0.78rem;
    line-height: 1.25;
}

.ggo-tool-action {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 9px;
    color: var(--ggo-gold-dark);
    font-size: 0.76rem;
    font-weight: 850;
}

.ggo-tool-action .material-icons {
    font-size: 16px;
}

.ggo-tool-card[hidden],
.ggo-tools-category[hidden] {
    display: none !important;
}

.ggo-smart-tool-slot {
    margin: 12px 0 14px;
}

.ggo-smart-tool-card {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 11px;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #fff8ec 100%);
    border: 1px solid rgba(220, 165, 74, 0.38);
    border-radius: 20px;
    padding: 12px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
}

.ggo-smart-tool-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--ggo-gold-dark);
    border: 1px solid rgba(220, 165, 74, 0.28);
}

.ggo-smart-tool-icon .material-icons {
    font-size: 27px;
}

.ggo-smart-tool-meta {
    min-width: 0;
}

.ggo-smart-tool-kicker {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 3px;
}

.ggo-smart-tool-kicker span:first-child {
    color: var(--ggo-gold-dark);
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.ggo-smart-tool-score {
    font-size: .68rem;
    font-weight: 850;
    color: #64748B;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 999px;
    padding: 3px 7px;
    white-space: nowrap;
}

.ggo-smart-tool-meta strong {
    display: block;
    color: var(--ggo-navy);
    font-size: 1rem;
    line-height: 1.17;
    margin: 0 0 4px;
}

.ggo-smart-tool-meta p {
    color: var(--ggo-text);
    margin: 0;
    font-size: .84rem;
    line-height: 1.32;
}

.ggo-smart-tool-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 9px;
}

.ggo-smart-tool-open,
.ggo-smart-tool-dismiss {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    border-radius: 999px;
    padding: 8px 13px;
    font-size: .8rem;
    font-weight: 850;
    text-decoration: none !important;
    cursor: pointer;
}

.ggo-smart-tool-open {
    background: var(--ggo-gold);
    color: #fff !important;
    border: 1px solid var(--ggo-gold);
}

.ggo-smart-tool-dismiss {
    background: #fff;
    color: #64748B;
    border: 1px solid #E2E8F0;
}

.ggo-tool-recommender-manual {
    max-width: 850px;
    margin: 0 auto;
}

@media (min-width: 760px) {
    .ggo-tools-hub {
        padding: 24px 18px 34px;
    }

    .ggo-tools-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
    }

    .ggo-tool-card {
        min-height: 138px;
        padding: 16px;
    }

    .ggo-tool-icon {
        width: 54px;
        height: 54px;
        min-width: 54px;
        border-radius: 18px;
    }

    .ggo-tool-icon .material-icons {
        font-size: 31px;
    }

    .ggo-tool-top h3 {
        font-size: 1.05rem;
    }

    .ggo-tool-body p {
        font-size: 0.86rem;
    }
}

@media (max-width: 520px) {
    .ggo-tools-grid {
        grid-template-columns: 1fr;
    }

    .ggo-tool-card {
        min-height: auto;
    }

    .ggo-smart-tool-card {
        grid-template-columns: 42px minmax(0, 1fr);
        padding: 11px;
        border-radius: 18px;
    }

    .ggo-smart-tool-icon {
        width: 42px;
        height: 42px;
        border-radius: 15px;
    }
}

/* =========================================================
   GoGateOn · Calculadora Seguridad Borde Principal v1.1.0
   ========================================================= */
.ggo-security-tool{
  --ggo-gold:#DCA54A;--ggo-gold-dark:#B48636;--ggo-navy:#0F172A;--ggo-text:#4A4A4A;--ggo-muted:#64748B;--ggo-bg:#F8FAFC;--ggo-line:rgba(15,23,42,.10);--ggo-ok:#16A34A;--ggo-warn:#F59E0B;--ggo-danger:#DC2626;
  width:100%;max-width:980px;margin:18px auto;padding:14px;box-sizing:border-box;font-family:"Segoe UI",Roboto,Arial,sans-serif;color:var(--ggo-text);
}
.ggo-sec-hero{display:flex;gap:14px;align-items:center;background:linear-gradient(135deg,#fff 0%,#fff7e8 100%);border:1px solid rgba(220,165,74,.26);border-radius:24px;padding:18px;box-shadow:0 12px 30px rgba(15,23,42,.08);}
.ggo-sec-hero-icon{width:58px;height:58px;min-width:58px;border-radius:20px;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,#DCA54A,#B48636);color:#fff;box-shadow:0 10px 24px rgba(220,165,74,.32)}
.ggo-sec-hero-icon .material-icons{font-size:34px}.ggo-sec-kicker{display:inline-flex;margin-bottom:6px;color:var(--ggo-gold-dark);font-size:.75rem;font-weight:900;letter-spacing:.08em;text-transform:uppercase}.ggo-sec-hero h2{margin:0;color:var(--ggo-navy);font-size:clamp(1.25rem,4vw,2rem);line-height:1.08;font-weight:900}.ggo-sec-hero p{margin:7px 0 0;color:var(--ggo-muted);font-size:.94rem;line-height:1.42}
.ggo-sec-progress{position:relative;display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin:18px 0 14px;padding:0 4px}.ggo-sec-progress-line{position:absolute;left:12%;right:12%;top:18px;height:5px;background:#E2E8F0;border-radius:99px;overflow:hidden}.ggo-sec-progress-line span{display:block;height:100%;width:0;background:linear-gradient(90deg,#DCA54A,#B48636);border-radius:99px;transition:width .25s ease}.ggo-sec-step-dot{position:relative;z-index:1;display:flex;flex-direction:column;align-items:center;gap:4px;color:#94A3B8;font-size:.72rem;font-weight:800}.ggo-sec-step-dot strong{width:40px;height:40px;border-radius:999px;background:#fff;border:2px solid #E2E8F0;display:flex;align-items:center;justify-content:center;color:#64748B;box-shadow:0 5px 15px rgba(15,23,42,.07)}.ggo-sec-step-dot.is-active strong,.ggo-sec-step-dot.is-done strong{border-color:rgba(220,165,74,.95);background:#FFF8EC;color:var(--ggo-gold-dark)}.ggo-sec-step-dot.is-done strong{background:var(--ggo-gold);color:#fff}.ggo-sec-step-dot.is-active span,.ggo-sec-step-dot.is-done span{color:var(--ggo-navy)}
.ggo-sec-screen{display:none;background:#fff;border:1px solid var(--ggo-line);border-radius:24px;padding:16px;box-shadow:0 9px 28px rgba(15,23,42,.07);animation:ggoSecIn .22s ease}.ggo-sec-screen.is-active{display:block}@keyframes ggoSecIn{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}.ggo-sec-question h3{margin:0;color:var(--ggo-navy);font-size:1.18rem;font-weight:900}.ggo-sec-question p{margin:6px 0 14px;color:var(--ggo-muted);font-size:.9rem;line-height:1.38}
.ggo-sec-options{display:grid;grid-template-columns:1fr;gap:10px}.ggo-sec-option{width:100%;border:1px solid rgba(15,23,42,.10);background:#fff;border-radius:19px;padding:14px;text-align:left;display:grid;grid-template-columns:42px 1fr;column-gap:12px;row-gap:3px;align-items:center;cursor:pointer;transition:transform .15s ease,box-shadow .15s ease,border-color .15s ease,background .15s ease}.ggo-sec-option:hover{transform:translateY(-2px);box-shadow:0 10px 22px rgba(15,23,42,.09);border-color:rgba(220,165,74,.55);background:#FFFDF8}.ggo-sec-option .material-icons{grid-row:1/3;width:42px;height:42px;border-radius:15px;display:flex;align-items:center;justify-content:center;background:#FFF2D9;color:var(--ggo-gold-dark);font-size:25px}.ggo-sec-option strong{color:var(--ggo-navy);font-size:.98rem;font-weight:900;line-height:1.1}.ggo-sec-option small{color:var(--ggo-muted);font-size:.8rem;line-height:1.25}.ggo-sec-back{margin-top:14px;border:0;background:#F1F5F9;color:var(--ggo-navy);border-radius:999px;padding:9px 13px;font-weight:850;cursor:pointer;display:inline-flex;align-items:center;gap:6px}.ggo-sec-back .material-icons{font-size:18px}
.ggo-sec-result-card{border-radius:22px;border:1px solid rgba(220,165,74,.25);background:linear-gradient(135deg,#FFFCF5,#fff);padding:16px}.ggo-sec-result-top{display:flex;gap:12px;align-items:flex-start}.ggo-sec-result-icon{width:50px;height:50px;min-width:50px;border-radius:18px;display:flex;align-items:center;justify-content:center;color:#fff}.ggo-sec-result-icon.ok{background:linear-gradient(135deg,#16A34A,#15803D)}.ggo-sec-result-icon.warn{background:linear-gradient(135deg,#F59E0B,#B45309)}.ggo-sec-result-icon.danger{background:linear-gradient(135deg,#DC2626,#991B1B)}.ggo-sec-result-icon .material-icons{font-size:30px}.ggo-sec-result-card h3{margin:0;color:var(--ggo-navy);font-size:1.18rem;font-weight:950}.ggo-sec-result-card p{margin:6px 0 0;color:var(--ggo-text);font-size:.9rem;line-height:1.42}.ggo-sec-pill-row{display:flex;flex-wrap:wrap;gap:8px;margin-top:12px}.ggo-sec-pill{display:inline-flex;align-items:center;gap:6px;padding:7px 10px;border-radius:999px;background:#F8FAFC;border:1px solid rgba(15,23,42,.08);color:var(--ggo-navy);font-weight:850;font-size:.78rem}.ggo-sec-pill strong{color:var(--ggo-gold-dark)}.ggo-sec-route{margin-top:12px;padding:12px;border-radius:16px;background:#F8FAFC;border:1px solid rgba(15,23,42,.08)}.ggo-sec-route strong{display:block;color:var(--ggo-navy);font-size:.9rem;margin-bottom:5px}.ggo-sec-route ul{margin:0;padding-left:18px;color:var(--ggo-text);font-size:.85rem;line-height:1.42}.ggo-sec-route li+li{margin-top:4px}
.ggo-sec-photocells{margin-top:14px;border:1px solid rgba(15,23,42,.10);border-radius:22px;background:#F8FAFC;padding:14px}.ggo-sec-mini-head{display:flex;gap:10px;align-items:center;margin-bottom:12px}.ggo-sec-mini-head>.material-icons{width:42px;height:42px;min-width:42px;border-radius:15px;background:#EAF2FF;color:#2563EB;display:flex;align-items:center;justify-content:center}.ggo-sec-mini-head strong{display:block;color:var(--ggo-navy);font-weight:950}.ggo-sec-mini-head small{display:block;color:var(--ggo-muted);font-size:.8rem;line-height:1.25}.ggo-door-chips{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:10px}.ggo-door-chips button{border:1px solid rgba(15,23,42,.10);background:#fff;color:var(--ggo-navy);border-radius:999px;padding:8px 12px;font-weight:850;font-size:.78rem;cursor:pointer}.ggo-door-chips button.is-active{background:var(--ggo-gold);border-color:var(--ggo-gold);color:#fff}.ggo-door-result{border-radius:16px;background:#fff;border:1px solid rgba(15,23,42,.08);padding:13px;color:var(--ggo-text);font-size:.88rem;line-height:1.42}.ggo-door-result strong{color:var(--ggo-navy)}.ggo-door-result img{display:block;max-width:100%;border-radius:16px;margin-top:10px;border:1px solid rgba(15,23,42,.08)}.ggo-door-result .ggo-distance-highlight{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;margin:10px 0}.ggo-distance-highlight span{background:#FFF8EC;border:1px solid rgba(220,165,74,.22);border-radius:13px;padding:8px;font-weight:850;color:var(--ggo-navy);font-size:.8rem}.ggo-distance-highlight b{display:block;color:var(--ggo-gold-dark);font-size:1rem}
.ggo-sec-actions{display:flex;flex-wrap:wrap;gap:9px;margin-top:14px}.ggo-sec-actions button{border:0;border-radius:999px;padding:10px 13px;font-weight:900;cursor:pointer;display:inline-flex;align-items:center;gap:7px}.ggo-sec-primary{background:var(--ggo-gold);color:#fff}.ggo-sec-primary:hover{background:var(--ggo-gold-dark)}.ggo-sec-secondary{background:#F1F5F9;color:var(--ggo-navy)}.ggo-sec-actions .material-icons{font-size:18px}.ggo-sec-note{margin-top:13px;background:#FFF7ED;border:1px solid rgba(245,158,11,.20);border-radius:16px;padding:11px;color:#7C2D12;font-size:.78rem;line-height:1.35}.ggo-sec-toast{position:fixed;left:50%;bottom:22px;transform:translateX(-50%);background:#0F172A;color:#fff;padding:10px 14px;border-radius:999px;font-size:.85rem;font-weight:850;z-index:99999;box-shadow:0 10px 26px rgba(0,0,0,.22)}
@media(min-width:720px){.ggo-sec-screen{padding:20px}.ggo-sec-options{grid-template-columns:repeat(2,minmax(0,1fr))}.ggo-sec-option{min-height:114px}.ggo-door-result .ggo-distance-highlight{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(max-width:480px){.ggo-security-tool{padding:10px}.ggo-sec-hero{align-items:flex-start;border-radius:20px;padding:14px}.ggo-sec-hero-icon{width:48px;height:48px;min-width:48px;border-radius:17px}.ggo-sec-hero-icon .material-icons{font-size:29px}.ggo-sec-step-dot span{font-size:.64rem}.ggo-sec-progress-line{left:17%;right:17%}.ggo-distance-highlight{grid-template-columns:1fr!important}.ggo-sec-actions button{width:100%;justify-content:center}}

.ggo-tools-embedded{margin-top:18px;border-radius:26px;background:#F8FAFC;border:1px solid rgba(15,23,42,.10);padding:10px;box-shadow:0 10px 28px rgba(15,23,42,.07)}
.ggo-tools-embedded-bar{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:8px 10px 2px;color:#0F172A}.ggo-tools-embedded-bar strong{font-weight:950}.ggo-tools-embedded-bar button{border:0;background:#E2E8F0;color:#0F172A;border-radius:999px;padding:8px 11px;font-weight:850;cursor:pointer;display:inline-flex;align-items:center;gap:5px}.ggo-tools-embedded-bar .material-icons{font-size:17px}

/* =========================================================
   GoGateOn · Fotocélulas integrada v1.2.0
   ========================================================= */
.ggo-photocells-tool .ggo-sec-hero-icon{background:linear-gradient(135deg,#2563EB,#0F766E);box-shadow:0 10px 24px rgba(37,99,235,.25)}
.ggo-photo-options .ggo-sec-option.is-active{border-color:rgba(220,165,74,.85);background:#FFF8EC;box-shadow:0 12px 26px rgba(220,165,74,.16)}
.ggo-photo-options .ggo-sec-option.is-active .material-icons{background:#DCA54A;color:#fff}
.ggo-photo-standalone-result{margin-top:14px;background:linear-gradient(135deg,#F8FAFC,#fff)}
.ggo-photo-standalone-result .ggo-door-result{min-height:74px}
.ggo-tools-embedded[hidden]{display:none!important}

/* v1.2.1/1.2.2 - Fotocélulas: evita resultado suelto/duplicado y lo convierte en tarjeta clara */
.ggo-photo-empty-tip{
  margin-top:14px;
  border:1px dashed rgba(220,165,74,.45);
  background:#FFF8EC;
  color:#4A4A4A;
  border-radius:18px;
  padding:12px 14px;
  display:flex;
  align-items:center;
  gap:10px;
}
.ggo-photo-empty-tip .material-icons{color:#B48636;font-size:24px}.ggo-photo-empty-tip p{margin:0;font-size:.86rem;line-height:1.35}.ggo-photo-empty-tip[hidden]{display:none!important}
.ggo-photo-standalone-result[hidden]{display:none!important}.ggo-photo-standalone-result{border-color:rgba(220,165,74,.28)!important;background:linear-gradient(135deg,#fff,#FFF8EC)!important;box-shadow:0 12px 28px rgba(15,23,42,.08);animation:ggoPhotoResultIn .18s ease-out}.ggo-photo-standalone-result .ggo-sec-mini-head>.material-icons{background:#DCA54A!important;color:#fff!important}.ggo-photo-standalone-result .ggo-door-result{border-color:rgba(220,165,74,.20)!important}.ggo-photo-standalone-result .ggo-door-result>strong{font-size:1.02rem}.ggo-photo-standalone-result .ggo-door-result p{margin-bottom:0}
@keyframes ggoPhotoResultIn{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}

/* v1.2.2 - Verificación inversa mejorada */
.ggo-inverse-tool .ggo-sec-hero-icon{background:linear-gradient(135deg,#16A34A,#0F766E);box-shadow:0 10px 24px rgba(22,163,74,.25)}
.ggo-inv-layout{display:grid;grid-template-columns:1fr;gap:14px;margin-top:14px}.ggo-inv-panel{background:#fff;border:1px solid rgba(15,23,42,.10);border-radius:24px;padding:16px;box-shadow:0 9px 28px rgba(15,23,42,.07)}
.ggo-inv-req-grid{display:grid;grid-template-columns:1fr;gap:9px}.ggo-inv-req{border:1px solid rgba(15,23,42,.10);background:#fff;border-radius:18px;padding:12px;text-align:left;display:grid;grid-template-columns:42px minmax(0,1fr);column-gap:10px;row-gap:2px;cursor:pointer;transition:.15s ease}.ggo-inv-req:hover{transform:translateY(-1px);box-shadow:0 8px 20px rgba(15,23,42,.08);border-color:rgba(220,165,74,.55)}.ggo-inv-req b{grid-row:1/3;width:42px;height:42px;border-radius:15px;background:#F1F5F9;color:#0F172A;display:flex;align-items:center;justify-content:center;font-size:1.05rem}.ggo-inv-req span{color:#0F172A;font-weight:950;font-size:.94rem;line-height:1.1}.ggo-inv-req small{color:#64748B;font-size:.78rem;line-height:1.22}.ggo-inv-req.is-active{background:#FFF8EC;border-color:rgba(220,165,74,.85);box-shadow:0 10px 24px rgba(220,165,74,.14)}.ggo-inv-req.is-active b{background:#DCA54A;color:#fff}
.ggo-inv-label{display:block;margin:12px 0 7px;color:#0F172A;font-weight:900;font-size:.82rem;text-transform:uppercase;letter-spacing:.04em}.ggo-inv-seg{display:flex;flex-wrap:wrap;gap:7px}.ggo-inv-seg button{border:1px solid rgba(15,23,42,.10);background:#F8FAFC;color:#0F172A;border-radius:999px;padding:8px 11px;font-weight:850;font-size:.78rem;cursor:pointer}.ggo-inv-seg button.is-active{background:#DCA54A;color:#fff;border-color:#DCA54A}.ggo-inv-main-actions{margin-top:16px}
.ggo-inv-result{margin-top:14px;border-radius:24px;border:1px solid rgba(220,165,74,.25);background:linear-gradient(135deg,#FFFCF5,#fff);padding:16px;box-shadow:0 12px 28px rgba(15,23,42,.08);animation:ggoPhotoResultIn .18s ease-out}.ggo-inv-result[hidden]{display:none!important}.ggo-inv-result-grid{display:grid;grid-template-columns:1fr;gap:9px;margin-top:12px}.ggo-inv-result-grid>div{border:1px solid rgba(15,23,42,.08);background:#F8FAFC;border-radius:15px;padding:10px}.ggo-inv-result-grid small{display:block;color:#64748B;font-weight:850;font-size:.72rem;text-transform:uppercase;letter-spacing:.04em}.ggo-inv-result-grid strong{display:block;color:#0F172A;font-size:.9rem;line-height:1.25;margin-top:2px}.ggo-inv-missing{margin-top:8px;color:#4A4A4A}.ggo-inv-missing strong{margin-bottom:6px}.ggo-inv-missing span{display:inline-flex;align-items:center;justify-content:center;margin:3px 4px 3px 0;padding:5px 8px;border-radius:999px;background:#FEE2E2;color:#991B1B;font-weight:950}.ggo-inv-missing ul{margin:5px 0 0;padding-left:18px}.ggo-inv-tip{display:flex;gap:10px;align-items:flex-start;margin-top:12px;padding:11px;border-radius:16px;background:#EFF6FF;border:1px solid rgba(37,99,235,.16);color:#1E3A8A}.ggo-inv-tip .material-icons{font-size:23px}.ggo-inv-tip p{margin:0;font-size:.84rem;line-height:1.35}
@media(min-width:820px){.ggo-inv-layout{grid-template-columns:1.05fr .95fr}.ggo-inv-req-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.ggo-inv-result-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}


/* Buscador inteligente de errores */
.ggo-error-tool{
    --ggo-gold:#DCA54A;--ggo-gold-dark:#B58839;--ggo-navy:#0F172A;--ggo-muted:#64748B;--ggo-text:#4A4A4A;--ggo-border:rgba(15,23,42,.10);
    font-family:"Segoe UI",Roboto,Arial,sans-serif;
}
.ggo-error-searchbar{display:flex;align-items:center;gap:8px;background:#fff;border:1px solid rgba(220,165,74,.36);border-radius:18px;padding:10px 12px;box-shadow:0 8px 22px rgba(15,23,42,.06);margin:14px 0 10px;}
.ggo-error-searchbar .material-icons{color:var(--ggo-gold-dark)}
.ggo-error-searchbar input{flex:1;border:0!important;outline:0!important;box-shadow:none!important;background:transparent!important;color:var(--ggo-navy);font-size:1rem;padding:7px 2px!important;}
.ggo-error-searchbar button{border:0;background:rgba(15,23,42,.06);color:var(--ggo-navy);border-radius:999px;width:34px;height:34px;display:flex;align-items:center;justify-content:center;cursor:pointer;}
.ggo-error-filters{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin:10px 0;}
.ggo-error-filters select{width:100%;border:1px solid var(--ggo-border);border-radius:14px;background:#fff;color:var(--ggo-navy);padding:10px 12px;font-weight:750;}
.ggo-error-suggestions{display:flex;gap:8px;flex-wrap:wrap;margin:8px 0 12px;}
.ggo-error-suggestions button{border:1px solid rgba(220,165,74,.32);background:rgba(220,165,74,.10);color:var(--ggo-gold-dark);border-radius:999px;padding:7px 10px;font-weight:850;cursor:pointer;font-size:.82rem;}
.ggo-error-status{background:#F8FAFC;border:1px solid var(--ggo-border);border-radius:15px;padding:10px 12px;color:var(--ggo-muted);font-size:.9rem;margin:10px 0;}
.ggo-error-status strong{color:var(--ggo-navy)}
.ggo-error-results{display:grid;grid-template-columns:1fr;gap:10px;margin-top:10px;}
.ggo-error-card{background:#fff;border:1px solid var(--ggo-border);border-radius:18px;box-shadow:0 8px 22px rgba(15,23,42,.055);overflow:hidden;}
.ggo-error-card.is-open{border-color:rgba(220,165,74,.52);box-shadow:0 12px 30px rgba(15,23,42,.10)}
.ggo-error-card-head{display:flex;justify-content:space-between;gap:10px;align-items:flex-start;padding:13px;cursor:pointer;}
.ggo-error-card-head h3{margin:5px 0 5px;color:var(--ggo-navy);font-size:1rem;line-height:1.18;font-weight:900;}
.ggo-error-card-head p{margin:0;color:var(--ggo-text);font-size:.86rem;line-height:1.3;}
.ggo-error-card-head button{border:0;background:#fff3dd;color:var(--ggo-gold-dark);border-radius:12px;width:38px;height:38px;display:flex;align-items:center;justify-content:center;cursor:pointer;}
.ggo-error-card.is-open .ggo-error-card-head button .material-icons{transform:rotate(180deg)}
.ggo-error-pill{display:inline-flex;border-radius:999px;padding:3px 8px;background:rgba(4,92,180,.10);color:#045CB4;font-size:.7rem;font-weight:900;text-transform:uppercase;letter-spacing:.04em;}
.ggo-error-detail{border-top:1px solid rgba(15,23,42,.08);padding:13px;background:linear-gradient(180deg,#fff,#fffaf1);}
.ggo-error-block{background:#fff;border:1px solid rgba(15,23,42,.08);border-radius:14px;padding:11px;margin-bottom:10px;}
.ggo-error-block strong{display:block;color:var(--ggo-navy);margin-bottom:5px;}
.ggo-error-block p{margin:0;color:var(--ggo-text);line-height:1.38;font-size:.9rem;}
.ggo-error-detail img{max-width:100%;border-radius:14px;border:1px solid rgba(15,23,42,.10);margin:6px 0 12px;}
.ggo-error-actions{display:flex;flex-wrap:wrap;gap:8px;}
.ggo-error-actions a,.ggo-error-actions button{display:inline-flex;align-items:center;gap:6px;border:1px solid rgba(220,165,74,.42);background:#fff;color:var(--ggo-navy);text-decoration:none;border-radius:999px;padding:8px 11px;font-weight:900;font-size:.82rem;cursor:pointer;}
.ggo-error-actions a:hover,.ggo-error-actions button:hover{background:rgba(220,165,74,.12);}
.ggo-error-actions .material-icons{font-size:18px;color:var(--ggo-gold-dark)}
@media(max-width:640px){.ggo-error-filters{grid-template-columns:1fr}.ggo-error-card-head{padding:12px}.ggo-error-card-head h3{font-size:.94rem}.ggo-error-card-head p{font-size:.82rem}}

/* v1.2.4 · Buscador de errores: filtros bonitos tipo app */
.ggo-error-db-mini{display:inline-flex;align-items:center;gap:8px;flex-wrap:wrap;background:linear-gradient(135deg,#fff,#fff8ea);border:1px solid rgba(220,165,74,.32);border-radius:999px;padding:8px 11px;color:var(--ggo-muted);font-size:.85rem;font-weight:750;margin:2px 0 10px;box-shadow:0 6px 18px rgba(15,23,42,.045)}
.ggo-error-db-mini .material-icons{font-size:19px;color:var(--ggo-gold-dark)}
.ggo-error-db-mini strong{color:var(--ggo-navy)}
.ggo-error-filters-pro{grid-template-columns:repeat(2,minmax(0,1fr));align-items:start;position:relative;z-index:8;}
.ggo-error-choice{position:relative;min-width:0;}
.ggo-error-choice-button{width:100%;display:flex;align-items:center;gap:10px;text-align:left;border:1px solid rgba(15,23,42,.10);background:linear-gradient(135deg,#fff,#f8fafc);border-radius:18px;padding:12px 13px;box-shadow:0 8px 22px rgba(15,23,42,.055);cursor:pointer;color:var(--ggo-navy);}
.ggo-error-choice-button:hover{border-color:rgba(220,165,74,.55);box-shadow:0 10px 25px rgba(15,23,42,.085)}
.ggo-error-choice-button>.material-icons:first-child{width:38px;height:38px;min-width:38px;border-radius:14px;background:rgba(220,165,74,.13);color:var(--ggo-gold-dark);display:flex;align-items:center;justify-content:center;}
.ggo-error-choice-button span:nth-child(2){display:flex;flex-direction:column;gap:2px;min-width:0;flex:1;}
.ggo-error-choice-button small{color:var(--ggo-muted);font-size:.72rem;font-weight:900;text-transform:uppercase;letter-spacing:.05em;}
.ggo-error-choice-button strong{display:block;color:var(--ggo-navy);font-size:.95rem;font-weight:950;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.ggo-error-choice-button i.material-icons{color:var(--ggo-gold-dark);transition:transform .16s ease;}
.ggo-error-choice:not(.is-disabled) .ggo-error-choice-button[aria-expanded="true"] i.material-icons{transform:rotate(180deg)}
.ggo-error-choice.is-disabled{opacity:.55;}
.ggo-error-choice.is-disabled .ggo-error-choice-button{cursor:not-allowed;background:#f8fafc;}
.ggo-error-choice-panel{position:absolute;left:0;right:0;top:calc(100% + 8px);background:#fff;border:1px solid rgba(15,23,42,.12);border-radius:18px;box-shadow:0 18px 42px rgba(15,23,42,.18);padding:10px;z-index:30;}
.ggo-error-choice-panel input{width:100%;border:1px solid rgba(220,165,74,.35)!important;border-radius:14px!important;padding:10px 11px!important;outline:none!important;box-shadow:none!important;background:#fffaf1!important;color:var(--ggo-navy)!important;margin:0 0 8px!important;font-weight:750;}
.ggo-error-choice-options{display:grid;gap:6px;max-height:260px;overflow:auto;padding-right:2px;}
.ggo-error-choice-options button{display:flex;align-items:center;justify-content:space-between;gap:8px;width:100%;border:1px solid rgba(15,23,42,.08);background:#fff;border-radius:13px;padding:9px 10px;color:var(--ggo-navy);cursor:pointer;font-weight:850;text-align:left;}
.ggo-error-choice-options button:hover,.ggo-error-choice-options button.is-active{background:rgba(220,165,74,.12);border-color:rgba(220,165,74,.45);}
.ggo-error-choice-options button i{font-size:18px;color:var(--ggo-gold-dark)}
@media(max-width:640px){.ggo-error-filters-pro{grid-template-columns:1fr}.ggo-error-choice-panel{position:relative;top:auto;margin-top:8px}.ggo-error-choice-options{max-height:220px}}

/* Parte de trabajo rápido */
.ggo-workorder-tool .ggo-sec-hero-icon{background:linear-gradient(135deg,#0F172A,#045CB4);box-shadow:0 10px 24px rgba(4,92,180,.24)}
.ggo-work-layout{display:grid;gap:12px;margin-top:14px}
.ggo-work-card{background:#fff;border:1px solid var(--ggo-border);border-radius:22px;padding:14px;box-shadow:0 8px 24px rgba(15,23,42,.06)}
.ggo-work-card-head{display:flex;align-items:flex-start;justify-content:space-between;gap:10px;margin-bottom:12px}.ggo-work-card-head strong{display:block;color:var(--ggo-navy);font-weight:950;font-size:1rem}.ggo-work-card-head small{display:block;color:var(--ggo-muted);font-size:.8rem;line-height:1.25;margin-top:2px}.ggo-work-badge{display:inline-flex;background:rgba(220,165,74,.13);color:var(--ggo-gold-dark);border:1px solid rgba(220,165,74,.28);border-radius:999px;padding:5px 8px;font-size:.72rem;font-weight:900;white-space:nowrap}.ggo-work-grid{display:grid;gap:10px}.ggo-work-grid.two,.ggo-work-grid.three{grid-template-columns:1fr}.ggo-work-grid label{display:flex;flex-direction:column;gap:5px;color:var(--ggo-navy);font-weight:850;font-size:.82rem}.ggo-work-grid input,.ggo-work-grid textarea,.ggo-work-grid select{width:100%;box-sizing:border-box;border:1px solid rgba(15,23,42,.12)!important;background:#F8FAFC!important;border-radius:14px!important;padding:10px 11px!important;color:var(--ggo-navy)!important;box-shadow:none!important;outline:none!important;font-size:.92rem!important}.ggo-work-grid textarea{min-height:82px;resize:vertical}.ggo-work-grid input:focus,.ggo-work-grid textarea:focus,.ggo-work-grid select:focus{border-color:rgba(220,165,74,.75)!important;background:#fff!important;box-shadow:0 0 0 3px rgba(220,165,74,.12)!important}.ggo-work-voice-box{display:grid;gap:9px}.ggo-work-voice{display:flex;align-items:center;justify-content:center;gap:9px;border:0;border-radius:18px;padding:14px 16px;background:linear-gradient(135deg,#DCA54A,#B48636);color:#fff;font-weight:950;font-size:1rem;cursor:pointer;box-shadow:0 10px 24px rgba(220,165,74,.22)}.ggo-work-voice.is-recording{animation:ggoWorkPulse 1s infinite;background:linear-gradient(135deg,#DC2626,#B91C1C)}@keyframes ggoWorkPulse{0%,100%{transform:scale(1)}50%{transform:scale(1.018)}}.ggo-work-voice .material-icons{font-size:23px}.ggo-work-voice-text{background:#F8FAFC;border:1px dashed rgba(220,165,74,.42);border-radius:16px;padding:11px;color:var(--ggo-muted);font-size:.86rem;line-height:1.35}.ggo-work-chips{display:flex;flex-wrap:wrap;gap:8px;margin-top:12px}.ggo-work-chips button,.ggo-work-mini-btn{border:1px solid rgba(15,23,42,.10);background:#fff;color:var(--ggo-navy);border-radius:999px;padding:8px 11px;font-weight:900;font-size:.8rem;cursor:pointer;display:inline-flex;align-items:center;gap:6px}.ggo-work-chips button:hover,.ggo-work-mini-btn:hover{background:rgba(220,165,74,.12);border-color:rgba(220,165,74,.45)}.ggo-work-total{display:flex;align-items:center;justify-content:space-between;gap:10px;background:linear-gradient(135deg,#FFF8EC,#fff);border:1px solid rgba(220,165,74,.28);border-radius:18px;padding:13px;margin-top:12px}.ggo-work-total span{color:var(--ggo-muted);font-weight:850}.ggo-work-total strong{color:var(--ggo-navy);font-size:1.35rem;font-weight:1000}.ggo-work-file{display:flex;align-items:center;justify-content:center;border:1px dashed rgba(220,165,74,.5);background:#FFF8EC;color:var(--ggo-gold-dark);border-radius:18px;padding:14px;font-weight:950;cursor:pointer}.ggo-work-file input{display:none}.ggo-work-photo-list{display:flex;gap:8px;flex-wrap:wrap;margin:10px 0}.ggo-work-photo-list img{width:82px;height:70px;object-fit:cover;border-radius:14px;border:1px solid rgba(15,23,42,.10);box-shadow:0 6px 14px rgba(15,23,42,.08)}.ggo-work-sign-label{display:block;color:var(--ggo-navy);font-weight:950;margin:10px 0 6px}.ggo-work-sign{width:100%;max-width:100%;height:190px;background:#fff;border:2px solid rgba(15,23,42,.13);border-radius:18px;touch-action:none;display:block}.ggo-work-summary{background:#F8FAFC;border:1px solid rgba(15,23,42,.08);border-radius:18px;padding:13px}.ggo-work-summary strong{display:block;color:var(--ggo-navy);font-size:1.02rem;font-weight:950}.ggo-work-summary p{margin:6px 0;color:var(--ggo-text);font-size:.88rem;line-height:1.35}.ggo-work-summary div{display:flex;justify-content:space-between;gap:10px;align-items:center;border-top:1px solid rgba(15,23,42,.08);padding-top:9px;margin-top:9px}.ggo-work-summary b{color:var(--ggo-gold-dark);font-size:1.15rem}.ggo-work-summary span{background:#fff;border:1px solid rgba(15,23,42,.08);border-radius:999px;padding:5px 8px;color:var(--ggo-navy);font-weight:900;font-size:.78rem}
@media(min-width:760px){.ggo-work-grid.two{grid-template-columns:repeat(2,minmax(0,1fr))}.ggo-work-grid.three{grid-template-columns:repeat(3,minmax(0,1fr))}.ggo-work-layout{grid-template-columns:1fr 1fr}.ggo-work-fast,.ggo-work-summary-card{grid-column:1/-1}.ggo-work-sign{height:220px}}
@media(max-width:520px){.ggo-work-card{border-radius:18px;padding:12px}.ggo-work-card-head{display:block}.ggo-work-badge{margin-top:8px}.ggo-work-total strong{font-size:1.15rem}.ggo-work-summary div{display:block}.ggo-work-summary span{display:inline-flex;margin-top:6px}.ggo-work-sign{height:170px}.ggo-workorder-tool .ggo-sec-actions button{width:100%;justify-content:center}}

/* v1.2.6 · Parte de trabajo ultra rápido */
.ggo-work-command-box{display:grid;gap:10px}
.ggo-work-command-box label{display:flex;flex-direction:column;gap:3px;color:var(--ggo-navy);font-weight:950}
.ggo-work-command-box label span{color:var(--ggo-muted);font-size:.82rem;font-weight:700}
.ggo-work-command-box textarea{width:100%;min-height:94px;box-sizing:border-box;border:2px solid rgba(220,165,74,.45)!important;background:#fff!important;border-radius:18px!important;padding:13px!important;color:var(--ggo-navy)!important;font-size:1rem!important;line-height:1.35!important;resize:vertical;outline:none!important;box-shadow:0 8px 22px rgba(220,165,74,.08)!important}
.ggo-work-command-box textarea:focus{border-color:#DCA54A!important;box-shadow:0 0 0 4px rgba(220,165,74,.14)!important}
.ggo-work-command-actions{display:grid;grid-template-columns:1fr auto;gap:9px;align-items:center}
.ggo-work-fill{display:flex;align-items:center;justify-content:center;gap:8px;border:0;border-radius:18px;padding:14px 16px;background:linear-gradient(135deg,#0F172A,#045CB4);color:#fff;font-weight:950;font-size:1rem;cursor:pointer;box-shadow:0 10px 24px rgba(4,92,180,.2)}
.ggo-work-fill:disabled{opacity:.65;cursor:wait}.ggo-work-fill:hover{filter:brightness(1.05)}
.ggo-work-command-actions .ggo-work-voice{padding:14px 16px;min-width:118px}
.ggo-work-ai-status{min-height:18px;color:var(--ggo-muted);font-size:.84rem;font-weight:800}.ggo-work-ai-status.is-ok{color:#15803d}.ggo-work-ai-status.is-warn{color:#b45309}.ggo-work-ai-status.is-loading{color:#045CB4}
@media(max-width:520px){.ggo-work-command-actions{grid-template-columns:1fr}.ggo-work-command-actions .ggo-work-voice{width:100%;min-width:0}.ggo-work-fill{width:100%}}


/* Carta RAL GoGateOn */
.ggo-ral-tool{--ggo-gold:#DCA54A;--ggo-gold-dark:#B58839;--ggo-navy:#0F172A;--ggo-muted:#64748B;--ggo-bg:#F8FAFC;max-width:1180px;margin:0 auto;padding:10px;font-family:"Segoe UI",Roboto,Arial,sans-serif;color:var(--ggo-navy)}
.ggo-ral-hero{display:flex;gap:14px;align-items:center;background:linear-gradient(135deg,#fff,#fff8ec);border:1px solid rgba(220,165,74,.26);border-radius:24px;padding:16px;box-shadow:0 10px 28px rgba(15,23,42,.07);margin-bottom:14px}.ggo-ral-hero-icon{width:54px;height:54px;border-radius:19px;background:linear-gradient(135deg,#0F172A,#045CB4);color:#fff;display:flex;align-items:center;justify-content:center;box-shadow:0 12px 24px rgba(4,92,180,.22)}.ggo-ral-hero-icon .material-icons{font-size:31px}.ggo-ral-kicker{display:inline-flex;color:var(--ggo-gold-dark);font-weight:900;text-transform:uppercase;letter-spacing:.06em;font-size:.72rem}.ggo-ral-hero h2{margin:3px 0 4px;font-size:clamp(1.35rem,4vw,2.1rem);font-weight:950;line-height:1.05;color:var(--ggo-navy)}.ggo-ral-hero p{margin:0;color:var(--ggo-muted);font-size:.92rem;line-height:1.35}
.ggo-ral-searchbar{position:sticky;top:8px;z-index:4;display:flex;align-items:center;gap:8px;background:#fff;border:1px solid rgba(15,23,42,.08);border-radius:22px;padding:8px 10px;box-shadow:0 10px 26px rgba(15,23,42,.09);margin:14px 0}.ggo-ral-searchbar>.material-icons{color:var(--ggo-gold-dark);font-size:24px}.ggo-ral-searchbar input{flex:1;border:0!important;outline:0!important;box-shadow:none!important;background:transparent!important;font-size:1rem;font-weight:750;padding:12px 6px!important;color:#0F172A}.ggo-ral-searchbar button{border:0;background:#F1F5F9;border-radius:14px;width:38px;height:38px;display:flex;align-items:center;justify-content:center;color:#475569;cursor:pointer}
.ggo-ral-quick,.ggo-ral-filters{display:flex;gap:8px;overflow:auto;padding:2px 2px 10px;scrollbar-width:none}.ggo-ral-quick::-webkit-scrollbar,.ggo-ral-filters::-webkit-scrollbar{display:none}.ggo-ral-quick span{display:inline-flex;align-items:center;white-space:nowrap;font-weight:950;color:#0F172A;font-size:.83rem}.ggo-ral-quick button,.ggo-ral-filters button{white-space:nowrap;border:1px solid rgba(15,23,42,.10);background:#fff;color:#0F172A;border-radius:999px;padding:9px 13px;font-weight:900;box-shadow:0 4px 12px rgba(15,23,42,.05);cursor:pointer}.ggo-ral-filters button.is-active{background:#0F172A;color:#fff;border-color:#0F172A}.ggo-ral-status{color:#64748B;font-weight:850;font-size:.84rem;margin:4px 2px 12px}.ggo-ral-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}.ggo-ral-card{position:relative;text-align:left;border:1px solid rgba(15,23,42,.08);background:#fff;border-radius:20px;padding:0;overflow:hidden;box-shadow:0 6px 18px rgba(15,23,42,.06);cursor:pointer;transition:transform .16s ease,box-shadow .16s ease,border-color .16s ease}.ggo-ral-card:hover{transform:translateY(-2px);box-shadow:0 14px 28px rgba(15,23,42,.12);border-color:rgba(220,165,74,.5)}.ggo-ral-card-swatch{display:block;height:92px;border-bottom:1px solid rgba(15,23,42,.08)}.ggo-ral-card-info{display:block;padding:10px 11px 12px}.ggo-ral-card-info strong{display:block;font-weight:950;color:#0F172A;font-size:.95rem}.ggo-ral-card-info small{display:block;color:#475569;font-weight:800;font-size:.72rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin-top:2px;text-transform:uppercase}.ggo-ral-card-info em{display:block;color:#94A3B8;font-style:normal;font-family:monospace;font-size:.74rem;margin-top:5px}.ggo-ral-card-pill{position:absolute;top:8px;right:8px;background:rgba(255,255,255,.82);backdrop-filter:blur(8px);border:1px solid rgba(255,255,255,.6);border-radius:999px;padding:4px 8px;font-size:.65rem;font-weight:950;color:#0F172A}.ggo-ral-card-pill.is-dark{background:rgba(15,23,42,.55);color:#fff;border-color:rgba(255,255,255,.25)}
.ggo-ral-modal[hidden]{display:none!important}.ggo-ral-modal{position:fixed;inset:0;z-index:999999;display:flex;align-items:center;justify-content:center;padding:18px}.ggo-ral-modal-bg{position:absolute;inset:0}.ggo-ral-modal-card{position:relative;width:min(420px,100%);background:rgba(255,255,255,.82);backdrop-filter:blur(18px);border:1px solid rgba(255,255,255,.35);border-radius:30px;padding:14px;box-shadow:0 30px 80px rgba(15,23,42,.28);text-align:center}.ggo-ral-modal-close{position:absolute;top:12px;right:12px;width:42px;height:42px;border:0;border-radius:50%;background:rgba(15,23,42,.12);color:#0F172A;display:flex;align-items:center;justify-content:center;cursor:pointer;z-index:2}.ggo-ral-modal-sample{height:190px;border-radius:24px;border:1px solid rgba(15,23,42,.12);box-shadow:inset 0 0 0 1px rgba(255,255,255,.22);margin-bottom:14px}.ggo-ral-modal-info span{display:inline-flex;background:rgba(220,165,74,.14);color:#B58839;padding:5px 10px;border-radius:999px;font-weight:950;font-size:.7rem;text-transform:uppercase}.ggo-ral-modal-info h3{margin:10px 0 2px;font-size:2rem;font-weight:950;color:#0F172A}.ggo-ral-modal-info p{margin:0;color:#475569;text-transform:uppercase;font-weight:900;letter-spacing:.05em;font-size:.82rem}.ggo-ral-modal-info strong{display:block;margin:10px 0 0;color:#64748B;font-family:monospace;font-size:1rem}.ggo-ral-modal-actions{display:grid;grid-template-columns:1fr;gap:9px;margin-top:16px}.ggo-ral-modal-actions button{display:flex;align-items:center;justify-content:center;gap:8px;border:0;border-radius:16px;padding:13px 14px;font-weight:950;cursor:pointer;background:#0F172A;color:#fff}.ggo-ral-modal-actions button:nth-child(2){background:#25D366;color:#062814}.ggo-ral-modal-actions button:nth-child(3){background:#fff3dd;color:#8A5A09}.ggo-ral-modal-card small{display:block;margin-top:12px;color:#64748B;font-size:.72rem;line-height:1.25}.ggo-ral-toast{position:fixed;left:50%;bottom:24px;transform:translateX(-50%);z-index:1000000;background:#0F172A;color:#fff;border-radius:999px;padding:10px 16px;font-weight:900;box-shadow:0 14px 34px rgba(15,23,42,.25)}
@media(min-width:700px){.ggo-ral-grid{grid-template-columns:repeat(4,minmax(0,1fr))}.ggo-ral-modal-actions{grid-template-columns:1fr 1fr 1fr}.ggo-ral-card-swatch{height:110px}}@media(min-width:1024px){.ggo-ral-grid{grid-template-columns:repeat(6,minmax(0,1fr))}}@media(max-width:520px){.ggo-ral-hero{align-items:flex-start}.ggo-ral-hero-icon{width:46px;height:46px;min-width:46px;border-radius:16px}.ggo-ral-grid{gap:9px}.ggo-ral-card-swatch{height:78px}.ggo-ral-card-info{padding:9px}.ggo-ral-modal-sample{height:170px}}

/* v1.3.0: herramientas en pantalla completa tipo app */
html.ggo-tool-open, body.ggo-tool-open{overflow:hidden!important;touch-action:none;}
.ggo-tools-embedded.is-ggo-fullscreen{
  position:fixed!important;
  inset:0!important;
  z-index:999999!important;
  margin:0!important;
  padding:0 0 28px!important;
  border-radius:0!important;
  border:0!important;
  background:linear-gradient(180deg,#F8FAFC 0%,#EEF2F7 100%)!important;
  box-shadow:none!important;
  overflow:auto!important;
  -webkit-overflow-scrolling:touch;
  animation:ggoToolPageIn .18s ease-out;
}
.ggo-tools-embedded.is-ggo-fullscreen .ggo-tools-embedded-bar{
  position:sticky;top:0;z-index:20;
  padding:calc(10px + env(safe-area-inset-top)) 14px 10px!important;
  background:rgba(15,23,42,.96)!important;
  color:#fff!important;
  backdrop-filter:blur(12px);
  box-shadow:0 8px 26px rgba(15,23,42,.18);
}
.ggo-tools-embedded.is-ggo-fullscreen .ggo-tools-embedded-bar strong{color:#fff!important;font-size:1rem;}
.ggo-tools-embedded.is-ggo-fullscreen .ggo-tools-embedded-bar button{
  background:rgba(255,255,255,.12)!important;
  color:#fff!important;
  border:1px solid rgba(255,255,255,.18)!important;
}
.ggo-tools-embedded.is-ggo-fullscreen .ggo-tools-embedded-bar button:hover{background:rgba(220,165,74,.95)!important;color:#0F172A!important;}
.ggo-tools-embedded.is-ggo-fullscreen > .ggo-security-tool,
.ggo-tools-embedded.is-ggo-fullscreen > .ggo-photocells-tool,
.ggo-tools-embedded.is-ggo-fullscreen > .ggo-inverse-tool,
.ggo-tools-embedded.is-ggo-fullscreen > .ggo-error-tool,
.ggo-tools-embedded.is-ggo-fullscreen > .ggo-workorder-tool,
.ggo-tools-embedded.is-ggo-fullscreen > .ggo-ral-tool,
.ggo-tools-embedded.is-ggo-fullscreen > .ggo-annex-tool{
  max-width:1180px!important;
  margin:18px auto 0!important;
  padding-left:12px!important;
  padding-right:12px!important;
}
@media(max-width:640px){
  .ggo-tools-embedded.is-ggo-fullscreen > .ggo-security-tool,
  .ggo-tools-embedded.is-ggo-fullscreen > .ggo-photocells-tool,
  .ggo-tools-embedded.is-ggo-fullscreen > .ggo-inverse-tool,
  .ggo-tools-embedded.is-ggo-fullscreen > .ggo-error-tool,
  .ggo-tools-embedded.is-ggo-fullscreen > .ggo-workorder-tool,
  .ggo-tools-embedded.is-ggo-fullscreen > .ggo-ral-tool,
.ggo-tools-embedded.is-ggo-fullscreen > .ggo-annex-tool{margin-top:10px!important;padding-left:8px!important;padding-right:8px!important;}
  .ggo-tools-embedded.is-ggo-fullscreen .ggo-tools-embedded-bar{padding-left:10px!important;padding-right:10px!important;}
}
@keyframes ggoToolPageIn{from{opacity:.4;transform:translateY(14px)}to{opacity:1;transform:translateY(0)}}


/* GoGateOn Global Search override · fullscreen real */
.ggo-tools-hub.ggo-tools-page-active > .ggo-tools-head,
.ggo-tools-hub.ggo-tools-page-active > .ggo-tools-local-search,
.ggo-tools-hub.ggo-tools-page-active > .ggo-tools-category{
  visibility:hidden!important;
  pointer-events:none!important;
}
.ggo-tools-embedded.is-ggo-fullscreen{
  position:fixed!important;
  inset:0!important;
  z-index:2147483640!important;
  width:100vw!important;
  max-width:100vw!important;
  height:100dvh!important;
  min-height:100dvh!important;
  background:#F8FAFC!important;
  overflow-x:hidden!important;
  overflow-y:auto!important;
  border-radius:0!important;
  margin:0!important;
}
.ggo-tools-embedded.is-ggo-fullscreen .ggo-ral-grid{display:grid!important;}
.ggo-tools-embedded.is-ggo-fullscreen .ggo-ral-card-swatch{display:block!important;min-height:82px!important;}


/* GoGateOn Global Search v0.1.51 overrides */
.ggo-tools-embedded.is-ggo-fullscreen{padding-bottom:calc(90px + env(safe-area-inset-bottom))!important;}
.ggo-tools-embedded.is-ggo-fullscreen > .ggo-security-tool,
.ggo-tools-embedded.is-ggo-fullscreen > .ggo-photocells-tool,
.ggo-tools-embedded.is-ggo-fullscreen > .ggo-inverse-tool,
.ggo-tools-embedded.is-ggo-fullscreen > .ggo-error-tool,
.ggo-tools-embedded.is-ggo-fullscreen > .ggo-workorder-tool,
.ggo-tools-embedded.is-ggo-fullscreen > .ggo-ral-tool,
.ggo-tools-embedded.is-ggo-fullscreen > .ggo-annex-tool{padding-bottom:120px!important;}
.ggo-tools-embedded.is-ggo-fullscreen .ggo-ral-grid{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:10px!important;min-height:100px!important;}
.ggo-tools-embedded.is-ggo-fullscreen .ggo-ral-card{display:block!important;min-height:150px!important;}
.ggo-tools-embedded.is-ggo-fullscreen .ggo-ral-card-swatch{display:block!important;height:86px!important;min-height:86px!important;}


/* GoGateOn Global Search v0.1.52 · body portal fullscreen */
body > .ggo-tools-embedded.is-ggo-fullscreen{
  position:fixed!important;
  inset:0!important;
  z-index:2147483646!important;
  width:100vw!important;
  height:100dvh!important;
  max-height:100dvh!important;
  margin:0!important;
  padding:0!important;
  overflow:hidden!important;
  background:#F8FAFC!important;
}
body > .ggo-tools-embedded.is-ggo-fullscreen > .ggo-security-tool,
body > .ggo-tools-embedded.is-ggo-fullscreen > .ggo-photocells-tool,
body > .ggo-tools-embedded.is-ggo-fullscreen > .ggo-inverse-tool,
body > .ggo-tools-embedded.is-ggo-fullscreen > .ggo-error-tool,
body > .ggo-tools-embedded.is-ggo-fullscreen > .ggo-workorder-tool,
body > .ggo-tools-embedded.is-ggo-fullscreen > .ggo-ral-tool,
.ggo-tools-embedded.is-ggo-fullscreen > .ggo-annex-tool{
  height:calc(100dvh - 56px)!important;
  max-height:calc(100dvh - 56px)!important;
  overflow-y:auto!important;
  overflow-x:hidden!important;
  padding-bottom:140px!important;
}
body > .ggo-tools-embedded.is-ggo-fullscreen .ggo-ral-grid{
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  min-height:600px!important;
  padding-bottom:140px!important;
}
body > .ggo-tools-embedded.is-ggo-fullscreen .ggo-ral-card-swatch{
  display:block!important;
  height:86px!important;
  min-height:86px!important;
}


/* GoGateOn v1.3.4 · Asistente Anexo 85635 con capturas */
.ggo-annex-tool{padding:12px;max-width:1120px;margin:0 auto;color:var(--ggo-text,#334155);font-family:inherit;}
.ggo-annex-hero .ggo-sec-hero-icon{background:linear-gradient(135deg,#0F172A,#DCA54A);box-shadow:0 10px 24px rgba(15,23,42,.18)}
.ggo-annex-mini-status{display:flex;align-items:center;gap:8px;margin:12px 0;padding:10px 12px;border-radius:16px;background:#0F172A;color:#fff;font-size:.86rem;line-height:1.25;box-shadow:0 8px 22px rgba(15,23,42,.10)}
.ggo-annex-mini-status .material-icons{font-size:20px;color:#DCA54A}.ggo-annex-mini-status strong{color:#DCA54A}
.ggo-annex-screen{display:none;background:#fff;border:1px solid rgba(15,23,42,.10);border-radius:24px;padding:16px;box-shadow:0 9px 28px rgba(15,23,42,.07);animation:ggoSecIn .22s ease}.ggo-annex-screen.is-active{display:block}
.ggo-annex-choice-grid{display:grid;grid-template-columns:1fr;gap:10px}.ggo-annex-big-choice{width:100%;border:1px solid rgba(15,23,42,.10);background:#fff;border-radius:20px;padding:15px;text-align:left;display:grid;grid-template-columns:46px 1fr;column-gap:12px;align-items:center;cursor:pointer;transition:transform .15s ease,box-shadow .15s ease,border-color .15s ease,background .15s ease}.ggo-annex-big-choice:hover,.ggo-annex-big-choice.is-active{transform:translateY(-2px);box-shadow:0 10px 22px rgba(15,23,42,.09);border-color:rgba(220,165,74,.55);background:#FFFDF8}.ggo-annex-big-choice .material-icons{grid-row:1/3;width:46px;height:46px;border-radius:16px;display:flex;align-items:center;justify-content:center;background:#FFF2D9;color:#B48636;font-size:27px}.ggo-annex-big-choice strong{color:#0F172A;font-size:1rem;font-weight:950;line-height:1.1}.ggo-annex-big-choice small{color:#64748B;font-size:.82rem;line-height:1.25;margin-top:3px}
.ggo-annex-door-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:9px}.ggo-annex-door-grid button{min-height:92px;border:1px solid rgba(15,23,42,.10);background:#fff;border-radius:18px;padding:12px;cursor:pointer;display:flex;flex-direction:column;align-items:flex-start;justify-content:space-between;text-align:left;box-shadow:0 6px 16px rgba(15,23,42,.04);transition:.15s ease}.ggo-annex-door-grid button:hover,.ggo-annex-door-grid button.is-active{border-color:#DCA54A;background:#FFF8EC;transform:translateY(-2px)}.ggo-annex-door-grid span{font-size:1.7rem}.ggo-annex-door-grid strong{color:#0F172A;font-size:.88rem;line-height:1.12}
.ggo-annex-flow-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}.ggo-annex-flow-grid>div{border:1px solid rgba(15,23,42,.10);border-radius:18px;background:#F8FAFC;padding:12px}.ggo-annex-flow-grid strong{display:block;margin-bottom:8px;color:#0F172A}.ggo-annex-flow-grid button{width:100%;margin:4px 0;border:1px solid rgba(15,23,42,.10);background:#fff;border-radius:999px;padding:10px 12px;font-weight:900;color:#0F172A;cursor:pointer}.ggo-annex-flow-grid button.is-active{background:#DCA54A;border-color:#DCA54A;color:#fff}.ggo-annex-selected-flow{margin:12px 0;padding:10px 12px;border-radius:14px;background:#FFF8EC;border:1px solid rgba(220,165,74,.25);color:#0F172A;font-weight:850}
.ggo-annex-checks{display:grid;gap:9px}.ggo-annex-checks label{display:flex;gap:9px;align-items:flex-start;background:#F8FAFC;border:1px solid rgba(15,23,42,.08);border-radius:16px;padding:11px;color:#0F172A;font-weight:850;font-size:.9rem}.ggo-annex-checks input{margin-top:2px;accent-color:#DCA54A}
.ggo-annex-primary,.ggo-annex-actions button,.ggo-annex-back,.ggo-annex-link{border:0;border-radius:999px;padding:10px 13px;font-weight:900;cursor:pointer;display:inline-flex;align-items:center;justify-content:center;gap:7px}.ggo-annex-primary{margin-top:12px;background:#DCA54A;color:#fff}.ggo-annex-primary:disabled{opacity:.45;cursor:not-allowed}.ggo-annex-back,.ggo-annex-link,.ggo-annex-actions button:not(.ggo-annex-primary){margin-top:10px;background:#F1F5F9;color:#0F172A}.ggo-annex-actions{display:flex;flex-wrap:wrap;gap:9px;margin-top:14px}.ggo-annex-actions .ggo-annex-primary{margin-top:10px}.ggo-annex-link .material-icons,.ggo-annex-actions .material-icons,.ggo-annex-back .material-icons,.ggo-annex-primary .material-icons{font-size:18px}
.ggo-annex-result{border-radius:22px;border:1px solid rgba(220,165,74,.25);background:linear-gradient(135deg,#FFFCF5,#fff);padding:16px}.ggo-annex-result-top{display:flex;gap:12px;align-items:flex-start}.ggo-annex-kicker{display:block;color:#B48636;font-size:.73rem;font-weight:950;text-transform:uppercase;letter-spacing:.08em;margin-bottom:4px}.ggo-annex-result h3{margin:0;color:#0F172A;font-size:1.16rem;font-weight:950;line-height:1.15}.ggo-annex-result p{margin:6px 0 0;color:#334155;font-size:.9rem;line-height:1.42}.ggo-annex-simple-card{margin-top:13px;padding:13px;border-radius:18px;background:#F8FAFC;border:1px solid rgba(15,23,42,.08)}.ggo-annex-simple-card strong{display:block;color:#0F172A;margin-bottom:6px}.ggo-annex-simple-card ul{margin:0;padding-left:19px;color:#334155;font-size:.88rem;line-height:1.45}.ggo-annex-simple-card li+li{margin-top:4px}.ggo-annex-pill-row{display:flex;flex-wrap:wrap;gap:8px;margin-top:12px}.ggo-annex-pill-row span{display:inline-flex;gap:4px;align-items:center;border:1px solid rgba(15,23,42,.08);background:#fff;border-radius:999px;padding:7px 10px;color:#0F172A;font-size:.78rem;font-weight:850}.ggo-annex-pill-row b{color:#B48636}.ggo-annex-warning{margin-top:12px;border-radius:16px;background:#FFF7ED;border:1px solid rgba(245,158,11,.22);padding:11px;color:#7C2D12;font-size:.82rem;line-height:1.36}.ggo-annex-warning strong{color:#9A3412}
.ggo-annex-shot-grid{display:grid;grid-template-columns:1fr;gap:14px;margin-top:14px}.ggo-annex-shot-grid.one{grid-template-columns:1fr}.ggo-annex-shot{margin:0;border:1px solid rgba(15,23,42,.12);border-radius:18px;background:#fff;overflow:hidden;box-shadow:0 8px 22px rgba(15,23,42,.07)}.ggo-annex-shot figcaption{display:flex;align-items:flex-start;justify-content:space-between;gap:10px;padding:10px 12px;background:#0F172A;color:#fff}.ggo-annex-shot figcaption strong{font-size:.86rem;line-height:1.2}.ggo-annex-shot figcaption span{color:#FDE7BE;font-size:.76rem;font-weight:850;text-align:right}.ggo-annex-shot a{display:block;background:#F8FAFC;overflow:auto}.ggo-annex-shot img{display:block;width:100%;height:auto;min-width:760px}.ggo-annex-shot a:after{content:'Toca para ampliar';display:block;padding:8px 12px;color:#64748B;font-size:.76rem;font-weight:850;background:#fff;border-top:1px solid rgba(15,23,42,.08)}
.ggo-annex-pdf-panel{margin-top:14px;border-radius:22px;border:1px solid rgba(15,23,42,.14);background:#fff;box-shadow:0 12px 28px rgba(15,23,42,.10);overflow:hidden}.ggo-annex-pdf-head{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:10px 12px;background:#0F172A;color:#fff}.ggo-annex-pdf-head strong{display:inline-flex;align-items:center;gap:7px}.ggo-annex-pdf-head .material-icons{font-size:18px;color:#DCA54A}.ggo-annex-pdf-head a,.ggo-annex-pdf-head button{border:0;border-radius:999px;background:#fff;color:#0F172A;text-decoration:none;padding:8px 10px;font-weight:900;cursor:pointer;margin-left:5px}.ggo-annex-pdf-panel iframe{display:block;width:100%;height:min(72dvh,760px);border:0;background:#E2E8F0}.ggo-annex-pdf-panel small{display:block;padding:10px 12px;color:#64748B;line-height:1.35}.ggo-annex-toast{position:fixed;left:50%;bottom:22px;transform:translateX(-50%);background:#0F172A;color:#fff;padding:10px 14px;border-radius:999px;font-size:.85rem;font-weight:850;z-index:2147483647;box-shadow:0 10px 26px rgba(0,0,0,.22)}
@media(min-width:720px){.ggo-annex-choice-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.ggo-annex-door-grid{grid-template-columns:repeat(4,minmax(0,1fr))}.ggo-annex-screen{padding:20px}}
@media(max-width:520px){.ggo-annex-tool{padding:10px}.ggo-annex-door-grid{grid-template-columns:1fr 1fr}.ggo-annex-flow-grid{grid-template-columns:1fr}.ggo-annex-actions button,.ggo-annex-primary,.ggo-annex-back,.ggo-annex-link{width:100%}.ggo-annex-result-top{align-items:flex-start}.ggo-annex-pdf-head{display:block}.ggo-annex-pdf-head div{margin-top:9px;display:flex;gap:6px}.ggo-annex-pdf-head a,.ggo-annex-pdf-head button{margin-left:0;flex:1}.ggo-annex-pdf-panel iframe{height:65dvh}}
body > .ggo-tools-embedded.is-ggo-fullscreen > .ggo-annex-tool{height:calc(100dvh - 56px)!important;max-height:calc(100dvh - 56px)!important;overflow-y:auto!important;overflow-x:hidden!important;padding-bottom:140px!important;}

/* GoGateOn v1.3.4 · Anexo 85635 guiado con resultado literal */
.ggo-annex-door-grid button small{display:block;margin-top:4px;color:#64748B;font-size:.74rem;line-height:1.2;font-weight:800}.ggo-annex-summary{display:flex;gap:12px;align-items:center;margin-top:14px;padding:12px;border-radius:18px;background:#0F172A;color:#fff}.ggo-annex-summary>span{width:46px;height:46px;border-radius:16px;background:#DCA54A;color:#fff;display:flex;align-items:center;justify-content:center;font-weight:950;font-size:1.2rem}.ggo-annex-summary strong{display:block;color:#fff;font-weight:950}.ggo-annex-summary small{display:block;color:#CBD5E1;margin-top:2px}.ggo-annex-result-list{display:grid;gap:10px;margin-top:14px}.ggo-annex-row-card{display:grid;grid-template-columns:38px 1fr;gap:10px;padding:12px;border:1px solid rgba(15,23,42,.09);background:#fff;border-radius:18px;box-shadow:0 6px 16px rgba(15,23,42,.04)}.ggo-annex-row-num{width:34px;height:34px;border-radius:12px;background:#FFF2D9;color:#B48636;display:flex;align-items:center;justify-content:center;font-weight:950}.ggo-annex-row-card h4{margin:0;color:#0F172A;font-size:.94rem;line-height:1.22;font-weight:950}.ggo-annex-row-card p{margin:6px 0 0!important;color:#334155;font-size:.84rem;line-height:1.4}.ggo-annex-row-card p b{color:#0F172A}.ggo-annex-quote-grid{display:grid;gap:12px;margin-top:14px}.ggo-annex-quote-grid article{padding:14px;border-radius:18px;border:1px solid rgba(15,23,42,.09);background:#fff;box-shadow:0 7px 18px rgba(15,23,42,.04)}.ggo-annex-quote-grid article strong{display:block;color:#B48636;margin-bottom:7px;font-size:.84rem;text-transform:uppercase;letter-spacing:.04em}.ggo-annex-quote-grid article p{margin:0!important;color:#0F172A;font-size:.9rem;line-height:1.45}.ggo-annex-notes{margin-top:14px;padding:13px;border-radius:18px;background:#F8FAFC;border:1px solid rgba(15,23,42,.08)}.ggo-annex-notes strong{display:block;color:#0F172A;font-weight:950;margin-bottom:7px}.ggo-annex-notes p{margin:7px 0 0!important;color:#475569;font-size:.8rem;line-height:1.38}.ggo-annex-notes p b{color:#0F172A}.ggo-annex-capture-title{display:flex;gap:10px;align-items:center;margin-top:16px;padding:12px;border-radius:16px;background:#FFF8EC;border:1px solid rgba(220,165,74,.22);color:#0F172A}.ggo-annex-capture-title .material-icons{color:#B48636}.ggo-annex-capture-title strong{display:block;font-weight:950}.ggo-annex-capture-title small{display:block;color:#64748B;margin-top:2px;font-size:.78rem;line-height:1.25}.ggo-annex-shot img{min-width:920px}.ggo-annex-shot a{max-height:72dvh;overflow:auto}.ggo-annex-result .ggo-annex-pill-row{margin-top:14px}
@media(min-width:900px){.ggo-annex-quote-grid{grid-template-columns:1fr 1fr}.ggo-annex-result-list{grid-template-columns:1fr 1fr}.ggo-annex-shot-grid{grid-template-columns:1fr}.ggo-annex-shot a{max-height:780px}}
@media(max-width:520px){.ggo-annex-row-card{grid-template-columns:32px 1fr;padding:10px}.ggo-annex-row-num{width:30px;height:30px}.ggo-annex-row-card h4{font-size:.88rem}.ggo-annex-row-card p{font-size:.8rem}.ggo-annex-summary{align-items:flex-start}.ggo-annex-shot img{min-width:820px}}


/* v0.1.59 · Acciones unificadas Carta RAL / Errores */
.ggo-ral-modal-actions.ggo-ral-unified-actions{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:9px!important;margin-top:16px!important}
.ggo-ral-modal-actions.ggo-ral-unified-actions a,
.ggo-ral-modal-actions.ggo-ral-unified-actions button{display:flex!important;align-items:center!important;justify-content:center!important;gap:7px!important;border:1px solid rgba(220,165,74,.42)!important;border-radius:16px!important;min-height:46px!important;padding:10px 11px!important;font-weight:950!important;text-decoration:none!important;cursor:pointer!important;background:#fff!important;color:#0F172A!important;font-size:.82rem!important;box-shadow:0 8px 18px rgba(15,23,42,.08)!important}
.ggo-ral-modal-actions.ggo-ral-unified-actions a:first-child{background:linear-gradient(135deg,#F8D98A,#DCA54A)!important;color:#0F172A!important;border-color:rgba(180,134,54,.55)!important}
.ggo-ral-modal-actions.ggo-ral-unified-actions [data-ggo-unified-save]{min-width:46px!important;color:#B48636!important;font-size:0!important}
.ggo-ral-modal-actions.ggo-ral-unified-actions [data-ggo-unified-save] .material-icons{font-size:21px!important;color:#B48636!important}
.ggo-ral-modal-actions.ggo-ral-unified-actions [data-ggo-unified-save].is-saved{background:linear-gradient(135deg,#FFF4CF,#F8D98A)!important}
.ggo-ral-modal-actions.ggo-ral-unified-actions .material-icons{font-size:18px!important;color:inherit!important}
.ggo-error-actions [data-ggo-unified-save]{width:40px!important;min-width:40px!important;padding:8px!important;justify-content:center!important;color:#B48636!important}
.ggo-error-actions [data-ggo-unified-save].is-saved{background:linear-gradient(135deg,#FFF4CF,#F8D98A)!important}
@media(max-width:620px){.ggo-ral-modal-actions.ggo-ral-unified-actions{grid-template-columns:repeat(2,minmax(0,1fr))!important}.ggo-ral-modal-actions.ggo-ral-unified-actions [data-ggo-unified-save]{font-size:.82rem!important}.ggo-ral-modal-actions.ggo-ral-unified-actions [data-ggo-unified-save]::after{content:'Favorito';font-family:inherit;font-size:.82rem;margin-left:6px;color:#0F172A}}
