.about__two__circle .circle-main .round-text .text_1 {
    top: 0px;
    right: 0px;
}

.see__pad {
    padding: 100px 0px !important;
}

.portfolio {
    padding: 20px 0px 100px !important;
}

.centrar-elemento {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.card-oficina {
    height: 30rem;
    margin: 1.5rem;
    transition: all 0.2s;
    position: relative;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 7px 7px 0px 0px #0b2447;

    background-image: url('../images/banners/banner-05.webp');
    background-size: cover;
    background-position: center;
}

.title-oficina {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.title-oficina p {
    font-weight: bold;
    font-size: 25px;
}

.card-inner {
    width: inherit;
    height: inherit;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    position: relative;
}

.image-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 5px rgba(137, 137, 137, 0.3);
}

.image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius:50%;
}

.card-oficina:hover {
    transform: scale(1.04) rotate(1deg);
}

.circle {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    position: absolute;
    box-shadow: 0px 0px 5px 5px #0b2447;
}

.main-header.two .header-lower .outer-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
}

.banner__two {
    height: 100vh;
}

.banner__data__two {
    right: 0;
    bottom: 0;
    left: 0;
}

#css2dRender {
    position: absolute;
    top: 0px;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    z-index: 1; /* TODO Solve this in HTML */
}

/* *************************************** */
/* Points */
.point
{
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 4;
    pointer-events: all;

}

.point .label
{
    position: absolute;
    top: -20px;
    left: -20px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffffffc7;
    border: 1px solid #000000;
    color: #ffffff;
    font-family: 'Archivo';
    text-align: center;
    line-height: 40px;
    font-weight: 100;
    font-size: 14px;
    cursor: zoom-in;
    transform: scale(0, 0);
    transition: transform 0.3s;
    z-index: 4;
}

.point.visible .label
{
    transform: scale(1, 1);
}

.point .text
{
    position: absolute;
    /* top: -2vh; */
    /* left: 20px; */
    width: 95px;
    padding: 10px;
    border-radius: 4px;
    background: #000000bf;
    border: 1px solid #ffffff;
    color: #ffffff;
    line-height: 1.3em;
    font-family: 'Archivo';
    font-weight: 100;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 4;
    text-align: center;
}

.point:hover .text
{
    opacity: 1;
}

#div-points{
    top: 0px;
    left: 0px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 5;
    width: 100%;
    height: 100%;
    pointer-events: none;
    visibility: hidden;
}

#interior-view:before,
#interior-view:after {
    content: '';
    position: absolute;
    left: -20px;
    top: -20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid #cdcdcd38;
    border-radius: 50%;
    animation: animate 3s linear infinite;
}

#interior-view:after {
    animation-delay: 1s;
}

@keyframes animate {
    0% {
        transform: scale(2.0);
    }

    100% {
        transform: scale(0.7);
    }
}
#point {
    width: 16px;
    height: 16px;
    border-radius: 100%;
    border: 3px solid #fff;
    position: fixed;
    left: 10px;
    top: 10px;
    box-shadow: #fff 0px 0px 8px;
    user-select: none;
}



.build_tag {
    pointer-events: all;
}

.build_tag::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: url('../../../../imagenes/banners/icon_pos.png') center/contain no-repeat;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.build_tag::after {
    content: '';
    position: absolute;
    top: -40%;
    left: -15px; /* Ajusta para centrar el borde exterior */
    transform: translateY(-50%);
    width: 50px; /* Ajusta el tamaño del borde exterior */
    height: 50px; /* Ajusta el tamaño del borde exterior */
    background-color: rgba(215, 215, 215, 0.5);
    border-radius: 50%;
    border: 2px solid #FFF;  /* Importante para incluir el borde en el tamaño total */
    animation: pulse 1.5s ease-out infinite;
}

/* Animación del parpadeo */
@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

/* ********************************************************************************************************** */
/* ESTILOS DOS */
/* INICIO CARDS */
:root {
  /* --bg-card: #121212;
  --bg-body: #0a0a0a; */
  /* #0f141a  #1b232d */
  --bg-card: #0f141a;
  --bg-body: #1b232d;
  --text-main: #ffffff;
  --text-dim: #a0a0a0;
  --primary: #3498db;
  --danger: #e74c3c;
  --success: #2ecc71;
  --accent: #f1c40f;
    /* HOTSPOT */
    /* CAMBIA ESTE VALOR PARA REDIMENSIONAR TODO */
    --size: 100px; 
    /* Cálculos automáticos basados en el tamaño (6 col, 8 filas) */
    --bg-width: calc(var(--size) * 6);
    --bg-height: calc(var(--size) * 8);
    --pos-offset: calc(var(--size) * -1);
}

