/* INICIO SLIDER  */
/* NOTICIAS */
/* DETALLES DE NOTICIAS */
/* CONTACTO PUBLICO */
/* UNETE A NOSOTROS */
/* TERMINOS Y CONDICIONES */
/* POLITICAS DE PRIVACIDAD */
/* POLITICAS COOKIES */
/* DESCARGO DE RESPONSABILIDAD */
/* DESCARGO DE RESPONSABILIDAD */
/* ===========================================================================================================
                                          INICIO SLIDER 
=========================================================================================================== */
.hoslider-wrap {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 16px;
    font-family: var(--font-sans);
    box-shadow: 0 40px 120px rgba(0, 0, 0, .45);
    isolation: isolate;
}

.hoslider-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

.hoslider-slide.hoslider-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 3;
    animation: slideReveal 1.1s cubic-bezier(.76, 0, .17, 1) forwards;
}

.hoslider-slide.hoslider-leaving {
    opacity: 1;
    pointer-events: none;
    z-index: 2;
    animation: slideExit 1.1s cubic-bezier(.76, 0, .17, 1) forwards;
}

@keyframes slideReveal {
    0% {
        clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
        opacity: 1;
    }

    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        opacity: 1;
    }
}

@keyframes slideExit {
    0% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        opacity: 1;
    }

    100% {
        clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
        opacity: 1;
    }
}


.hoslider-img {
    position: absolute;
    inset: -40px;
    background-size: cover;
    background-position: center;
    filter: brightness(.50);
    transform: scale(1.10);
    transition: transform 9s ease;
}

.hoslider-slide.hoslider-active .hoslider-img {
    transform: scale(1);
}

.hoslider-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(3, 88, 140, .88) 0%, rgba(3, 88, 140, .28) 55%, transparent 100%),
        linear-gradient(to top, rgba(0, 0, 0, .50) 0%, transparent 50%);
}

.hoslider-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 64px 72px;
    z-index: 2;
}

.hoslider-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.8vw, 3.5rem);
    font-weight: 900;
    color: var(--colortext2);
    line-height: 1.12;
    max-width: 620px;
    margin: 0 0 20px;
}

.hoslider-title .word {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    margin-right: .28em;
}

.hoslider-title .word-inner {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%) skewY(6deg);
}

.hoslider-slide.hoslider-active .hoslider-title .word-inner {
    animation: wordUp .65s cubic-bezier(.22, 1, .36, 1) forwards;
}

@keyframes wordUp {
    to {
        opacity: 1;
        transform: translateY(0) skewY(0deg);
    }
}

.hoslider-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, .82);
    line-height: 1.8;
    max-width: 500px;
    margin: 0;
}

.hoslider-desc .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(14px);
}

.hoslider-desc .char-space {
    display: inline-block;
    width: .28em;
}

.hoslider-slide.hoslider-active .hoslider-desc .char {
    animation: charFade .35s ease forwards;
}

@keyframes charFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Flash radial */
.hoslider-flash {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 42% 58%,
            rgba(132, 217, 4, .28) 0%,
            rgba(3, 88, 140, .22) 45%,
            transparent 100%);
    z-index: 120;
    pointer-events: none;
    opacity: 0;
    animation: fx-flash .75s ease forwards;
}

@keyframes fx-flash {
    0% {
        opacity: 0;
    }

    18% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* Blade – línea de luz vertical */
.hoslider-blade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 5px;
    left: 0;
    z-index: 130;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(132, 217, 4, .0) 8%,
            #d4ff60 38%,
            #ffffff 50%,
            #d4ff60 62%,
            rgba(132, 217, 4, .0) 92%,
            transparent 100%);
    filter: blur(.8px);
    box-shadow:
        0 0 14px 4px rgba(132, 217, 4, .85),
        0 0 36px 10px rgba(132, 217, 4, .3);
    animation: fx-blade 1.1s cubic-bezier(.76, 0, .17, 1) forwards;
}

@keyframes fx-blade {
    0% {
        left: -1%;
        opacity: 0;
    }

    4% {
        opacity: 1;
    }

    92% {
        opacity: 1;
    }

    100% {
        left: 101%;
        opacity: 0;
    }
}

/* Scan line horizontal */
.hoslider-scan {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    top: 45%;
    z-index: 125;
    pointer-events: none;
    background: linear-gradient(to right,
            transparent 0%,
            rgba(132, 217, 4, .7) 20%,
            rgba(255, 255, 255, .95) 50%,
            rgba(132, 217, 4, .7) 80%,
            transparent 100%);
    box-shadow: 0 0 22px 5px rgba(132, 217, 4, .55);
    opacity: 0;
    transform-origin: left;
    transform: scaleX(0);
    animation: fx-scan 1s ease forwards;
}

@keyframes fx-scan {
    0% {
        transform: scaleX(0);
        transform-origin: left;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    50% {
        transform: scaleX(1);
        transform-origin: left;
        opacity: 1;
    }

    51% {
        transform-origin: right;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: scaleX(0);
        transform-origin: right;
        opacity: 0;
    }
}

.hoslider-counter {
    position: absolute;
    top: 36px;
    right: 72px;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .55);
    z-index: 10;
    letter-spacing: 3px;
}

.hoslider-counter strong {
    color: var(--secondary-color);
    font-size: 1.9rem;
}

.hoslider-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(to bottom, var(--secondary-color), var(--tercer-color));
    z-index: 10;
}

.hoslider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .22);
    backdrop-filter: blur(10px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all .3s;
    padding: 0;
}

.hoslider-arrow svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
}

.hoslider-arrow:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--text-color);
    box-shadow: 0 0 28px rgba(132, 217, 4, .55);
    transform: translateY(-50%) scale(1.08);
}

.hoslider-arrow-left {
    left: 28px;
}

.hoslider-arrow-right {
    right: 28px;
}

.hoslider-thumbs {
    position: absolute;
    bottom: 30px;
    left: 72px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hoslider-thumb {
    width: 72px;
    height: 46px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .35s;
    opacity: .55;
}

.hoslider-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    display: block;
}

.hoslider-thumb.hoslider-active-thumb {
    border-color: var(--secondary-color);
    opacity: 1;
    box-shadow: 0 0 16px rgba(132, 217, 4, .55);
}

.hoslider-thumb:hover {
    opacity: .88;
}

.hoslider-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(to right, var(--secondary-color), var(--tercer-color));
    width: 0%;
    z-index: 20;
    box-shadow: 0 0 10px rgba(132, 217, 4, .65);
}

.hoslider-arrow:focus,
.hoslider-thumb:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .hoslider-wrap {
        height: 500px;
        border-radius: 12px;
    }

    .hoslider-content {
        padding: 40px 28px;
    }

    .hoslider-counter,
    .hoslider-thumbs {
        display: none;
    }

    .hoslider-arrow {
        width: 44px;
        height: 44px;
    }

    .hoslider-arrow-left {
        left: 16px;
    }

    .hoslider-arrow-right {
        right: 16px;
    }
}

@media (max-width: 480px) {
    .hoslider-wrap {
        height: 440px;
    }

    .hoslider-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
    }

    .hoslider-desc {
        font-size: .92rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hoslider-slide.hoslider-active {
        animation: none !important;
        opacity: 1;
        clip-path: none !important;
    }

    .hoslider-slide.hoslider-leaving {
        animation: none !important;
        opacity: 0;
    }

    .hoslider-title .word-inner,
    .hoslider-desc .char {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .hoslider-flash,
    .hoslider-blade,
    .hoslider-scan {
        animation: none !important;
        display: none;
    }

    .hoslider-img {
        animation: none !important;
        transition: none !important;
        transform: scale(1) !important;
    }
}

/* ===========================================================================================================
                              
=========================================================================================================== */

/* ===========================================================================================================
                                            NOTICIAS
=========================================================================================================== */
.honnoti-hero {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  background: linear-gradient(135deg, #021f33 0%, var(--primary-color) 45%, #0476bf 100%);
}

.honnoti-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1559027615-cd4628902d4a?w=1400&q=80') center / cover no-repeat;
  opacity: .12;
  animation: honnoHeroZoom 20s ease-in-out infinite alternate;
}

@keyframes honnoHeroZoom {
  from { transform: scale(1.02); }
  to   { transform: scale(1.10); }
}

.honnoti-hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.honnoti-hero-shapes::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(132, 217, 4, .15);
  animation: honnoRotate 30s linear infinite;
}

.honnoti-hero-shapes::after {
  content: '';
  position: absolute;
  right: 40px;
  top: 40px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .08);
  animation: honnoRotate 20s linear infinite reverse;
}

@keyframes honnoRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.honnoti-hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 5% 60%, rgba(132, 217, 4, .18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 90% 10%, rgba(4, 118, 191, .25) 0%, transparent 50%);
}

.honnoti-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--background-color), transparent);
}

.honnoti-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  padding: 0 72px;
}

.honnoti-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(132, 217, 4, .12);
  color: var(--secondary-color);
  border: 1px solid rgba(132, 217, 4, .28);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 22px;
  animation: honnoSlideUp .9s cubic-bezier(.22, 1, .36, 1) both;
  backdrop-filter: blur(8px);
}

.honnoti-hero-tag-dot {
  width: 6px;
  height: 6px;
  background: var(--secondary-color);
  border-radius: 50%;
  animation: honnoPulse 1.5s ease-in-out infinite;
}

@keyframes honnoPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.6); }
}

.honnoti-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4.5vw, 54px);
  font-weight: 800;
  color: var(--colortext2);
  line-height: 1.12;
  max-width: 700px;
  margin-bottom: 18px;
  animation: honnoSlideUp .9s .15s cubic-bezier(.22, 1, .36, 1) both;
}

.honnoti-hero-title span {
  color: var(--secondary-color);
  position: relative;
}

.honnoti-hero-title span::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-color), transparent);
  border-radius: 2px;
}

.honnoti-hero-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, .6);
  font-size: 13px;
  animation: honnoSlideUp .9s .3s cubic-bezier(.22, 1, .36, 1) both;
}

.honnoti-hero-dot {
  width: 3px;
  height: 3px;
  background: rgba(255, 255, 255, .3);
  border-radius: 50%;
}

.honnoti-hero-btn {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--secondary-color);
  color: #0f1923;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  border-radius: 100px;
  transition: all .35s cubic-bezier(.22, 1, .36, 1);
  animation: honnoSlideUp .9s .45s cubic-bezier(.22, 1, .36, 1) both;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 4px 24px rgba(132, 217, 4, .35);
  text-decoration:none;
}

.honnoti-hero-btn:hover {
  background: var(--colortext2);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(132, 217, 4, .4);
}

.honnoti-hero-btn svg {
  transition: transform .3s;
}

.honnoti-hero-btn:hover svg {
  transform: translateX(5px);
}

@keyframes honnoSlideUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── LAYOUT WRAP ───────────────────────────────────────── */
.honnoti-wrap {
  max-width: 1340px;
  margin: 0 auto;
  padding: 52px 36px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 52px;
  align-items: start;
}

/* ── SECTION LABEL ─────────────────────────────────────── */
.honnoti-sec-lbl {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.honnoti-sec-bar {
  width: 4px;
  height: 26px;
  background: linear-gradient(180deg, var(--secondary-color), var(--tercer-color));
  border-radius: 4px;
  flex-shrink: 0;
}

.honnoti-sec-lbl h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -.3px;
}

/* ── CATEGORY BUTTONS ──────────────────────────────────── */
.honnoti-cat-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.honnoti-cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 15px;
  background: var(--colortext2);
  border: 1.5px solid #e2e8f0;
  color: #6b7a8d;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .5px;
  cursor: pointer;
  transition: all .25s cubic-bezier(.22, 1, .36, 1);
  border-radius: 100px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 2px 8px rgba(3, 88, 140, .07);
}

.honnoti-cat-btn:hover,
.honnoti-cat-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--colortext2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(3, 88, 140, .13);
}

/* ── FEATURED GRID ─────────────────────────────────────── */
.honnoti-feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 44px;
}

/* ── VERTICAL CARD ─────────────────────────────────────── */
.honnoti-card {
  background: var(--colortext2);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(3, 88, 140, .07);
  cursor: pointer;
  transition: all .4s cubic-bezier(.22, 1, .36, 1);
  border: 1px solid #e2e8f0;
  position: relative;
}

.honnoti-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(3, 88, 140, .18);
  border-color: rgba(3, 88, 140, .12);
}

.honnoti-card-img {
  position: relative;
  overflow: hidden;
  height: 210px;
}

.honnoti-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.22, 1, .36, 1);
  display: block;
}

.honnoti-card:hover .honnoti-card-img img {
  transform: scale(1.08);
}

.honnoti-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 25, 35, .4) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s;
}

.honnoti-card:hover .honnoti-card-img::after {
  opacity: 1;
}

.honnoti-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(3, 88, 140, .88);
  color: var(--colortext2);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .15);
}

.honnoti-card-badge.g {
  background: rgba(116, 191, 4, .92);
  color: #0f1923;
}

.honnoti-card-body {
  padding: 22px;
}

.honnoti-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 11px;
  font-size: 11px;
  color: #6b7a8d;
}

.honnoti-card-author {
  color: var(--primary-color);
  font-weight: 600;
}

.honnoti-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16.5px;
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.4;
  margin-bottom: 11px;
  transition: color .25s;
}

.honnoti-card:hover .honnoti-card-title {
  color: var(--primary-color);
}

.honnoti-card-exc {
  font-size: 13px;
  color: #6b7a8d;
  line-height: 1.7;
  margin-bottom: 18px;
}

.honnoti-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.honnoti-card-foot a{
    text-decoration:none;
}
.honnoti-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: .8px;
  transition: all .25s;
  padding: 6px 0;
  position: relative;
}

.honnoti-card-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--secondary-color);
  transition: width .3s;
}

.honnoti-card:hover .honnoti-card-link::after {
  width: 100%;
}

.honnoti-card:hover .honnoti-card-link {
  gap: 10px;
}

.honnoti-card-time {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #b0bec5;
}

