.lista-viñeta {
    list-style: unset;
}
.lista-sin-iconos {
    list-style: none;
}
.alert-mensaje{
    background-repeat: no-repeat;
    position: fixed;
    bottom: 5px;
    left: 20px;
    font-size: larger;
    z-index: 99;
}
/*------------------------------------------------ Btn ir arriba -------------------------------------------- */
.ir-arriba{
    display:none;
    background-repeat:no-repeat;
    font-size:26px;
    color: var(--color-santa_cruz);
    cursor:pointer;
    position:fixed;
    bottom:15px;
    right:30px;
    z-index:2;
  }

.ir-arriba:hover{
    color: #767676;
}

/*------------------------------------------------ Lista --------------------------------------------------- */
.table-click {
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.12), 0 1px 3px 1px rgba(60,64,67,0.15);
}
.fila-click:hover {
    cursor: pointer;
    -webkit-transition: transform 2s ease-in-out;
    color: rgb(44, 44, 44) !important;
    background-color: rgb(211, 211, 211) !important;
}
.fila-click:active {
    box-shadow: 3px 2px 12px 1px rgba(0, 0, 0, 0.24);
}

td {
    word-wrap: break-word;
    word-break: break-all;
    white-space: normal;
}
/*------------------------------------------------ Paginacion --------------------------------------------------- */

.page-item.active .page-link{
    background-color: var(--color-santa_cruz);
    border-color: var(--color-santa_cruz);
}

.page-link{
    color: var(--color-santa_cruz);
}


/*------------------------------------------------ inicio - mapa --------------------------------------------------- */
.mapa-container{
    position: relative;
    display: inline-block;
}

.mapa-label{
    position: absolute;
    transform: translate(-50%, -50%);
    font-size: 17px;
    color: #2a4f66;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
}

/* ICONO */
.mapa-label i{
    color: #2a4f66;
    transition: transform 0.2s ease;
}

/* HOVER */
.mapa-label:hover {
    transform: translate(-50%, -50%) scale(1.08);
    transition: 0.2s;
}

.mapa-label:hover i{
    transform: translateY(-3px) scale(1.15);
}

.mapa-label:hover::after {
    content: '';
    position: absolute;
    inset: -4px -8px;
    background: rgba(13,110,253,0.15);
    border-radius: 8px;
    z-index: -1;
}

.card-constituir{
    border-radius: 12px;
    background: #f8f9fa;
    transition: all 0.2s ease;
}

.icono-coop{
    font-size: 50px;
    color: #1D3341;
}

.mapa-container{
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.mapa-santacruz{
    width: 100%;
    height: auto;
}

@media (min-width: 992px){
    .mapa-santacruz{
        margin-top: -40px;
        height: 800px !important;
    }
}

.mapa-label{
    font-size: 17px;
}

@media (max-width: 768px){
    .mapa-label{
        font-size: 11px;
        gap: 2px;
    }

    .mapa-label i{
        font-size: 10px;
    }
    .rg { top: 90% !important; }
    .piedrabuena { top: 62% !important; }
    .pto-santa-cruz { top: 64% !important; }
    .pto-san-julian { top: 50% !important; }
    .n28-noviembre { 
        top: 98% !important;
        left: 20% !important;
    }
    .el-calafate { top: 72% !important; }
    .el-chalten { top: 50% !important; }
    .lago-posadas { top: 35% !important; }
    .gdor-gregores { top: 45% !important; }
    .pto-deseado { top: 25% !important; }
    .pico-truncado { top: 15% !important; }
    .canador-seco { top: 8% !important; }
    .caleta-olivia { 
        top: 3% !important;
        left: 60% !important; 
    }
    .las-heras { top: 6% !important; }
    .los-antiguos { top: 9% !important; }
    .perito-moreno { top: 8% !important; }
    .rio-turbio { 
        top: 87% !important;
        left: 12% !important;
    }

/*------------------------------------------------ inicio - install --------------------------------------------------- */

/* SECCIONES */
.contact-section,
.install-section {
  padding: 60px 0;
  border-top: 1px solid #e5e5e5;
}
/* TITULOS */
.section-title {
  font-size: 28px;
  margin-bottom: 30px;
}

/* GRID CONTACTO */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 30px;
}

@media (min-width: 640px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* INSTALL HEADER */
.install-header {
  text-align: center;
  max-width: 500px;
  margin: 0 auto 40px;
}

.install-header h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.install-header p {
  font-size: 14px;
  color: #666;
}

.install-icon {
  font-size: 30px;
  margin-bottom: 10px;
}

/* GRID INSTALL */
.install-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .install-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* CARD INSTALL */
.install-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 20px;
}

.install-title {
  font-weight: 600;
  margin-bottom: 10px;
}

.install-card ol {
  padding-left: 18px;
  color: #666;
}

.install-card li {
  margin-bottom: 8px;
}
.clickable-install {
  cursor: pointer;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.clickable-install:hover {
    border-color: #d1d5db;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.clickable-install:active {
  transform: scale(0.98);
}
.install-icon {
  font-size: 28px;
  margin-bottom: 8px;
  opacity: 0.9;
}

/* Título */
.install-header h2 {
  font-size: 22px;
  font-weight: 600;
}

/* Texto secundario */
.install-header p {
  color: #6b7280;
  font-size: 14px;
}

/* 👉 Micro-indicador (clave, pero discreto) */
.install-header::after {
  content: "Instalar";
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  color: #2563eb;
  opacity: 0.8;
}

/* Hover del indicador */
.clickable-install:hover .install-header::after {
  opacity: 1;
  text-decoration: underline;
}