.desing-details {
    min-width: 14.875rem;
    max-width: 14.875rem;
    align-self: stretch;
    background-color: var(--custom-white);/*rgb(26, 28, 30)*/
    height: calc(100vh - 8rem);
    border-radius: 0.5rem;
    padding: 10px;
}

.form-desing-tour {
    background-color: var(--custom-white);/*rgb(26, 28, 30)*/
    height: calc(100vh - 8rem);
    border-radius: 0.5rem;
}

.border-desing {
    border-radius: 0.5rem;
}

.btn-list-dianmic{
    display: flex;
    justify-content: space-between;
}

.hr-desing {
    border: 0;
    height: 2px;

    background: linear-gradient(
        to right,
        transparent,
        #00d4ff,
        transparent
    );

    box-shadow: 0 0 10px #00d4ff;
}

.action-upload-image{
    padding: 50px;
    cursor: pointer;
    margin: auto;
}

/* INCICIO BOTON CERRAR */
.close-btn {
    display: inline-flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    top: 60px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: white;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.25), inset 0 0 1px rgba(255,255,255,0.2);
    transition: all 0.25s ease;
    z-index: 1;
}


.close-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
    transform: scale(1.08);
    box-shadow:0 6px 20px rgba(0,0,0,0.35), 0 0 12px rgba(255,255,255,0.12);
}

.close-btn:active {
    transform: scale(0.95);
}
/* FIN BOTON CERRAR */

.card-deyvi {
  transition: transform 0.3s ease;
}

.card-deyvi:hover {
  transform: translateY(-5px);
}

.path-glow {
  height: 1px;
  width: 100%;
  background: linear-gradient(to left, transparent, var(--accent), transparent);
  position: absolute;
  bottom: 0;
  filter: blur(25px);
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.card-deyvi:hover .path-glow {
  opacity: 0.8;
  filter: blur(10px);
}

.card-deyvi .path-line {
  height: 1px;
  width: 1%;
  background: var(--accent);
  margin: auto;
  border-radius: 10px;
  transition: 0.5s;
  position: absolute;
  bottom: 0;
  left: 50%;
}

.card-deyvi:hover .path-line {
  width: 100%;
  left: 0;
  box-shadow: 0 0 20px var(--accent);
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}
/* FIN CARDS */

/* DROPZONE ME */
.dropzone .dz-preview.dz-image-preview {
    background: #232628 !important;
}
/* DROPZONE ME */

/* INICIO DE INPUT FILE */
.create-nft-item input[type="file"]{
    display: none;
}

.image-preview{
    max-width: 300px;
    max-height: 300px;
    border-radius: 30px;
}
/* FIN DE INPUT FILE */

/* INICIO CHECK BOX DEL FORMULARIO */
.checkbox-wrapper-59 {
    margin-top:8px;
}

.checkbox-wrapper-59 input[type="checkbox"] {
    visibility: hidden;
    display: none;
}

.checkbox-wrapper-59 *,
.checkbox-wrapper-59 ::after,
.checkbox-wrapper-59 ::before {
    box-sizing: border-box;
}

.checkbox-wrapper-59 .switch {
    padding-top: 0.25rem;
    width: 45px;
    height: 25px;
    position: relative;
    display: inline-block;
}

.checkbox-wrapper-59 .slider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 30px;
    box-shadow: 0 0 0 2px #f96060, 0 0 4px #777;
    cursor: pointer;
    border: 4px solid transparent;
    overflow: hidden;
    transition: 0.2s;
}

.checkbox-wrapper-59 .slider:before {
    position: absolute;
    content: "";
    width: 45%;
    height: 100%;
    background-color: #f96060;
    border-radius: 30px;
    transform: translateX(0px);
    transition: 0.2s;
    right: 20px;
    right: 20px;
}

.checkbox-wrapper-59 input:checked + .slider:before {
    transform: translateX(20px);
    background-color: limeGreen;
}

.checkbox-wrapper-59 input:checked + .slider {
    box-shadow: 0 0 0 2px limeGreen, 0 0 8px limeGreen;
}
/* FIN CHECK BOX DEL FORMULARIO */

/* CARD CARRERAS */
.hero {
    display: inline-block;
    position: relative;
    width: 400px;
    min-width: 400px;
    height: 400px;
    border-radius: 30px;
    overflow:hidden;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.3);
    margin: 30px;
}

.hero-profile-img {
    height: 70%;
}

