/* Reset e base */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Cal+Sans&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');


/* Header */
.header {
  background-color: #fff;
  /* border-bottom: 1px solid #e5e7eb; */
  padding: 16px 0;
}

.header-content {
  display: flex;
  align-items: center;
}


/* Logo */
.header-logo img {
  height: 32px;
  width: auto;
}

.header-nav.nav-mobile {
  display: none;
}

/* Navegação */
.header-content-right {
  display: flex;
  flex: 1;
  justify-content: space-between;
  align-items: center;
}

.header-nav {
  display: flex;
  gap: 24px;
}

.header-nav a:hover {
  color: #11D3D3;
}

.arrow-icon:hover {
  color: #11D3D3;
  transform: rotate(180deg);
  transition: transform 0.3s;
}

.sobre-nos-link:hover .arrow-icon {
  transform: rotate(180deg);
  transition: transform 0.3s;
}

.header-nav a {
  color: #4C666D;
  text-decoration: none;
  font-weight: 400;
  font-size: 1em;
}

/* Ações */
.header-actions {
  display: flex;
  align-items: center;
}

.header-actions-right {
  display: flex;
  gap: 16px;
}

/* Idioma */
.language-selector-ry {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #4C666D;
  font-size: 1em;

}

.language-selector span {
  font-weight: 500;
}

.language-selector .chevron {
  font-size: 0.9em;
}

/* Botão */
.btn-login {
  background-color: #11D3D3;
  color: white;
  border: none;
  padding: 5px 30px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  width: 105px;
  height: 34px;
  font-size: 1em;
}

.btn-login:hover {
  background-color: #00b7c3;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  width: 24px;
  height: 3px;
  background-color: #4C666D;
  border-radius: 2px;
  transition: all 0.3s linear;
}


.footer {
  background-color: #10121B;
  color: #aaaebf;
  font-family: 'Arial', sans-serif;
  padding: 40px 20px 20px;
  font-size: 14px;
}


.footer-section {
  flex: 1 1 200px;
}



.footer-newsletter-diviser-mobile {
  display: none;
}

address {
  font-size: 10px;
  width: 100%;
}

.footer-left {
  max-width: 400px;
}

/* .logo {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  color: white;
  font-weight: 600;
  font-size: 18px;
  font-family: 'Arial Black', Arial, sans-serif;
} */

/* .logo-icon {
  color: #21d1db;
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 5px;
  user-select: none;
} */

.footer address {
  font-style: normal;
  line-height: 1.5;
  margin-bottom: 15px;
  color: #aaaebf;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: white;
  font-size: 14px;
  background-color: #21d1db;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.social.instagram {
  background-color: #fff;
  color: #2d2d2d;
}

.social.instagram:hover {
  background-color: #21d1db;
  color: white;
}

.social.facebook:hover {
  background-color: #3b5998;
}

.social.twitter:hover {
  background-color: #1da1f2;
}

.social.linkedin:hover {
  background-color: #0077b5;
}

.footer h4 {
  color: white;
  margin-bottom: 16px;
  font-weight: 600;
  border-bottom: 1px solid #21d1db;
  padding-bottom: 6px;
  max-width: max-content;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a {
  color: #8a94a6;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer ul li a:hover {
  color: #21d1db;
}

.arrow {
  color: #ffff;
  font-weight: 700;
}

.footer-newsletter p {
  margin-bottom: 12px;
  max-width: 260px;
}

.footer-newsletter p strong {
  color: white;
}

.newsletter-form {
  display: flex;
  max-width: 300px;
  gap: 6px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 10px 14px;
  border: none;
  border-radius: 4px;
  background-color: #323243;
  color: #bbb;
  font-size: 14px;
}

.newsletter-form input::placeholder {
  color: #666;
}

.newsletter-form button {
  background-color: #21d1db;
  border: none;
  padding: 10px 18px;
  border-radius: 4px;
  color: #10121b;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #1bb0b7;
}

.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid #222631;
  padding-top: 14px;
  font-size: 12px;
  color: #666;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-terms a {
  color: #666;
  text-decoration: none;
  margin-left: 20px;
  font-size: 12px;
  transition: color 0.3s ease;
}

.footer-terms a:hover {
  color: #21d1db;
}

