/* =============================================================
   GLOBAL JURIS — Novo Design (Anima Export → Theme Fluid)
   ============================================================= */

/* ---------------------------------------------------------------
   1. CSS VARIABLES
--------------------------------------------------------------- */
:root {
  --gj-bahama-blue:   #006e91;
  --gj-boston-blue:   #4591a8;
  --gj-daintree:      #00253d;
  --gj-hippie-blue:   #539dae;
  --gj-hippie-blue-t: rgba(83,157,174,0.18);
  --gj-orient:        #005f7d;
  --gj-granite:       #666666;
  --gj-white:         #ffffff;
  --gj-red:           #ff0000;

  --gj-font-bold:    "Aller-Bold", Helvetica, sans-serif;
  --gj-font-regular: "Aller-Regular", Helvetica, sans-serif;
  --gj-font-light:   "Aller-Light", Helvetica, sans-serif;
  --gj-font-segoe:   "SegoeUI-Regular", Helvetica, sans-serif;
}

/* ---------------------------------------------------------------
   2. FONTES
--------------------------------------------------------------- */
@font-face {
  font-family: "Aller-Bold";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Web/Aller_Bd.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Aller-Light";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/Web/Aller_Lt.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Aller-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Web/Aller_Rg.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "SegoeUI-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Web/segoeui.ttf") format("truetype");
  font-display: swap;
}

/* ---------------------------------------------------------------
   3. RESET / BASE
--------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

/* ---------------------------------------------------------------
   4. NOVO HEADER
--------------------------------------------------------------- */
.gj-header {
  position: relative;
  width: 100%;
  z-index: 100;
  background-color: var(--gj-boston-blue);
}

/* Barra fina no topo */
.gj-header__topbar {
  width: 100%;
  height: 53px;
  background-color: var(--gj-bahama-blue);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 2%;
}

/* Área principal do header */
.gj-header__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 115px;
  position: relative;
}

/* Logo */
.gj-header__logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

/* Navegação desktop */
.gj-header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.gj-header__nav a {
  color: var(--gj-white);
  font-family: var(--gj-font-light);
  font-size: 14px;
  letter-spacing: 0.5px;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s;
}

.gj-header__nav a:hover {
  color: var(--gj-hippie-blue);
}

/* Dropdown */
.gj-header__dropdown {
  position: relative;
}

.gj-header__dropdown-toggle {
  color: var(--gj-white);
  font-family: var(--gj-font-light);
  font-size: 14px;
  letter-spacing: 0.5px;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
  transition: color 0.2s;
}

.gj-header__dropdown-toggle:hover {
  color: var(--gj-hippie-blue);
}

.gj-header__dropdown-toggle svg {
  width: 10px;
  height: 6px;
  fill: var(--gj-white);
  transition: transform 0.2s;
}

.gj-header__dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--gj-daintree);
  min-width: 220px;
  padding: 8px 0;
  padding-top: 12px; /* espaço visual sem criar gap de hover */
  z-index: 200;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

.gj-header__dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--gj-white);
  font-family: var(--gj-font-light);
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.gj-header__dropdown-menu a:last-child {
  border-bottom: none;
}

.gj-header__dropdown-menu a:hover {
  background-color: var(--gj-bahama-blue);
}

.gj-header__dropdown:hover .gj-header__dropdown-menu {
  display: block;
}

.gj-header__dropdown:hover .gj-header__dropdown-toggle svg {
  transform: rotate(180deg);
}

/* Decoração subtraction (canto superior direito) */
.gj-header__decoration {
  position: absolute;
  top: -53px; /* sobe para cobrir a topbar também */
  right: 0;
  height: 168px;
  pointer-events: none;
  overflow: hidden;
}

.gj-header__decoration img {
  height: 100%;
  width: auto;
}

/* Botão mobile */
.gj-header__mobile-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.gj-header__mobile-btn span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--gj-white);
  transition: transform 0.3s;
}

/* Google Translate */
#google_translate_element {
  margin-left: 1rem;
}

@media (max-width: 991px) {
  .gj-header__nav {
    display: none;
  }
  .gj-header__mobile-btn {
    display: flex;
  }
  .gj-header__decoration {
    display: none;
  }
}

/* ---------------------------------------------------------------
   5. NOVO FOOTER
--------------------------------------------------------------- */
.gj-footer {
  background-color: var(--gj-daintree);
  color: var(--gj-white);
  width: 100%;
}

.gj-footer__body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  padding: 60px 5%;
  flex-wrap: wrap;
}