.hero-description-bk {
    background-image: linear-gradient(0deg , #3f5efb, #46f9fc);
    border-radius: 30px;
    position: absolute;
    top: 55%;
    left: -5px;
    height: 65%;
    width: 108%;
    transform: skew(19deg, -9deg);
}

.second .hero-description-bk {
    background-image: linear-gradient(-20deg , #bb7413, #e7d25c)
}

.hero-logo {
    height: 80px;
    width: 80px;
    border-radius: 20px;
    background-color: #fff;
    position: absolute;
    bottom: 30%;
    left: 30px;
    overflow:hidden;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.7);
}

.hero-logo img {
    height: 100%;
}

.hero-description {
    position: absolute;
    color: #fff;
    font-weight: 900;
    left: 150px;
    bottom: 26%;
}

.hero-btn {
    position: absolute;
    color: #fff;
    right: 30px;
    bottom: 10%;
    padding: 10px 20px;
    border: 1px solid #fff;
}

.hero-btn a {
    color: #fff;
}

.hero-date {
    position: absolute;
    color: #fff;
    left: 30px;
    bottom: 10%;
}
/* END CARD DESIGN */


/* BTN HOVER NEON */
.btn-tour {
    width: 2.313rem;
    height: 2.313rem;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
    box-shadow: 0 8px 32px 0 rgba(#333, 0.2);
    backdrop-filter: blur(4px);
    margin: 3px;
    cursor: pointer;
    transition: all 200ms ease;
}

.btn-tour-add {
    line-height: .7;
}

.btn-tour i {
    margin: -0.9rem -1.5rem;
    font-size: xx-large;
}

.btn-tour::before{
    position: absolute;
    left: 0;
    top: 0;
    transition: all 750ms ease;
    z-index: -1;
    background-color: rgba(#ffffff, 0.4);

    left: -85%;
    width: 100%;
    height: 150%;
    transform: rotate(45deg);
}

.btn-tour:hover{
    box-shadow: 0 8px 44px 0 rgba(#333, 0.2);
    border: 2px solid #4b4b4b;
    transform: translateY(-25%);
}

/* ESTILOS DE LOS BOTONES */
#controls {
    position: absolute;
    bottom: 0;
    left: 3rem;
    z-index: 2;
    text-align: left;
    width: 100%;
}

.ctrl {
    padding: 8px 5px;
    width: 30px;
    text-align: center;
    background: rgba(200, 200, 200, 0.8);
    display: inline-block;
    cursor: pointer;
}

.ctrl:hover {
    background: rgba(200, 200, 200, 1);
}

.pnlm-container * {
    box-sizing: border-box;
}

.pnlm-load-box {
    opacity: 0;
}

.pnlm-lbox {

}

.pnlm-loading {

}

.pnlm-lbar {

}

.pnlm-lbar-fill {

}

.pnlm-lmsg {

}



/* INCIO ADMIN */
.checkbox-wrapper-59 {
    margin-top:8px;
}

.checkbox-wrapper-59 input[type="checkbox"] {
    visibility: hidden;
    display: none;
}

.checkbox-wrapper-59 *,
.checkbox-wrapper-59 ::after,
.checkbox-wrapper-59 ::before {
    box-sizing: border-box;
}

.checkbox-wrapper-59 .switch {
    padding-top: 0.25rem;
    width: 45px;
    height: 25px;
    position: relative;
    display: inline-block;
}

.checkbox-wrapper-59 .slider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 30px;
    box-shadow: 0 0 0 2px #f96060, 0 0 4px #777;
    cursor: pointer;
    border: 4px solid transparent;
    overflow: hidden;
    transition: 0.2s;
}

.checkbox-wrapper-59 .slider:before {
    position: absolute;
    content: "";
    width: 45%;
    height: 100%;
    background-color: #f96060;
    border-radius: 30px;
    transform: translateX(0px);
    transition: 0.2s;
    right: 20px;
}

.checkbox-wrapper-59 input:checked + .slider:before {
    transform: translateX(20px);
    background-color: limeGreen;
}

.checkbox-wrapper-59 input:checked + .slider {
    box-shadow: 0 0 0 2px limeGreen, 0 0 8px limeGreen;
}

/* INICI SCROLLBAR */
::-webkit-scrollbar {
    background-color: #1d1d1d;
    width: 3px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

::-webkit-scrollbar-thumb {
    background: #95e3ff;
    border-radius: 3px;
}
/* FIN SCROLLBAR  */

.main-chart-wrapper .chat-info {
    min-width: 14.875rem;
    max-width: 14.875rem;
}

.main-chart-wrapper .chat-user-details {
    min-width: 14.875rem;
    max-width: 14.875rem;
    align-self: stretch;
}

.main-chart-wrapper .main-chat-area .chat-content {
    padding: 1.5rem;
}

.parent-desing {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 8px;
}

/* INCIO ADMIN */
#imagenPanorama2D {
    width: 100%;
    height: 50vh; /* Ajusta la altura inicial según sea necesario */
    border: 1px solid #1dff26;
    overflow: hidden;
    position: relative;
}

#panoramaContainer {
    /* width: 800px;
    height: 500px; */

    width: 100%;
    height: 73vh;
    margin: 0 auto;
}

.hotspot {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #06a6ff;
    cursor: move;
    z-index: 10;
}

#lienzo {
    width: 200px;
    cursor: move;
}

