@charset "utf-8";

/* ========================================
   PADRAO.CSS - Estilos Globais do Projeto
   Configurações de frontend para todo o site
   ======================================== */

/* Importação de Fontes */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700&display=swap');

/* ========================================
   HTML & BODY
   ======================================== */

html {
  scroll-behavior: smooth; /* Rolagem suave */
}

body {
  font-family: 'Inter', sans-serif;
  background: #f5f5f5;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden; /* Evita scroll horizontal */
  font-synthesis: weight style;
}

/* ========================================
   LARGURA PADRÃO DO SITE
   ======================================== */

.LarguraP {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Responsivo - Container */
@media(max-width: 1000px){
  .LarguraP {
    max-width: 90%;
    padding: 0 15px;
  }
}

@media(max-width: 600px){
  .LarguraP {
    padding: 0 10px;
  }
}

/* ========================================
   SEÇÕES PRINCIPAIS
   ======================================== */
.TopPosic{ position:relative; z-index:3;}
.MeioPosic{ position:relative; z-index:1;}
.RodapePosic{position:relative; z-index:2;}

/* ========================================
   LINKS GLOBAIS
   ======================================== */

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

a:hover {
  color: #0066cc;
}

/* ========================================
   IMAGENS RESPONSIVAS
   ======================================== */

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   TIPOGRAFIA
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  color: #222;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.1rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

b, strong { font-weight: 700; color: #000; }   
em, i { font-style: italic; }

h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong { font-weight: 800; }

mark { background: #fff2a8; padding: 0 .2em; border-radius: .2em; }
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .95em; background: #f6f6f6; border: 1px solid #e6e6e6;
  padding: .15em .35em; border-radius: 4px;
}
kbd {
  font-family: inherit; background: #111; color: #fff;
  border: 1px solid #000; border-radius: 4px; padding: .15em .35em;
  box-shadow: inset 0 -1px 0 rgba(255,255,255,.35);
}
sup, sub { font-size: .8em; line-height: 0; }
sup { position: relative; top: -.5em; }
sub { position: relative; bottom: -.2em; }

/* Responsivo - Tipografia */
@media(max-width: 600px){
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
}

/* ========================================
   UTILITÁRIOS GLOBAIS
   ======================================== */

/* Texto centralizado */
.text-center {
  text-align: center;
}

/* Ocultar elementos */
.hidden {
  display: none !important;
}

/* Espaçamentos */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }