.boton, .seccion-principal .btn-primario, .contacto .btn-formulario, .proyectos .btn-proyectos, .agradecimiento .seccion-agradecimiento .btn-agradecimiento {
  width: fit-content;
  position: relative;
  cursor: pointer;
  font-family: "plus jakarta sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  padding: 12px 28px;
  text-decoration: none;
  border-radius: 2px;
  transition: color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

/* reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
}

.pagina-principal {
  display: flex;
  flex-direction: column;
  position: relative;
  background-image: url(../images/fondo.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 0;
}
.pagina-principal::before {
  content: "";
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
  pointer-events: none;
}

@media (max-width: 991.98px) {
  .pagina-principal::before {
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
  }
}
header {
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .navbar-custom .navbar-brand {
  padding-top: 20px;
  color: whitesmoke;
  letter-spacing: 0.5px;
  font-size: 1.2rem;
  font-weight: 200;
  font-family: "Share Tech Mono", sans-serif;
}
header .nav-link {
  text-decoration: none;
  color: whitesmoke;
  letter-spacing: 0.08em;
  font-weight: 500;
  font-family: "Share Tech Mono", sans-serif;
  margin-left: 2rem;
  line-height: 1.2;
  box-sizing: border-box;
  border: 2px solid transparent;
  transition: border-color 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
header .nav-link:hover {
  border: 2px solid #00ff9d;
}
header .nav-link.active {
  background: linear-gradient(90deg, lch(53.23% 104.58 40deg), #ee7272, rgb(168, 165, 165));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 600;
}
header .nav-link:not(.active) {
  color: whitesmoke;
}
header .navbar-custom .navbar-toggler {
  border: 2px solid whitesmoke;
  padding: 0.25rem 0.5rem;
}

@media (max-width: 991.98px) {
  header {
    position: sticky;
    top: 0;
    z-index: 1100;
  }
  .navbar-custom {
    z-index: 1100;
  }
  .navbar-custom .navbar-collapse {
    margin-left: auto;
    width: auto;
    flex-grow: 0;
    flex-basis: auto;
    border-radius: 8px;
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.7);
  }
  .navbar-custom .navbar-nav {
    align-items: flex-end;
    gap: 10px;
  }
  .navbar-custom .nav-item {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    border: 2px solid #00ff9d;
  }
  .navbar-custom .nav-item:active {
    box-shadow: 0 0 10px #00ff9d;
  }
  .navbar-custom .nav-link {
    min-width: 180px;
    text-align: left;
    color: whitesmoke;
    padding: 10px 16px;
    border-radius: 6px;
    transition: background-color 0.25s ease, color 0.25s ease;
  }
  .navbar-custom .nav-link:hover {
    border: transparent;
    box-shadow: none;
  }
}
.seccion-principal {
  min-height: 100vh;
  display: flex;
  flex: 1;
  text-align: left;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.seccion-principal .contenido-principal {
  display: flex;
  flex-direction: column;
  text-align: left;
  max-width: 850px;
  align-items: flex-start;
}
.seccion-principal .contenido-principal .type {
  display: inline-block;
}
.seccion-principal .contenido-principal .type span {
  display: inline-block;
  font-size: 1rem;
  font-family: "share tech mono", sans-serif;
  font-weight: 500;
  color: whitesmoke;
  margin: 40px 0;
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
  width: 0;
  position: relative;
  animation: typing 4.5s steps(31) 0.3s forwards;
}
.seccion-principal .contenido-principal .type span::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 100%;
  background-color: whitesmoke;
  animation: blink 1.2s step-end infinite;
}
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 31ch;
  }
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}
.seccion-principal .contenido-principal h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: whitesmoke;
  font-family: "Plus jakarta sans", sans-serif;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
  margin: 30px 0;
  line-height: 1.1;
}
.seccion-principal .contenido-principal p {
  font-size: 1.5rem;
  font-weight: 600;
  color: whitesmoke;
  font-family: "plus jakarta sans", sans-serif;
  max-width: 650px;
}
.seccion-principal .contenido-principal .tecnologias {
  font-size: 1.3rem;
  font-weight: 500;
  color: whitesmoke;
  font-family: "plus jakarta sans", sans-serif;
  margin: 30px 0 20px 0;
}
.seccion-principal .btn-primario {
  display: inline-block;
  margin-top: 50px;
  color: whitesmoke;
  background-color: rgba(0, 0, 0, 0.85);
  border: 3px solid whitesmoke;
  z-index: 2;
  -webkit-tap-highlight-color: transparent;
}
.seccion-principal .btn-primario:hover {
  color: whitesmoke;
  border-color: whitesmoke;
  box-shadow: 0 0 12px whitesmoke;
  transform: translateY(-1px);
}
.seccion-principal .btn-primario:focus-visible {
  outline: none;
  box-shadow: 0 0 2px whitesmoke;
}
.seccion-principal .btn-primario:active {
  background-color: rgba(0, 0, 0, 0.85);
  color: whitesmoke;
  border-color: whitesmoke;
  box-shadow: none;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .seccion-principal {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 20px 10px;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .seccion-principal .contenido-principal {
    display: flex;
    flex-direction: column;
    text-align: center;
    max-width: 360px;
    justify-content: center;
    align-items: center;
  }
  .seccion-principal .contenido-principal h2 {
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
    margin: 10px 0 20px 0;
  }
  .seccion-principal .contenido-principal .type span {
    font-size: 1.1rem;
    margin: 20px 0;
  }
  .seccion-principal .contenido-principal p {
    max-width: 300px;
    font-size: 1.2rem;
    line-height: 1.2;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
  }
  .seccion-principal .contenido-principal .tecnologias {
    font-size: 1rem;
    line-height: 1.2;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
  }
  .btn-primario {
    display: flex;
    margin-top: 20px;
  }
  .btn-primario:hover, .btn-primario.focus, .btn-primario:active {
    color: whitesmoke;
    background-color: rgba(0, 0, 0, 0.85);
    border-color: whitesmoke;
    box-shadow: 0 0 6px whitesmoke;
    transform: translateY(-2px);
  }
}
/* estilos del footer */
footer {
  align-items: center;
  justify-content: center;
  margin-top: 0;
  padding: 30px;
  position: relative;
  z-index: 1;
}
footer p {
  text-align: center;
  color: whitesmoke;
  font-size: 1.2em;
  font-weight: lighter;
  font-family: "share tech mono", sans-serif;
  padding-top: 20px;
  margin-bottom: 20px;
}
footer {
  /* contenedor de iconos */
}
footer .social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
footer .social-icons a {
  display: inline-flex;
  width: 32px;
  height: 32px;
}
footer .social-icons a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.5;
  transition: filter 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}
footer .social-icons a:hover img {
  opacity: 1;
  filter: drop-shadow(0 0 6px rgba(216, 219, 218, 0.6)) drop-shadow(0 0 14px rgba(241, 247, 245, 0.4));
  transform: translateY(-2px);
}

@media (max-width: 991.98px) {
  footer {
    margin-top: 60px;
  }
  footer .social-icons {
    justify-content: center;
    margin-top: 20px;
  }
  footer .social-icons a img {
    width: auto;
    object-fit: contain;
    margin-right: 8px;
    opacity: 0.5;
    transition: filter 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
  }
  footer .social-icons a:hover img, footer .social-icons a:focus img {
    opacity: 1;
    filter: drop-shadow(0 0 6px rgba(216, 219, 218, 0.6)) drop-shadow(0 0 14px rgba(241, 247, 245, 0.4));
    transform: translateY(-2px);
  }
}
.pagina-sobre-mi {
  min-height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.95));
}

.sobre-mi {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin: 50px 0;
  justify-content: center;
}
.sobre-mi .sobre-mi-texto {
  max-width: 600px;
  flex: 1;
  text-align: left;
}
.sobre-mi .sobre-mi-texto h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: whitesmoke;
  font-weight: 800;
  margin: 10px 0;
  line-height: 1.2;
  font-family: "plus jakarta sans", sans-serif;
}
.sobre-mi .sobre-mi-texto p {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: whitesmoke;
  font-weight: 400;
  line-height: 1.4;
  font-family: "plus jakarta sans", sans-serif;
}
.sobre-mi .sobre-mi-imagen img {
  display: block;
  margin: 0 auto;
  max-width: 350px;
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: grayscale(100%);
}
.sobre-mi .sobre-mi-imagen img:hover {
  transform: scale(1.02);
  filter: grayscale(0%);
}