.image-container {
    padding: 0.2rem;
    position: relative;
    width: 100%;
    /* height: 100%; */
    overflow: hidden;
}

.image-container img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* INCIO HOTSPOT */
.hotspot-preview {
    /*position: absolute;
    cursor: move;
    z-index: 10;*/
    background: url("{{asset('street/hotspot/info.png')}}") no-repeat;
    width: 155px;
    height: 155px;
    object-fit: cover;
    background-position: 0px 0;
    animation: anim-sprite-hotspot 1s steps(6) infinite;
}

@keyframes anim-sprite-hotspot {
    to {
        background-position: -930px 0;
    }
}

#streetview {
    /*width: 100%;
    height: 100%;*/
    border: 1px solid #00FCE8;
}

#panoramaContainerFull {
    width: 100%;
    height: 100vh;
}

.imagenHotspot input{
    display: none;
}

/* Estilos para el popup */
.popup-container {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.popup-content {
    background-color: #fff;
    max-width: 80%;
    max-height: 80%;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease-out;
}

#popupImage {
    max-width: 100%;
    max-height: 100%;
    transition: transform 0.3s ease-out;
}
/* FIN HOTSPOT */

/* INICIO SPRITE */

.sprite{
    width: var(--size);
    height: var(--size);
    background-repeat: no-repeat;
    background-size: var(--bg-width) var(--bg-height);
    animation: playSprite 2s steps(1) infinite;
}

.sp-door {
    /* background-image: url("../../street/hotspot/door.png"); */
    background-image: url("../images/hotspot/door.png");
}

.sp-door-b {
    background-image: url("../images/hotspot/door-b.png");
}

.sp-dron {
    background-image: url("../images/hotspot/dron.png");
}

.sp-dron-b {
    background-image: url("../images/hotspot/dron-b.png");
}

.sp-info {
    background-image: url("../images/hotspot/info.png");
}

.sp-info-b {
    background-image: url("../images/hotspot/info-b.png");
}

.sp-play {
    background-image: url("../images/hotspot/play.png");
}

.sp-play-b {
    background-image: url("../images/hotspot/play-b.png");
}

.sp-picture {
    background-image: url("../images/hotspot/picture.png");
}

.sp-picture-b {
    background-image: url("../images/hotspot/picture-b.png");
}

.sp-left {
    background-image: url("../images/hotspot/left.png");
}

.sp-left-b {
    background-image: url("../images/hotspot/left-b.png");
}

.sp-left-side {
    background-image: url("../images/hotspot/left-side.png");
}

.sp-left-side-b {
    background-image: url("../images/hotspot/left-side-b.png");
}

.sp-left-top {
    background-image: url("../images/hotspot/left-top.png");
}

.sp-left-top-b {
    background-image: url("../images/hotspot/left-top-b.png");
}

.sp-right {
    background-image: url("../images/hotspot/right.png");
}

.sp-right-b {
    background-image: url("../images/hotspot/right-b.png");
}

.sp-right-side {
    background-image: url("../images/hotspot/right-side.png");
}

.sp-right-side-b {
    background-image: url("../images/hotspot/right-side-b.png");
}

.sp-right-top {
    background-image: url("../images/hotspot/right-top.png");
}

.sp-right-top-b {
    background-image: url("../images/hotspot/right-top-b.png");
}

.sp-side {
    background-image: url("../images/hotspot/side.png");
}

.sp-side-b {
    background-image: url("../images/hotspot/side-b.png");
}

.sp-top {
    background-image: url("../images/hotspot/top.png");
}

.sp-top-b {
    background-image: url("../images/hotspot/top-b.png");
}

/* Animacion en grados */

.sp-g-left {
    background-image: url("../images/hotspot/g-left.png");
}

.sp-g-left-b {
    background-image: url("../images/hotspot/grados/g-left-b.png");
}

.sp-g-left-top {
    background-image: url("../images/hotspot/g-left-top.png");
}

.sp-g-left-top-b {
    background-image: url("../images/hotspot/grados/g-left-top-b.png");
}

.sp-g-right {
    background-image: url("../images/hotspot/g-right.png");
}

.sp-g-right-b {
    background-image: url("../images/hotspot/grados/g-right-b.png");
}

.sp-g-right-top {
    background-image: url("../images/hotspot/g-right-top.png");
}

.sp-g-right-top-b {
    background-image: url("../images/hotspot/grados/g-right-top-b.png");
}

