.ubicacion-container {
    max-width: 1000px;
    margin: 0 auto var(--space-5);
    padding: 0 var(--space-2) ;
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
  }

  /* === TÍTULOS === */
  .ubicacion-container h1 {
    text-align: center;
    color: #2e7d32;
    font-size: var(--fs-h1);
    margin-bottom: var(--space-2);
    line-height: var(--lh-tight);
    position: relative;
    display: inline-block;
    align-self: center;
    padding-bottom: 6px;
  }

  .ubicacion-container h1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2.5px;
    width: 100%;
    background-color: #2e7d32;
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  .ubicacion-container h1:hover::after {
    transform: scaleX(1.3);
  }

  /* === MAPA === */
  .mapa {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(46,125,50,0.15);
  }

  /* === BLOQUE INFO === */
  .info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5);
    align-items: stretch;
  }

  .direccion, .slider {
    min-height: 420px;
  }

  /* === DIRECCIÓN Y CONTACTO === */
  .direccion {
    background: #f0fafa;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(46,125,50,0.10);
    padding: var(--space-4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
  }

  .direccion:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(46,125,50,0.18);
  }

  .direccion h2 {
    color: #2e7d32;
    font-size: var(--fs-h3);
    text-align: center;
    margin: var(--space-3) 0 var(--space-2);
  }

  .contact-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    text-align: left;
    margin: 0 auto;
    width: fit-content;
  }

  .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .contact-icon {
    background: rgba(46,125,50,0.1);
    color: #2e7d32;
    border-radius: 50%;
    padding: 8px;
    font-size: 1.2rem;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contact-link {
    color: #000;
    text-decoration: none;
    font-weight: 500;
  }

  .contact-link:hover {
    text-decoration: underline;
    color: #2e7d32;
  }


  .map-link {
    text-align: center;
    margin-top: var(--space-3);
  }

  .map-link a {
    color: #2e7d32;
    font-weight: 600;
    text-decoration: none;
  }

  .map-link a:hover {
    text-decoration: underline;
  }

  /* === SLIDER === */
  .slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(46,125,50,0.10);
    background: black;
  }

  .slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    opacity: 1;
    transition: opacity 1.5s ease-in-out, transform 2s ease-in-out;
    cursor: pointer;
  }

  .slider img.active {
    transform: scale(1.02);
  }

  .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    color: #2e7d32;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    border-radius: 8px;
    padding: 6px 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  }

  .arrow:hover {
    background: #2e7d32;
    color: white;
  }

  .arrow.left {
    left: 12px;
  }

  .arrow.right {
    right: 12px;
  }

  /* === MODAL DE IMAGEN === */
  .modal-fondo-negro {
    position: absolute;
    background: black;
    border-radius: 12px;
    z-index: 0;
    opacity: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  #imagenAmpliada {
    position: relative;
    z-index: 1;
    border-radius: 12px;
  }
  #imagenAmpliada {
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  }

  #imagenAmpliada.fade-out {
    opacity: 0;
    transform: scale(0.98);
  }

  #imagenAmpliada.fade-in {
    opacity: 1;
    transform: scale(1);
  }

  .modal-imagen {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
  }

  .modal-imagen img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.4);
    animation: zoomIn 0.3s ease;
  }
  .modal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    color: #2e7d32;
    border: none;
    font-size: 2.5rem;
    cursor: pointer;
    border-radius: 8px;
    padding: 6px 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  }

  .modal-arrow:hover {
    background: #2e7d32;
    color: white;
  }

  .modal-arrow.left {
    left: 40px;
  }

  .modal-arrow.right {
    right: 40px;
  }
  .cerrar-modal {
    position: absolute;
    top: 30px;
    right: 50px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.2s;
  }

  .cerrar-modal:hover {
    color: #66bb6a;
  }

  @keyframes zoomIn {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }

  /* === HORARIO === */
  .horario-container {
    background: #f0fafa;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(46,125,50,0.10);
    padding: var(--space-4);
  }

  .horario-container label {
    font-weight: 600;
    color: #2e7d32;
    font-size: var(--fs-md);
  }

  .horario-container select {
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #c8e6c9;
    font-size: var(--fs-md);
    margin-left: var(--space-2);
    background: #fff;
    transition: border-color 0.2s;
  }

  .horario-container select:focus {
    border-color: #2e7d32;
    outline: none;
  }

  .horario-container table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--fs-md);
    margin-top: var(--space-3);
  }

  .horario-container th,
  .horario-container td {
    border: 1px solid #c8e6c9;
    padding: 10px;
    text-align: center;
  }

  .horario-container th {
    background: #2e7d32;
    color: white;
    font-weight: 600;
  }

  @media (max-width: 900px) {
    .info-grid {
      grid-template-columns: 1fr;
      gap: var(--space-4);
    }

    .slider {
      height: 300px;
    }
  }