@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("../../../src/assets/css/nav-desktop.css");
@import url("../../../src/assets/css/nav-mobile.css");
@import url("../../../src/assets/css/about.css");
@import url("../../../src/assets/css/home.css");
@import url("../../../src/assets/css/services.css");
@import url("../../../src/assets/css/contact.css");
@import url("../../../src/assets/css/faq.css");
@import url("../../../src/assets/css/whatsapp-button.css");
@import url("../../../src/assets/css/whatsapp-popup.css");
/*
  Arquivo principal de estilos - style.css
  Organização:
  - Variáveis globais
  - Reset e configurações gerais
  - Layout principal
  - Footer
  - Responsividade
*/

/* =========================
   VARIÁVEIS GLOBAIS
========================= */
:root {
	--primary-color: #00213e;
	--hover-link: #006c34e6;
	--background-color: #ffffff;
	--accent-green: #006c34;
	--accent-blue: #5593cb;
	--accent-blue-hover: #5594cb;
	--text-dark: #444444;
	--text-strong: #222222;
	--white: #ffffff;
	--black: #000000;
	--gray-light: #e0e0e0;
	--gray-lighter: #f3f3f3;
	--gray-bg: #fafafa;
	--gray-bg2: #f5f5f5a9;
	--gray-placeholder: #999999;
	--gray-menu: #d8d8d8;
	--link-highlight: #7fffd4;
	--whatsapp-green: #00c93c;
}

/* =========================
   RESET E CONFIGURAÇÕES GERAIS
========================= */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	display: block;
	font-family: "Montserrat", sans-serif;
	color: var(--text-strong); /* Todos os textos padrão */
	background: var(--background-color);
}

/* Ao clicar em um link scroll: */
html {
	scroll-padding-top: 8rem;
	scroll-behavior: smooth;
	/* Esconder a barra de rolagem mas permitir scroll */
	scrollbar-width: none; /* Firefox */
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
	display: none; /* Chrome, Safari, Edge */
}

/* =========================
   LAYOUT PRINCIPAL
========================= */

.about,
.services,
.contact,
.faq {
	margin-top: 7rem;
	margin-bottom: 7rem;
}

/* =========================
   FOOTER
========================= */
.footer-content {
  background: var(--primary-color);
  padding: 3rem 4rem 2rem 4rem;
  border-radius: 24px 24px 0 0;
  margin: 0  3rem auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
}
.footer-col {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  min-width: 200px;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  gap: 0.5rem;
  align-items: flex-start;
  text-align: left;
}
.footer-logo img {
  width: 180px;
  height: auto;
  margin-bottom: 0.5rem;
}
.footer-logo p {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin: 0;
}
.footer-contacts-title {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
}
.footer-contact-icon {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

.footer-license {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #fff;
  font-size: 14px;
  max-width: 320px;
  align-items: flex-start;
  text-align: left;
  margin-top: 0.5rem;
}
.license-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 15px;
}
.license-title svg {
  width: 22px;
  height: 22px;
  color: var(--white);
}
.license-desc {
  color: #e0e0e0;
  font-size: 13px;
}
.license-desc a {
  color: var(--link-highlight);
  text-decoration: underline;
  transition: color 0.2s;
}
.license-desc a:hover {
  color: var(--hover-link);
}
.footer-text {
  width: 100%;
  text-align: center;
  color: var(--white);
  font-size: 13px;
  margin-top: 2.5rem;
  letter-spacing: 0.2px;
  background: none;
  padding: 0;
  order: 4;
}

footer hr {
  border: none;
  border-top: 1px solid #ffffff22;
  margin: 2rem 0 0.5rem 0;
}

/* =========================
   RESPONSIVIDADE
========================= */
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem; /* Reduzido para diminuir o espaçamento entre as colunas no mobile */
  }
  .footer-col {
    align-items: center;
    text-align: center;
  }
  .footer-license {
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 520px) {
  .about,
  .services,
  .contact,
  .faq {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }
  body {
    font-size: 1.08rem;
    line-height: 1.6;
  }
  .main-container {
    padding: 0 0.2rem;
  }
  section, .main-container > div {
    padding-left: 0.2rem;
    padding-right: 0.2rem;
  }
  .footer-content {
    padding: 1.2rem 0.5rem 0.7rem 0.5rem;
    margin: 0 0.2rem auto;
    border-radius: 14px 14px 0 0;
    gap: 0.3rem;
  }
  .footer-col {
    min-width: 0;
    gap: 0.5rem;
    padding: 0;
  }
  .footer-license {
    max-width: 100%;
    font-size: 12px;
    gap: 0.3rem;
  }
  .footer-logo img {
    width: 100px;
  }
  .footer-text {
    font-size: 11px;
    margin-top: 1.2rem;
  }
}