/* ── HORIZONTAL CARD ───────────────────────────────────── */
.honnoti-hcard {
  background: var(--colortext2);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(3, 88, 140, .07);
  cursor: pointer;
  transition: all .4s cubic-bezier(.22, 1, .36, 1);
  display: flex;
  margin-bottom: 16px;
  border: 1px solid #e2e8f0;
}

.honnoti-hcard:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 32px rgba(3, 88, 140, .13);
  border-color: rgba(3, 88, 140, .15);
}

.honnoti-hcard-img-wrap {
  width: 190px;
  height: 145px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.honnoti-hcard-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.22, 1, .36, 1);
  display: block;
}

.honnoti-hcard:hover .honnoti-hcard-img {
  transform: scale(1.08);
}

.honnoti-hcard-img-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--secondary-color), transparent);
  opacity: 0;
  transition: opacity .3s;
}

.honnoti-hcard:hover .honnoti-hcard-img-wrap::after {
  opacity: 1;
}

.honnoti-hcard-body {
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.honnoti-hcard-badge {
  display: inline-block;
  background: rgba(3, 88, 140, .07);
  color: var(--primary-color);
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 9px;
  width: fit-content;
  border: 1px solid rgba(3, 88, 140, .1);
}

.honnoti-hcard-badge.g {
  background: rgba(132, 217, 4, .1);
  color: var(--tercer-color);
  border-color: rgba(116, 191, 4, .2);
}

.honnoti-hcard-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.45;
  transition: color .25s;
}

.honnoti-hcard:hover .honnoti-hcard-title {
  color: var(--primary-color);
}

.honnoti-hcard-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 11px;
  font-size: 11px;
  color: #6b7a8d;
}

/* ── DIVIDER ───────────────────────────────────────────── */
.honnoti-divider {
  height: 1px;
  background: linear-gradient(to right, var(--secondary-color) 50px, #e2e8f0 50px);
  margin: 44px 0;
  opacity: .7;
}

/* ── SIDEBAR ───────────────────────────────────────────── */
.honnoti-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.honnoti-widget-box {
  background: var(--colortext2);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 2px 8px rgba(3, 88, 140, .07);
}

/* ── RECENT RECORDS ────────────────────────────────────── */
.honnoti-rcrd {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #eef2f7;
  cursor: pointer;
  transition: all .3s cubic-bezier(.22, 1, .36, 1);
  text-decoration:none;
}

.honnoti-rcrd:hover {
  transform: translateX(5px);
}

.honnoti-rcrd:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.honnoti-rcrd-img {
  width: 78px;
  height: 62px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1);
  box-shadow: 0 2px 8px rgba(3, 88, 140, .07);
}

.honnoti-rcrd:hover .honnoti-rcrd-img {
  transform: scale(1.05);
}

.honnoti-rcrd-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.honnoti-rcrd-cat {
  font-size: 9.5px;
  font-weight: 700;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.honnoti-rcrd-title {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-color);
  line-height: 1.45;
  transition: color .25s;
}

.honnoti-rcrd:hover .honnoti-rcrd-title {
  color: var(--primary-color);
}

.honnoti-rcrd-date {
  font-size: 10.5px;
  color: #b0bec5;
}

/* ── PAGINATION ────────────────────────────────────────── */
.honnoti-pagi {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 44px;
}

.honnoti-pgbtn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #e2e8f0;
  background: var(--colortext2);
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 10px;
  transition: all .25s cubic-bezier(.22, 1, .36, 1);
  font-family: 'Inter', sans-serif;
  box-shadow: 0 2px 8px rgba(3, 88, 140, .07);
}

.honnoti-pgbtn:hover,
.honnoti-pgbtn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--colortext2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(3, 88, 140, .13);
}

/* ── SCROLL REVEAL ─────────────────────────────────────── */
.honnoti-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1);
  text-decoration:none;
}

.honnoti-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .honnoti-wrap { grid-template-columns: 1fr; }
  .honnoti-feat-grid { grid-template-columns: 1fr; }
  .honnoti-hero-inner { padding: 0 40px; }
}