.sp-g-top {
    background-image: url("../images/hotspot/g-top.png");
}

.sp-g-top-b {
    background-image: url("../images/hotspot/grados/g-top-b.png");
}

@keyframes playSprite {
    /* Fila 1 */
    0% { background-position: 0px 0px; }
    2.32% { background-position: calc(var(--pos-offset) * 1) 0px; }
    4.65% { background-position: calc(var(--pos-offset) * 2) 0px; }
    6.97% { background-position: calc(var(--pos-offset) * 3) 0px; }
    9.30% { background-position: calc(var(--pos-offset) * 4) 0px; }
    11.62% { background-position: calc(var(--pos-offset) * 5) 0px; }

    /* Fila 2 */
    13.95% { background-position: 0px calc(var(--pos-offset) * 1); }
    16.27% { background-position: calc(var(--pos-offset) * 1) calc(var(--pos-offset) * 1); }
    18.60% { background-position: calc(var(--pos-offset) * 2) calc(var(--pos-offset) * 1); }
    20.93% { background-position: calc(var(--pos-offset) * 3) calc(var(--pos-offset) * 1); }
    23.25% { background-position: calc(var(--pos-offset) * 4) calc(var(--pos-offset) * 1); }
    25.58% { background-position: calc(var(--pos-offset) * 5) calc(var(--pos-offset) * 1); }

    /* Fila 3 */
    27.90% { background-position: 0px calc(var(--pos-offset) * 2); }
    30.23% { background-position: calc(var(--pos-offset) * 1) calc(var(--pos-offset) * 2); }
    32.55% { background-position: calc(var(--pos-offset) * 2) calc(var(--pos-offset) * 2); }
    34.88% { background-position: calc(var(--pos-offset) * 3) calc(var(--pos-offset) * 2); }
    37.20% { background-position: calc(var(--pos-offset) * 4) calc(var(--pos-offset) * 2); }
    39.53% { background-position: calc(var(--pos-offset) * 5) calc(var(--pos-offset) * 2); }

    /* Fila 4 */
    41.86% { background-position: 0px calc(var(--pos-offset) * 3); }
    44.18% { background-position: calc(var(--pos-offset) * 1) calc(var(--pos-offset) * 3); }
    46.51% { background-position: calc(var(--pos-offset) * 2) calc(var(--pos-offset) * 3); }
    48.83% { background-position: calc(var(--pos-offset) * 3) calc(var(--pos-offset) * 3); }
    51.16% { background-position: calc(var(--pos-offset) * 4) calc(var(--pos-offset) * 3); }
    53.48% { background-position: calc(var(--pos-offset) * 5) calc(var(--pos-offset) * 3); }

    /* Fila 5 */
    55.81% { background-position: 0px calc(var(--pos-offset) * 4); }
    58.13% { background-position: calc(var(--pos-offset) * 1) calc(var(--pos-offset) * 4); }
    60.46% { background-position: calc(var(--pos-offset) * 2) calc(var(--pos-offset) * 4); }
    62.79% { background-position: calc(var(--pos-offset) * 3) calc(var(--pos-offset) * 4); }
    65.11% { background-position: calc(var(--pos-offset) * 4) calc(var(--pos-offset) * 4); }
    67.44% { background-position: calc(var(--pos-offset) * 5) calc(var(--pos-offset) * 4); }

    /* Fila 6 */
    69.76% { background-position: 0px calc(var(--pos-offset) * 5); }
    72.09% { background-position: calc(var(--pos-offset) * 1) calc(var(--pos-offset) * 5); }
    74.41% { background-position: calc(var(--pos-offset) * 2) calc(var(--pos-offset) * 5); }
    76.74% { background-position: calc(var(--pos-offset) * 3) calc(var(--pos-offset) * 5); }
    79.06% { background-position: calc(var(--pos-offset) * 4) calc(var(--pos-offset) * 5); }
    81.39% { background-position: calc(var(--pos-offset) * 5) calc(var(--pos-offset) * 5); }

    /* Fila 7 */
    83.72% { background-position: 0px calc(var(--pos-offset) * 6); }
    86.04% { background-position: calc(var(--pos-offset) * 1) calc(var(--pos-offset) * 6); }
    88.37% { background-position: calc(var(--pos-offset) * 2) calc(var(--pos-offset) * 6); }
    90.69% { background-position: calc(var(--pos-offset) * 3) calc(var(--pos-offset) * 6); }
    93.02% { background-position: calc(var(--pos-offset) * 4) calc(var(--pos-offset) * 6); }
    95.34% { background-position: calc(var(--pos-offset) * 5) calc(var(--pos-offset) * 6); }

    /* Fila 8 - Final */
    97.67% { background-position: 0px calc(var(--pos-offset) * 7); }
    100% { background-position: 0px calc(var(--pos-offset) * 7); }
}

