@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

main {
  flex: 1;
  width: 100%;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

* {
  font-family: "BBH Bartle", sans-serif;
}

body {
  font-family: Arial, sans-serif;
  color: #0B132B;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #0B132B;
}

.text-custom-blue,
.blue {
  color: #3A506B;
}

.footer-title {
  font-weight: bold;
  letter-spacing: 1px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
body {
  background-color: #F9F8F6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body .encontrados {
  margin: 0 auto;
  padding: 1.7rem;
}

.main-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 2rem;
}
.main-section .text-content {
  flex: 2;
  text-align: left;
  padding: 0;
}
.main-section .text-content h1 {
  margin-bottom: 1.5rem;
}

.faq-box {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.4rem;
}
.faq-box h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.image-placeholder {
  margin-top: 20px;
}
.image-placeholder img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
}

.form-section,
.form-section-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 35.6rem;
}

.form-section-2 form {
  width: 22rem;
}

.proyectos {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  width: 75%;
  margin: 0 auto;
  min-height: 39.9rem;
}

.proyecto {
  width: 20rem;
  min-height: 10rem;
  border: 1px solid rgba(238, 238, 238, 0.6);
  background-color: #ffffff;
  border-radius: 0.5rem;
  margin: 1.3rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.proyecto:hover {
  transform: translateY(-10px);
  border-color: transparent;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.proyecto img {
  width: 90%;
  margin: 10px auto;
  border-radius: 5px;
  display: block;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}
.faq-container .faq-item {
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 10px;
}
.faq-container .faq-item summary {
  padding: 25px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.faq-container .faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-container .faq-item summary .faq-icon {
  background-color: #3A506B;
  color: #ffffff;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: 0.3s;
  margin-left: auto;
}
.faq-container .faq-item summary:hover .faq-question {
  color: #3A506B;
}
.faq-container .faq-item summary:hover .faq-icon {
  background-color: #5BC0BE;
}

.added {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  width: 75%;
  margin: 0 auto;
}

.added .button {
  background-color: #3A506B;
  color: #ffffff;
  width: 200px;
  padding: 0.4rem;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  height: auto;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

header {
  width: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
}
header .navbar {
  background-color: #ffffff;
  padding: 0.5rem 0;
}
header .nav-custom-link {
  text-decoration: none;
  color: #0B132B;
  margin: 0 1rem;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}
header .nav-custom-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: #5BC0BE;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}
header .nav-custom-link:hover {
  color: #3A506B;
}
header .nav-custom-link:hover::after {
  width: 100%;
}
header .nav-custom-link.active {
  color: #3A506B;
  font-weight: 600;
}
header .nav-custom-link.active::after {
  width: 100%;
}

.footer-custom {
  background-color: #0B132B;
  width: 100%;
}

footer {
  background-color: #0B132B;
  color: #ffffff;
  padding: 40px 20px;
  position: relative;
  width: 100%;
}
footer h4 {
  padding-bottom: 1rem;
  color: #6FFFE9;
}
footer li {
  padding-bottom: 0.4rem;
}

/*TABLERO DE GESTIÓN*/
.project-board {
  width: 100%;
  max-width: 1000px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  padding: 20px;
  margin: 20px auto;
}

.board-header-title {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 1.2rem;
  color: #0B132B;
}

.grid-table {
  display: grid;
  grid-template-columns: 2fr 1fr 80px 80px 80px;
  gap: 10px;
}

.grid-header {
  display: contents;
}

.header-item {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #3A506B;
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 2px solid #eeeeee;
  display: flex;
  align-items: center;
}
.header-item.center {
  justify-content: center;
}

.grid-row {
  display: contents;
}
.grid-row:hover .cell {
  background-color: #fafafa;
}

.cell {
  background-color: #ffffff;
  padding: 16px 10px;
  border-bottom: 1px solid #eeeeee;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}
.cell.task {
  font-weight: 500;
  color: #0B132B;
}
.cell.date {
  color: #3A506B;
  font-size: 0.85rem;
  height: 25px;
  border: none;
}
.cell.status {
  justify-content: center;
  position: relative;
}

main .botones-table {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin: 1rem auto;
}

.grid-table .radio-btn {
  display: none;
}

.status-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid #eeeeee;
  transition: all 0.2s ease;
  cursor: pointer;
  display: block;
  position: relative;
}
.status-dot::after {
  content: "";
  position: absolute;
  top: -10px;
  bottom: -10px;
  left: -10px;
  right: -10px;
}
.status-dot:hover {
  transform: scale(1.1);
  border-color: #ccc;
}

.radio-btn.pending:checked + .status-dot {
  background-color: #3A506B;
  border-color: #3A506B;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.radio-btn.progress:checked + .status-dot {
  background-color: #5BC0BE;
  border-color: #5BC0BE;
  box-shadow: 0 0 8px rgba(91, 192, 190, 0.4);
}

.radio-btn.finished:checked + .status-dot {
  background-color: #6FFFE9;
  border-color: #6FFFE9;
  box-shadow: 0 0 5px rgba(111, 255, 233, 0.4);
}

form input[type=submit], .btn-project-link, .button, .btn-login,
.btn-register, .btn-custom-main {
  background-color: #3A506B;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  border: none;
  cursor: pointer;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
form input[type=submit]:hover, .btn-project-link:hover, .button:hover, .btn-login:hover,
.btn-register:hover, .btn-custom-main:hover {
  background-color: #5BC0BE;
  color: #0B132B;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(91, 192, 190, 0.3);
  cursor: pointer;
  border-color: transparent;
}
form input[type=submit]:active, .btn-project-link:active, .button:active, .btn-login:active,
.btn-register:active, .btn-custom-main:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: 0.1s;
}

.btn-custom-main {
  padding: 8px 16px;
  border-radius: 0.9375rem;
}

.btn-login,
.btn-register {
  padding: 0.5rem;
  border-radius: 0.9375rem;
}

.button {
  width: 120px;
  height: 30px;
  border-radius: 0.9375rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.btn-project-link {
  padding: 1rem;
  border: 1px solid #1C2541;
  border-radius: 0.9375rem;
}
.btn-project-link:hover {
  border-color: transparent;
}

form input[type=submit] {
  padding: 10px;
  border-radius: 0.9375rem;
  margin-top: 10px;
  width: 100%;
}

form {
  width: 30rem;
  border: 1px solid #eeeeee;
  padding: 20px;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: auto;
  border-radius: 8px;
  background-color: #ffffff;
}
form label {
  font-weight: bold;
  margin-bottom: 5px;
  color: #1C2541;
}
form input:not([type=submit]),
form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #eeeeee;
  border-radius: 4px;
  background-color: #f8f9fa;
}
form input:not([type=submit]):focus,
form textarea:focus {
  box-shadow: 0 0 0 0.25rem rgba(91, 192, 190, 0.2);
  border-color: #5BC0BE;
  outline: none;
}

@media (max-width: 991px) {
  header {
    height: auto;
    padding-bottom: 10px;
  }
  header .container-fluid {
    flex-direction: column;
    gap: 15px;
  }
  header nav {
    justify-content: center;
    flex-wrap: wrap;
  }
  header nav a {
    margin: 0.5rem;
    font-size: 1rem;
    position: relative;
    text-decoration: none;
    padding-bottom: 5px;
    -webkit-tap-highlight-color: transparent;
  }
  header nav a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #5BC0BE;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
  }
  header nav a:hover::after, header nav a:active::after {
    width: 100%;
  }
  header nav a.active {
    color: #3A506B;
    font-weight: 600;
  }
  header nav a.active::after {
    width: 100%;
  }
  header nav a {
    opacity: 0;
    animation: slideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }
  header nav a:nth-child(1) {
    animation-delay: 0.1s;
  }
  header nav a:nth-child(2) {
    animation-delay: 0.2s;
  }
  header nav a:nth-child(3) {
    animation-delay: 0.3s;
  }
  header nav a:nth-child(4) {
    animation-delay: 0.4s;
  }
  header nav a:nth-child(5) {
    animation-delay: 0.5s;
  }
  header nav a:nth-child(6) {
    animation-delay: 0.6s;
  }
  .main-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .main-section .text-content {
    padding: 0;
    width: 100%;
  }
  .main-section .image-placeholder {
    margin-top: 20px;
  }
  form {
    width: 80%;
  }
  .project-board {
    padding: 15px;
    overflow-x: auto;
  }
  .grid-table {
    min-width: 600px;
  }
}
@media (max-width: 768px) {
  .project-board {
    background: transparent;
    box-shadow: none;
    padding: 0;
    width: 100%;
  }
  .project-board .grid-header {
    display: none;
  }
  .project-board .grid-table {
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-x: visible;
    min-width: 0;
  }
  .project-board .grid-table .grid-row {
    display: grid;
    min-width: 0;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: "tarea tarea tarea" "fecha fecha fecha" "btn1 btn2 btn3";
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  }
  .project-board .grid-table .cell {
    border-bottom: none;
    padding: 5px 0;
  }
  .project-board .grid-table .cell.task {
    grid-area: tarea;
    font-size: 1.1rem;
  }
  .project-board .grid-table .cell.date {
    grid-area: fecha;
    margin-bottom: 15px;
    border-bottom: 1px dashed #eeeeee;
  }
  .project-board .grid-table .cell:has(.pending) {
    grid-area: btn1;
  }
  .project-board .grid-table .cell:has(.progress) {
    grid-area: btn2;
  }
  .project-board .grid-table .cell:has(.finished) {
    grid-area: btn3;
  }
  .project-board .grid-table .status-dot::before {
    display: block;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    font-weight: 600;
  }
  .project-board .grid-table .radio-btn.pending + .status-dot::before {
    content: "Prog.";
    color: #5BC0BE;
  }
  .project-board .grid-table .radio-btn.finished + .status-dot::before {
    content: "Fin";
    color: #6FFFE9;
  }
}
@media (max-width: 576px) {
  header nav {
    font-size: 0.9rem;
  }
  form {
    width: 95%;
    margin: 10px auto;
  }
  .form-section {
    height: auto;
    padding: 30px 0;
  }
  .proyectos {
    width: 95%;
  }
  .proyecto {
    width: 100%;
    margin: 10px 0;
  }
  .main-section,
  .faq-box {
    padding: 10px;
  }
  .added {
    width: 95%;
    gap: 10px;
  }
}

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