@media (max-width: 600px) {
  .honnoti-hcard { flex-direction: column; }
  .honnoti-hcard-img-wrap { width: 100%; height: 190px; }
  .honnoti-hero-inner { padding: 0 24px; }
  .honnoti-wrap { padding: 36px 20px; }
}
/* ===========================================================================================================
                              DETALLES DE NOTICIAS
=========================================================================================================== */

    /* ── BREADCRUMB BAR ────────────────────────────────── */
    .detnohon-breadbar {
      background: var(--colortext2);
      border-bottom: 1px solid #e2e8f0;
      padding: 0 72px;
      height: 48px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      color: #6b7a8d;
      animation: detnohonFadeIn .5s ease both;
    }

    .detnohon-breadbar a {
      color: var(--primary-color);
      text-decoration: none;
      font-weight: 600;
      transition: color .2s;
    }
    .detnohon-breadbar a:hover { color: var(--secondary-color); }

    .detnohon-bread-sep {
      color: #cbd5e0;
    }

    .detnohon-bread-current {
      color: #94a3b8;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 320px;
    }

    /* ── HERO ARTICLE ──────────────────────────────────── */
    .detnohon-hero {
      position: relative;
      width: 100%;
      height: 560px;
      overflow: hidden;
    }

    .detnohon-hero-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.05);
      animation: detnohonHeroZoom 18s ease-in-out infinite alternate;
    }

    @keyframes detnohonHeroZoom {
      from { transform: scale(1.05); }
      to   { transform: scale(1.12); }
    }

    .detnohon-hero-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to top, rgba(2, 31, 51, .88) 0%, rgba(3, 88, 140, .45) 50%, rgba(2, 20, 35, .2) 100%);
    }

    .detnohon-hero-glow {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 55% 70% at 8% 70%, rgba(132, 217, 4, .14) 0%, transparent 55%);
      pointer-events: none;
    }

    /* decorative circles */
    .detnohon-hero-deco {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
    }
    .detnohon-hero-deco::before {
      content: '';
      position: absolute;
      right: -60px; top: -60px;
      width: 380px; height: 380px;
      border-radius: 50%;
      border: 1px solid rgba(132, 217, 4, .13);
      animation: detnohonRotate 28s linear infinite;
    }
    .detnohon-hero-deco::after {
      content: '';
      position: absolute;
      right: 50px; top: 50px;
      width: 230px; height: 230px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.07);
      animation: detnohonRotate 18s linear infinite reverse;
    }
    @keyframes detnohonRotate {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }

    .detnohon-hero-inner {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      z-index: 2;
      padding: 0 72px 52px;
      animation: detnohonSlideUp .9s .1s cubic-bezier(.22,1,.36,1) both;
    }

    .detnohon-hero-badges {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 18px;
    }

    .detnohon-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 6px 16px;
      border-radius: 100px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(132,217,4,.3);
      background: rgba(132,217,4,.14);
      color: var(--secondary-color);
    }

    .detnohon-badge-dot {
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--secondary-color);
      animation: detnohonPulse 1.5s ease-in-out infinite;
    }
    @keyframes detnohonPulse {
      0%,100% { opacity:1; transform:scale(1); }
      50%      { opacity:.35; transform:scale(.55); }
    }

    .detnohon-badge-alt {
      background: rgba(3,88,140,.55);
      border-color: rgba(255,255,255,.15);
      color: rgba(255,255,255,.85);
    }

    .detnohon-hero-title {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(26px, 4vw, 52px);
      font-weight: 900;
      color: var(--colortext2);
      line-height: 1.1;
      max-width: 820px;
      margin-bottom: 22px;
      text-shadow: 0 2px 24px rgba(0,0,0,.3);
    }

    .detnohon-hero-title em {
      font-style: normal;
      color: var(--secondary-color);
      position: relative;
    }
    .detnohon-hero-title em::after {
      content: '';
      position: absolute;
      bottom: -2px; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--secondary-color), transparent);
      border-radius: 2px;
    }

    .detnohon-hero-meta {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 18px;
      color: rgba(255,255,255,.65);
      font-size: 12.5px;
    }

    .detnohon-hero-meta-item {
      display: flex;
      align-items: center;
      gap: 7px;
    }

    .detnohon-hero-meta-item svg {
      opacity: .7;
      flex-shrink: 0;
    }

    .detnohon-hero-dot {
      width: 3px; height: 3px;
      border-radius: 50%;
      background: rgba(255,255,255,.3);
    }

    /* ── PROGRESS BAR ──────────────────────────────────── */
    .detnohon-progress-wrap {
      position: sticky;
      top: 0;
      z-index: 100;
      height: 3px;
      background: #e2e8f0;
    }

    .detnohon-progress-bar {
      height: 100%;
      width: 0%;
      background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
      transition: width .1s linear;
      border-radius: 0 2px 2px 0;
    }

    /* ── LAYOUT ────────────────────────────────────────── */
    .detnohon-layout {
      max-width: 1340px;
      margin: 0 auto;
      padding: 60px 36px;
      display: grid;
      grid-template-columns: 1fr 360px;
      gap: 60px;
      align-items: start;
    }

    /* ── ARTICLE BODY ──────────────────────────────────── */
    .detnohon-article {
      min-width: 0;
    }

    /* author strip */
    .detnohon-author-strip {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 20px 24px;
      background: var(--colortext2);
      border: 1px solid #e2e8f0;
      border-radius: 14px;
      margin-bottom: 40px;
      box-shadow: 0 2px 8px rgba(3,88,140,.06);
      animation: detnohonSlideUp .7s .2s cubic-bezier(.22,1,.36,1) both;
    }

    .detnohon-author-avatar {
      width: 52px; height: 52px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid var(--secondary-color);
      flex-shrink: 0;
      box-shadow: 0 0 0 4px rgba(132,217,4,.12);
    }

    .detnohon-author-info { flex: 1; }

    .detnohon-author-name {
      font-size: 14px;
      font-weight: 700;
      color: var(--primary-color);
      margin-bottom: 3px;
    }

    .detnohon-author-role {
      font-size: 11.5px;
      color: #94a3b8;
      letter-spacing: .3px;
    }

    .detnohon-share-row {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .detnohon-share-lbl {
      font-size: 11px;
      font-weight: 600;
      color: #94a3b8;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-right: 4px;
    }

    .detnohon-share-btn {
      width: 36px; height: 36px;
      border-radius: 10px;
      border: 1.5px solid #e2e8f0;
      background: var(--background-color);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all .3s cubic-bezier(.22,1,.36,1);
      color: #6b7a8d;
    }
    .detnohon-share-btn:hover {
      background: var(--primary-color);
      border-color: var(--primary-color);
      color: var(--colortext2);
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(3,88,140,.2);
    }

    /* lead paragraph */
    .detnohon-lead {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 20px;
      font-weight: 700;
      color: #1a2840;
      line-height: 1.6;
      margin-bottom: 32px;
      padding-left: 22px;
      border-left: 4px solid var(--secondary-color);
      animation: detnohonSlideUp .7s .3s cubic-bezier(.22,1,.36,1) both;
    }

    /* body text */
    .detnohon-body {
      font-size: 16px;
      line-height: 1.85;
      color: #2d3748;
    }

    .detnohon-body p {
      margin-bottom: 24px;
    }

    .detnohon-body strong {
      color: var(--primary-color);
      font-weight: 700;
    }

    /* section heading inside article */
    .detnohon-body-h {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 22px;
      font-weight: 800;
      color: #0f1923;
      margin: 44px 0 18px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .detnohon-body-h::before {
      content: '';
      display: block;
      width: 5px; height: 22px;
      border-radius: 3px;
      background: linear-gradient(180deg, var(--secondary-color), var(--tercer-color));
      flex-shrink: 0;
    }

    /* inline image */
    .detnohon-img-block {
      margin: 36px 0;
      border-radius: 14px;
      overflow: hidden;
      position: relative;
      box-shadow: 0 8px 40px rgba(3,88,140,.12);
    }

    .detnohon-img-block img {
      width: 100%;
      height: 360px;
      object-fit: cover;
      display: block;
      transition: transform .6s cubic-bezier(.22,1,.36,1);
    }

    .detnohon-img-block:hover img { transform: scale(1.03); }

    .detnohon-img-caption {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 14px 20px;
      background: linear-gradient(to top, rgba(2,31,51,.75), transparent);
      color: rgba(255,255,255,.8);
      font-size: 11.5px;
      letter-spacing: .3px;
    }

    /* highlight box */
    .detnohon-highlight {
      margin: 36px 0;
      padding: 28px 30px;
      background: linear-gradient(135deg, rgba(3,88,140,.06) 0%, rgba(132,217,4,.07) 100%);
      border: 1px solid rgba(3,88,140,.12);
      border-left: 4px solid var(--primary-color);
      border-radius: 0 14px 14px 0;
      position: relative;
      overflow: hidden;
    }

    .detnohon-highlight::before {
      content: '';
      position: absolute;
      top: -30px; right: -30px;
      width: 120px; height: 120px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(132,217,4,.12), transparent 70%);
    }

    .detnohon-highlight-icon {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--primary-color);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .detnohon-highlight p {
      font-size: 15.5px;
      font-style: italic;
      color: #2d3748;
      line-height: 1.75;
      margin: 0;
    }

    /* stats row */
    .detnohon-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin: 36px 0;
    }

    .detnohon-stat-card {
      background: var(--colortext2);
      border: 1px solid #e2e8f0;
      border-radius: 14px;
      padding: 22px 18px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(3,88,140,.06);
      transition: all .4s cubic-bezier(.22,1,.36,1);
      position: relative;
      overflow: hidden;
    }

    .detnohon-stat-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
      transform: scaleX(0);
      transition: transform .4s cubic-bezier(.22,1,.36,1);
    }

    .detnohon-stat-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 48px rgba(3,88,140,.14);
      border-color: rgba(3,88,140,.15);
    }

    .detnohon-stat-card:hover::after { transform: scaleX(1); }

    .detnohon-stat-num {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 38px;
      font-weight: 900;
      color: var(--primary-color);
      line-height: 1;
      margin-bottom: 6px;
    }

    .detnohon-stat-num span {
      color: var(--secondary-color);
    }

    .detnohon-stat-lbl {
      font-size: 12px;
      font-weight: 600;
      color: #6b7a8d;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* tags */
    .detnohon-tags {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      margin: 44px 0 0;
      padding-top: 28px;
      border-top: 1px solid #e2e8f0;
    }

    .detnohon-tag-lbl {
      font-size: 11px;
      font-weight: 700;
      color: #94a3b8;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      margin-right: 4px;
    }

    .detnohon-tag {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 6px 14px;
      background: var(--colortext2);
      border: 1.5px solid #e2e8f0;
      border-radius: 100px;
      font-size: 11.5px;
      font-weight: 600;
      color: #6b7a8d;
      cursor: pointer;
      transition: all .25s cubic-bezier(.22,1,.36,1);
    }
    .detnohon-tag:hover {
      background: var(--primary-color);
      border-color: var(--primary-color);
      color: var(--colortext2);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(3,88,140,.15);
    }

    /* ── RELATED ARTICLES ──────────────────────────────── */
    .detnohon-related {
      margin-top: 60px;
    }

    .detnohon-sec-lbl {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 28px;
    }

    .detnohon-sec-bar {
      width: 4px; height: 26px;
      background: linear-gradient(180deg, var(--secondary-color), var(--tercer-color));
      border-radius: 4px;
      flex-shrink: 0;
    }

    .detnohon-sec-lbl h2 {
      font-size: 18px;
      font-weight: 700;
      color: var(--primary-color);
      letter-spacing: -.3px;
    }

    .detnohon-related-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 20px;
    }

    .detnohon-rel-card {
      background: var(--colortext2);
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid #e2e8f0;
      cursor: pointer;
      transition: all .4s cubic-bezier(.22,1,.36,1);
      box-shadow: 0 2px 8px rgba(3,88,140,.06);
    }

    .detnohon-rel-card:hover {
      transform: translateY(-7px);
      box-shadow: 0 18px 50px rgba(3,88,140,.16);
      border-color: rgba(3,88,140,.1);
    }

    .detnohon-rel-img {
      width: 100%;
      height: 160px;
      object-fit: cover;
      display: block;
      transition: transform .5s cubic-bezier(.22,1,.36,1);
    }

    .detnohon-rel-card:hover .detnohon-rel-img { transform: scale(1.07); }

    .detnohon-rel-img-wrap {
      overflow: hidden;
      position: relative;
    }

    .detnohon-rel-img-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(2,31,51,.35), transparent 60%);
      opacity: 0;
      transition: opacity .4s;
    }
    .detnohon-rel-card:hover .detnohon-rel-img-wrap::after { opacity: 1; }

    .detnohon-rel-badge {
      position: absolute;
      top: 12px; left: 12px;
      background: rgba(3,88,140,.88);
      color: var(--colortext2);
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 100px;
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,.15);
    }

    .detnohon-rel-badge.g {
      background: rgba(116,191,4,.9);
      color: #0f1923;
    }

    .detnohon-rel-body { padding: 18px; }

    .detnohon-rel-title {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 14px;
      font-weight: 700;
      color: var(--text-color);
      line-height: 1.45;
      margin-bottom: 12px;
      transition: color .25s;
    }
    .detnohon-rel-card:hover .detnohon-rel-title { color: var(--primary-color); }

    .detnohon-rel-meta {
      font-size: 11px;
      color: #94a3b8;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    /* ── SIDEBAR ───────────────────────────────────────── */
    .detnohon-sidebar {
      display: flex;
      flex-direction: column;
      gap: 26px;
      position: sticky;
      top: 20px;
    }

    .detnohon-widget {
      background: var(--colortext2);
      border: 1px solid #e2e8f0;
      border-radius: 14px;
      padding: 24px;
      box-shadow: 0 2px 8px rgba(3,88,140,.06);
      animation: detnohonSlideUp .7s .25s cubic-bezier(.22,1,.36,1) both;
    }

    /* toc widget */
    .detnohon-toc-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .detnohon-toc-item {
      display: flex;
      align-items: center;
      gap: 11px;
      padding: 10px 12px;
      border-radius: 8px;
      cursor: pointer;
      transition: all .25s cubic-bezier(.22,1,.36,1);
      color: #4a5568;
      font-size: 13px;
      font-weight: 500;
    }

    .detnohon-toc-item:hover,
    .detnohon-toc-item.active {
      background: rgba(3,88,140,.06);
      color: var(--primary-color);
      padding-left: 16px;
    }

    .detnohon-toc-item.active {
      font-weight: 700;
    }

    .detnohon-toc-num {
      width: 22px; height: 22px;
      border-radius: 6px;
      background: rgba(3,88,140,.08);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      font-weight: 700;
      color: var(--primary-color);
      flex-shrink: 0;
      transition: all .25s;
    }

    .detnohon-toc-item:hover .detnohon-toc-num,
    .detnohon-toc-item.active .detnohon-toc-num {
      background: var(--primary-color);
      color: var(--colortext2);
    }

    /* recent widget */
    .detnohon-rcrd {
      display: flex;
      gap: 14px;
      padding: 14px 0;
      border-bottom: 1px solid #eef2f7;
      cursor: pointer;
      transition: all .3s cubic-bezier(.22,1,.36,1);
    }
    .detnohon-rcrd:hover { transform: translateX(5px); }
    .detnohon-rcrd:last-child { border-bottom: none; padding-bottom: 0; }

    .detnohon-rcrd-img {
      width: 78px; height: 62px;
      object-fit: cover;
      border-radius: 8px;
      flex-shrink: 0;
      transition: transform .35s cubic-bezier(.22,1,.36,1);
      box-shadow: 0 2px 8px rgba(3,88,140,.07);
    }
    .detnohon-rcrd:hover .detnohon-rcrd-img { transform: scale(1.05); }

    .detnohon-rcrd-info { display: flex; flex-direction: column; gap: 5px; }

    .detnohon-rcrd-cat {
      font-size: 9.5px;
      font-weight: 700;
      color: var(--secondary-color);
      text-transform: uppercase;
      letter-spacing: 1.2px;
    }

    .detnohon-rcrd-title {
      font-size: 12.5px;
      font-weight: 600;
      color: var(--text-color);
      line-height: 1.45;
      transition: color .25s;
    }
    .detnohon-rcrd:hover .detnohon-rcrd-title { color: var(--primary-color); }

    .detnohon-rcrd-date { font-size: 10.5px; color: #b0bec5; }

    /* newsletter widget */
    .detnohon-newsletter {
      background: linear-gradient(135deg, #021f33 0%, var(--primary-color) 100%);
      border: none;
      position: relative;
      overflow: hidden;
    }

    .detnohon-newsletter::before {
      content: '';
      position: absolute;
      right: -40px; top: -40px;
      width: 200px; height: 200px;
      border-radius: 50%;
      border: 1px solid rgba(132,217,4,.15);
      animation: detnohonRotate 25s linear infinite;
    }
    .detnohon-newsletter::after {
      content: '';
      position: absolute;
      right: 10px; top: 10px;
      width: 110px; height: 110px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.06);
      animation: detnohonRotate 15s linear infinite reverse;
    }

    .detnohon-nl-icon {
      width: 44px; height: 44px;
      border-radius: 12px;
      background: rgba(132,217,4,.15);
      border: 1px solid rgba(132,217,4,.25);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--secondary-color);
      margin-bottom: 14px;
      position: relative;
      z-index: 1;
    }

    .detnohon-nl-title {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 18px;
      font-weight: 800;
      color: var(--colortext2);
      margin-bottom: 8px;
      position: relative;
      z-index: 1;
    }

    .detnohon-nl-desc {
      font-size: 12.5px;
      color: rgba(255,255,255,.6);
      line-height: 1.6;
      margin-bottom: 18px;
      position: relative;
      z-index: 1;
    }

    .detnohon-nl-input {
      width: 100%;
      padding: 11px 16px;
      border-radius: 10px;
      border: 1.5px solid rgba(255,255,255,.15);
      background: rgba(255,255,255,.08);
      color: var(--colortext2);
      font-size: 13px;
      outline: none;
      font-family: 'Inter', sans-serif;
      transition: border-color .25s;
      margin-bottom: 10px;
      position: relative;
      z-index: 1;
    }
    .detnohon-nl-input::placeholder { color: rgba(255,255,255,.35); }
    .detnohon-nl-input:focus { border-color: var(--secondary-color); }

    .detnohon-nl-btn {
      width: 100%;
      padding: 12px;
      border-radius: 10px;
      border: none;
      background: var(--secondary-color);
      color: #0f1923;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      cursor: pointer;
      transition: all .3s cubic-bezier(.22,1,.36,1);
      font-family: 'Inter', sans-serif;
      position: relative;
      z-index: 1;
      box-shadow: 0 4px 20px rgba(132,217,4,.3);
    }
    .detnohon-nl-btn:hover {
      background: var(--colortext2);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(132,217,4,.4);
    }

    /* ── DIVIDER ───────────────────────────────────────── */
    .detnohon-divider {
      height: 1px;
      background: linear-gradient(to right, var(--secondary-color) 50px, #e2e8f0 50px);
      margin: 44px 0;
      opacity: .7;
    }

    /* ── BACK BTN ──────────────────────────────────────── */
    .detnohon-back-btn {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 11px 24px;
      border-radius: 100px;
      border: 1.5px solid #e2e8f0;
      background: var(--colortext2);
      color: var(--primary-color);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .8px;
      text-transform: uppercase;
      cursor: pointer;
      transition: all .3s cubic-bezier(.22,1,.36,1);
      font-family: 'Inter', sans-serif;
      box-shadow: 0 2px 8px rgba(3,88,140,.07);
      margin-bottom: 32px;
    }
    .detnohon-back-btn:hover {
      background: var(--primary-color);
      border-color: var(--primary-color);
      color: var(--colortext2);
      transform: translateX(-4px);
      box-shadow: 0 8px 28px rgba(3,88,140,.18);
    }
    .detnohon-back-btn svg { transition: transform .3s; }
    .detnohon-back-btn:hover svg { transform: translateX(-4px); }

    /* ── SCROLL REVEAL ─────────────────────────────────── */
    .detnohon-reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
    }
    .detnohon-reveal.visible { opacity: 1; transform: translateY(0); }

    /* ── GLOBAL ANIM ───────────────────────────────────── */
    @keyframes detnohonSlideUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes detnohonFadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }

    /* ── GALLERY ───────────────────────────────────────── */
    .detnohon-gallery { margin-top: 52px; }

    .detnohon-gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: 220px 200px;
      gap: 10px;
    }

    .detnohon-gal-big {
      grid-column: 1 / 3;
      grid-row: 1 / 2;
    }

    .detnohon-gal-wide {
      grid-column: 1 / 3;
      grid-row: 2 / 3;
    }

    .detnohon-gal-item {
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      cursor: pointer;
      box-shadow: 0 2px 10px rgba(3,88,140,.1);
    }

    .detnohon-gal-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .6s cubic-bezier(.22,1,.36,1);
    }

    .detnohon-gal-item:hover img { transform: scale(1.07); }

    .detnohon-gal-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(2,20,40,.78) 0%, rgba(2,20,40,.1) 55%, transparent 100%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      align-items: flex-start;
      padding: 16px;
      opacity: 0;
      transition: opacity .4s cubic-bezier(.22,1,.36,1);
    }

    .detnohon-gal-item:hover .detnohon-gal-overlay { opacity: 1; }

    .detnohon-gal-info {
      display: flex;
      flex-direction: column;
      gap: 4px;
      flex: 1;
      justify-content: flex-end;
    }

    .detnohon-gal-caption {
      font-size: 12px;
      font-weight: 600;
      color: var(--colortext2);
      line-height: 1.4;
    }

    .detnohon-gal-date {
      font-size: 10px;
      color: rgba(255,255,255,.55);
      letter-spacing: .5px;
    }

    .detnohon-gal-zoom {
      position: absolute;
      top: 12px; right: 12px;
      width: 38px; height: 38px;
      border-radius: 10px;
      border: 1.5px solid rgba(255,255,255,.25);
      background: rgba(255,255,255,.12);
      backdrop-filter: blur(8px);
      color: var(--colortext2);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all .3s cubic-bezier(.22,1,.36,1);
      transform: translateY(-6px);
      opacity: 0;
    }

    .detnohon-gal-item:hover .detnohon-gal-zoom {
      opacity: 1;
      transform: translateY(0);
    }

    .detnohon-gal-zoom:hover {
      background: var(--secondary-color);
      border-color: var(--secondary-color);
      color: #0f1923;
    }

    /* ── LIGHTBOX ──────────────────────────────────────── */
    .detnohon-lightbox {
      position: fixed;
      inset: 0;
      z-index: 1000;
      background: rgba(2, 12, 22, .95);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity .35s cubic-bezier(.22,1,.36,1);
      backdrop-filter: blur(12px);
    }

    .detnohon-lightbox.open {
      opacity: 1;
      pointer-events: all;
    }

    .detnohon-lb-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      max-width: 860px;
      width: 90%;
      animation: detnohonLbIn .4s cubic-bezier(.22,1,.36,1) both;
    }

    @keyframes detnohonLbIn {
      from { opacity: 0; transform: scale(.94) translateY(20px); }
      to   { opacity: 1; transform: scale(1) translateY(0); }
    }

    .detnohon-lb-img {
      width: 100%;
      max-height: 72vh;
      object-fit: contain;
      border-radius: 14px;
      box-shadow: 0 24px 80px rgba(0,0,0,.6);
      display: block;
      transition: opacity .25s;
    }

    .detnohon-lb-caption {
      font-size: 13px;
      color: rgba(255,255,255,.65);
      text-align: center;
      letter-spacing: .3px;
    }

    .detnohon-lb-close {
      position: absolute;
      top: 22px; right: 24px;
      width: 44px; height: 44px;
      border-radius: 12px;
      border: 1.5px solid rgba(255,255,255,.15);
      background: rgba(255,255,255,.06);
      color: rgba(255,255,255,.8);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all .25s cubic-bezier(.22,1,.36,1);
    }
    .detnohon-lb-close:hover {
      background: rgba(255,255,255,.14);
      color: var(--colortext2);
      transform: rotate(90deg);
    }

    .detnohon-lb-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 50px; height: 50px;
      border-radius: 14px;
      border: 1.5px solid rgba(255,255,255,.13);
      background: rgba(255,255,255,.07);
      color: rgba(255,255,255,.8);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all .3s cubic-bezier(.22,1,.36,1);
    }
    .detnohon-lb-nav:hover {
      background: var(--primary-color);
      border-color: var(--primary-color);
      color: var(--colortext2);
    }
    .detnohon-lb-prev { left: 24px; }
    .detnohon-lb-next { right: 24px; }

    .detnohon-lb-dots {
      display: flex;
      gap: 7px;
      justify-content: center;
    }

    .detnohon-lb-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: rgba(255,255,255,.25);
      cursor: pointer;
      transition: all .3s;
      border: none;
    }

    .detnohon-lb-dot.active {
      background: var(--secondary-color);
      transform: scale(1.3);
    }

    /* ── RESPONSIVE ────────────────────────────────────── */
    @media (max-width: 1024px) {
      .detnohon-layout { grid-template-columns: 1fr; }
      .detnohon-gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px; }
      .detnohon-gal-big { grid-column: 1 / 3; }
      .detnohon-gal-wide { grid-column: 1 / 3; }
      .detnohon-hero-inner { padding: 0 40px 44px; }
      .detnohon-breadbar { padding: 0 40px; }
    }
    @media (max-width: 640px) {
      .detnohon-hero { height: 480px; }
      .detnohon-hero-inner { padding: 0 24px 36px; }
      .detnohon-breadbar { padding: 0 24px; }
      .detnohon-layout { padding: 36px 20px; }
      .detnohon-gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
      .detnohon-gal-big, .detnohon-gal-wide { grid-column: 1; grid-row: auto; }
      .detnohon-gal-item { height: 200px; }
      .detnohon-gal-overlay { opacity: 1; }
      .detnohon-gal-zoom { opacity: 1; transform: translateY(0); }
      .detnohon-lb-prev { left: 8px; }
      .detnohon-lb-next { right: 8px; }
    }
