@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: white;
    color: #fff;
    overflow-x: hidden;
  }

  *, *::before, *::after {
    box-sizing: border-box;
  }

  @keyframes slideDown {
    from {
      transform: translateY(-100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  header.opaque {
    background-color: rgba(255, 255, 255, 1);
  }
  
  .logo img {
    height: 69px;
    margin-right: 250px;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
    margin-left: 250px;
  }
  
  nav li {
    display: inline;
  }
  
  nav a {
    color: black;
    text-decoration: none;
    font-family: Inter;
    font-weight: 300;
    font-size: large;
  }

  #AI_CHAT {

    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 20px;

    position: fixed;
    display: flex;
    z-index: 999;
    right: 0;
    top: 70%;

    align-items: center;
    justify-content: center;

    margin-right: 0.5vw;
    padding: 0.5%;

  }

  #AI_CHAT h4{

    font-family: Inter;
    font-weight: 300;
    background-color: rgb(0, 154, 185);

    padding: 3%;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 20px;

  }

  #AI_CHAT img{

    width: 50px;
    height: 50px;
    border-radius: 100%;
    margin-top: 50px;
    margin-left: 5px;
    
    object-fit: cover;
    transition: 0.5s ease;

  }

  #AI_CHAT img:hover{

    width: 55px;
    height: 55px;
    transition: 0.5s ease;

  }

  #chatWindow {
    display: none; /* Oculto inicialmente */
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    height: 50%;
    border-radius: 10px;
    padding: 20px;
    z-index: 1000;
  }
  
  .hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(to bottom, #50a6f1, #ffffff);
  }
  
  .hero h1 {
    margin-top: 100px;
    font-size: 3em;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 1.4em;
    margin-bottom: 40px;
  }
  
  .illustration img {
    max-width: 100%;
    height: auto;
  }
  
  .about {
    text-align: center;
    padding: 80px 20px;
    background-color: #ffffff;
    color: #333;
  }
  
  .about h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
  }
  
  .about p {
    font-size: 1.23em;
    margin-bottom: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .btn {
    display: inline-block;
    background-color: #000000;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 15px;
    transition: background-color 0.3s ease;
  }
  
  .btn:hover {
    background-color: #33353a;
  }

.services {
  padding: 80px 20px;
  background-color: #fff;
  color: #333;
}

.services .services-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.services-info {
  flex: 0.69;
  text-align: left;
}

.services-info h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.services-info p {
  font-size: 1.22em;
  margin-bottom: 25px;
}

.service-items {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}

.service-item {
  background-color: #f1f1f1;
  border-radius: 13px;
  padding: 16px;
  text-align: left;
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-item img {
  width: 75px;
  height: 75px;
  margin-bottom: 10px;
}

.service-item h3 {
  font-size: 1.45em;
  margin: 0;
}

  .our-clients {

    background-color: #ffffff;
    text-align: center;
    width: 100%;
  }
  
  .our-clients h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
  }
  
  .marquee {
    overflow: hidden;
    background-color: #ffffff;
    padding: 40px 0;
  }
  
  .marquee-content {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
  }
  
  .marquee-item {
    margin-right: 30px;
  }
  
  .marquee-item img {
    width: 220px;
  }
   
  @keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  
  .contact-info {
    padding: 80px 20px;
    background-image: url("/img/image-1.png");
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
  }
  
  .contact-info .contact-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .contact-info h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
  }
  
  .contact-info .btn {
    background-color: #000;
    padding: 15px 30px;
    border-radius: 15px;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
  }
  
  .contact-info .btn:hover {
    background-color: #333;
  }

  .footer {
    background-color: #ffffff;
    color: #000000;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .footer-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
  }

  .footer-secondrow {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
  }
  
  .footer-item {
    font-size: 0.95em;
    flex: 0;
    min-width: 200px;
  }

  .footer-logo-tagline img {
    max-height: 80px;
    max-width: 80px;
  }
  
  .footer-logo-tagline p {
    opacity: 0.4;
    font-size: 0.8em;
    margin: 0;
    text-align: left;
  }

  .footer-nav ul,
  .footer-services ul {
    list-style: none;
    padding: 0;
    margin-bottom: 10px;
  }

  .footer-nav ul li,
  .footer-services ul li {
    margin-bottom: 15px;
    font-size: 0.9em;

  }
  
  .footer-nav a,
  .footer-services a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .footer-nav a:hover,
  .footer-services a:hover {
    color: #616161;
  }
  
  .footer-social a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .footer-social a:hover {
    color: #616161;
  }

  .footer-social img {
    width: 15px;
    height: auto;
    margin-bottom: 2.7px;
  }
  
  hr {
    opacity: 0.2;
    border: none;
    border-top: 0.5px solid #000000;
    margin-left: 5vw;
    margin-right: 5vw;
  }
  
  .footer-bottom p {
    font-size: 0.8em;
    margin-left: 5vw;
    text-align: left;
  }

  .menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2em;
    color: #000;
    cursor: pointer;
  }

  @media (max-width: 768px) {

    #chatWindow {
      display: none; /* Oculto inicialmente */
      position: fixed;
      top: 40%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 95%;
      height: 50%;
      border-radius: 10px;
      padding: 20px;
      z-index: 1000;
    }

    .menu-toggle {
      display: block;
    }
  
    .logo img {
      margin-right: 0;
      height: 50px;
    }
  
    nav {
      display: none;
      width: 100%;
      text-align: center;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: rgba(255, 255, 255, 0.9);
      padding: 10px 0;
      z-index: 10000;
    }
  
    nav.open {
      display: block;
    }
  
    nav ul {
      flex-direction: column;
      gap: 10px;
      margin-left: 0;
      flex-wrap: wrap;
      justify-content: center;
    }
  
    nav a {
      font-size: 1em;
    }

    .hero {
      padding: 60px 20px;
    }
    .hero h1 {
      font-size: 2em;
      margin-top: 60px;
      margin-bottom: 15px;
    }
    .hero p {
      font-size: 1.1em;
      margin-bottom: 25px;
    }
    .illustration img {
      max-width: 90%;
    }

    .about {
      padding: 40px 20px;
    }
    .about h2 {
      font-size: 2em;
    }
    .about p {
      font-size: 1em;
      margin-bottom: 20px;
      padding: 0 10px;
    }
    .about .btn {
      padding: 10px 20px;
      font-size: 1em;
    }
  
    .services {
      padding: 60px 20px;
    }
    .services .services-content {
      flex-direction: column;
      gap: 20px;
      align-items: center;
    }
    .services-info {
      width: 100%;
      text-align: center;
    }
    .services-info h2 {
      font-size: 2em;
    }
    .services-info p {
      font-size: 1em;
    }
    .service-items {
      width: 100%;
      grid-template-columns: 1fr;
    }
    .service-item {
      text-align: center;
    }
  
    .our-clients {
      padding: 40px 20px;
    }
    .our-clients h2 {
      font-size: 2em;
    }
    .marquee-item img {
      width: 150px;
    }
  
    .contact-info {
      padding: 40px 20px;
    }
    .contact-info h2 {
      font-size: 2em;
    }
    .contact-info .btn {
      padding: 10px 20px;
      font-size: 1em;
    }
  
    .footer-container {
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }
    .footer-row,
    .footer-secondrow {
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
    .footer-item {
      margin: 10px 0;
      text-align: center;
    }
    hr {
      margin-left: 10vw;
      margin-right: 10vw;
    }
    .footer-bottom p {
      margin-left: 10vw;
      text-align: center;
    }
  }