:root {
    --primary-gradient: linear-gradient(to right, #89abff 30%, #fbc4ee 70%);
    --secondary-gradient: linear-gradient(to right, #89abff 10%, #fbc4ee 30%);
    --third-gradient: linear-gradient(to right, #89aaff 40%, #fdb7ed 60%);

    --text-color: #4a4a4a;
    --white: #ffffff;
  }

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    color: var(--text-color);
    line-height: 1.6;
  }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /*hide maria links*/
a[href*="#maria"] {
  display: none !important;
}


  
  .mobile-menu {
    position: fixed;
    top: 4rem; 
    right: 0;
    width: 200px; 
    background-color: white;
    display: none; 
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    padding: 20px;
    list-style-type: none;
    padding-left: 30px;
    transition: transform 0.3s ease-in-out;
  }
  
  .mobile-menu.show {
    display: block; 
    transform: translateY(0); 
  }
  
  .mobile-menu li {
    margin-bottom: 15px; 
  }
  
  .mobile-menu-button {
    display: block; 
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 1001; 
  }
  
  .menu-icon {
    font-size: 1.5rem; 
  }
  

  #main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    height: auto;
  }
  
  .logo img {
    width: 90px;
    height: 55px;
    padding:5px 5px 0px;
  }
  
  .nav-links {
    display: flex;
    gap: 2rem;
  }
  
  .nav-item {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    text-align: center;
    font-size: 1.3rem;
  }
  
  .nav-item:hover {
    color: #fbc4ee;
  }
  
  .language-toggle,
  .language-toggle-bottom,
  .mobile-menu-button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 1000;
  }

  .language-toggle-bottom{
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
  
  .language-text {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    color: #89ABFF;
    transition: color 0.3s ease;
  }
  
  .language-text:hover {
    color: #fbc4ee; 
  }
  
  .mobile-menu-button {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
  }
  
  .mobile-menu-button div {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: transform 0.3s ease;
  }

  

footer {
    background-color: var(--white);
    padding: 4rem 2rem 2rem;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .footer-section {
    flex: 1;
    min-width: 200px;
  }
  
  .footer-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    margin-top: 0;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: center;
  }

  .footer-title-language {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    margin-top: 0;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: center;
  }
  
  .footer-language{
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 200px;
  }

  .footer-description {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .footer-section a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    padding-bottom: 0.5rem;
  }
  
  .footer-section a:hover {
    color: #fbc4ee;
  }
  
  .coming-soon {
    color: #999;
    cursor: not-allowed;
  }
  
  .footer-bottom {
    margin-top: 2rem;
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 2rem;
  }

  .footer-title-links {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    margin-top: 0;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: center;
  }
  
  .footer-links {
    margin-top: 1rem;
  }
  
  .footer-links a {
    color: var(--text-color);
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-links a:hover{
    color: #fbc4ee;
  }

  .footer-links-legal {
    margin-top: 1rem;
  }

  .footer-links-legal a {
    color: var(--text-color);
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: left;
  }
  
  .footer-links-legal a:hover {
    color: #fbc4ee;
  }


  .footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  @media (max-width: 1160px){
    .nav-links {
      font-size: 1.2rem;
    }
  }
  
  @media (min-width: 769px) {
    .mobile-menu-button {
      display: none; 
    }
  
    .mobile-menu {
      display: none;
    }
  
    .nav-links {
      display: flex; 
    }
  }

  @media (max-width: 768px) {

    .mobile-menu-button {
      display: flex;
    }
  
    .nav-links {
      display: none; 
    }
    
    .mobile-menu-button.open div:nth-child(1) {
      transform: rotate(45deg);
      position: relative;
      top: 7px;
    }
    
    .mobile-menu-button.open div:nth-child(2) {
      opacity: 0;
    }
    
    .mobile-menu-button.open div:nth-child(3) {
      transform: rotate(-45deg);
      position: relative;
      bottom: 7px;
    }

    .language-toggle {
      display: none;
    }

    footer {
      padding: 3rem 1.5rem;
    }
  
    .footer-content {
      flex-direction: column; 
      align-items: center; 
      gap: 0.5rem; 
    }

    .footer-title-language{
      background: var(--primary-gradient);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      text-align: center;
      font-size: 1.5rem;
    }

    .footer-title{
      background: var(--primary-gradient);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      text-align: center;
      font-size: 1.5rem;
    
    }

    .language-toggle-bottom {
      display: flex;
      flex-direction: column;
      align-items: center;
      font-size: 1.1rem;
    }

  
    .footer-bottom {
      margin-top: 1.5rem;
      font-size: 0.9rem;
    }
  
    .footer-links {
      display: none;
    }

    .footer-title-links {
      display: none;
    }

    .footer-contact {
      align-items: center;
    }
  }
  

  @media (max-width: 480px) {
    .footer-title {
      font-size: 1.3rem;
    }
  
    .footer-bottom {
      font-size: 0.8rem;
    }
  
    .footer-links a {
      margin: 0 0.3rem;
    }
  }
  