/* FIN SPRITE */


/* INICIO DESING USER */

/* CONTAINER CARD */
.container-carrera{
    max-width: 100em;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-content: flex-start;
    gap: 30px;
    margin: auto;
    min-height: 30em;
    /* padding: 3em 1em 1em 1em; */
    box-sizing: border-box;
}
/* CONTAINER CARD */

/* INICIO DE CARD */
.card-location{
    width:360px;
    border-radius:30px;
    border:1px solid rgba(56,189,248,0.08);
    /* background:linear-gradient(
        160deg,
        #0b1120,
        #020617
    ); */

    background: linear-gradient(160deg, #1b212c, #31333c);
    overflow:hidden;
    position:relative;
    cursor:pointer;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    /* box-shadow: 0 25px 60px rgba(0,0,0,0.7), 0 0 40px rgba(56,189,248,0.05); */

    transition:0.4s ease;
}

.card-location:hover{
    transform:translateY(-4px);
}

/* EFECTO TECNOLÓGICO */

.card-location::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        130deg,
        transparent,
        rgba(56,189,248,0.03),
        transparent
    );
    pointer-events:none;
}

.content{
    padding:45px 30px;
    text-align:center;
    position:relative;
    z-index:2;
}

/* CONTENEDOR */

.location-container{
    position:relative;
    width:190px;
    margin:0 auto;
    display:flex;
    flex-direction:column;
    align-items:center;
}

/* ICONO */

.icon-wrapper{
    position:relative;
    width:130px;
    height:130px;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:2;
}

/* CÍRCULOS */

.pulse-ring{
    position:absolute;
    width:100%;
    height:100%;
    border-radius:50%;
    border:2px solid rgba(168,85,247,0.35);
    animation:expandRing 2.5s infinite;
    box-shadow:0 0 20px rgba(168,85,247,0.25);
}

.pulse-ring::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:50%;
    border:2px solid rgba(236,72,153,0.25);
    animation:expandRing 2.5s infinite 1s;
    box-shadow:0 0 18px rgba(236,72,153,0.18);
}

/* CAJA ICONO */

.icon-box{
    padding:28px;
    border-radius:50%;
    border:1px solid rgba(56,189,248,0.12);
    background:linear-gradient(
        to bottom right,
        #111827,
        #020617
    );
    box-shadow:
        inset 0 1px 1px rgba(255,255,255,0.02),
        0 0 30px rgba(56,189,248,0.06);
}

/* ICONO GEO */

.geo-icon{
    width:64px;
    height:64px;
    fill:#9edbe7;
    display:block;
}

/* EFECTO SALTO */

.card-location:hover .geo-icon{
    animation:geoJump 0.8s ease-in-out;
}

/* LINEA */

.guide-line{
    width:4px;
    height:50px;
    background:linear-gradient(
        to bottom,
        #38bdf8,
        transparent
    );
    border-radius:999px;
    margin-top:-5px;
    box-shadow:0 0 15px rgba(56,189,248,0.3);
}

/* LOGO */
.logo-tours{
    width:150px;
    height:150px;
    object-fit:contain;
    padding:14px;
    border-radius:50%;
    border:2px solid rgba(56,189,248,0.15);
    /* background:#0b1120; */
    filter:
        drop-shadow(0 0 10px rgba(56,189,248,0.25))
        drop-shadow(0 0 25px rgba(168,85,247,0.18));
    transition:0.4s ease;
}

.card-location:hover .logo-tours{
    transform:scale(1.05);
    border-color:#38bdf8;
    filter:
        drop-shadow(0 0 15px rgba(56,189,248,0.35))
        drop-shadow(0 0 35px rgba(168,85,247,0.28));
}

/* TITULO */

.title-tours{
    margin-top:10px;
    font-size:30px;
    font-weight:bold;
    letter-spacing:1px;
    background:linear-gradient(
        to right,
        #7dd3fc,
        #38bdf8,
        #0ea5e9
    ) !important;
    background-clip:text !important;
    -webkit-background-clip:text !important;
    color:transparent !important;
}

h1.title-tours{
    line-height: 35px !important;
}

/* TEXTO */
.subtitle-tours{
    color:#94a3b8;
    font-size:15px;
    line-height:1.8;
    font-weight:bold;
    /* margin-top:15px; */
}

/* DOTS */
.dots{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-top:28px;
}

.dot{
    width:8px;
    height:8px;
    border-radius:50%;

    background:#38bdf8;

    animation:bounce 1s infinite;

    box-shadow:0 0 12px rgba(56,189,248,0.6);
}

.dot:nth-child(2){
    animation-delay:0.1s;
}

