@charset "UTF-8";
/* ===================== */
/* 1. VARIABLES GENERALES */
/* ===================== */
/* ===================== */
/* 2. MIXINS */
/* ===================== */
/* ===================== */
/* 3. RESET Y TIPOGRAFÍA */
/* ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #212529;
  background-color: #f8f9fa;
  line-height: 1.6;
  overflow-x: hidden;
  padding: 0 1rem;
}

/* ===================== */
/* 4. NAVBAR */
/* ===================== */
.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.navbar .navbar-brand {
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}
.navbar .navbar-brand:hover {
  color: #ff9800 !important;
  scale: 1.05;
}
.navbar .nav-link {
  transition: all 0.3s ease-in-out;
}
.navbar .nav-link:hover {
  color: #ff9800 !important;
  scale: 1.05;
}

/* ===================== */
/* 5. IMÁGENES */
/* ===================== */
.imagenes {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ===================== */
/* 6. SECCIONES GENERALES */
/* ===================== */
section {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}
section:hover {
  background-color: #e4e4e4;
  scale: 1.01;
}

h1,
h2 {
  margin-bottom: 1rem;
  color: #0d6efd;
  text-align: center;
}

/* ===================== */
/* 7. FORMULARIO CONTACTO */
/* ===================== */
form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 500px;
  margin: 0 auto;
}
form input,
form textarea {
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}
form input[type=submit] {
  background-color: #0d6efd;
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}
form input[type=submit]:hover {
  background-color: #0b5ed7;
}

/* ===================== */
/* 8. UBICACIÓN MAPA */
/* ===================== */
.mapa {
  width: 100%;
  height: 300px;
  border: none;
  margin-top: 1rem;
  border-radius: 8px;
}

/* ===================== */
/* 9. FOOTER */
/* ===================== */
footer {
  background-color: #f8f9fa;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
  border-top: 1px solid #ddd;
}
footer a {
  color: #0d6efd;
  margin: 0 0.5rem;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
footer .autor {
  font-size: 10px;
}

/* ===================== */
/* 10. TARJETAS DE FORMACIÓN , EXPERIENCIA y PORTAFOLIO*/
/* ===================== */
.contenedor-tarjetas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 1rem 0;
}

.tarjeta {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.tarjeta:hover {
  background-color: #e4e4e4;
  transform: scale(1.02);
}
.tarjeta img {
  width: 30px;
  height: 30px;
  margin: 12px;
}
.tarjeta h3 {
  margin-bottom: 0.5rem;
  color: #0d6efd;
}
.tarjeta p {
  font-size: 0.95rem;
  color: #212529;
}

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