/* Reset e Fontes Globais*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    height: 100%;
    font-family: var(--font-family);
    /*background-color: #fdfdfd;*/
        color: #1f1f1f;
        line-height: 1.6;
}

:root {
    /* === Core Colors === */
    --green: #A0C334;
    /* Era: --primary-color */
    --blue-dark: #005D8F;
    /* Era: --secondary-color */
    --blue: #0077B6;
    /* Era: --highlight-color */

    /* === Text Colors === */
    --white: #ffffff;
    /* Era: --text-h1 */
    --blue-heading: #0077B6;
    /* Era: --text-h2 */
    --black: #1F1F1F;
    /* Era: --text-h3 */
    --gray-700: #374151;
    /* Era: --text-p */

    /* === Background Colors === */
    --gray-50: #F8F9FA;
    /* Era: --section-bg */
    --light-gray-blue: #E6ECF0;

    /* === Font === */
    --font-family: 'Inter', sans-serif;

    /* === Font Sizes === */
    --heading-1: 1.875rem; /*36px 2.25rem*/
    /* 30px */
    --heading-2: 1.5rem;  /*28px 1.75rem*/
    /* 24px */
    --heading-3: 1.25rem;  /*24px 1.5rem*/
    /* 20px */
    --body-text: 1rem;   /*18px 1.125rem*/
    /* 16px */
    --small-text: 0.875rem; /*16px 1rem*/
    /* 14px */
}

h2 {
    font-size: var(--heading-2);
    color: var(--blue-heading);
    font-weight: 700;
    text-align: center;
}

h3 {
    font-weight: bold;
    /* negrito */
    font-size: 1.125rem;
    /* 18px em rem */
    line-height: 1.5rem;
    /* 24px em rem */
    color: var(--black);
    /* cor escura */
}

p {
    font-weight: 400;
    /* peso regular */
    font-size: 0.875rem;
    /* 14px em rem */
    line-height: 1.25rem;
    /* 20px em rem */
    color: var(--gray-700);
    /* cinza escuro */
}

/*Header e Footer Comuns*/


/* === Header base styles (mobile first) === */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1rem;
    height: 3.75rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1100;
    background-color: white;
    }

.header.menu-open {
    display: none;
}



/* === Logo styling === */
.logo {
    height: 2.5rem;
    /* 32px */
    max-width: 9rem;
    /* 120px */
    width: auto;
    object-fit: contain;
}

/* === Menu icon button === */
.menu-btn {
    background: none;
    border: none;
    padding: 0.25rem;
    cursor: pointer;
}

/* Menu icon image */
.menu-icon {
    width: 3rem;
    /* 36px */
    height: 3rem;
}

/* === Mobile Nav Styles === */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

/* Abrir menu */
.mobile-nav.open {
  transform: translateX(0%);
}

/* Cabeçalho com logo centralizado */
/*.mobile-nav-header {
  position: relative;
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}*/

/* Cabeçalho do menu com logo centralizado e botão X à direita */
.mobile-nav-header {
  position: relative;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #eee;
  margin-bottom: 1rem;
}

/* Logo dentro do menu */
.mobile-nav-header .logo {
  height: 2.5rem;
  max-width: 9rem;
  margin: 0 auto;
  display: block;
}

/* Botão de fechar */
/*.close-menu {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  display: none;
  z-index: 1101;
}*/

/* Botão de fechar no topo direito */
.close-menu {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-10%); /*Valores positivos sobem, Valores 
   descem o elemento*/
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: block;
}

.close-menu img {
  width: 1.25rem;
  height: 1.25rem;
}

.mobile-nav.open .close-menu {
  display: block;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

/*Serviu para testar o fechar menue*/
/*.close-menu img {
  background-color: red;
}*/


/* Links */
.mobile-nav-links {
  list-style: none;
  padding: 2rem 0 0 0;
  margin: 0;
  flex-grow: 1;
}

.mobile-nav-links li {
  margin-bottom: 1.5rem;
}

.mobile-nav-links a {
  text-decoration: none;
  font-size: 1.2rem;
  color: #333;
  font-weight: 500;
}

/* Botão destaque no Nav Menu */
.join-btn {
  display: block;
  width: 100%;
  background-color: var(--green);
  color: white;
  text-align: center;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  font-weight: bold;
  margin-top: auto;
  margin-bottom: 1rem;
  text-decoration: none;
}



/* Separador superior acima do botão */
.mobile-nav-links::after {
  content: "";
  display: block;
  height: 1px;
  background-color: #e0e0e0;
  margin: 1.5rem 0;
}

/* Esconde o botão hambúrguer quando o menu está aberto */
.header.menu-open .menu-btn {
  display: none;
}

/* Mostra o botão de fechar */
.mobile-nav.open .close-menu {
  display: block;
}

/* Garante que o botão de fechar esteja escondido inicialmente */
.close-menu {
  display: none;
}



/* Footer*/

.footer-conecta {
    padding: 2rem 1rem;
    text-align: center;
    background-color: var(--white);
    box-sizing: border-box;
}

.footer-conecta h3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.social-icons img {
    width: 28px;
    height: 28px;
}

.contact-email,
.contact-phone {
    margin: 0.3rem 0;
}

.contact-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0.3rem 0;
  color: var(--blue-dark)
}

.contact-whatsapp span{
    font-weight: 600;
}

.contact-whatsapp img {
  width: 28px;
  height: 28px;
}


/* Bloco: Informações legais e créditos */
.footer-legal {
    width: 100%;
    background-color: var(--blue-heading);
    color: #ffffff;
    text-align: center;
    padding: 1.5rem 1rem 0.5rem 1rem;
    box-sizing: border-box;
}

