/* Variables for colors */
/* Dorado */
/* Black */
/* White */
/* Light gold for hover effects */
body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  background-color: #fff;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 2rem;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.navbar--scrolled {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0rem;
}
.navbar__logo img {
  height: 50px;
}
.navbar__logo span {
  font-size: 1.5rem;
  font-weight: bold;
  color: #d4af37;
}
.navbar__menu ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.navbar__menu ul .active {
  color: #d4af37;
}
.navbar__menu ul li a {
  text-decoration: none;
  font-size: 1rem;
  color: #000;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.navbar__menu ul li a:hover {
  color: #d4af37;
}
.navbar__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}
.navbar__toggle span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #000;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}
.navbar__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
}
.navbar__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
@media (max-width: 768px) {
  .navbar__menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    z-index: 999;
  }
  .navbar__menu ul {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  .navbar__menu ul li {
    text-align: center;
  }
  .navbar__menu ul li a {
    display: block;
    padding: 0.5rem 1rem;
    border-radius: 5px;
  }
  .navbar__menu ul li a:hover {
    background-color: #f0e68c;
    color: #000;
  }
  .navbar__menu.active {
    display: flex;
  }
  .navbar__toggle {
    display: block;
  }
}

.navbar__links {
  position: relative;
}
.navbar__links .dropdown {
  position: relative;
}
.navbar__links .dropdown .active {
  color: #d4af37 !important;
}
.navbar__links .dropdown a {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0rem 1rem;
}
.navbar__links .dropdown a i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}
.navbar__links .dropdown:hover i {
  transform: rotate(180deg);
}
.navbar__links .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  z-index: 999;
  padding: 0.5rem 0;
}
.navbar__links .dropdown .dropdown-menu li a {
  display: block;
  padding: 0.5rem 1.5rem;
  text-decoration: none;
  color: #000;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}
.navbar__links .dropdown .dropdown-menu li a:hover {
  background: #f0e68c;
  color: #000;
}
.navbar__links .dropdown:hover .dropdown-menu {
  display: block;
}
@media (max-width: 768px) {
  .navbar__links .dropdown a {
    justify-content: center;
    width: 100%;
  }
  .navbar__links .dropdown .dropdown-menu {
    position: relative;
    display: none;
    box-shadow: none;
    padding: 0.5rem 0;
    background: #fff;
  }
  .navbar__links .dropdown .dropdown-menu li a {
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }
  .navbar__links .dropdown .dropdown-menu li a:hover {
    background: #f6f0b9;
  }
  .navbar__links .dropdown.active .dropdown-menu {
    display: block;
  }
}

.banner {
  position: relative;
  height: 50vh;
  background: url("./Imagen 2.avif") no-repeat center center/cover;
}
.banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
  z-index: 1;
}
.banner__content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
}
.banner__content h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.documents-section {
  padding: 3rem 1rem;
  background-color: #f9f9f9;
}
.documents-section h2 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: bold;
  color: #1d3a4f;
  margin-bottom: 3rem;
}
.documents-section .document-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.documents-section .document-cards .card {
  flex: 1 1 calc(33.333% - 2rem);
  max-width: 320px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
}
.documents-section .document-cards .card img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 1rem;
}
.documents-section .document-cards .card h3 {
  font-size: 1.6rem;
  color: #d4af37;
  margin-bottom: 1rem;
  text-align: center;
}
.documents-section .document-cards .card .toggle-button {
  background-color: #d4af37;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.documents-section .document-cards .card .toggle-button:hover {
  background-color: #b5932c;
}
.documents-section .document-cards .card .download-links {
  margin-top: 1rem;
  display: none;
  flex-direction: column;
  width: 100%;
}
.documents-section .document-cards .card .download-links.hidden {
  display: none;
}
.documents-section .document-cards .card .download-links.visible {
  display: flex;
}
.documents-section .document-cards .card .download-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0.5rem 0;
  padding: 0.75rem 1rem;
  background-color: #d4af37;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9rem;
  text-align: left;
  transition: background-color 0.3s ease;
}
.documents-section .document-cards .card .download-links a:hover {
  background-color: #b5932c;
}
.documents-section .document-cards .card .download-links a i {
  margin-left: 0.5rem;
  font-size: 1rem;
}
.documents-section .document-cards .card .download-links strong {
  display: block;
  margin: 0.5rem 0;
  color: #333;
  font-size: 0.9rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .documents-section .card {
    flex: 1 1 100%;
  }
}

.footer {
  background-color: #1e1e1e;
  color: #fff;
  padding: 2rem 0;
}
.footer__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}
@media (max-width: 768px) {
  .footer__container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }
}
.footer__logo img {
  max-width: 150px;
  padding: 0.5rem;
}
.footer__contact {
  flex: 1;
  max-width: 400px;
  padding: 0 2rem;
}
.footer__contact h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.footer__contact p {
  font-size: 1rem;
  line-height: 1.5;
}
.footer__contact p a {
  color: #d4af37;
  text-decoration: none;
}
.footer__contact p a:hover {
  text-decoration: underline;
}
.footer__social {
  flex: 1;
  padding: 0 2rem;
}
.footer__social h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.footer__social-icons {
  display: flex;
  gap: 1rem;
}
.footer__social-icons a {
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  transition: color 0.3s;
}
.footer__social-icons a:hover {
  color: #d4af37;
}
.footer__copyright {
  background-color: #111;
  padding: 1rem 0;
  text-align: center;
  font-size: 0.9rem;
  margin-top: 1rem;
}/*# sourceMappingURL=styles.css.map */