main .boton-scroll {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem auto 0;
  padding: 0.75rem 1rem;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.2;
  color: #00ff9d;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
  animation-name: bounce;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

@media (max-width: 991.98px) {
  .pagina-sobre-mi {
    min-height: auto;
  }
  .sobre-mi {
    flex-direction: column;
    gap: 2rem;
    margin: 20px 0;
    padding: 0 20px;
  }
  .sobre-mi .sobre-mi-texto {
    max-width: 360px;
    text-align: center;
    margin: 0 auto;
  }
  .sobre-mi .sobre-mi-texto h2 {
    text-align: center;
  }
  .sobre-mi .sobre-mi-texto p {
    line-height: 1.5;
    margin: 20px 0;
    text-align: center;
    letter-spacing: 0.5px;
  }
  .sobre-mi .sobre-mi-imagen {
    display: flex;
    justify-content: center;
  }
  .sobre-mi .sobre-mi-imagen img {
    max-width: 280px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: grayscale(100%);
  }
  .sobre-mi .sobre-mi-imagen img:active {
    transform: scale(1.02);
    filter: grayscale(0%);
  }
}
.contenedor-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 4rem auto 0;
}
.contenedor-grid .titulo {
  grid-column: 1/-1;
  text-align: center;
}
.contenedor-grid .titulo h3 {
  color: whitesmoke;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  padding: 1rem 0 1.5rem 0;
  font-family: "Space Grotesk", sans-serif;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
}
.contenedor-grid .contenido {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 20px;
  border: 2px solid #00ff9d;
  background-color: transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  position: relative;
}
.contenedor-grid .contenido h4 {
  color: whitesmoke;
  font-size: clamp(1.3rem, 4vw, 1.6rem);
  font-family: "plus jakarta sans", sans-serif;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 10px;
  font-weight: 600;
  position: relative;
}
.contenedor-grid .contenido p {
  text-align: center;
  color: whitesmoke;
  font-family: "plus jakarta sans", sans-serif;
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  line-height: 1.2;
  font-weight: 400;
  position: relative;
}
.contenedor-grid .contenido:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.contenedor-grid .contenido::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: transparent;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}
.contenedor-grid .cierre {
  grid-column: 1/-1;
  text-align: center;
}
.contenedor-grid .cierre h5 {
  color: whitesmoke;
  font-size: clamp(1.1rem, 4vw, 1.4rem);
  font-family: "plus jakarta sans", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  padding: 3rem 0 0 0;
  margin-bottom: 0.5rem;
}
.contenedor-grid .cierre p {
  color: whitesmoke;
  font-size: clamp(1.1rem, 4vw, 1.4rem);
  font-family: "plus jakarta sans", sans-serif;
  font-weight: 300;
  line-height: 1.2;
  padding: 0 0 1.5rem 0;
}

@media (max-width: 991.98px) {
  .contenedor-grid {
    grid-template-columns: minmax(0, 320px);
    gap: 1.5rem;
    margin: 2.5rem auto 0;
    padding: 0 16px;
    justify-content: center;
    width: max-content;
    max-width: 360px;
  }
  .contenedor-grid .contenido {
    min-height: auto;
    width: 100%;
  }
  .contenedor-grid .cierre p {
    padding: 2rem 0 0 0;
  }
}
.pagina-contacto {
  min-height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.95));
}