.dot:nth-child(3){
    animation-delay:0.2s;
}

/* =========================
    RESPONSIVE
========================= */

@media (max-width: 480px){
    .card-location{
        width:100%;
        border-radius:24px;
    }

    .content{
        padding:35px 20px;
    }

    .location-container{
        width:100%;
    }

    .icon-wrapper{
        width:110px;
        height:110px;
    }

    .icon-box{
        padding:22px;
    }

    .geo-icon{
        width:54px;
        height:54px;
    }

    .guide-line{
        height:40px;
    }

    .logo-tours{
        width:120px;
        height:120px;
    }

    .title-tours{
        font-size:28px;
        margin-top:28px;
    }

    .subtitle-tours{
        font-size:13px;
        line-height:1.7;
        padding:0 5px;
    }

    .dots{
        margin-top:22px;
        gap:8px;
    }

    .dot{
        width:7px;
        height:7px;
    }

}

@media (min-width: 481px) and (max-width: 768px){
    .card-location{
        width:85%;
        max-width:420px;
    }

    .logo-tours{
        width:135px;
        height:135px;
    }

    .title-tours{
        font-size:32px;
    }
}

/* Card Ruta */
.card-ruta{
    width: clamp(260px, 80%, 320px);
    color: #949db1;
    background: linear-gradient(145deg, #1f202d, #818181);
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    overflow: visible;
    position: relative;
    cursor: pointer;
    transition: all .3s ease;
    padding-top: 60px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08);
    transition: .3s ease;
    margin: 100px 20px 20px 20px;
}

.card-ruta:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.top-image-ruta{
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px !important;
    height: auto;
    z-index: 10;
    filter: drop-shadow(0 10px 18px rgba(56, 189, 248, .25));
}

.card-ruta:hover .top-image-ruta{
    transform:translateX(-50%) translateY(-6px) scale(1.05);
    filter:drop-shadow(0 16px 24px rgba(56,189,248,.35));
}

.descripcion-ruta{
    display: flex;
    flex-direction: column;
    padding:30px 25px;
    margin-top: 35px;
}
.content-ruta{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:45px;
}
.texto.ruta{
    display:flex;
    flex-direction:column;
}

.icon-ruta{
    flex-shrink:0;
    width:72px;
    height:72px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.icon-ruta svg{
    width:100%;
    height:100%;
    fill:#38bdf8;
    filter:drop-shadow(0 10px 18px rgba(56,189,248,.25));
    transition:.3s ease;
}

.card-ruta:hover .icon svg{
    transform:translateY(-4px);
    filter:drop-shadow(0 14px 22px rgba(56,189,248,.35));
}

.title-ruta{
    font-size:clamp(15px, 4vw, 20px);
    font-weight:900;
    text-transform:uppercase;
    font-family:Arial,sans-serif;
    background:linear-gradient(
        90deg,
        #00c6ff,
        #38bdf8,
        #0ea5e9,
        #2563eb
    );
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    filter:drop-shadow(0 2px 6px rgba(56,189,248,.35));
}

.subtitle-ruta{
    color:#e2ecff;
    text-transform:uppercase;
    letter-spacing:3px;
    margin-top:4px;
    font-size:14px;
}

.info-ruta{
    /* margin-top:32px; */
    color:#cbf2ff;
}

.intitucion-ruta{
    font-weight:bold;
    margin-bottom:4px;
    color:#ffffff;
}

.glow{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:8px;
    background:linear-gradient(to left,transparent,#38bdf8,transparent);
    filter:blur(16px);
    border-radius:999px;
    opacity:.6;
}

.line{
    height:2px;
    width:70%;
    margin:auto;
    background:linear-gradient(to left,transparent,#38bdf8,transparent);
    border-radius:999px;
    transition:all .3s ease;
}

.card-ruta:hover .line{
    width:100%;
    opacity:1;
}

/* Banner */
.page__title::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, .7), transparent);
    z-index: 0;
}
.banner-localicacion{
    z-index: 1 !important;
}

/* ANIMACIONES */
/* Card tour */
@keyframes expandRing{
    0%{
        transform:scale(1);
        opacity:0.8;
    }
    70%{
        transform:scale(1.6);
        opacity:0;
    }
    100%{
        opacity:0;
    }
}

@keyframes bounce{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-6px);
    }
}

@keyframes geoJump{
    0%{
        transform:translateY(0);
    }
    20%{
        transform:translateY(-12px);
    }
    40%{
        transform:translateY(-24px);
    }
    60%{
        transform:translateY(-10px);
    }
    80%{
        transform:translateY(-4px);
    }
    100%{
        transform:translateY(0);
    }
}

/* FIN DE CARD */