/* ===========================================================================================================
                              
=========================================================================================================== */
/* ===========================================================================================================
                              CONTACTO PUBLICO
=========================================================================================================== */
.hocont {
    font-family: 'Lexend', sans-serif;
    background: var(--background-color);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* ════════════════════ STRIPE / HEADER ════════════════════ */
.hocont-stripe {
    background: var(--primary-color);
    padding: 54px 0 90px;
    position: relative;
    overflow: hidden;
}

.hocont-stripe::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 90px;
    background: var(--background-color);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.hocont-stripe::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 70% 50%,
            rgba(132, 217, 4, .07), transparent 70%);
    animation: hocontPulse 6s ease-in-out infinite;
}

@keyframes hocontPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .5;
        transform: scale(1.1);
    }
}

.hocont-svg-deco {
    position: absolute;
    right: -40px;
    top: -40px;
    opacity: .06;
    pointer-events: none;
}

.hocont-svg-deco svg {
    width: 420px;
    height: 420px;
}

.hocont-svg-deco circle {
    animation: hocontRotate 20s linear infinite;
    transform-origin: center;
}

@keyframes hocontRotate {
    to {
        transform: rotate(360deg);
    }
}

.hocont-dots-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hocont-dot-item {
    position: absolute;
    border-radius: 50%;
    background: var(--secondary-color);
    animation: hocontDotFloat ease-in-out infinite;
}

@keyframes hocontDotFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-18px) scale(1.2);
    }
}

.hocont-stripe-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 36px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
}

/* ── TEXT ── */
.hocont-stripe-text {
    animation: hocontFadeUp .9s .2s both;
}

@keyframes hocontFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.hocont-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.hocont-eyebrow-line {
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px;
    transform: scaleX(0);
    transform-origin: left;
    animation: hocontLineGrow .8s .8s both;
}

@keyframes hocontLineGrow {
    to {
        transform: scaleX(1);
    }
}

.hocont-eyebrow span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary-color);
}

.hocont-h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 7vw, 88px);
    color: var(--colortext2);
    line-height: .98;
    letter-spacing: 1px;
}

.hocont-h1 em {
    color: var(--secondary-color);
    font-style: normal;
}

.hocont-stripe-p {
    color: rgba(255, 255, 255, .55);
    font-size: 15px;
    line-height: 1.7;
    max-width: 420px;
    margin-top: 14px;
    animation: hocontFadeUp .9s .45s both;
}

/* ── CHIPS ── */
.hocont-chips {
    display: flex;
    flex-direction: column;
    gap: 14px;
    animation: hocontFadeUp .9s .4s both;
}

.hocont-chip {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 16px;
    padding: 14px 18px;
    backdrop-filter: blur(8px);
    transition: all .35s cubic-bezier(.25, .8, .25, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.hocont-chip::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--secondary-color);
    border-radius: 3px 0 0 3px;
    transform: scaleY(0);
    transition: transform .4s ease;
}

.hocont-chip:hover::before {
    transform: scaleY(1);
}

.hocont-chip:hover {
    background: rgba(132, 217, 4, .12);
    border-color: rgba(132, 217, 4, .35);
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
}

.hocont-chip-ico {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: rgba(132, 217, 4, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .35s;
}

.hocont-chip:hover .hocont-chip-ico {
    background: var(--secondary-color);
    transform: scale(1.1) rotate(-8deg);
}

.hocont-chip-ico svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--secondary-color);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke .3s;
}

.hocont-chip:hover .hocont-chip-ico svg {
    stroke: var(--text-color);
}

.hocont-chip-lbl {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .38);
    margin-bottom: 3px;
}

.hocont-chip-val {
    font-size: 13px;
    font-weight: 600;
    color: var(--colortext2);
    line-height: 1.4;
}

/* ════════════════════ BODY ════════════════════ */
.hocont-body {
    max-width: 1180px;
    margin: 0 auto;
    padding: 50px 36px 80px;
}

.hocont-body-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 32px;
    align-items: start;
}

/* ════════════════════ FORM CARD ════════════════════ */
.hocont-form-wrap {
    animation: hocontFadeUp .9s .5s both;
}

.hocont-form-box {
    background: var(--colortext2);
    border-radius: 24px;
    padding: 44px 40px;
    box-shadow: 0 20px 60px rgba(3, 88, 140, .1);
    border: 1px solid rgba(3, 88, 140, .07);
    position: relative;
    overflow: hidden;
}

.hocont-form-box::before {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(132, 217, 4, .08), transparent 70%);
    pointer-events: none;
    animation: hocontPulse 5s ease-in-out infinite;
}

.hocont-form-box::after {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(3, 88, 140, .05), transparent 70%);
    pointer-events: none;
}

.hocont-form-h {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.hocont-form-sub {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 32px;
}

/* ── FIELDS ── */
.hocont-row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.hocont-fld {
    margin-bottom: 16px;
}

.hocont-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #888;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 7px;
    transition: color .3s;
}

.hocont-fld:focus-within .hocont-label {
    color: var(--primary-color);
}

.hocont-req {
    color: var(--secondary-color);
    font-size: 13px;
}

.hocont-inp,
.hocont-sel,
.hocont-txt {
    width: 100%;
    background: #f4f7f9;
    border: 2px solid transparent;
    border-radius: 11px;
    padding: 12px 15px;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    color: var(--text-color);
    outline: none;
    transition: all .3s cubic-bezier(.25, .8, .25, 1);
}

.hocont-inp::placeholder,
.hocont-txt::placeholder {
    color: #bbb;
}

.hocont-inp:focus,
.hocont-sel:focus,
.hocont-txt:focus {
    border-color: var(--primary-color);
    background: var(--colortext2);
    box-shadow: 0 0 0 4px rgba(3, 88, 140, .07);
    transform: translateY(-1px);
}

.hocont-inp:hover:not(:focus),
.hocont-sel:hover:not(:focus),
.hocont-txt:hover:not(:focus) {
    border-color: rgba(3, 88, 140, .2);
    background: #eef3f7;
}

/* ── SELECT (dropdown) ── */
.hocont-sel {
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%2399a' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

/* ── PHONE FIELD: indicativo + número ── */
.hocont-phone-row {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.hocont-indicativo-wrap {
    position: relative;
    flex-shrink: 0;
}

.hocont-indicativo-flag {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 17px;
    pointer-events: none;
    transition: transform .3s;
}

.hocont-indicativo-wrap:hover .hocont-indicativo-flag {
    transform: translateY(-50%) scale(1.2);
}

.hocont-indicativo-sel {
    width: 110px;
    background: #f4f7f9;
    border: 2px solid transparent;
    border-radius: 11px;
    padding: 12px 28px 12px 34px;
    font-family: 'Lexend', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-color);
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%2303588c' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    transition: all .3s cubic-bezier(.25, .8, .25, 1);
    position: relative;
}

.hocont-indicativo-sel:focus {
    border-color: var(--primary-color);
    background-color: var(--colortext2);
    box-shadow: 0 0 0 4px rgba(3, 88, 140, .07);
    transform: translateY(-1px);
}

.hocont-indicativo-sel:hover:not(:focus) {
    border-color: rgba(3, 88, 140, .2);
    background-color: #eef3f7;
}

.hocont-indicativo-wrap::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 8px;
    right: 8px;
    height: 2px;
    background: var(--secondary-color);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}

.hocont-indicativo-wrap:focus-within::after {
    transform: scaleX(1);
}

.hocont-phone-inp {
    flex: 1;
}

/* ── TEXTAREA ── */
.hocont-txt {
    resize: none;
    height: 112px;
    line-height: 1.6;
}

/* ── SUBMIT BUTTON ── */
.hocont-btn {
    width: 100%;
    border: none;
    cursor: pointer;
    background: var(--primary-color);
    border-radius: 13px;
    padding: 16px;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--colortext2);
    letter-spacing: .5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all .35s cubic-bezier(.25, .8, .25, 1);
    margin-top: 6px;
    position: relative;
    overflow: hidden;
}

.hocont-btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .18), transparent);
    transform: skewX(-15deg);
    transition: left .6s ease;
}

.hocont-btn:hover .hocont-btn-shine {
    left: 160%;
}

.hocont-btn:hover {
    background: var(--tercer-color);
    color: var(--text-color);
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(116, 191, 4, .38);
}

.hocont-btn:active {
    transform: translateY(-1px);
}

.hocont-btn-txt,
.hocont-btn-ico {
    position: relative;
    z-index: 1;
}

.hocont-btn-ico svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .35s;
}

.hocont-btn:hover .hocont-btn-ico svg {
    transform: rotate(45deg) scale(1.1);
}

.hocont-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 13px;
    box-shadow: 0 0 0 0 rgba(132, 217, 4, .5);
    transition: box-shadow .35s;
}

.hocont-btn:hover::after {
    box-shadow: 0 0 0 8px rgba(132, 217, 4, 0);
}

/* ── SUCCESS STATE ── */
.hocont-ok {
    display: none;
    text-align: center;
    padding: 50px 0;
    animation: hocontFadeUp .6s ease both;
}

.hocont-ok-wrap {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--tercer-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    animation: hocontPop .65s cubic-bezier(.175, .885, .32, 1.275) both;
    box-shadow: 0 0 0 0 rgba(132, 217, 4, .5);
}

.hocont-ok-wrap.hocont-ok-pulse {
    animation: hocontPop .65s cubic-bezier(.175, .885, .32, 1.275) both,
        hocontOkRing 1.8s .65s ease-out both;
}

@keyframes hocontPop {
    from {
        transform: scale(0) rotate(-90deg);
    }

    to {
        transform: scale(1) rotate(0deg);
    }
}

@keyframes hocontOkRing {
    0% {
        box-shadow: 0 0 0 0 rgba(132, 217, 4, .55);
    }

    70% {
        box-shadow: 0 0 0 28px rgba(132, 217, 4, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(132, 217, 4, 0);
    }
}

.hocont-ok-wrap svg {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: #000;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: hocontCheckDraw .5s .5s ease forwards;
}

@keyframes hocontCheckDraw {
    to {
        stroke-dashoffset: 0;
    }
}

.hocont-ok h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.hocont-ok p {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
}

/* ════════════════════ MAP + HOURS SIDE ════════════════════ */
.hocont-map-side {
    animation: hocontFadeUp .9s .65s both;
}

.hocont-map-card {
    background: var(--colortext2);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(3, 88, 140, .1);
    border: 1px solid rgba(3, 88, 140, .07);
    transition: box-shadow .4s, transform .4s;
}

.hocont-map-card:hover {
    box-shadow: 0 30px 80px rgba(3, 88, 140, .18);
    transform: translateY(-4px);
}

.hocont-map-hdr {
    background: var(--primary-color);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.hocont-map-hdr::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    background: rgba(132, 217, 4, .08);
    border-radius: 50%;
    animation: hocontPulse 4s ease-in-out infinite;
}

.hocont-map-hdr-ico {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
}

.hocont-map-hdr:hover .hocont-map-hdr-ico {
    background: var(--secondary-color);
    transform: rotate(-8deg) scale(1.1);
}

.hocont-map-hdr:hover .hocont-map-hdr-ico svg {
    stroke: #000;
}

.hocont-map-hdr-ico svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--secondary-color);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke .3s;
}

.hocont-map-hdr-txt h5 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 17px;
    letter-spacing: 1px;
    color: var(--colortext2);
    margin-bottom: 1px;
}

.hocont-map-hdr-txt p {
    font-size: 11px;
    color: rgba(255, 255, 255, .45);
    letter-spacing: 1px;
}

.hocont-map-frame {
    display: block;
    width: 100%;
    height: 300px;
    border: none;
    filter: saturate(.9);
    transition: filter .4s;
}

.hocont-map-card:hover .hocont-map-frame {
    filter: saturate(1.1);
}

/* ── HOURS CARD ── */
.hocont-hours {
    background: var(--colortext2);
    border-radius: 22px;
    padding: 26px 28px;
    box-shadow: 0 12px 40px rgba(3, 88, 140, .08);
    border: 1px solid rgba(3, 88, 140, .06);
    margin-top: 18px;
    transition: box-shadow .35s, transform .35s;
}

