@import url('../images/icones/fontawesome-free-7.0.0-web/css/all.css');
@import url('./color.css');
@import url('./slider.css');
@import url('./menu.css');
@import url('./social.css');
@import url('./about.css');
@import url('./card.css');
@import url('./contact.css');
@import url('./assessorias.css');
@import url('./banner-middle.css');
@import url('./banner-bottom.css');
@import url('./footer.css');


@font-face {
  font-family: 'GillSans';
  src: url('../fonts/GIL____.TTF') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GillSans';
  src: url('../fonts/GILB___.TTF') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GillSans';
  src: url('../fonts/GILI___.TTF') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'GillSans';
  src: url('../fonts/GILBI__.TTF') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* Opcional: fonte condensada como uma família separada */
@font-face {
  font-family: 'GillSans Condensed';
  src: url('../fonts/GILC___.TTF') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Opcional: fonte decorativa adicional */
@font-face {
  font-family: 'WariorBomber';
  src: url('../fonts/WariorBomberRegular-DYW4R.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Opcional: fonte decorativa adicional */
@font-face {
  font-family: 'Birtgoche';
  src: url('../fonts/Birtgoche-Personal-Use-Only.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    font-family: 'GillSans', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif, 'Birtgoche';
    color: var(--cinza-medio);
}

:root {
    --maxWidth: 1200px;
}

body {
    background-color: var(--cinza-claro);
    background-image: url('../images/logo_fundo_transp.png');
    background-size: 10%;
    background-position: center;
    z-index: 2;
    box-sizing: border-box;

}

.container {
    width: 100%;
    max-width: var(--maxWidth);
    margin: 0 auto;
    background-color: var(--branco);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.301);
}

header {
    display: flex;
    position: fixed;
    max-width: var(--maxWidth);
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    background-color: var(--branco-transparente);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.301);
    z-index: 1000;
    box-sizing: border-box;
}

.header-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.box-fosco {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    filter: blur(20px);
    z-index: -1;
}

.box{
    width: 100%;
    height: 6px;
    background: var(--gradient-gold);
    z-index: 2;
}

.logo {
    display: flex;
    position: relative;
    align-items: center;
}

.logo-img-content{
    position: absolute;
    top: 90%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border:2px solid var(--dourado-escuro);
    border-radius: 8px;
    z-index: 1000;
    overflow: hidden;

}

.logo-img-content-linear{
   display: none;
    position: absolute;
    top: 70%;
    left: 10px;
    width: 200px;
    border:2px solid var(--dourado-escuro);
    border-radius: 8px;
    z-index: 1000;
    overflow: hidden;
}

.logo-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text {
  display: flex;
  flex-direction: column;
  position: relative;
  font-family: 'Birtgoche';
  padding-top: 10px;
  padding-bottom: 10px;
   
}

.logo-text h1{
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--preto);
    margin-left: 200px;
    box-sizing: border-box;
    transition: 0.3s;
}

.logo-text p{
    display: flex;
    flex-direction: column;
    font-size: 1rem;
    margin-left: 200px;
    box-sizing: border-box;
    transition: 0.3s;
}

main {
    display: flex;
    flex-direction: column;
    position: relative;
    background: #f7f7f7;
    box-sizing: border-box;
}

.title01 {
  font-size: 30pt;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--dourado-escuro);
}

/* Responsividade */
@media (max-width: 980px) {
  .logo-text h1{
    font-size: 1.5rem;
  }
  .logo-img-content{
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 768px) {
  .logo-text h1{
    font-size: 1rem;
  }
  .title01 {
    font-size: 20pt;
  }

  .logo-text p{
    font-size: 1rem;
  }

  .logo-img-content{
    left: 20%;
    transition: 0.3s;
  }

  .logo-text h1{
    margin-left: 130px;
}

.logo-text p{
    margin-left: 130px;
}

  
}
@media (max-width: 480px) {

  .title01 {
    font-size: 16pt;
  }

  .logo-img-content{
    display: none;
  }

  .logo-img-content-linear{
    display: block;
  }

  .logo-text {
    display: none;
  }
}