/* Coluna logo */
.gj-footer__logo-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 300px;
}

.gj-footer__logo img {
  max-width: 200px;
  height: auto;
}

.gj-footer__tagline {
  font-family: var(--gj-font-regular);
  font-size: 15px;
  line-height: 1.6;
  color: var(--gj-white);
  opacity: 0.85;
}

/* Colunas de links */
.gj-footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 160px;
}

.gj-footer__col-title {
  font-family: var(--gj-font-regular);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--gj-white);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.gj-footer__col a,
.gj-footer__col p {
  font-family: var(--gj-font-regular);
  font-size: 15px;
  line-height: 1.6;
  color: var(--gj-white);
  opacity: 0.85;
  text-decoration: none;
  transition: opacity 0.2s;
}

.gj-footer__col a:hover {
  opacity: 1;
  color: var(--gj-hippie-blue);
}

/* Detalhe de contacto em azul */
.gj-footer__contact-highlight {
  font-family: var(--gj-font-bold);
  font-size: 14px;
  color: var(--gj-hippie-blue) !important;
  opacity: 1 !important;
  letter-spacing: 0.5px;
}

.gj-footer__contact-address {
  font-family: var(--gj-font-regular);
  font-size: 13px;
  line-height: 1.7;
  color: var(--gj-white);
  opacity: 0.75;
}

.gj-footer__divider {
  width: 100%;
  height: 1px;
  background-color: rgba(83,157,174,0.35);
  margin: 0 5%;
  width: 90%;
}

/* Barra de copyright */
.gj-footer__copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 5%;
  flex-wrap: wrap;
  gap: 1rem;
}

.gj-footer__copyright p,
.gj-footer__copyright a {
  font-family: var(--gj-font-segoe);
  font-size: 14px;
  color: var(--gj-white);
  opacity: 0.75;
  text-decoration: none;
}

.gj-footer__copyright a:hover {
  opacity: 1;
  color: var(--gj-hippie-blue);
}

.gj-footer__copyright-links {
  display: flex;
  gap: 2rem;
}

@media (max-width: 768px) {
  .gj-footer__body {
    flex-direction: column;
    gap: 2rem;
    padding: 40px 5%;
  }
  .gj-footer__copyright {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------------------------------------------------------------
   6. HERO / BANNER SECTION
--------------------------------------------------------------- */
.gj-hero {
  position: relative;
  width: 100%;
  min-height: 580px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

/* Overlay escuro suave */
.gj-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 37, 61, 0.25) 0%,
    rgba(0, 37, 61, 0.55) 60%,
    rgba(0, 37, 61, 0.70) 100%
  );
  z-index: 1;
}

.gj-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 5% 60px;
}