.hocont-hours:hover {
    box-shadow: 0 20px 55px rgba(3, 88, 140, .14);
    transform: translateY(-2px);
}

.hocont-hours-h {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 17px;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hocont-hours-h svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--secondary-color);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: hocontTickSpin 10s linear infinite;
}

@keyframes hocontTickSpin {

    0%,
    90% {
        transform: rotate(0deg);
    }

    95% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hocont-hour-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all .25s;
    border-radius: 8px;
}

.hocont-hour-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hocont-hour-row:not(:last-child):hover {
    background: rgba(3, 88, 140, .03);
    padding-left: 8px;
    padding-right: 8px;
}

.hocont-hour-day {
    font-size: 13px;
    font-weight: 600;
    color: #444;
}

.hocont-hour-time {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(3, 88, 140, .07);
    padding: 4px 12px;
    border-radius: 20px;
    transition: all .3s;
}

.hocont-hour-row:hover .hocont-hour-time {
    background: var(--secondary-color);
    color: #000;
    transform: scale(1.05);
}

.hocont-hour-time--closed {
    background: #f5f5f5;
    color: #bbb;
}

.hocont-hour-row:hover .hocont-hour-time--closed {
    background: #f5f5f5;
    color: #bbb;
    transform: none;
}

/* ════════════════════ RESPONSIVE ════════════════════ */
@media (max-width: 960px) {
    .hocont-stripe-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .hocont-body-grid {
        grid-template-columns: 1fr;
    }

    .hocont-row2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .hocont-form-box {
        padding: 28px 20px;
    }

    .hocont-body {
        padding: 32px 20px 60px;
    }

    .hocont-stripe-inner {
        padding: 0 20px;
    }
}
/* ===========================================================================================================
                                          UNETE A NOSOTROS
=========================================================================================================== */

.unhom-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #025073 55%, #013d60 100%);
    padding: 48px 80px 56px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.unhom-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 82% 50%, rgba(132, 217, 4, 0.22) 0%, transparent 55%);
    pointer-events: none;
}

.unhom-hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
    bottom: -100px;
    left: -80px;
    background: rgba(255, 255, 255, 0.025);
    pointer-events: none;
}

.unhom-hero-orb {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(132, 217, 4, 0.1);
    top: -60px;
    right: 80px;
    animation: unhom-orbPulse 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes unhom-orbPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.1
    }

    50% {
        transform: scale(1.12);
        opacity: 0.2
    }
}

.unhom-hero-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.unhom-brand-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.unhom-brand-icon {
    width: 52px;
    height: 52px;
    background: var(--secondary-color);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: unhom-iconFloat 3s ease-in-out infinite;
    box-shadow: 0 6px 24px rgba(132, 217, 4, 0.48);
    flex-shrink: 0;
}

@keyframes unhom-iconFloat {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-7px)
    }
}

.unhom-brand-name {
    font-size: 21px;
    font-weight: 900;
    color: var(--colortext2);
    letter-spacing: -0.3px;
}

.unhom-hero-title {
    font-size: 44px;
    font-weight: 900;
    color: var(--colortext2);
    line-height: 1.1;
}

.unhom-hero-title span {
    color: var(--secondary-color);
}

.unhom-hero-sub {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.75;
    max-width: 440px;
}

/* Steps widget */
.unhom-steps-hero {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    padding: 24px 28px;
    min-width: 210px;
    backdrop-filter: blur(12px);
    gap: 2px;
}

.unhom-sh-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    opacity: 0.38;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.unhom-sh-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 15px;
    bottom: -4px;
    width: 2px;
    height: 10px;
    background: rgba(255, 255, 255, 0.14);
}

.unhom-sh-item.active {
    opacity: 1;
}

.unhom-sh-item.done {
    opacity: 0.72;
}

.unhom-sh-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.65);
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.unhom-sh-item.active .unhom-sh-dot {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--text-color);
    box-shadow: 0 0 20px rgba(132, 217, 4, 0.55);
}

.unhom-sh-item.done .unhom-sh-dot {
    background: rgba(132, 217, 4, 0.18);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.unhom-sh-label {
    color: var(--colortext2);
    font-size: 13px;
    font-weight: 500;
}

/* ══════════════════════════════
   MAIN BODY
══════════════════════════════ */
.unhom-body-area {
    flex: 1;
    padding: 52px 80px 70px;
    max-width: 980px;
    width: 100%;
    margin: 0 auto;
}

.unhom-panel {
    display: none;
    animation: unhom-slideUp 0.45s ease;
}

.unhom-panel.active {
    display: block;
}

@keyframes unhom-slideUp {
    from {
        opacity: 0;
        transform: translateY(16px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.unhom-sec-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.unhom-sec-line {
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
    margin-bottom: 28px;
}

/* ══════════════════════════════
   CAMERA
══════════════════════════════ */
.unhom-cam-section {
    background: white;
    border: 2px solid #ddeaf5;
    border-radius: 24px;
    padding: 32px;
    margin-bottom: 36px;
    box-shadow: 0 4px 24px rgba(3, 88, 140, 0.08);
}

.unhom-cam-main-layout {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 32px;
    align-items: center;
}

.unhom-cam-feed-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.unhom-cam-feed {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    background: #0a1a26;
    aspect-ratio: 4/3;
    border: 2px solid #d0e8f5;
    box-shadow: 0 6px 24px rgba(3, 88, 140, 0.12);
}

.unhom-cam-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.unhom-cam-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: rgba(2, 26, 46, 0.85);
    backdrop-filter: blur(4px);
    transition: opacity 0.35s;
    padding: 24px;
    border-radius: 16px;
}

.unhom-cam-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.unhom-cam-overlay-icon {
    width: 64px;
    height: 64px;
    background: rgba(132, 217, 4, 0.15);
    border: 2px solid rgba(132, 217, 4, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.unhom-cam-overlay p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13.5px;
    text-align: center;
    line-height: 1.6;
    max-width: 220px;
}

.unhom-cam-corners {
    position: absolute;
    inset: 12px;
    pointer-events: none;
}

.unhom-corner {
    position: absolute;
    width: 22px;
    height: 22px;
    border-color: var(--secondary-color);
    border-style: solid;
    border-width: 0;
}

.unhom-corner.tl {
    top: 0;
    left: 0;
    border-top-width: 3px;
    border-left-width: 3px;
    border-top-left-radius: 4px;
}

.unhom-corner.tr {
    top: 0;
    right: 0;
    border-top-width: 3px;
    border-right-width: 3px;
    border-top-right-radius: 4px;
}

.unhom-corner.bl {
    bottom: 0;
    left: 0;
    border-bottom-width: 3px;
    border-left-width: 3px;
    border-bottom-left-radius: 4px;
}

.unhom-corner.br {
    bottom: 0;
    right: 0;
    border-bottom-width: 3px;
    border-right-width: 3px;
    border-bottom-right-radius: 4px;
}

.unhom-cam-scan {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    animation: unhom-scanLine 2.5s ease-in-out infinite;
    opacity: 0;
}

.unhom-cam-feed.streaming .unhom-cam-scan {
    opacity: 1;
}

@keyframes unhom-scanLine {
    0% {
        top: 10%;
        opacity: 0;
    }

    10% {
        opacity: 0.7;
    }

    90% {
        opacity: 0.7;
    }

    100% {
        top: 90%;
        opacity: 0;
    }
}

.unhom-cam-flash {
    position: absolute;
    inset: 0;
    background: white;
    opacity: 0;
    pointer-events: none;
    border-radius: 16px;
    transition: opacity 0.05s;
}

.unhom-cam-flash.flash {
    opacity: 0.85;
    transition: opacity 0.4s;
}

.unhom-cam-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.unhom-cam-device-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #7a9db5;
    margin-bottom: 4px;
}

.unhom-mobile-cam-view {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 32px 20px;
    background: linear-gradient(135deg, #f0f7fc 0%, #edf4f9 100%);
    border-radius: 18px;
    border: 2px dashed #bdd8ee;
    text-align: center;
    min-height: 240px;
}

.unhom-mobile-cam-icon {
    width: 72px;
    height: 72px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(3, 88, 140, 0.14);
}

.unhom-mobile-cam-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-color);
}

.unhom-mobile-cam-sub {
    font-size: 13px;
    color: #7aa0bc;
    line-height: 1.6;
}

.unhom-mobile-cam-btn {
    background: var(--secondary-color);
    color: var(--text-color);
    border: none;
    padding: 12px 26px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 9px;
    box-shadow: 0 6px 20px rgba(132, 217, 4, 0.35);
    position: relative;
    transition: all 0.25s ease;
}

.unhom-mobile-cam-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(132, 217, 4, 0.48);
}

.unhom-mobile-cam-btn input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

/* ══════════════════════════════
   PREVIEW CIRCULAR
══════════════════════════════ */
.unhom-cam-preview-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.unhom-preview-ring {
    position: relative;
    width: 160px;
    height: 160px;
}

.unhom-preview-ring-track {
    opacity: 0.15;
}

.unhom-preview-ring-fill {
    stroke-dasharray: 471;
    stroke-dashoffset: 471;
    transition: stroke-dashoffset 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.unhom-preview-ring.captured .unhom-preview-ring-fill {
    stroke-dashoffset: 0;
}

.unhom-preview-img-wrap {
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    overflow: hidden;
    background: #edf5fc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.unhom-photo-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    animation: unhom-photoReveal 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes unhom-photoReveal {
    from {
        transform: scale(0.7) rotate(-5deg);
        opacity: 0
    }

    to {
        transform: scale(1) rotate(0deg);
        opacity: 1
    }
}

.unhom-photo-preview.show {
    display: block;
}

.unhom-photo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #9ab8cc;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    padding: 10px;
}

.unhom-preview-info {
    text-align: center;
}

.unhom-preview-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.3px;
    display: block;
}

.unhom-preview-sublabel {
    font-size: 11.5px;
    color: #88aabf;
    line-height: 1.5;
    display: block;
    margin-top: 3px;
}

.unhom-photo-badge {
    display: none;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--tercer-color);
    background: rgba(132, 217, 4, 0.1);
    border: 1px solid rgba(132, 217, 4, 0.3);
    padding: 5px 12px;
    border-radius: 20px;
}

.unhom-photo-badge.show {
    display: flex;
}

/* ══════════════════════════════
   FORM FIELDS
══════════════════════════════ */
.unhom-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-bottom: 22px;
}

.unhom-col-full {
    grid-column: 1/-1;
}