.contacto {
  margin: 4rem 0 0 0;
}
.contacto .contacto-titulo {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 0 3.5rem 0;
  text-align: center;
}
.contacto .contacto-titulo h2 {
  text-align: center;
  color: whitesmoke;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.05rem;
  font-weight: 900;
  margin: 0 0 3rem 0;
  font-family: "Space Grotesk", sans-serif;
}
.contacto .contacto-titulo .contacto-subtitulo {
  font-size: clamp(1.5rem, 4vw, 1.8rem);
  font-family: "plus jakarta sans", sans-serif;
  color: whitesmoke;
  letter-spacing: 0.05rem;
  padding: 2rem 0;
  font-weight: 600;
  line-height: 1.3;
}
.contacto .contacto-titulo .contacto-texto-negrita {
  font-size: clamp(1.3rem, 3vw, 1.5rem);
  font-family: "plus jakarta sans", sans-serif;
  color: #00ff9d;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: 0.05rem;
}
.contacto .contacto-titulo .contacto-texto {
  font-size: clamp(1.3rem, 3vw, 1.5rem);
  font-family: "plus jakarta sans", sans-serif;
  color: whitesmoke;
  padding: 0 0 1.5rem 0;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.05rem;
}
.contacto .form-contacto {
  background-image: url(../images/fondo.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  max-width: 700px;
  margin: 80px auto;
  padding: 60px;
  border: 2px solid #00ff9d;
  position: relative;
  z-index: 0;
}
.contacto .form-contacto::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
}
.contacto .form-contacto .form-grupo {
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.contacto .form-contacto .form-grupo label {
  color: whitesmoke;
  font-size: 1.5rem;
  font-weight: 400;
  display: block;
  margin-bottom: 10px;
  font-family: "plus jakarta sans", sans-serif;
  letter-spacing: 0.1rem;
  z-index: 1;
}
.contacto .form-contacto .form-grupo input,
.contacto .form-contacto .form-grupo textarea {
  width: 100%;
  padding: 12px;
  color: whitesmoke;
  border: 1px solid #00ff9d;
  border-radius: 8px;
  font-size: 1.2rem;
  background-color: rgba(0, 0, 0, 0.85);
  font-family: "plus jakarta sans", sans-serif;
}
.contacto .form-contacto .form-grupo input:focus,
.contacto .form-contacto .form-grupo textarea:focus {
  outline: none;
  border-color: #00ff9d;
  box-shadow: 0 0 10px #00ff9d;
}
.contacto .form-contacto .form-grupo input:-webkit-autofill, .contacto .form-contacto .form-grupo input:-webkit-autofill:hover, .contacto .form-contacto .form-grupo input:-webkit-autofill:focus,
.contacto .form-contacto .form-grupo textarea:-webkit-autofill,
.contacto .form-contacto .form-grupo textarea:-webkit-autofill:hover,
.contacto .form-contacto .form-grupo textarea:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.85) inset;
  -webkit-text-fill-color: whitesmoke;
  caret-color: whitesmoke;
}
.contacto .form-contacto .form-grupo input:autofill,
.contacto .form-contacto .form-grupo textarea:autofill {
  background-color: rgba(0, 0, 0, 0.85);
}
.contacto .btn-formulario {
  display: flex;
  margin-top: 80px;
  padding: 14px 28px;
  color: whitesmoke;
  background-color: transparent;
  border: 2px solid whitesmoke;
  border-radius: 2px;
  cursor: pointer;
  z-index: 2; /* sobre overlay */
}
.contacto .btn-formulario:hover, .contacto .btn-formulario.focus, .contacto .btn-formulario:active {
  color: #00ff9d;
  background-color: transparent;
  border-color: #00ff9d;
  box-shadow: 0 0 6px #00ff9d;
  transform: translateY(-2px);
}

@media (max-width: 991.98px) {
  .pagina-contacto {
    min-height: auto;
  }
  .contacto {
    margin: 30px 20px;
  }
  .contacto .contacto-titulo {
    max-width: 100%;
    margin: 20px 0;
  }
  .contacto .form-contacto {
    max-width: 100%;
    border-width: 2px;
    border-radius: 6px;
    background-color: rgba(0, 0, 0, 0.85);
    margin: 50px 0;
  }
  .contacto .form-contacto .form-grupo {
    margin-bottom: 30px;
  }
  .contacto .form-contacto .form-grupo label {
    font-size: 1rem;
    margin-bottom: 6px;
  }
  .contacto .form-contacto .form-grupo input,
  .contacto .form-contacto .form-grupo textarea {
    padding: 10px;
    font-size: 1rem;
  }
}
.pagina-proyectos {
  min-height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.95));
}