.footer-legal p {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 0.5rem;
    font-weight: 400;
    /* peso regular */
    font-size: 0.875rem;
    /* 14px em rem */
    line-height: 1.25rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

.separator {
    color: #ffffff;
    margin: 0 0.3rem;
}

.footer-creditos {
    font-weight: 400;
    /* peso regular */
    font-size: 0.875rem;
    /* 14px em rem */
}

.footer-creditos a{
    color: var(--white);
    text-decoration: none;
}

.footer-creditos a:hover {
    text-decoration: underline;
}


/* Bloco: mobile nav */
/*
.footer-mobile-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 16px 10px;
    background-color: #f8f8f8;
    /* ajuste conforme seu layout 
    border-top: 1px solid #ccc;
}

.footer-mobile-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    font-size: 12px;
    color: #6b6b6b;
}

.footer-mobile-nav .nav-item img {
    width: 20px;
    height: 20px;
    margin-bottom: 4px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.footer-mobile-nav .nav-item:hover,
.footer-mobile-nav .nav-item.active {
    color: var(--blue-heading);
}

.footer-mobile-nav .nav-item:hover img,
.footer-mobile-nav .nav-item.active img {
    filter: brightness(0) saturate(100%) invert(32%) sepia(96%) saturate(679%) hue-rotate(169deg) brightness(90%) contrast(90%);

}
*/


/* ==========================
   === MEDIA QUERIES ===
   ========================== */

/* Tablet (≥768px) */
@media (min-width: 768px) {
  .header {
    padding: 1rem 2rem;
  }

  .menu-btn {
    display: none;
  }

  /* Mostra o menu como horizontal se for necessário aqui */
  .mobile-nav {
    display: none !important;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.375rem;
  }

  p {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .footer-conecta {
    text-align: center;
    padding: 2rem 2rem;
  }

  .footer-conecta h3 {
    font-size: 1.25rem;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-legal {
    text-align: center;
    padding: 2rem;

  }

  .footer-links {
    text-align: center;
  }

  .footer-creditos {
    text-align: center;
  }
}



/* Menu desktop - escondido por padrão (mobile-first) */
.desktop-nav {
  display: none;
}


/* A partir de 768px (tablet e desktop), mostrar menu desktop */
@media (min-width: 768px) {

  .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    /*height: auto; /* para evitar que fique esmagado */
    min-height: 80px; /* garante uma altura mínima razoável */
  }

  .logo {
  height: 3rem; /* antes: 2.5rem */
  max-width: 100%; /* antes: 9rem */
  margin-right: 1rem; /* novo */
}

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  .desktop-nav a {
  text-decoration: none;
  color: inherit; 
}


  .desktop-nav-links {
  list-style: none; /* <--- Remove os pontos */
  display: flex;
      white-space: nowrap; /* evita quebra de linha */
  gap: 2rem;
  margin: 0;
  padding: 0;
}

  .desktop-nav-links a:hover {
    color: var(--blue);
  }


  /* Botão alinhado no centro vertical */
.desktop-nav .join-btn {
  background-color: var(--green);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 0.5rem;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;

  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;

  /* 🔽 Este ajuste empurra o botão ligeiramente para baixo */
  margin-top: 1rem;
}

.desktop-nav .join-btn:hover {
  background-color: var(--blue); /* ou qualquer outra cor */
  color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); /* leve sombra */
  transition: all 0.3s ease;
}


  .menu-btn {
    display: none; /* esconder botão hamburguer */
  }
}






/*--------------------------------------------------*/
/* Desktop grande (≥1024px) */
@media (min-width: 1024px) {
  :root {
    --heading-1: 2.25rem;
    /* 36px */
    --heading-2: 2rem;
    /* 32px */
    --heading-3: 1.5rem;
    /* 24px */
    --body-text: 1.125rem;
    /* 18px */
    --small-text: 1rem;
    /* 16px */
  }

  h1 {
    font-size: var(--heading-1);
  }

<<<<<<< HEAD

/* Estilos para Desktop  footer*/


@media screen and (min-width: 768px) {
  footer {
    display: flex;
    justify-content: space-between;
    padding: 3rem 4rem;
    background-color: #005a82; /* ajuste conforme seu design */
    color: white;
    flex-wrap: wrap;
  }

  .footer-conecta {
    max-width: 50%;
  }

  .footer-legal {
    text-align: right;
    max-width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .footer-links {
    margin: 1rem 0;
  }

  .footer-links a {
    color: white;
    margin: 0 0.5rem;
    text-decoration: none;
  }

  .footer-creditos a {
    color: white;
    text-decoration: underline;
  }

  .social-icons {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
  }

  .social-icons img {
    width: 24px;
    height: 24px;
  }

  .contact-email,
  .contact-phone {
    margin: 0.25rem 0;
  }
}


=======
  h2 {
    font-size: var(--heading-2);
  }

  h3 {
    font-size: var(--heading-3);
  }

  p {
    font-size: var(--body-text);
    line-height: 1.75rem;
  }

  .footer-conecta,
  .footer-legal {
    padding: 3rem 4rem;
  }

  .desktop-nav-links {
    gap: 3rem;
  }

  .desktop-nav .join-btn {
    font-size: 1.125rem;
    padding: 0.75rem 1.5rem;
    height: auto;
  }

  .logo {
    height: 3.5rem;
    max-width: 12rem;
  }

  .social-icons img {
    width: 40px;
    height: 40px;
  }
}
>>>>>>> 9c7363fc0d6d5cfde31164bdf9f0a89b0987c651