.unhom-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.unhom-field-label {
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.unhom-field-input {
    padding: 13px 17px;
    border-radius: 12px;
    border: 2px solid #e2eef7;
    background: #f7fbff;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    color: var(--text-color);
    transition: all 0.3s ease;
    outline: none;
    width: 100%;
}

.unhom-field-input:focus {
    border-color: var(--secondary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(132, 217, 4, 0.12);
    transform: translateY(-1px);
}

.unhom-field-input::placeholder {
    color: #b0c4d5;
}

select.unhom-field-input {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2303588c' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 42px;
    background-color: #f7fbff;
}

textarea.unhom-field-input {
    resize: vertical;
    min-height: 115px;
}

/* ══════════════════════════════
   DOCUMENTS
══════════════════════════════ */
.unhom-drop-zone {
    border: 2px dashed #bdd8ee;
    background: #f3f9ff;
    border-radius: 18px;
    padding: 34px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.unhom-drop-zone:hover {
    border-color: var(--secondary-color);
    background: #edf7e4;
    transform: scale(1.008);
}

.unhom-drop-zone input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.unhom-dz-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 12px 0 6px;
}

.unhom-dz-sub {
    color: #7aa0bc;
    font-size: 13px;
}

.unhom-docs-list {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.unhom-doc-item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 12px 16px;
    background: #edf5fc;
    border: 1px solid #cce0f0;
    border-radius: 12px;
    animation: unhom-docIn 0.3s ease;
}

@keyframes unhom-docIn {
    from {
        opacity: 0;
        transform: translateX(-10px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.unhom-doc-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.unhom-doc-icon-pdf {
    background: #fee2e2;
}

.unhom-doc-icon-doc {
    background: #dbeafe;
}

.unhom-doc-icon-other {
    background: #f3e8ff;
}

.unhom-doc-info {
    flex: 1;
    min-width: 0;
}

.unhom-doc-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.unhom-doc-size {
    font-size: 11px;
    color: #7a9db5;
}

.unhom-doc-progress {
    height: 3px;
    border-radius: 2px;
    background: #d0e4f0;
    margin-top: 4px;
    overflow: hidden;
}

.unhom-doc-bar {
    height: 100%;
    background: var(--secondary-color);
    border-radius: 2px;
    animation: unhom-barFill 1s ease forwards;
}

@keyframes unhom-barFill {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

.unhom-doc-del {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    color: #dc2626;
    transition: background 0.2s;
}

.unhom-doc-del:hover {
    background: #fee2e2;
}

/* ══════════════════════════════
   BUTTONS
══════════════════════════════ */
.unhom-btn {
    padding: 13px 28px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.unhom-btn:hover {
    transform: translateY(-2px);
}

.unhom-btn:active {
    transform: translateY(0);
}

.unhom-btn-primary {
    background: var(--secondary-color);
    color: var(--text-color);
    box-shadow: 0 6px 20px rgba(132, 217, 4, 0.38);
}

.unhom-btn-primary:hover {
    background: var(--tercer-color);
    box-shadow: 0 10px 28px rgba(132, 217, 4, 0.52);
}

.unhom-btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.unhom-btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.unhom-btn-ghost {
    background: #eef5fb;
    color: var(--primary-color);
    border: 1.5px solid #cde0f0;
}

.unhom-btn-ghost:hover {
    background: #dceef8;
}

.unhom-btn-sm {
    padding: 9px 18px;
    font-size: 13px;
    border-radius: 10px;
}

.unhom-btn-xs {
    padding: 7px 14px;
    font-size: 12px;
    border-radius: 8px;
}

.unhom-form-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 38px;
    padding-top: 28px;
    border-top: 2px solid #f0f0f0;
}

/* ══════════════════════════════
   SUCCESS
══════════════════════════════ */
.unhom-success-wrap {
    display: none;
    text-align: center;
    padding: 80px 20px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    animation: unhom-bodyIn 0.6s ease;
}

.unhom-success-wrap.show {
    display: flex;
}

.unhom-success-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--secondary-color);
    box-shadow: 0 0 0 8px rgba(132, 217, 4, 0.15), 0 12px 40px rgba(132, 217, 4, 0.3);
    object-fit: cover;
    display: none;
    animation: unhom-photoReveal 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.unhom-success-avatar.show {
    display: block;
}

.unhom-success-icon-fallback {
    width: 100px;
    height: 100px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: unhom-sPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), unhom-sRing 2.2s ease 0.5s infinite;
}

@keyframes unhom-sPop {
    from {
        transform: scale(0);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

@keyframes unhom-sRing {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(132, 217, 4, 0.4)
    }

    50% {
        box-shadow: 0 0 0 24px rgba(132, 217, 4, 0)
    }
}

.unhom-success-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.unhom-success-sub {
    font-size: 15px;
    color: #5a7a90;
    max-width: 400px;
    line-height: 1.78;
}

canvas.unhom-hidden {
    display: none;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 860px) {
    .unhom-hero {
        padding: 36px 24px 44px;
    }

    .unhom-hero-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .unhom-steps-hero {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0;
        padding: 16px 18px;
        min-width: unset;
    }

    .unhom-sh-item:not(:last-child)::after {
        display: none;
    }

    .unhom-sh-item {
        padding: 8px 10px;
    }

    .unhom-body-area {
        padding: 36px 24px 50px;
    }

    .unhom-form-grid {
        grid-template-columns: 1fr;
    }

    .unhom-cam-main-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .unhom-cam-preview-col {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .unhom-preview-info {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .unhom-hero-title {
        font-size: 32px;
    }

    .unhom-hero-sub {
        font-size: 13.5px;
    }

    .unhom-brand-name {
        font-size: 18px;
    }

    .unhom-steps-hero {
        display: none;
    }

    .unhom-btn {
        padding: 12px 22px;
    }

    .unhom-cam-section {
        padding: 20px;
    }
}
/* =============================================================================================================
                              TERMINOS Y CONDICIONES
============================================================================================================= */

/* ─── HERO ───────────────────────────────────────── */
.tercondi-hero {
    position: relative;
    background: var(--primary-color);
    overflow: hidden;
    padding: 90px 40px 70px;
    text-align: center;
}

.tercondi-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(132, 217, 4, .18) 0%, transparent 70%),
        radial-gradient(ellipse 60% 80% at 80% 30%, rgba(255, 255, 255, .06) 0%, transparent 60%);
}

.tercondi-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(132, 217, 4, .25);
    animation: tercondi-pulse-ring 6s ease-in-out infinite;
}

.tercondi-ring:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -80px;
    right: -60px;
    animation-delay: 0s;
}

.tercondi-ring:nth-child(2) {
    width: 500px;
    height: 500px;
    top: -180px;
    right: -160px;
    animation-delay: 1.5s;
}

.tercondi-ring:nth-child(3) {
    width: 700px;
    height: 700px;
    top: -280px;
    right: -260px;
    animation-delay: 3s;
}

@keyframes tercondi-pulse-ring {

    0%,
    100% {
        opacity: .4;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.04);
    }
}

.tercondi-hero-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, .1);
    border: 2px solid var(--secondary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    animation: tercondi-float 4s ease-in-out infinite;
    position: relative;
}

@keyframes tercondi-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.tercondi-binf {
    position: relative;
}

.tercondi-hero h1 {
    color: var(--colortext2);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    position: relative;
}

.tercondi-hero h1 span {
    color: var(--secondary-color);
    display: block;
}

.tercondi-hero-sub {
    color: rgba(255, 255, 255, .65);
    margin-top: 14px;
    font-size: .95rem;
    position: relative;
}

.tercondi-badge {
    display: inline-block;
    margin-top: 22px;
    background: rgba(132, 217, 4, .15);
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    position: relative;
}

/* ─── UPDATE DATE ────────────────────────────────── */
.tercondi-update-date {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 14px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .4px;
    color: rgba(255, 255, 255, .7);
    position: relative;
    backdrop-filter: blur(8px);
    transition: background .3s, border-color .3s, color .3s;
}

.tercondi-update-date::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 999px;
    background: linear-gradient(90deg,
            rgba(132, 217, 4, .35) 0%,
            rgba(255, 255, 255, .06) 50%,
            rgba(132, 217, 4, .15) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity .3s;
}

.tercondi-update-date:hover {
    background: rgba(132, 217, 4, .1);
    border-color: rgba(132, 217, 4, .4);
    color: rgba(255, 255, 255, .95);
}

.tercondi-update-date:hover::before {
    opacity: 1;
}

.tercondi-update-date svg {
    flex-shrink: 0;
    opacity: .75;
    transition: opacity .3s;
}

.tercondi-update-date:hover svg {
    opacity: 1;
}

/* ─── LAYOUT ─────────────────────────────────────── */
.tercondi-page-wrap {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 0;
    max-width: 1180px;
    margin: 0 auto;
    padding: 60px 24px;
}

/* ─── SIDEBAR ────────────────────────────────────── */
.tercondi-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
    padding-right: 36px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-color) rgba(3, 88, 140, .08);
}

.tercondi-sidebar::-webkit-scrollbar {
    width: 4px;
}

.tercondi-sidebar::-webkit-scrollbar-track {
    background: rgba(3, 88, 140, .08);
    border-radius: 4px;
}

.tercondi-sidebar::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 4px;
}

.tercondi-sidebar-title {
    font-size: .7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

.tercondi-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all .25s;
    text-decoration: none;
    color: #444;
    font-size: .83rem;
}

.tercondi-nav-item:hover,
.tercondi-nav-item.active {
    background: var(--primary-color);
    color: #fff;
}

.tercondi-nav-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--secondary-color);
    flex-shrink: 0;
}

/* ─── CONTENT ────────────────────────────────────── */
.tercondi-content {
    min-width: 0;
    padding-left: 15px;
}

/* ─── SECTIONS ───────────────────────────────────── */
.tercondi-section {
    margin-bottom: 56px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
    scroll-margin-top: 100px;
}

.tercondi-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.tercondi-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.tercondi-section-num {
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.tercondi-section-num::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .2), transparent);
}

.tercondi-section h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.tercondi-section p,
.tercondi-section li {
    font-size: .94rem;
    line-height: 1.78;
    color: #333;
}

.tercondi-section ul {
    padding-left: 0;
    list-style: none;
}

.tercondi-section li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 7px 0;
    border-bottom: 1px solid rgba(3, 88, 140, .07);
}

.tercondi-li-icon {
    margin-top: 4px;
    flex-shrink: 0;
}

/* ─── INFO CARDS ─────────────────────────────────── */
.tercondi-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.tercondi-info-card {
    background: #fff;
    border: 1px solid rgba(3, 88, 140, .1);
    border-radius: 14px;
    padding: 18px;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    position: relative;
    overflow: hidden;
}

.tercondi-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity .25s;
}

.tercondi-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(3, 88, 140, .12);
    border-color: rgba(3, 88, 140, .25);
}

.tercondi-info-card:hover::before {
    opacity: 1;
}

.tercondi-card-ico {
    margin-bottom: 10px;
}

.tercondi-card-label {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    font-weight: 600;
}

.tercondi-card-value {
    font-size: .9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 5px;
    line-height: 1.5;
}

/* ─── HIGHLIGHT BOX ──────────────────────────────── */
.tercondi-highlight {
    background: linear-gradient(135deg, var(--primary-color), #025070);
    border-radius: 16px;
    padding: 22px 28px;
    color: #fff;
    margin-top: 18px;
    position: relative;
    overflow: hidden;
    font-size: .93rem;
    line-height: 1.7;
}

.tercondi-highlight::after {
    content: '';
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(132, 217, 4, .15);
}

.tercondi-highlight strong {
    color: var(--secondary-color);
}

/* ─── WARNING BOX ────────────────────────────────── */
.tercondi-warning-box {
    background: rgba(132, 217, 4, .08);
    border: 1px solid rgba(132, 217, 4, .35);
    border-left: 4px solid var(--secondary-color);
    border-radius: 10px;
    padding: 16px 20px;
    margin-top: 14px;
    font-size: .9rem;
    color: #444;
    line-height: 1.65;
}

.tercondi-warning-box strong {
    color: var(--primary-color);
}

/* ─── PROHIB GRID ────────────────────────────────── */
.tercondi-prohib-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 16px;
}

.tercondi-prohib-item {
    display: flex;
    gap: 12px;
    background: #fff;
    border-radius: 12px;
    padding: 14px 16px;
    border: 1px solid rgba(200, 0, 0, .1);
    align-items: flex-start;
    transition: box-shadow .25s, border-color .25s;
}

.tercondi-prohib-item:hover {
    box-shadow: 0 4px 18px rgba(200, 0, 0, .08);
    border-color: rgba(200, 0, 0, .2);
}

.tercondi-prohib-ico {
    width: 34px;
    height: 34px;
    background: rgba(200, 0, 0, .07);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tercondi-prohib-text {
    font-size: .87rem;
    color: #444;
    line-height: 1.55;
}

/* ─── CONTACT CARDS ──────────────────────────────── */
.tercondi-contact-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.tercondi-contact-item {
    display: flex;
    gap: 14px;
    align-items: center;
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    border: 1px solid rgba(3, 88, 140, .1);
    transition: all .25s;
}

.tercondi-contact-item:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(3, 88, 140, .2);
}

.tercondi-contact-item:hover .tercondi-ci-label {
    color: rgba(255, 255, 255, .65);
}

.tercondi-contact-item:hover .tercondi-ci-value {
    color: #fff;
}

.tercondi-contact-item:hover .tercondi-ci-ico {
    background: rgba(255, 255, 255, .15);
}

.tercondi-ci-ico {
    width: 42px;
    height: 42px;
    background: rgba(3, 88, 140, .08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .25s;
}

.tercondi-ci-label {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    transition: color .25s;
}

.tercondi-ci-value {
    font-size: .9rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: color .25s;
}

.tercondi-contact-item:hover .tercondi-ci-ico svg path,
.tercondi-contact-item:hover .tercondi-ci-ico svg rect,
.tercondi-contact-item:hover .tercondi-ci-ico svg circle,
.tercondi-contact-item:hover .tercondi-ci-ico svg polyline,
.tercondi-contact-item:hover .tercondi-ci-ico svg polygon,
.tercondi-contact-item:hover .tercondi-ci-ico svg line {
    stroke: var(--primary-color);
    fill: var(--secondary-color);
    transition: stroke .25s, fill .25s;
}

.tercondi-contact-item:hover .tercondi-ci-ico svg [stroke][fill="none"] {
    stroke: var(--secondary-color);
    fill: none;
}

.tercondi-contact-item:hover .tercondi-ci-ico svg [fill]:not([fill="none"]) {
    fill: var(--secondary-color);
    stroke: none;
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 900px) {
    .tercondi-prohib-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .tercondi-page-wrap {
        grid-template-columns: 1fr;
        padding: 36px 16px;
    }

    .tercondi-sidebar {
        display: none;
    }

    .tercondi-hero {
        padding: 60px 20px 50px;
    }

    .tercondi-content {
        padding-left: 0;
    }

    .tercondi-prohib-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .tercondi-badge {
        display: block;
        width: fit-content;
        margin: 22px auto 0;
    }
}

/* ===================================================================================================================
                              POLITICAS DE PRIVACIDAD
=================================================================================================================== */
.policon-hero {
    position: relative;
    background: var(--primary-color);
    overflow: hidden;
    padding: 90px 40px 70px;
    text-align: center;
}

.policon-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(132, 217, 4, .18) 0%, transparent 70%),
        radial-gradient(ellipse 60% 80% at 80% 30%, rgba(255, 255, 255, .06) 0%, transparent 60%);
}

.policon-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(132, 217, 4, .25);
    animation: policon-pulse-ring 6s ease-in-out infinite;
}

.policon-ring:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -80px;
    right: -60px;
    animation-delay: 0s;
}

.policon-ring:nth-child(2) {
    width: 500px;
    height: 500px;
    top: -180px;
    right: -160px;
    animation-delay: 1.5s;
}

.policon-ring:nth-child(3) {
    width: 700px;
    height: 700px;
    top: -280px;
    right: -260px;
    animation-delay: 3s;
}

@keyframes policon-pulse-ring {

    0%,
    100% {
        opacity: .4;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.04);
    }
}

.policon-hero-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, .1);
    border: 2px solid var(--secondary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    animation: policon-float 4s ease-in-out infinite;
    position: relative;
}

@keyframes policon-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.policon-hero h1 {
    color: var(--colortext2);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    position: relative;
}

.policon-hero h1 span {
    color: var(--secondary-color);
    display: block;
}

.policon-hero-sub {
    color: rgba(255, 255, 255, .65);
    margin-top: 14px;
    font-size: .95rem;
    position: relative;
}

.policon-badge-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 22px;
    position: relative;
}

.policon-badge {
    display: inline-block;
    background: rgba(132, 217, 4, .15);
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.policon-intro-standards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.policon-std-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(3, 88, 140, .05);
    border: 1px solid rgba(3, 88, 140, .1);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: .85rem;
    line-height: 1.4;
    color: #333;
    transition: border-color .25s, box-shadow .25s;
}

.policon-std-item:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 4px 16px rgba(132, 217, 4, .12);
}

.policon-std-item svg {
    flex-shrink: 0;
}

.policon-page-wrap {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 0;
    max-width: 1180px;
    margin: 0 auto;
    padding: 60px 24px;
}

.policon-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
    padding-right: 36px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-color) rgba(3, 88, 140, .08);
}

.policon-sidebar::-webkit-scrollbar {
    width: 4px;
}

.policon-sidebar::-webkit-scrollbar-track {
    background: rgba(3, 88, 140, .08);
    border-radius: 4px;
}