.proyectos {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  justify-items: center;
  max-width: 950px;
  margin: 0 auto;
}
.proyectos .proyectos-titulo {
  grid-column: 1/-1;
  padding: 5rem 0 0 0;
  text-align: center;
}
.proyectos .proyectos-titulo h2 {
  color: whitesmoke;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 900;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
  text-align: center;
  padding: 3rem 0 0 0;
  line-height: 1.5;
  letter-spacing: 0.05rem;
}
.proyectos .proyectos-titulo h3 {
  font-size: clamp(1.5rem, 4vw, 1.8rem);
  color: #00ff9d;
  font-weight: 600;
  text-align: center;
  padding: 5rem 0 1.8rem 0;
  line-height: 1.4;
  font-family: "plus jakarta sans", sans-serif;
  letter-spacing: 0.05rem;
}
.proyectos .proyectos-titulo p.color {
  color: whitesmoke;
  font-family: "plus jakarta sans", sans-serif;
  font-weight: 300;
  font-size: clamp(1.3rem, 2vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: 0.05rem;
}
.proyectos .proyectos-imagen {
  margin: 4rem 0;
  position: relative;
}
.proyectos .proyectos-imagen img {
  display: block;
  margin-inline: auto;
  width: auto;
  max-width: 400px;
  height: auto;
  border: 1px solid #00ff9d;
  border-radius: 12px;
  opacity: 1;
}
.proyectos .proyectos-overlay {
  display: flex;
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  color: whitesmoke;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  border-radius: 12px;
  padding: 5px;
}
.proyectos .proyectos-overlay h4 {
  font-size: clamp(1.5rem, 4vw, 1.8rem);
  font-weight: 600;
  padding: 0.5rem 0 0 0;
  font-family: "plus jakarta sans", sans-serif;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.proyectos .proyectos-overlay p {
  padding: 0 0.5rem;
  font-size: clamp(1.2rem, 4vw, 1.4rem);
  line-height: 1.1;
  font-weight: 300;
  font-family: "plus jakarta sans", sans-serif;
  opacity: 0.85;
}
@media (hover: hover) {
  .proyectos .proyectos-imagen:hover .proyectos-overlay {
    box-shadow: 0 0 6px #00ff9d;
    opacity: 1;
    pointer-events: auto;
  }
}
.proyectos .btn-proyectos {
  display: flex;
  grid-column: 1/-1;
  margin: 3.5rem 0 4rem 0;
  color: #00ff9d;
  background-color: transparent;
  border: 2px solid #00ff9d;
  z-index: 2; /* sobre overlay */
}
.proyectos .btn-proyectos:hover, .proyectos .btn-proyectos.focus, .proyectos .btn-proyectos:active {
  color: #00ff9d;
  background-color: transparent;
  border-color: #00ff9d;
  box-shadow: 0 0 6px #00ff9d;
  transform: translateY(-2px);
}

@media (max-width: 991.98px) {
  .pagina-proyectos {
    min-height: auto;
  }
  .proyectos {
    width: min(90%, 400px);
    margin: 0.5rem auto;
  }
  .proyectos .proyectos-titulo {
    margin: 0.5rem 0;
  }
  .proyectos .proyectos-titulo h2 {
    line-height: 1.1;
    padding: 1rem 0 1.5rem 0;
  }
  .proyectos .proyectos-titulo h3 {
    padding: 0 0.5rem 0.5rem 0.5rem;
    line-height: 1.2;
  }
  .proyectos .proyectos-titulo p.color {
    padding: 1.5rem 0.5rem 1.5rem 0.5rem;
    line-height: 1.2;
  }
  .proyectos .proyectos-imagen {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px 0;
  }
  .proyectos .proyectos-imagen img {
    width: 100%;
    max-width: 300px;
    opacity: 1;
  }
  .proyectos .proyectos-overlay {
    position: static;
    opacity: 1;
    pointer-events: auto;
    background: transparent;
    margin: 20px auto 0 auto;
    max-width: 400px;
  }
  .proyectos .btn-proyectos {
    margin: 0 0 2rem 0;
  }
}
.pagina-de-agradecimiento {
  background-color: rgba(0, 0, 0, 0.85);
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.95));
}

.agradecimiento {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  max-width: 800px;
  margin: 10px auto;
}
.agradecimiento .seccion-agradecimiento {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 50px 0;
}
.agradecimiento .seccion-agradecimiento h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: whitesmoke;
  font-family: "space grotesk", sans-serif;
  margin: 20px 0 30px 0;
  text-align: center;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
  font-weight: 900;
}
.agradecimiento .seccion-agradecimiento h3 {
  font-size: clamp(1.5rem, 5vw, 2rem);
  color: whitesmoke;
  line-height: 1.3;
  font-family: "plus jakarta sans", sans-serif;
  font-weight: 500;
}
.agradecimiento .seccion-agradecimiento .btn-agradecimiento {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  margin: 50px 0 10px 0;
  color: #00ff9d;
  background-color: transparent;
  border: 2px solid #00ff9d;
  z-index: 2; /* sobre overlay */
}
.agradecimiento .seccion-agradecimiento .btn-agradecimiento:hover, .agradecimiento .seccion-agradecimiento .btn-agradecimiento.focus, .agradecimiento .seccion-agradecimiento .btn-agradecimiento:active {
  color: #00ff9d;
  background-color: transparent;
  border-color: #00ff9d;
  box-shadow: 0 0 6px #00ff9d;
  transform: translateY(-2px);
}

@media (max-width: 991.98px) {
  .agradecimiento {
    max-width: 400px;
  }
  .agradecimiento .seccion-agradecimiento {
    margin: 20px 0;
  }
  .agradecimiento .seccion-agradecimiento .btn-agradecimiento {
    margin: 30px 0 10px 0;
  }
}

/*# sourceMappingURL=style.css.map */
