/* FOOTER */
.site-footer {
  background-color: #8fd3d4; /* azul verdoso del diseño */
  color: #fff;
  font-family: 'Urbanist', sans-serif;
  padding: 40px 0px 0px;
}

.site-footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.site-footer-col {
  flex: 1;
  min-width: 250px;
}

.site-footer-col h4 {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.site-footer-col p,
.site-footer-col li {
  font-size: 14px;
  margin: 5px 0;
  line-height: 1.5;
}

.site-footer-col ul {
  list-style: none;
  padding: 0;
}

.site-logo-col {
  text-align: center;
}

.site-footer-logo {
  max-width: 300px;
  margin-bottom: 10px;
}

.site-social-icons {
  margin-top: 10px;
}

.site-social-icons a img {
  width: 28px;
  margin: 0 8px;
  transition: transform 0.3s ease;
}

.site-social-icons a img:hover {
  transform: scale(1.2);
}

.site-footer-bottom {
  display: flex;
  justify-content: center;   /* centra horizontal */
  align-items: center;       /* centra vertical */
  height: 50px;              /* altura fija para centrar */
  
  border-top: 1px solid #f0f0f0;
  margin-top: 20px;
  font-size: 13px;
  color: #333;
  background: #fdf6f3; /* tono crema del diseño */
  text-align: center;
}

.site-footer-bottom a {
  color: #333;
  text-decoration: underline;
}

/* 📱 RESPONSIVO */

/* Tablets */
@media (max-width: 992px) {
  .site-footer-container {
    flex-direction: row;
    justify-content: center;
    text-align: center;
    gap: 20px;
  }

  .site-footer-col {
    flex: 1 1 45%;
    min-width: 200px;
  }

  .site-footer-logo {
    max-width: 220px;
  }
}

/* Móviles */
@media (max-width: 600px) {
  .site-footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
  }

  .site-footer-col {
    flex: 1 1 100%;
    min-width: auto;
  }

  .site-footer-logo {
    max-width: 180px;
  }

  .site-social-icons a img {
    width: 24px;
    margin: 0 6px;
  }

  .site-footer-bottom {
    flex-direction: column;
    height: auto;
    padding: 10px;
    font-size: 12px;
  }
}


@font-face { font-family: SiteUrbanist; src: url("sobre-mi/assets/fonts/Urbanist-Regular.ttf"); font-weight: 400; font-display: swap; }
@font-face { font-family: SiteUrbanist; src: url("sobre-mi/assets/fonts/Urbanist-SemiBold.ttf"); font-weight: 600; font-display: swap; }
.site-header, .site-header *, .site-footer, .site-footer * { box-sizing: border-box; }
header.site-header { position: relative; inset: auto; width: 100%; height: 80px; min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 12px 3%; background: rgba(255,255,255,.96); z-index: 1000; font-family: SiteUrbanist, sans-serif; }
.site-logo { display: block; flex-shrink: 0; }
.site-logo img { display: block; width: auto; height: 48px; max-width: 100%; }
.site-header .site-nav { position: static; display: block; width: auto; max-width: none; padding: 12px 24px; margin: 0; border-radius: 22px; background: #83cccc; }
.site-header .site-nav ul { display: flex; flex-direction: row; align-items: center; gap: 28px; list-style: none; padding: 0; margin: 0; }
.site-header .site-nav li { margin: 0; padding: 0; }
.site-header .site-nav li::after { content: none; }
.site-header .site-nav a { color: #fff; text-decoration: none; font: 600 19px/1.3 SiteUrbanist,sans-serif; white-space: nowrap; }
.site-header .site-nav a:hover, .site-header .site-nav a[aria-current="page"] { text-decoration: underline; text-underline-offset: 5px; }
.site-menu-toggle { display: none; background: transparent; border: 0; color: #477777; font-size: 30px; cursor: pointer; }
.site-header a:focus-visible, .site-header button:focus-visible { outline: 3px solid #32696c; outline-offset: 4px; }
.site-footer { font-family: SiteUrbanist,sans-serif; }
.site-footer-container { padding-inline: 24px; }
.site-footer-logo { width: 100%; height: auto; }
.site-footer-bottom { height: auto; min-height: 50px; padding: 10px 20px; }
@media(max-width:1100px) {
 .site-logo img { height: 40px; }
 .site-menu-toggle { display: block; }
 .site-header .site-nav { display: none; position: absolute; top: 80px; left: 0; width: 100%; padding: 24px; border-radius: 0; background: #83cccc; box-shadow: 0 6px 12px #0002; }
 .site-header .site-nav.is-open { display: block; }
 .site-header .site-nav ul { flex-direction: column; gap: 20px; }
}
@media(max-width:400px) { .site-logo img { height: 32px; } }