.policon-sidebar::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 4px;
}

.policon-sidebar-title {
    font-size: .7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

.policon-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all .25s;
    text-decoration: none;
    color: #444;
    font-size: .83rem;
}

.policon-nav-item:hover,
.policon-nav-item.active {
    background: var(--primary-color);
    color: #fff;
}

.policon-nav-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--secondary-color);
    flex-shrink: 0;
}

.policon-content {
    min-width: 0;
    padding-left: 15px;
}

.policon-section {
    margin-bottom: 56px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
    scroll-margin-top: 100px;
}

.policon-section.visible {
    opacity: 1;
}

.policon-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.policon-section-num {
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.policon-section-num::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .2), transparent);
}

.policon-section h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.policon-section p,
.policon-section li {
    font-size: .94rem;
    line-height: 1.78;
    color: #333;
}

.policon-section ul {
    padding-left: 0;
    list-style: none;
}

.policon-section li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 7px 0;
    border-bottom: 1px solid rgba(3, 88, 140, .07);
}

.policon-li-icon {
    margin-top: 4px;
    flex-shrink: 0;
}

.policon-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.policon-info-card {
    background: #fff;
    border: 1px solid rgba(3, 88, 140, .1);
    border-radius: 14px;
    padding: 18px;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    position: relative;
    overflow: hidden;
}

.policon-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity .25s;
}

.policon-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(3, 88, 140, .12);
    border-color: rgba(3, 88, 140, .25);
}

.policon-info-card:hover::before {
    opacity: 1;
}

.policon-card-ico {
    margin-bottom: 10px;
}

.policon-card-label {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    font-weight: 600;
}

.policon-card-value {
    font-size: .9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 5px;
    line-height: 1.5;
}

.policon-highlight {
    background: linear-gradient(135deg, var(--primary-color), #025070);
    border-radius: 16px;
    padding: 22px 28px;
    color: #fff;
    margin-top: 18px;
    position: relative;
    overflow: hidden;
    font-size: .93rem;
    line-height: 1.7;
}

.policon-highlight::after {
    content: '';
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(132, 217, 4, .15);
}

.policon-highlight strong {
    color: var(--secondary-color);
}

.policon-responsible-box {
    background: rgba(3, 88, 140, .04);
    border: 1px solid rgba(3, 88, 140, .12);
    border-left: 4px solid var(--primary-color);
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.policon-resp-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .92rem;
    color: #333;
}

.policon-resp-row svg {
    flex-shrink: 0;
}

.policon-transfer-box {
    background: rgba(3, 88, 140, .04);
    border: 1px solid rgba(3, 88, 140, .12);
    border-radius: 14px;
    padding: 20px 24px;
    margin-top: 20px;
}

.policon-transfer-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .92rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.policon-rights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 18px;
}

.policon-right-item {
    display: flex;
    gap: 12px;
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(3, 88, 140, .09);
    align-items: flex-start;
    transition: box-shadow .25s, border-color .25s;
}

.policon-right-item:hover {
    box-shadow: 0 6px 24px rgba(3, 88, 140, .1);
    border-color: rgba(3, 88, 140, .2);
}

.policon-right-ico {
    width: 38px;
    height: 38px;
    background: rgba(3, 88, 140, .08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.policon-right-text {
    font-size: .87rem;
    line-height: 1.55;
    color: #333;
}

.policon-right-text strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 3px;
    font-size: .88rem;
}

.policon-response-time {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: rgba(3, 88, 140, .04);
    border: 1px solid rgba(3, 88, 140, .12);
    border-radius: 12px;
    padding: 18px 22px;
    margin-top: 20px;
    font-size: .9rem;
    line-height: 1.65;
    color: #333;
}

.policon-response-time svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.policon-version-box {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.policon-version-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(3, 88, 140, .05);
    border: 1px solid rgba(3, 88, 140, .1);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: .85rem;
    color: #333;
}

.policon-contact-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.policon-contact-item {
    display: flex;
    gap: 14px;
    align-items: center;
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    border: 1px solid rgba(3, 88, 140, .1);
    transition: all .25s;
}

.policon-contact-item:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(3, 88, 140, .2);
}

.policon-contact-item:hover .policon-ci-label {
    color: rgba(255, 255, 255, .65);
}

.policon-contact-item:hover .policon-ci-value {
    color: #fff;
}

.policon-contact-item:hover .policon-ci-ico {
    background: rgba(255, 255, 255, .15);
}

.policon-ci-ico {
    width: 42px;
    height: 42px;
    background: rgba(3, 88, 140, .08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .25s;
}

.policon-ci-label {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    transition: color .25s;
}

.policon-ci-value {
    font-size: .9rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: color .25s;
}

.policon-contact-item:hover .policon-ci-ico svg path,
.policon-contact-item:hover .policon-ci-ico svg rect,
.policon-contact-item:hover .policon-ci-ico svg circle,
.policon-contact-item:hover .policon-ci-ico svg polyline,
.policon-contact-item:hover .policon-ci-ico svg polygon,
.policon-contact-item:hover .policon-ci-ico svg line {
    stroke: var(--primary-color);
    fill: var(--secondary-color);
    transition: stroke .25s, fill .25s;
}

.policon-contact-item:hover .policon-ci-ico svg [stroke][fill="none"] {
    stroke: var(--secondary-color);
    fill: none;
}

.policon-contact-item:hover .policon-ci-ico svg [fill]:not([fill="none"]) {
    fill: var(--secondary-color);
    stroke: none;
}

@media (max-width: 900px) {
    .policon-rights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .policon-page-wrap {
        grid-template-columns: 1fr;
        padding: 36px 16px;
    }

    .policon-sidebar {
        display: none;
    }

    .policon-hero {
        padding: 60px 20px 50px;
    }

    .policon-intro-standards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .policon-intro-standards {
        grid-template-columns: 1fr;
    }

    .policon-badge-group {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================================================================
                              POLITICAS COOKIES
============================================================================================ */
.plcoo-hero {
    position: relative;
    background: var(--primary-color);
    overflow: hidden;
    padding: 90px 40px 70px;
    text-align: center;
}

.plcoo-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(132, 217, 4, .18) 0%, transparent 70%),
        radial-gradient(ellipse 60% 80% at 80% 30%, rgba(255, 255, 255, .06) 0%, transparent 60%);
}

.plcoo-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(132, 217, 4, .25);
    animation: plcoo-pulse-ring 6s ease-in-out infinite;
}

.plcoo-ring:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -80px;
    right: -60px;
    animation-delay: 0s;
}

.plcoo-ring:nth-child(2) {
    width: 500px;
    height: 500px;
    top: -180px;
    right: -160px;
    animation-delay: 1.5s;
}

.plcoo-ring:nth-child(3) {
    width: 700px;
    height: 700px;
    top: -280px;
    right: -260px;
    animation-delay: 3s;
}

@keyframes plcoo-pulse-ring {

    0%,
    100% {
        opacity: .4;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.04);
    }
}

.plcoo-hero-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, .1);
    border: 2px solid var(--secondary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    animation: plcoo-float 4s ease-in-out infinite;
    position: relative;
}

@keyframes plcoo-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.plcoo-hero h1 {
    color: var(--colortext2);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    position: relative;
}

.plcoo-hero h1 span {
    color: var(--secondary-color);
    display: block;
}

.plcoo-hero-sub {
    color: rgba(255, 255, 255, .65);
    margin-top: 14px;
    font-size: .95rem;
    position: relative;
}

.plcoo-badge-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 22px;
    position: relative;
}

.plcoo-badge {
    display: inline-block;
    background: rgba(132, 217, 4, .15);
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

/* ─── LAYOUT ─────────────────────────────────────── */
.plcoo-page-wrap {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 0;
    max-width: 1180px;
    margin: 0 auto;
    padding: 60px 24px;
}

/* ─── SIDEBAR ────────────────────────────────────── */
.plcoo-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
    padding-right: 36px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-color) rgba(3, 88, 140, .08);
}

.plcoo-sidebar::-webkit-scrollbar {
    width: 4px;
}

.plcoo-sidebar::-webkit-scrollbar-track {
    background: rgba(3, 88, 140, .08);
    border-radius: 4px;
}

.plcoo-sidebar::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 4px;
}

.plcoo-sidebar-title {
    font-size: .7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

.plcoo-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all .25s;
    text-decoration: none;
    color: #444;
    font-size: .83rem;
}

.plcoo-nav-item:hover,
.plcoo-nav-item.active {
    background: var(--primary-color);
    color: #fff;
}

.plcoo-nav-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--secondary-color);
    flex-shrink: 0;
}

/* ─── CONTENT ────────────────────────────────────── */
.plcoo-content {
    min-width: 0;
}

/* ─── SECTIONS ───────────────────────────────────── */
.plcoo-section {
    margin-bottom: 56px;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease;
    scroll-margin-top: 100px;
}

.plcoo-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.plcoo-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.plcoo-section-num {
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.plcoo-section-num::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .2), transparent);
}

.plcoo-section h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.plcoo-section p,
.plcoo-section li {
    font-size: .94rem;
    line-height: 1.78;
    color: #333;
}

.plcoo-section ul {
    padding-left: 0;
    list-style: none;
}

.plcoo-section li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 7px 0;
    border-bottom: 1px solid rgba(3, 88, 140, .07);
}

.plcoo-li-icon {
    margin-top: 4px;
    flex-shrink: 0;
}

/* ─── INTRO STANDARDS ────────────────────────────── */
.plcoo-intro-standards {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.plcoo-std-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(3, 88, 140, .04);
    border: 1px solid rgba(3, 88, 140, .1);
    border-radius: 10px;
    padding: 10px 16px;
    font-size: .82rem;
    color: #333;
    line-height: 1.4;
    flex: 1;
    min-width: 160px;
}

.plcoo-std-item strong {
    color: var(--primary-color);
    font-size: .88rem;
}

/* ─── HIGHLIGHT BOX ──────────────────────────────── */
.plcoo-highlight {
    background: linear-gradient(135deg, var(--primary-color), #025070);
    border-radius: 16px;
    padding: 22px 28px;
    color: #fff;
    margin-top: 18px;
    position: relative;
    overflow: hidden;
    font-size: .93rem;
    line-height: 1.72;
}

.plcoo-highlight::after {
    content: '';
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(132, 217, 4, .15);
}

.plcoo-highlight strong {
    color: var(--secondary-color);
}

/* ─── WARNING BOX ────────────────────────────────── */
.plcoo-warning-box {
    background: rgba(132, 217, 4, .06);
    border: 1px solid rgba(132, 217, 4, .3);
    border-left: 4px solid var(--secondary-color);
    border-radius: 10px;
    padding: 16px 20px;
    margin-top: 14px;
    font-size: .91rem;
    color: #444;
    line-height: 1.7;
}

.plcoo-warning-box strong {
    color: var(--primary-color);
}

/* ─── NO ADS BOX ─────────────────────────────────── */
.plcoo-no-ads-box {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: rgba(3, 88, 140, .04);
    border: 1px solid rgba(3, 88, 140, .12);
    border-left: 4px solid var(--primary-color);
    border-radius: 10px;
    padding: 16px 20px;
    margin-top: 20px;
    font-size: .91rem;
    color: #333;
    line-height: 1.7;
}

.plcoo-no-ads-ico {
    flex-shrink: 0;
    margin-top: 2px;
}

/* ─── INFO CARDS ─────────────────────────────────── */
.plcoo-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.plcoo-info-card {
    background: #fff;
    border: 1px solid rgba(3, 88, 140, .1);
    border-radius: 14px;
    padding: 18px;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    position: relative;
    overflow: hidden;
}

.plcoo-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity .25s;
}

.plcoo-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(3, 88, 140, .12);
    border-color: rgba(3, 88, 140, .25);
}

.plcoo-info-card:hover::before {
    opacity: 1;
}

.plcoo-card-ico {
    margin-bottom: 10px;
}

.plcoo-card-label {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    font-weight: 600;
}

.plcoo-card-value {
    font-size: .9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 5px;
    line-height: 1.5;
}

/* ─── COOKIE TYPE CARDS ──────────────────────────── */
.plcoo-cookie-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 20px;
}

.plcoo-cookie-card {
    background: #fff;
    border: 1px solid rgba(3, 88, 140, .1);
    border-radius: 16px;
    padding: 22px;
    position: relative;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
}

.plcoo-cookie-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.plcoo-cookie-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(3, 88, 140, .12);
}

.plcoo-cc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.plcoo-cc-icon {
    width: 42px;
    height: 42px;
    background: rgba(3, 88, 140, .07);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.plcoo-cc-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.plcoo-cc-subtitle {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-top: 2px;
}

.plcoo-cc-body {
    font-size: .88rem;
    line-height: 1.68;
    color: #444;
}

.plcoo-cc-examples {
    font-size: .83rem;
    color: #666;
    margin-top: 10px;
    line-height: 1.6;
    background: rgba(3, 88, 140, .04);
    padding: 8px 12px;
    border-radius: 6px;
}

.plcoo-cc-tag {
    display: inline-block;
    margin-top: 12px;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: .71rem;
    font-weight: 700;
    letter-spacing: .5px;
}

.plcoo-tag-required {
    background: rgba(3, 88, 140, .1);
    color: var(--primary-color);
}

.plcoo-tag-optional {
    background: rgba(132, 217, 4, .15);
    color: #4a7c01;
}

.plcoo-cc-duration {
    margin-top: 10px;
    font-size: .78rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ─── THIRD-PARTY GRID ───────────────────────────── */
.plcoo-third-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.plcoo-third-item {
    background: #fff;
    border: 1px solid rgba(3, 88, 140, .1);
    border-radius: 14px;
    padding: 18px;
    transition: transform .25s, box-shadow .25s;
}

.plcoo-third-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 26px rgba(3, 88, 140, .1);
}

.plcoo-third-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: .95rem;
    color: var(--primary-color);
}

.plcoo-third-item p {
    font-size: .85rem;
    line-height: 1.65;
    color: #555;
    margin: 0;
}

.plcoo-third-type {
    display: inline-block;
    margin-top: 10px;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: #999;
    font-weight: 600;
}

