/* Reset*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.header-title {
    text-align: center;
    margin-top: 50px; 
    padding: 20px;
}

.title {
    font-size: 24px;
    font-weight: bold;
    color: #290738;
}


.content {
    max-width: 800px;
    margin: 10px auto; 
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 50px; 
}


.section {
    margin-bottom: 20px;
    padding: 15px;
    border-left: 5px solid #9c27b0;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 5px;
}


.section-title {
    font-size: 20px;
    font-weight: 600;
    color: #7b1fa2;
}


ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 5px;
}


a {
    color: #7b1fa2;
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    text-decoration: underline;
    color: #4a0072;
}


@media (max-width: 768px) {
    body {
        padding-top: 50px; 
        background-size: 60px 60px;
    }
    .content {
        width: 90%;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 40px; 
        background-size: 40px 40px;
    }
    .section-title {
        font-size: 18px;
    }
}



body {
   font-family: 'Montserrat';
    line-height: 1.6;
    padding-top: 105px; 
  overflow-x: hidden;
  background-color: #fff;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)),
    url("BACKGROUND_WEB_DIMENSION_80px.svg");
  background-repeat: repeat;
  background-size: 350px 350px;
}

.contact-info {
  background-color: #2a003f;
  color: #fff;
  font-size: 14px;
  display: flex;
  justify-content: flex-end; 
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 35px;
  padding: 0 40px;
  z-index: 1000;
  white-space: nowrap; 
}


.contact-container {
  display: flex;
  justify-content: flex-end; 
  align-items: center;
  gap: 20px;
}


.contact-info a {
  color: white;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}


@media (max-width: 768px) {
  .contact-info {
    font-size: 12px;
    padding: 0 20px;
  }

  .contact-container {
    flex-wrap: nowrap;
    overflow: hidden;
    gap: 10px;
    justify-content: flex-end; 
  }
}

.navbar {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 90px;
  position: fixed;
  top: 35px;
  left: 0;
  right: 0;
  height: 110px;
  z-index: 999;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
   
}

.navbar-content {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
   margin-right:22vh; 
}



.logo img {
  height: 75px;
  transition: height 0.3s ease;
   margin-left: 22vh; 
}


.nav-container {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 50px;
  font-weight: bold;
  justify-content: center;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 18px;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #7d2ae8;
}



.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  margin-left: 20px;
}

.hamburger span {
  background-color: #333;
  height: 3px;
  width: 25px;
  border-radius: 2px;
  transition: all 0.3s ease;
}


.right-content {
  display: flex;
  align-items: center;
  gap: 20px;
}


.sidebar-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100vh;
  background-color: #fff;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.15);
  padding: 30px 24px;
  z-index: 1000;
  gap: 20px;
  transition: left 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.sidebar-menu.active {
  left: 0;
  opacity: 1;
}


.sidebar-menu .close-menu {
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: #7d2ae8;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.sidebar-menu .close-menu:hover {
  color: #5c1fd1;
  transform: translateX(-4px);
}

.sidebar-menu .close-menu .arrow-icon {
  font-size: 20px;
  transition: transform 0.3s;
}

.sidebar-menu .close-menu:hover .arrow-icon {
  transform: translateX(-3px);
}


.sidebar-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-menu ul li {
  opacity: 0;
  transform: translateX(-30px);
  animation: slideIn 0.5s ease forwards;
}


.sidebar-menu ul li:nth-child(1) { animation-delay: 0.15s; }
.sidebar-menu ul li:nth-child(2) { animation-delay: 0.3s; }
.sidebar-menu ul li:nth-child(3) { animation-delay: 0.45s; }
.sidebar-menu ul li:nth-child(4) { animation-delay: 0.6s; }


.sidebar-menu ul li a {
  color: #111;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.sidebar-menu ul li a:hover {
  color: #7d2ae8;
  transform: translateX(5px);
}


@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}



@media (max-width: 1024px) {
  .nav-container {
    display: none;
  }

  .navbar {
    padding: 15px 20px;
    height: auto;
  }

  .navbar-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .hamburger {
    display: flex;
    order: -1; 
  }

  .right-content {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .logo img {
    height: 55px;
  }

}

@media (max-width: 768px) {
  .right-content {
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
  }

  .logo img {
    height: 50px;
       margin-left: 20vw; 
    
  }

}




.footer {
  background-image: url('pie de pagina dimension (1).png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: white;
  padding: 60px 40px 30px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-box {
  flex: 1;
  min-width: 280px;
}

.logo-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.footer-logo {
  width: 180px;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: white;
  font-size: 20px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #00cfff;
}

.footer-title {
  color: #00cfff;
  font-size: 18px;
  margin-bottom: 12px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
  color: #00cfff;
}

.map-container {
  margin-bottom: 10px;
}

.footer-box p {
  font-size: 14px;
  margin: 5px 0;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 14px;
  color: #ccc;
}


@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-box {
    width: 100%;
  }

  .logo-box {
    align-items: center;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .map-container iframe {
    width: 100%;
  }
}