.logo-footer {
  width: 200px;
  margin-bottom: 10px;
}


/* .btn-index {
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-primary-index {
  background-color: #0bc5ea;
  color: #fff;
}

.btn-primary-index:hover {
  background-color: #00a3c4;
}

.btn-secondary-index {
  background-color: transparent;
  color: #fff;
  border: 1px solid #0bc5ea;
}

.btn-secondary-index:hover {
  background-color: #1a202c;
} */


.footer-left address {
  color: #ffffff;
  font-size: 1.1em;
}

.footer-left a {
  width: 45px;
  height: 45px;
}

.container-header {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  max-width: 1128px;
  gap: 40px;
}

.container-footer {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  max-width: 1128px;
  gap: 40px;
}


.nav-item-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 180px;
  box-shadow: 0 2px 8px #0002;
  border-radius: 8px;
  z-index: 10;
  flex-direction: column;
}

.dropdown-menu a {
  padding: 12px 20px;
  color: #4C666D;
  text-decoration: none;
  display: block;
  transition: background 0.2s;
}

.dropdown-menu a:hover {
  background: #f0f7fa;
}

.dropdown-menu button {
  padding: 12px 20px;
  color: #4C666D;
  text-decoration: none;
  display: block;
  transition: background 0.2s;
}

.dropdown-menu button:hover {
  background: #f0f7fa;
}

.nav-item-dropdown:hover .dropdown-menu {
  display: flex;
}

.nav-item-dropdown:hover .arrow-icon {
  transform: rotate(180deg);
  transition: transform 0.3s;
  color: #11D3D3;
}


@media (max-width: 1023px) {
  .header-content {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hamburger {
    display: flex;
    align-items: flex-start;
  }

  .header-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    right: 0;
    top: 140px;
    width: 100vw;
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    border-top: 1px solid #e5e7eb;
  }

  .header-nav.active {
    display: flex;
  }


  .header-nav a {
    padding: 15px 0;
    font-size: 16px;
    border-bottom: 1px solid #eee;
    width: 100%;
    display: block;
  }

  .header-nav a:last-child {
    border-bottom: none;
  }

  .header .header-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .header-logo img {
    height: 28px;
  }

  .header-actions {
    width: 100%;
    margin-top: 8px;
    padding: 16px;
    justify-content: space-between;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {}


@media (max-width: 768px) {

  .newsletter-form {
    display: flex;
    flex-direction: column;
  }

  .footer-section.footer-newsletter {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;

  }

  .footer-newsletter-diviser-mobile {
    display: block;
    width: 100%;
    background-color: #1bb0b7;
    margin: 10px 0;
    border: none;
    height: 3px;
    border-radius: 999px;
    margin-bottom: 40px;
  }

  .footer .footer-section.footer-newsletter h4 {
    max-width: 100%;
    text-align: center;
  }

}



/* ...existing code... */
/* ...existing code... */
.language-selector {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  user-select: none;
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  min-width: 140px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  z-index: 100;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s, transform 0.2s;
}

.language-selector:hover .lang-dropdown,
.language-selector:focus-within .lang-dropdown {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-dropdown {
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.15s;
  font-size: 1em;
  outline: none;
}


.li-links-footer {
  display: flex;
  flex-direction: row;
  gap: 5px;
}

/* Container do dropdown */
/* Container pai */
.header-actions-right-ry {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.language-selector-ry {
  position: relative;
  cursor: pointer;
}

/* Dropdown wrapper */
.dropdown-wrapper-ry {
  position: relative;
  display: inline-block;
}

/* Estilo do menu dropdown */
.dropdown-lang-ry {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 8px 0;
  min-width: 160px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

/* Mostra o menu ao passar o mouse */
.dropdown-wrapper-ry:hover .dropdown-lang-ry {
  display: block;
}

/* Botões de idioma */
.lang-btn-ry {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: transparent;
  border: none;
  width: 100%;
  font-size: 14px;
  color: #333;
  cursor: pointer;
}

.lang-btn-ry:hover {
  background-color: #4c666d0d;
}

/* Bandeiras */
.lang-flag-ry {
  width: 20px;
  height: 20px;
  object-fit: cover;
  border-radius: 4px;
}

/* Botão Login *