/* ─── CONSENT PREVIEW ────────────────────────────── */
.plcoo-consent-preview {
    background: #fff;
    border: 1px solid rgba(3, 88, 140, .12);
    border-radius: 16px;
    padding: 22px 24px;
    margin-top: 18px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    box-shadow: 0 4px 20px rgba(3, 88, 140, .07);
    flex-wrap: wrap;
}

.plcoo-cp-icon {
    flex-shrink: 0;
    margin-top: 4px;
}

.plcoo-cp-content {
    flex: 1;
    min-width: 200px;
}

.plcoo-cp-title {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #999;
    font-weight: 700;
    margin-bottom: 8px;
}

.plcoo-cp-text {
    font-size: .88rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 14px;
}

.plcoo-cp-btns {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.plcoo-btn-accept {
    background: var(--secondary-color);
    color: #fff;
    border: none;
    padding: 9px 20px;
    border-radius: 8px;
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity .2s;
}

.plcoo-btn-accept:hover {
    opacity: .85;
}

.plcoo-btn-manage {
    background: transparent;
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
    padding: 9px 20px;
    border-radius: 8px;
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
}

.plcoo-btn-manage:hover {
    background: var(--primary-color);
    color: #fff;
}

.plcoo-btn-reject {
    background: transparent;
    color: #888;
    border: 1.5px solid #ddd;
    padding: 9px 20px;
    border-radius: 8px;
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
}

.plcoo-btn-reject:hover {
    border-color: #aaa;
    color: #555;
}

/* ─── BROWSER GRID ───────────────────────────────── */
.plcoo-browser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.plcoo-browser-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    padding: 18px 12px;
    border: 1px solid rgba(3, 88, 140, .1);
    text-align: center;
    font-size: .82rem;
    color: var(--primary-color);
    font-weight: 600;
    gap: 10px;
    transition: all .25s;
    text-decoration: none;
    cursor: pointer;
}

.plcoo-browser-item:hover {
    box-shadow: 0 6px 20px rgba(3, 88, 140, .12);
    transform: translateY(-3px);
    border-color: rgba(3, 88, 140, .2);
    color: var(--primary-color);
}

/* ─── RIGHTS GRID ────────────────────────────────── */
.plcoo-rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.plcoo-right-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid rgba(3, 88, 140, .09);
    border-radius: 12px;
    padding: 14px 16px;
    transition: box-shadow .25s, transform .25s;
}

.plcoo-right-item:hover {
    box-shadow: 0 6px 18px rgba(3, 88, 140, .1);
    transform: translateY(-2px);
}

.plcoo-right-ico {
    width: 38px;
    height: 38px;
    background: rgba(3, 88, 140, .07);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.plcoo-right-text {
    font-size: .87rem;
    line-height: 1.55;
    color: #444;
}

.plcoo-right-text strong {
    display: block;
    color: var(--primary-color);
    font-size: .9rem;
    margin-bottom: 3px;
}

/* ─── RESPONSE TIME BOX ──────────────────────────── */
.plcoo-response-time {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: rgba(3, 88, 140, .04);
    border: 1px solid rgba(3, 88, 140, .12);
    border-left: 4px solid var(--primary-color);
    border-radius: 12px;
    padding: 16px 20px;
    margin-top: 20px;
    font-size: .9rem;
    line-height: 1.72;
    color: #333;
}

.plcoo-response-time svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* ─── VERSION BOX ────────────────────────────────── */
.plcoo-version-box {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.plcoo-version-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(3, 88, 140, .05);
    border: 1px solid rgba(3, 88, 140, .1);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: .85rem;
    color: #333;
}

/* ─── CONTACT ─────────────────────────────────────── */
.plcoo-contact-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.plcoo-contact-item {
    display: flex;
    gap: 14px;
    align-items: center;
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    border: 1px solid rgba(3, 88, 140, .1);
    transition: all .25s;
}

.plcoo-contact-item:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(3, 88, 140, .2);
}

.plcoo-contact-item:hover .plcoo-ci-label {
    color: rgba(255, 255, 255, .65);
}

.plcoo-contact-item:hover .plcoo-ci-value {
    color: #fff;
}

.plcoo-contact-item:hover .plcoo-ci-ico {
    background: rgba(255, 255, 255, .15);
}

.plcoo-ci-ico {
    width: 42px;
    height: 42px;
    background: rgba(3, 88, 140, .08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .25s;
}

.plcoo-contact-item:hover .plcoo-ci-ico svg path,
.plcoo-contact-item:hover .plcoo-ci-ico svg rect,
.plcoo-contact-item:hover .plcoo-ci-ico svg circle,
.plcoo-contact-item:hover .plcoo-ci-ico svg polyline,
.plcoo-contact-item:hover .plcoo-ci-ico svg polygon,
.plcoo-contact-item:hover .plcoo-ci-ico svg line {
    stroke: var(--primary-color);
    fill: var(--secondary-color);
    transition: stroke .25s, fill .25s;
}

.plcoo-contact-item:hover .plcoo-ci-ico svg [stroke][fill="none"] {
    stroke: var(--secondary-color);
    fill: none;
}

.plcoo-contact-item:hover .plcoo-ci-ico svg [fill]:not([fill="none"]) {
    fill: var(--secondary-color);
    stroke: none;
}

.plcoo-ci-label {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    transition: color .25s;
}

.plcoo-ci-value {
    font-size: .9rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: color .25s;
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 900px) {
    .plcoo-cookie-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .plcoo-page-wrap {
        grid-template-columns: 1fr;
        padding: 36px 16px;
    }

    .plcoo-sidebar {
        display: none;
    }

    .plcoo-hero {
        padding: 60px 20px 50px;
    }

    .plcoo-intro-standards {
        flex-direction: column;
    }

    .plcoo-consent-preview {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .plcoo-badge-group {
        flex-direction: column;
        align-items: center;
    }

    .plcoo-rights-grid {
        grid-template-columns: 1fr;
    }

    .plcoo-third-grid {
        grid-template-columns: 1fr;
    }

    .plcoo-cp-btns {
        flex-direction: column;
    }

    .plcoo-btn-accept,
    .plcoo-btn-manage,
    .plcoo-btn-reject {
        width: 100%;
        text-align: center;
    }
}

/* ===========================================================================================================
                                          DESCARGO DE RESPONSABILIDAD
=========================================================================================================== */
.discl-hero {
    position: relative;
    background: var(--primary-color);
    overflow: hidden;
    padding: 90px 40px 70px;
    text-align: center;
}

.discl-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 80% 50%, rgba(132, 217, 4, .16) 0%, transparent 70%),
        radial-gradient(ellipse 60% 80% at 20% 30%, rgba(255, 255, 255, .06) 0%, transparent 60%);
}

.discl-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(132, 217, 4, .22);
    animation: discl-pulse-ring 7s ease-in-out infinite;
}

.discl-ring:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -80px;
    left: -60px;
    animation-delay: 0s;
}

.discl-ring:nth-child(2) {
    width: 500px;
    height: 500px;
    top: -180px;
    left: -160px;
    animation-delay: 2s;
}

.discl-ring:nth-child(3) {
    width: 700px;
    height: 700px;
    top: -280px;
    left: -260px;
    animation-delay: 4s;
}

@keyframes discl-pulse-ring {

    0%,
    100% {
        opacity: .35;
        transform: scale(1);
    }

    50% {
        opacity: .9;
        transform: scale(1.04);
    }
}

.discl-hero-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, .1);
    border: 2px solid var(--secondary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    animation: discl-float 4.5s ease-in-out infinite;
    position: relative;
}

@keyframes discl-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.discl-hero h1 {
    color: var(--colortext2);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    position: relative;
}

.discl-hero h1 span {
    color: var(--secondary-color);
    display: block;
}

.discl-hero-sub {
    color: rgba(255, 255, 255, .65);
    margin-top: 14px;
    font-size: .95rem;
    position: relative;
}

.discl-badge-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 22px;
    position: relative;
}

.discl-badge {
    display: inline-block;
    background: rgba(132, 217, 4, .15);
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

/* ─── INTRO NOTICE ───────────────────────────────── */
.discl-intro-notice {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: rgba(3, 88, 140, .04);
    border: 1px solid rgba(3, 88, 140, .12);
    border-left: 4px solid var(--primary-color);
    border-radius: 12px;
    padding: 18px 22px;
    margin-top: 18px;
    font-size: .92rem;
    line-height: 1.72;
    color: #333;
}

.discl-notice-ico {
    width: 44px;
    height: 44px;
    background: rgba(3, 88, 140, .08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ─── LAYOUT ─────────────────────────────────────── */
.discl-page-wrap {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 0;
    max-width: 1180px;
    margin: 0 auto;
    padding: 60px 24px;
}

/* ─── SIDEBAR ────────────────────────────────────── */
.discl-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
    padding-right: 36px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-color) rgba(3, 88, 140, .08);
}

.discl-sidebar::-webkit-scrollbar {
    width: 4px;
}

.discl-sidebar::-webkit-scrollbar-track {
    background: rgba(3, 88, 140, .08);
    border-radius: 4px;
}

.discl-sidebar::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 4px;
}

.discl-sidebar-title {
    font-size: .7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

.discl-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all .25s;
    text-decoration: none;
    color: #444;
    font-size: .83rem;
}

.discl-nav-item:hover,
.discl-nav-item.active {
    background: var(--primary-color);
    color: #fff;
}

.discl-nav-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--secondary-color);
    flex-shrink: 0;
}

/* ─── CONTENT ────────────────────────────────────── */
.discl-content {
    min-width: 0;
    padding-left: 15px;
}

/* ─── SECTIONS ───────────────────────────────────── */
.discl-section {
    margin-bottom: 56px;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease;
    scroll-margin-top: 100px;
}

.discl-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.discl-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.discl-section-num {
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.discl-section-num::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .2), transparent);
}

.discl-section h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.discl-section p,
.discl-section li {
    font-size: .94rem;
    line-height: 1.78;
    color: #333;
}

.discl-section ul {
    padding-left: 0;
    list-style: none;
}

.discl-section li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 7px 0;
    border-bottom: 1px solid rgba(3, 88, 140, .07);
}

.discl-li-icon {
    margin-top: 4px;
    flex-shrink: 0;
}

/* ─── INFO CARDS ─────────────────────────────────── */
.discl-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.discl-info-card {
    background: #fff;
    border: 1px solid rgba(3, 88, 140, .1);
    border-radius: 14px;
    padding: 18px;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    position: relative;
    overflow: hidden;
}

.discl-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity .25s;
}

.discl-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(3, 88, 140, .12);
    border-color: rgba(3, 88, 140, .25);
}

.discl-info-card:hover::before {
    opacity: 1;
}

.discl-card-ico {
    margin-bottom: 10px;
}

.discl-card-label {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    font-weight: 600;
}

.discl-card-value {
    font-size: .9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 5px;
    line-height: 1.5;
}

/* ─── HIGHLIGHT BOX ──────────────────────────────── */
.discl-highlight {
    background: linear-gradient(135deg, var(--primary-color), #025070);
    border-radius: 16px;
    padding: 22px 28px;
    color: #fff;
    margin-top: 18px;
    position: relative;
    overflow: hidden;
    font-size: .93rem;
    line-height: 1.7;
}

.discl-highlight::after {
    content: '';
    position: absolute;
    left: -30px;
    bottom: -30px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(132, 217, 4, .15);
}

.discl-highlight strong {
    color: var(--secondary-color);
}

/* ─── JURISDICTION BOX ───────────────────────────── */
.discl-jurisdiction-box {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.discl-jur-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(3, 88, 140, .05);
    border: 1px solid rgba(3, 88, 140, .1);
    border-radius: 8px;
    padding: 10px 16px;
    font-size: .86rem;
    color: #333;
}

/* ─── VERSION BOX ────────────────────────────────── */
.discl-version-box {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.discl-version-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(3, 88, 140, .05);
    border: 1px solid rgba(3, 88, 140, .1);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: .85rem;
    color: #333;
}

/* ─── CONTACT CARDS ──────────────────────────────── */
.discl-contact-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.discl-contact-item {
    display: flex;
    gap: 14px;
    align-items: center;
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    border: 1px solid rgba(3, 88, 140, .1);
    transition: all .25s;
}

.discl-contact-item:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(3, 88, 140, .2);
}

.discl-contact-item:hover .discl-ci-label {
    color: rgba(255, 255, 255, .65);
}

.discl-contact-item:hover .discl-ci-value {
    color: #fff;
}

.discl-contact-item:hover .discl-ci-ico {
    background: rgba(255, 255, 255, .15);
}

.discl-ci-ico {
    width: 42px;
    height: 42px;
    background: rgba(3, 88, 140, .08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .25s;
}

.discl-ci-label {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    transition: color .25s;
}

.discl-ci-value {
    font-size: .9rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: color .25s;
}

.discl-contact-item:hover .discl-ci-ico svg path,
.discl-contact-item:hover .discl-ci-ico svg rect,
.discl-contact-item:hover .discl-ci-ico svg circle,
.discl-contact-item:hover .discl-ci-ico svg polyline,
.discl-contact-item:hover .discl-ci-ico svg polygon,
.discl-contact-item:hover .discl-ci-ico svg line {
    stroke: var(--primary-color);
    fill: var(--secondary-color);
    transition: stroke .25s, fill .25s;
}

.discl-contact-item:hover .discl-ci-ico svg [stroke][fill="none"] {
    stroke: var(--secondary-color);
    fill: none;
}

.discl-contact-item:hover .discl-ci-ico svg [fill]:not([fill="none"]) {
    fill: var(--secondary-color);
    stroke: none;
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 768px) {
    .discl-page-wrap {
        grid-template-columns: 1fr;
        padding: 36px 16px;
    }

    .discl-sidebar {
        display: none;
    }

    .discl-hero {
        padding: 60px 20px 50px;
    }

    .discl-content {
        padding-left: 0;
    }

    .discl-intro-notice {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .discl-badge-group {
        flex-direction: column;
        align-items: center;
    }

    .discl-jurisdiction-box {
        flex-direction: column;
    }
}