/* INICIO BOTON BAJAR SECCION */
.btn-scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%); /* Centrado horizontal exacto */
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid #ffffff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    outline: none;
    z-index: 10;
    animation: bounce 2s infinite;
}

.btn-scroll-down:hover {
    background-color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
    animation-play-state: paused;
}

.btn-scroll-down svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
    transition: fill 0.3s ease;
}

.btn-scroll-down:hover svg {
    fill: #111111;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}
/* FIN BOTON BAJASR SECCION */

/* INICIO HOTSPOT EN PARANINFO */

.pin-ubicacion{
    pointer-events: all;
    position:relative;
    width:min(40px, 18vw);
    height:min(40px, 18vw);
    list-style:none;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0%25' stop-color='%237dd3fc'/%3E%3Cstop offset='35%25' stop-color='%2338bdf8'/%3E%3Cstop offset='70%25' stop-color='%230284c7'/%3E%3Cstop offset='100%25' stop-color='%230369a1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23g)' d='M172.3 501.7C26.97 291 0 269.4 0 192 0 85.96 85.96 0 192 0s192 85.96 192 192c0 77.4-26.97 99-172.3 309.7-9.5 13.8-29.9 13.8-39.4 0z'/%3E%3Ccircle cx='192' cy='192' r='65' fill='white'/%3E%3C/svg%3E")
        center/contain
        no-repeat;
    z-index:10;
    filter:
        drop-shadow(-10px 14px 24px rgba(0,0,0,.45))
        drop-shadow(0 0 25px rgba(56,189,248,.25))
        drop-shadow(0 0 60px rgba(56,189,248,.12));
    /* animation: flotar 4s ease-in-out infinite; */
    will-change:transform;
}

.pin-ubicacion::before{
    content:"";
    position:absolute;
    left:50%;
    top:50%;
    width:130%;
    height:130%;
    border-radius:50%;
    transform:
        translate(-50%, -50%)
        scale(.2);
    border:2px solid rgba(56,189,248,.55);
    box-shadow:
        0 0 15px rgba(56,189,248,.25),
        inset 0 0 15px rgba(56,189,248,.12);
    z-index:-1;
    opacity:0;
    animation:radar 3.5s cubic-bezier(.19,.65,.25,1) infinite;
    will-change:transform,opacity;
}

@keyframes flotar{
    0%,100%{
        transform:
            translateY(-70px);
    }
    50%{
        transform:
            translateY(-85px);
    }
}

@keyframes radar{
    0%{
        transform:
            translate(-50%, -50%)
            scale(.2);

        opacity:0;
    }
    10%{
        opacity:1;
    }
    100%{
        transform:
            translate(-50%, -50%)
            scale(6);

        opacity:0;
    }
}

@media (max-width:480px){
    .pin-ubicacion{
        width:min(30px, 16vw);
        height:min(30px, 16vw);
        transform:translateY(-55px);
    }
    @keyframes flotar{
        0%,100%{
            transform:translateY(-55px);
        }
        50%{
            transform:translateY(-68px);
        }
    }
}
/* FIN HOTSPOT EN PARANINFO */


/* INICIO PAGINACION */
.pagination-tours{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
}

.pagination {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

/* 2. Estilos base para cada enlace o botón */
.pagination .page-item .page-link {
    color: #374151;            
    background-color: var(--pag-bg-link);
    border: 1px solid var(--pag-border-color);
    border-radius: 8px !important;
    padding: 10px 16px;
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease-in-out;
}

/* 3. Comportamiento al pasar el mouse (Hover) */
.pagination .page-item .page-link:hover {
    color: var(--pag-accent);
    background-color: #010121;
    border-color: var(--pag-accent);
    transform: translateY(-1px);
}

/* 4. Estado Activo (La página en la que se encuentra el usuario) */
.pagination .page-item.active .page-link {
    background-color: var(--pag-accent) !important;
    border-color: var(--pag-accent) !important;
    color: #298cff !important;  
    box-shadow: 0 4px 6px -1px rgba(13, 148, 136, 0.2), 0 2px 4px -1px rgba(13, 148, 136, 0.1);
    cursor: default;
}

/* 5. Estado Deshabilitado (Flechas cuando estás al inicio o al final) */
.pagination .page-item.disabled .page-link {
    color: var(--pag-text-muted);
    background-color: #f3f4f6;
    border-color: var(--pag-border-color);
    pointer-events: none; 
    box-shadow: none;
    transform: none;
}

/* 6. Quitar el molesto contorno azul de enfoque nativo de Bootstrap */
.pagination .page-link:focus {
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.25);
    background-color: var(--pag-bg-link);
}
/* FIN PAGINACION */

.portfolio h2 {
    color: #343a40 !important;
}

/* FIN DESING USER */