.gj-hero__title {
  font-family: var(--gj-font-bold);
  font-size: clamp(36px, 5vw, 78px);
  color: var(--gj-white);
  letter-spacing: 2px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.gj-hero__pretitle {
  font-family: var(--gj-font-bold);
  font-size: clamp(18px, 2.5vw, 43px);
  color: var(--gj-white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.gj-hero__subtitle {
  font-family: var(--gj-font-light);
  font-size: clamp(14px, 1.8vw, 30px);
  color: var(--gj-white);
  line-height: 1.5;
  max-width: 900px;
}

/* Faixa decorativa inferior do hero */
.gj-hero__bottom-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  line-height: 0;
}

.gj-hero__bottom-strip img {
  width: 100%;
  object-fit: cover;
}

/* Hero sem imagem (usa cor sólida) */
.gj-hero--solid {
  background-color: var(--gj-boston-blue);
}

@media (max-width: 768px) {
  .gj-hero {
    min-height: 320px;
  }
  .gj-hero__content {
    padding: 0 5% 40px;
  }
}

/* ---------------------------------------------------------------
   7. PÁGINA QUEM SOMOS (about)
--------------------------------------------------------------- */
.gj-about__intro {
  padding: 60px 5%;
  background-color: var(--gj-white);
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
}

.gj-about__intro-title {
  font-family: var(--gj-font-bold);
  font-size: clamp(24px, 3vw, 56px);
  color: var(--gj-daintree);
  line-height: 1.2;
  margin-bottom: 24px;
}

.gj-about__intro-text {
  font-family: var(--gj-font-light);
  font-size: clamp(14px, 1.2vw, 20px);
  color: var(--gj-daintree);
  line-height: 1.7;
  max-width: 900px;
}

/* Área principal 2 colunas */
.gj-about__main {
  display: flex;
  gap: 4rem;
  padding: 40px 5% 60px;
  background-color: var(--gj-white);
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  align-items: flex-start;
}

.gj-about__col {
  flex: 1;
  min-width: 0;
}

.gj-about__col-title {
  font-family: var(--gj-font-bold);
  font-size: clamp(20px, 2.5vw, 46px);
  color: var(--gj-daintree);
  line-height: 1.2;
  margin-bottom: 28px;
}

.gj-about__col-text {
  font-family: var(--gj-font-light);
  font-size: clamp(13px, 1.2vw, 20px);
  color: var(--gj-daintree);
  line-height: 1.8;
}

.gj-about__col-text b,
.gj-about__col-text strong {
  font-family: var(--gj-font-bold);
  font-weight: 700;
}

.gj-about__col-image {
  width: 100%;
  max-width: 480px;
  height: auto;
  margin-top: 32px;
  object-fit: cover;
}

/* Ícone decorativo */
.gj-about__icon {
  width: 60px;
  height: auto;
  margin-bottom: 24px;
  opacity: 0.9;
}

/* Seção CTA (fale connosco) */
.gj-cta-banner {
  width: 100%;
  padding: 50px 5%;
  background-color: var(--gj-hippie-blue-t);
  border-top: 3px solid var(--gj-hippie-blue);
}

.gj-cta-banner__label {
  font-family: var(--gj-font-regular);
  font-size: clamp(16px, 1.5vw, 24px);
  color: var(--gj-hippie-blue);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.gj-cta-banner__title {
  font-family: var(--gj-font-bold);
  font-size: clamp(20px, 2.5vw, 40px);
  color: var(--gj-daintree);
  line-height: 1.3;
  margin-bottom: 12px;
}

.gj-cta-banner__text {
  font-family: var(--gj-font-light);
  font-size: clamp(13px, 1.2vw, 20px);
  color: var(--gj-daintree);
  line-height: 1.7;
  max-width: 900px;
}

/* Botão "Entre em contato" */
.gj-contact-cta {
  width: 100%;
  background-color: var(--gj-bahama-blue);
  padding: 28px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gj-contact-cta a {
  font-family: var(--gj-font-regular);
  font-size: clamp(22px, 3vw, 54px);
  color: var(--gj-white);
  text-decoration: none;
  letter-spacing: 1px;
  transition: opacity 0.2s;
}

.gj-contact-cta a:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .gj-about__main {
    flex-direction: column;
    gap: 2rem;
  }
}

/* ---------------------------------------------------------------
   8. PÁGINA CONTATO
--------------------------------------------------------------- */
.gj-contact-main {
  display: flex;
  gap: 4rem;
  padding: 60px 5%;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  align-items: flex-start;
  flex-wrap: wrap;
}

.gj-contact-main__form-col {
  flex: 1;
  min-width: 300px;
}

.gj-contact-main__map-col {
  flex: 0 0 auto;
  width: 45%;
  min-width: 280px;
}

.gj-contact-main__map-col img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 900px) {
  .gj-contact-main {
    flex-direction: column;
  }
  .gj-contact-main__map-col {
    width: 100%;
  }
}

/* ---------------------------------------------------------------
   9. PÁGINAS DE SERVIÇO (14, 15, 16, 17)
--------------------------------------------------------------- */
.gj-service-main {
  display: flex;
  gap: 0;
  align-items: flex-start;
  padding: 0 5%;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
}

.gj-service-main__content {
  flex: 1;
  min-width: 0;
  padding: 60px 4rem 60px 0;
}

.gj-service-main__form-col {
  flex: 0 0 auto;
  width: 420px;
  padding: 40px 0 60px;
}

/* Ponto de conteúdo (ícone + título + texto) */
.gj-content-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 10px;
}

.gj-content-point__icon {
  flex-shrink: 0;
  width: 14px;
  margin-top: 6px;
}

.gj-content-point__icon img {
  width: 100%;
  height: auto;
}

.gj-content-point__title {
  font-family: var(--gj-font-regular);
  font-size: clamp(14px, 1.3vw, 22px);
  color: var(--gj-hippie-blue);
  line-height: 1.4;
}

.gj-service-body {
  font-family: var(--gj-font-light);
  font-size: clamp(13px, 1.1vw, 19px);
  color: var(--gj-hippie-blue);
  line-height: 1.8;
  margin-bottom: 36px;
  padding-left: 30px;
}

.gj-service-body b,
.gj-service-body strong {
  font-family: var(--gj-font-bold);
  font-weight: 700;
}

/* Coluna de formulário — "Fale connosco" */
.gj-form-card {
  background-color: var(--gj-hippie-blue-t);
  padding: 30px 28px;
}

.gj-form-card__header {
  background-color: var(--gj-bahama-blue);
  color: var(--gj-white);
  font-family: var(--gj-font-regular);
  font-size: clamp(20px, 2.5vw, 40px);
  padding: 18px 20px;
  text-align: center;
  margin: -30px -28px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gj-form-card__intro {
  font-family: var(--gj-font-light);
  font-size: clamp(13px, 1vw, 17px);
  color: var(--gj-hippie-blue);
  line-height: 1.6;
  margin-bottom: 24px;
}

.gj-form-card__intro strong {
  font-family: var(--gj-font-regular);
  font-weight: 400;
}

@media (max-width: 1100px) {
  .gj-service-main {
    flex-direction: column;
    padding: 0 5%;
  }
  .gj-service-main__content {
    padding: 40px 0;
  }
  .gj-service-main__form-col {
    width: 100%;
    padding: 0 0 40px;
  }
}

/* ---------------------------------------------------------------
   10. FORMULÁRIO NOVO (form-contact-new)
--------------------------------------------------------------- */
.gj-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gj-form__field {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}

.gj-form__label {
  font-family: var(--gj-font-light);
  font-size: 15px;
  color: var(--gj-bahama-blue);
  letter-spacing: 0.3px;
  margin-bottom: 4px;
}

.gj-form__label span {
  color: var(--gj-red);
}

.gj-form__input,
.gj-form__textarea {
  background-color: rgba(0, 110, 145, 0.10);
  border: 1.5px solid rgba(0, 95, 125, 0.25);
  padding: 10px 14px;
  font-family: var(--gj-font-light);
  font-size: 15px;
  color: var(--gj-daintree);
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
}

.gj-form__input:focus,
.gj-form__textarea:focus {
  border-color: var(--gj-bahama-blue);
}

.gj-form__textarea {
  min-height: 120px;
  resize: vertical;
}

.gj-form__phone-row {
  display: flex;
  gap: 0;
}

.gj-form__phone-select {
  flex: 0 0 auto;
  width: 130px;
}

.gj-form__phone-number {
  flex: 1;
}

.gj-form__privacy {
  font-family: var(--gj-font-light);
  font-size: 12px;
  color: var(--gj-hippie-blue);
  line-height: 1.6;
  margin: 16px 0;
}

.gj-form__submit {
  background-color: var(--gj-bahama-blue);
  color: var(--gj-white);
  font-family: var(--gj-font-regular);
  font-size: clamp(18px, 2vw, 32px);
  border: none;
  padding: 16px;
  width: 100%;
  cursor: pointer;
  letter-spacing: 1px;
  transition: background-color 0.2s;
}

.gj-form__submit:hover {
  background-color: var(--gj-orient);
}

/* ---------------------------------------------------------------
   11. BLOG RECENTE (blog-latest)
--------------------------------------------------------------- */
.gj-blog-latest {
  padding: 60px 5%;
  background-color: var(--gj-white);
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
}

.gj-blog-latest__title {
  font-family: var(--gj-font-bold);
  font-size: clamp(22px, 2.5vw, 42px);
  color: var(--gj-daintree);
  text-align: center;
  margin-bottom: 36px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gj-blog-latest__grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.gj-blog-latest__card {
  flex: 1;
  min-width: 260px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-color: #f7f9fb;
  padding-bottom: 16px;
  text-decoration: none;
}

.gj-blog-latest__card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.gj-blog-latest__card-text {
  padding: 0 16px;
}

.gj-blog-latest__card-title {
  font-family: var(--gj-font-bold);
  font-size: 15px;
  color: var(--gj-hippie-blue);
  line-height: 1.4;
  margin-bottom: 6px;
}

.gj-blog-latest__card-excerpt {
  font-family: var(--gj-font-regular);
  font-size: 13px;
  color: var(--gj-granite);
  line-height: 1.6;
}

/* ---------------------------------------------------------------
   12. UTILITÁRIOS
--------------------------------------------------------------- */
.gj-text-bold    { font-family: var(--gj-font-bold);    font-weight: 700; }
.gj-text-regular { font-family: var(--gj-font-regular); font-weight: 400; }
.gj-text-light   { font-family: var(--gj-font-light);   font-weight: 300; }
.gj-color-hippie { color: var(--gj-hippie-blue); }
.gj-color-daintree { color: var(--gj-daintree); }
.gj-color-white  { color: var(--gj-white); }
