.contactos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.contacto {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  padding: 14px 16px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.contacto:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.nombre {
  font-size: 15px;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
}

.telefono a {
  color: #1a73e8;
  text-decoration: none;
  font-weight: 500;
}

.telefono a:hover {
  text-decoration: underline;
}
.btn-success {
background-image: linear-gradient(to bottom, #dc4b0f, #7e3714) !important;
}
.btn-info {
background-image: linear-gradient(to bottom, #88a0c6, #2f96b4);
}
/*TABLAS*/
table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 18px;
        font-size: 0.93em;
    }
    th {
        background: #003366;
        color: #fff;
        padding: 8px 12px;
        text-align: left;
    }
    td {
        padding: 8px 12px;
        border-bottom: 1px solid #ddd;
        vertical-align: top;
    }
    tr:nth-child(even) td { background: #f5f7fa; }
    .highlight-box {
        background: #f0f4fa;
        border-left: 4px solid #003366;
        padding: 14px 18px;
        margin: 18px 0;
        border-radius: 0 4px 4px 0;
    }
/*PIE*/
.pie .uk-container {
    max-width: 100%;
    padding-right: 0;
    padding-left: 0;
}

.footer {
  background-color: #f5f5f5;
  padding: 40px 20px 20px;
  font-size: 16px;
  color: #333;
}

.footer-container {
  margin: 0 auto;
  display: flex;
  justify-content: space-between; /* CLAVE */
  flex-wrap: wrap;
  max-width: none !important;
  padding-left: 0;
  padding-right: 0;
}

.footer-left {
  text-align: left;
}

.footer-right {
  text-align: right;
}
.footer-column h4 {
  margin-bottom: 10px;
  font-size: 20px;
}
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 6px;
}
.footer-column a {
  color: #333;
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #ccc;
  margin-top: 20px;
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
}


/*RESPONSIVE*/

@media (max-width: 600px) {
	.uk-section-default.uk-section {
    text-align: center;
}
	.footer-container {
    place-content: center;
}
}
