@charset "UTF-8";
/* 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: 1rem 2rem;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeInDown 0.6s ease-out;
}
.navbar--scrolled {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  padding: 0.8rem 2rem;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.navbar__logo:hover {
  transform: scale(1.05);
}
.navbar__logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}
.navbar__logo span {
  font-size: 1.5rem;
  font-weight: bold;
  color: #d4af37;
  text-decoration: none;
}
.navbar__menu {
  flex: 1;
  display: flex;
  justify-content: center;
}
.navbar__menu ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  align-items: center;
}
.navbar__menu ul .active {
  color: #d4af37;
}
.navbar__menu ul li {
  position: relative;
}
.navbar__menu ul li a {
  text-decoration: none;
  font-size: 1rem;
  color: #000;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  display: inline-block;
  position: relative;
}
.navbar__menu ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.navbar__menu ul li a:hover {
  color: #d4af37;
}
.navbar__menu ul li a:hover::after {
  width: 80%;
}
.navbar__actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.navbar__action-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1rem;
  background: transparent;
  border: 2px solid #d4af37;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.navbar__action-btn:hover {
  background: #d4af37;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}
.navbar__action-btn .sistelar-logo,
.navbar__action-btn .banco-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar__action-btn .sistelar-logo img,
.navbar__action-btn .banco-logo img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.navbar__action-btn .sistelar-logo i,
.navbar__action-btn .banco-logo i {
  font-size: 1.2rem;
  color: #d4af37;
  transition: color 0.3s ease;
}
.navbar__action-btn .sistelar-text,
.navbar__action-btn .banco-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.navbar__action-btn .sistelar-text .sistelar-title,
.navbar__action-btn .sistelar-text .banco-title,
.navbar__action-btn .banco-text .sistelar-title,
.navbar__action-btn .banco-text .banco-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #d4af37;
  line-height: 1.2;
  transition: color 0.3s ease;
}
.navbar__action-btn .sistelar-text .sistelar-subtitle,
.navbar__action-btn .sistelar-text .banco-subtitle,
.navbar__action-btn .banco-text .sistelar-subtitle,
.navbar__action-btn .banco-text .banco-subtitle {
  font-size: 0.7rem;
  color: #000;
  line-height: 1.2;
  transition: color 0.3s ease;
}
.navbar__action-btn:hover .sistelar-title,
.navbar__action-btn:hover .banco-title,
.navbar__action-btn:hover .sistelar-subtitle,
.navbar__action-btn:hover .banco-subtitle {
  color: #fff;
}
.navbar__action-btn:hover .banco-logo i {
  color: #fff;
}
.navbar__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  position: relative;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
}
.navbar__toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: #000;
  border-radius: 3px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
  position: relative;
  margin: 5px 0;
}
.navbar__toggle.active span {
  background-color: #000;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2.5px;
}
.navbar__toggle.active span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}
.navbar__toggle.active span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media (max-width: 1024px) {
  .navbar {
    padding: 1rem 1.5rem;
  }
  .navbar__menu ul {
    gap: 1rem;
  }
  .navbar__action-btn {
    padding: 0.5rem 0.75rem;
    gap: 0.5rem;
  }
  .navbar__action-btn .sistelar-text .sistelar-title,
  .navbar__action-btn .sistelar-text .banco-title,
  .navbar__action-btn .banco-text .sistelar-title,
  .navbar__action-btn .banco-text .banco-title {
    font-size: 0.75rem;
  }
  .navbar__action-btn .sistelar-text .sistelar-subtitle,
  .navbar__action-btn .sistelar-text .banco-subtitle,
  .navbar__action-btn .banco-text .sistelar-subtitle,
  .navbar__action-btn .banco-text .banco-subtitle {
    font-size: 0.65rem;
  }
}
@media (max-width: 768px) {
  .navbar {
    padding: 1rem 1.25rem;
    gap: 0.5rem;
  }
  .navbar__logo img {
    height: 40px;
  }
  .navbar__logo span {
    font-size: 1.25rem;
  }
  .navbar__menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    z-index: 1000;
    overflow-y: auto;
    animation: slideInRight 0.3s ease-out;
    flex-direction: column;
    justify-content: flex-start;
  }
  .navbar__menu ul {
    flex-direction: column;
    gap: 0;
    padding: 4rem 0 1rem;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  .navbar__menu ul li {
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  .navbar__menu ul li a {
    display: block;
    padding: 1rem 1.5rem;
    border-radius: 0;
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.2s ease;
  }
  .navbar__menu ul li a::after {
    display: none;
  }
  .navbar__menu ul li a:hover, .navbar__menu ul li a:active {
    background-color: rgba(212, 175, 55, 0.1);
    color: #d4af37;
  }
  .navbar__menu.active {
    display: flex;
  }
  .navbar__actions {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    padding: 1.5rem;
    margin-top: auto;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
    background: rgba(249, 249, 249, 0.5);
  }
  .navbar__actions.active {
    display: flex;
  }
  .navbar__action-btn {
    width: 100%;
    justify-content: center;
    padding: 1rem;
    border-radius: 8px;
    min-height: 56px;
  }
  .navbar__action-btn .sistelar-text .sistelar-title,
  .navbar__action-btn .sistelar-text .banco-title,
  .navbar__action-btn .banco-text .sistelar-title,
  .navbar__action-btn .banco-text .banco-title {
    font-size: 0.95rem;
  }
  .navbar__action-btn .sistelar-text .sistelar-subtitle,
  .navbar__action-btn .sistelar-text .banco-subtitle,
  .navbar__action-btn .banco-text .sistelar-subtitle,
  .navbar__action-btn .banco-text .banco-subtitle {
    font-size: 0.8rem;
  }
  .navbar__toggle {
    display: block;
    position: relative;
    z-index: 1001;
    order: 3;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }
  .navbar__toggle.active {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1002;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 0.75rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
  }
  .navbar__toggle.active span {
    background-color: #000;
    width: 24px;
    height: 2.5px;
  }
}
@media (max-width: 480px) {
  .navbar {
    padding: 0.875rem 1rem;
  }
  .navbar__logo img {
    height: 35px;
  }
  .navbar__logo span {
    font-size: 1.1rem;
  }
  .navbar__menu ul {
    padding: 3.5rem 0 1rem;
  }
  .navbar__actions {
    padding: 1rem;
  }
  .navbar__toggle.active {
    top: 0.75rem;
    right: 0.75rem;
    width: 40px;
    height: 40px;
    padding: 0.5rem;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.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: 0.5rem 0.75rem;
  position: relative;
}
.navbar__links .dropdown > a i {
  margin-left: 0.5rem;
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}
.navbar__links .dropdown:hover > a i, .navbar__links .dropdown.active > a i {
  transform: rotate(180deg);
}
.navbar__links .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  z-index: 999;
  padding: 0.75rem 0;
  min-width: 320px;
  animation: fadeInDown 0.3s ease-out;
  border: 1px solid rgba(0, 0, 0, 0.08);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.2s ease 0.1s, transform 0.2s ease 0.1s, visibility 0s 0.3s;
  margin-top: 0.5rem;
}
.navbar__links .dropdown .dropdown-menu::before {
  content: "";
  position: absolute;
  top: -0.75rem;
  left: -30px;
  right: -30px;
  height: 0.75rem;
  background: transparent;
}
.navbar__links .dropdown .dropdown-menu li a {
  display: block;
  padding: 0.875rem 1.75rem;
  text-decoration: none;
  color: #000;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  position: relative;
}
.navbar__links .dropdown .dropdown-menu li a:hover {
  background: rgba(212, 175, 55, 0.12);
  color: #d4af37;
  border-left-color: #d4af37;
  padding-left: 2rem;
  transform: translateX(2px);
}
@media (min-width: 769px) {
  .navbar__links .dropdown:hover .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    pointer-events: all !important;
    visibility: visible !important;
    animation: fadeInDown 0.3s ease-out;
    transition-delay: 0s;
  }
  .navbar__links .dropdown .dropdown-menu:hover {
    display: block !important;
    opacity: 1 !important;
    pointer-events: all !important;
    visibility: visible !important;
  }
  .navbar__links .dropdown:hover::after {
    content: "";
    position: absolute;
    top: 100%;
    left: -30px;
    right: -30px;
    height: 0.75rem;
    background: transparent;
    z-index: 998;
  }
}
.navbar__links .dropdown.active .dropdown-menu {
  display: block !important;
  opacity: 1 !important;
  pointer-events: all !important;
  visibility: visible !important;
  transition-delay: 0s;
}
@media (max-width: 1024px) {
  .navbar__links .dropdown .dropdown-menu {
    min-width: 250px;
  }
}
@media (max-width: 768px) {
  .navbar__links .dropdown {
    width: 100%;
  }
  .navbar__links .dropdown > a {
    justify-content: space-between;
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
  }
  .navbar__links .dropdown > a i {
    margin-left: auto;
    font-size: 0.85rem;
    transition: transform 0.3s ease;
  }
  .navbar__links .dropdown.active > a i {
    transform: rotate(180deg);
  }
  .navbar__links .dropdown .dropdown-menu {
    position: relative !important;
    display: block !important;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    background: rgba(212, 175, 55, 0.05);
    margin-top: 0;
    min-width: 100%;
    max-height: 0 !important;
    overflow: hidden;
    opacity: 0 !important;
    transform: translateY(-10px);
    visibility: hidden !important;
    pointer-events: none !important;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0.3s, pointer-events 0s 0.3s;
    will-change: max-height, opacity, transform;
  }
  .navbar__links .dropdown .dropdown-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transform: translateX(0);
    transition: transform 0.2s ease;
  }
  .navbar__links .dropdown .dropdown-menu li a {
    padding: 0.875rem 1.5rem 0.875rem 2.5rem;
    font-size: 1rem;
    border-left: none;
    position: relative;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-tap-highlight-color: transparent;
  }
  .navbar__links .dropdown .dropdown-menu li a::before {
    content: "→";
    position: absolute;
    left: 1.5rem;
    color: #d4af37;
    opacity: 0.6;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: bold;
  }
  .navbar__links .dropdown .dropdown-menu li a:hover, .navbar__links .dropdown .dropdown-menu li a:active {
    background: rgba(212, 175, 55, 0.15);
    color: #d4af37;
    padding-left: 2.75rem;
    transform: translateX(4px);
  }
  .navbar__links .dropdown .dropdown-menu li a:hover::before, .navbar__links .dropdown .dropdown-menu li a:active::before {
    opacity: 1;
    left: 1.75rem;
  }
  .navbar__links .dropdown.active .dropdown-menu, .navbar__links .dropdown.active > .dropdown-menu {
    max-height: 1000px !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
    pointer-events: all !important;
    display: block !important;
    transition-delay: 0s !important;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 500px;
  }
}
.banner {
  position: relative;
  height: 50vh;
  min-height: 300px;
  background: url("./Imagen 1.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.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;
  text-align: center;
  padding: 2rem;
}
.banner__content h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  margin: 0;
}
@media (max-width: 1024px) {
  .banner {
    height: 40vh;
    min-height: 280px;
  }
  .banner__content h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .banner {
    height: 35vh;
    min-height: 250px;
  }
  .banner__content {
    padding: 1.5rem;
  }
  .banner__content h1 {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .banner {
    height: 30vh;
    min-height: 200px;
  }
  .banner__content {
    padding: 1rem;
  }
  .banner__content h1 {
    font-size: 1.75rem;
  }
}

.download-section {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  display: flex;
  justify-content: center;
  align-items: center;
}
.download-section .download-card {
  max-width: 600px;
  width: 100%;
  text-align: center;
  padding: 3rem 2rem;
  background-color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.download-section .download-card h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #1d3a4f;
  margin-bottom: 1.5rem;
}
.download-section .download-card p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.download-section .download-card .btn-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  background-color: #d4af37;
  border-radius: 50px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.download-section .download-card .btn-download:hover {
  background-color: #b5932c;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
.download-section .download-card .btn-download i {
  font-size: 1.2rem;
}
@media (max-width: 1024px) {
  .download-section {
    padding: 3rem 1.5rem;
  }
  .download-section .download-card {
    padding: 2.5rem 1.5rem;
  }
  .download-section .download-card h2 {
    font-size: 1.75rem;
  }
  .download-section .download-card p {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .download-section {
    padding: 2.5rem 1rem;
  }
  .download-section .download-card {
    padding: 2rem 1.5rem;
  }
  .download-section .download-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .download-section .download-card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  .download-section .download-card .btn-download {
    padding: 0.625rem 1.25rem;
    font-size: 1rem;
  }
  .download-section .download-card .btn-download i {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .download-section {
    padding: 2rem 1rem;
  }
  .download-section .download-card {
    padding: 1.5rem 1rem;
  }
  .download-section .download-card h2 {
    font-size: 1.25rem;
  }
  .download-section .download-card p {
    font-size: 0.9rem;
  }
  .download-section .download-card .btn-download {
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    width: 100%;
    max-width: 300px;
  }
}

.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 */