/* Variáveis Globais */
  :root {

    --fa-font-solid: unset;
    --fa-font-regular: unset;
    --fa-font-brands: unset;

    --primary-color: #f6f6f6;
    --secondary-color: lightgray;
    --tertiary-color: gray;
    --quaternary-color: darkslategray;
    --quinary-color: #E5E4E2; /* Prata clara e brilhante */


    --primary-alert-color: yellow; /* Alerta de campo obrigatório */
    --secondary-alert-color: rgba(255, 255, 0, 0.1); /* Alerta campo opcional */

  }
/**/

/* Reset Global */
  html {
    box-sizing: border-box;
    font-size: 16px; /* Base para unidades rem */
  }

  /* Telas muito pequenas: 320px a 480px */
  @media (max-width: 480px) {
    html {
      font-size: 14px; /* Ajustado para smartphones pequenos */
    }
  }

  /* Telas pequenas: 481px a 768px */
  @media (min-width: 481px) and (max-width: 768px) {
    html {
      font-size: 15px; /* Ajustado para tablets e smartphones maiores */
    }
  }

  /* Telas médias: 769px a 1024px */
  @media (min-width: 769px) and (max-width: 1024px) {
    html {
      font-size: 16px; /* Base ideal para tablets maiores e laptops pequenos */
    }
  }

  /* Telas grandes: 1025px a 1440px */
  @media (min-width: 1025px) and (max-width: 1440px) {
    html {
      font-size: 17px; /* Laptops maiores e desktops comuns */
    }
  }

  /* Telas muito grandes: 1441px ou mais */
  @media (min-width: 1441px) {
    html {
      font-size: 18px; /* Desktops grandes e monitores ultrawide */
    }
  }

  *, *::before, *::after {
    box-sizing: inherit;
  }

  body {
    margin: 0;
    padding: 0;
    font-family: "Times New Roman", Georgia, serif; /* Times New Roman similar */
    background: linear-gradient(
        to right,
        var(--tertiary-color) 0%,
        var(--secondary-color) 33%,
        var(--primary-color) 66%,
        var(--quinary-color) 100%
    );
    font-size: 1.2rem; /* Define uma base de 1rem */
  }
/**/

/* Títulos */ 
  h1, h2, h3, h4, h5, h6 {
    font-family: "Times New Roman", Georgia, serif !important;
    color: black;
  }
/**/

html, body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background-color: #f3f4f6;
    font-size: 16px; /* Ajuste padrão para textos */
    box-sizing: border-box;
    width: 100%;
}

iframe {
  width: 100vw; /* Largura total da viewport do dispositivo */
  height: 100vh; /* Altura total da viewport do dispositivo */
  border: none;
}

.loading {
justify-content: center;
align-items: center;
display: flex;
height: 100vh;
}

.loader {
position: relative;
}

.outer,
.middle,
.inner {
border: 3px solid transparent;
border-top-color: var(--secondary-color);
border-right-color:var(--tertiary-color);
border-radius: 50%;
position: absolute;
top: 50%;
left: 50%;
}

.outer {
width: 3.5em;
height: 3.5em;
margin-left: -1.75em;
margin-top: -1.75em;
animation: spin 2s linear infinite;
}

.middle {
width: 2.1em;
height: 2.1em;
margin-left: -1.05em;
margin-top: -1.05em;
animation: spin 1.75s linear reverse infinite;
}

.inner {
width: 0.8em;
height: 0.8em;
margin-left: -0.4em;
margin-top: -0.4em;
animation: spin 1.5s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* No style.css */
.loading h2 {
  color: black;
  text-align: center;
  margin-top: 20px;
}

.hidden {
  display: none;
}

.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: linear-gradient(
        to right,
        var(--tertiary-color) 0%,
        var(--secondary-color) 33%,
        var(--primary-color) 66%,
        var(--quinary-color) 100%
    );
  text-align: center;
}

/*#suporte {
  
  position: fixed;
  top: 1.2rem;
  right: 1.2rem;
  margin-right: 0.6rem;
  background-color: #10B981;
  color: white;
  padding: 0.5rem 0.6rem;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 5px;
  box-shadow: 0 0.2rem 0.3rem rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

#suporte:hover {
  background-color: #059669; 
}
*/

/* NAV fixa com 3 botões empilhados e equidistantes */
#acoes-fixas {
  position: fixed;
  top: 1.2rem;
  right: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;           /* distância IGUAL entre eles */
  z-index: 9999;         /* acima do iframe */
}

/* Estilo base para todos os botões */
.btn-acao {
  width: 5.5rem;

  height: 2.5rem;        /* altura fixa do botão */
  min-height: 12px;

  padding: 0.1rem 0.1rem;
  font: bold 1rem "Times New Roman", Georgia, serif;
  color: #fff;
  background: #374151;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,0.15);
  
  transition: transform 0.06s ease,
              filter 0.2s ease,
              background-color 0.2s ease;

  user-select: none;
}

.btn-acao:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

/* Cores específicas de cada botão */
.btn-suporte {
  background: #10B981;      /* verde suporte */
}
.btn-suporte:hover {
  background: #059669;
}

.btn-youtube {
  background: #DC2626;      /* vermelho YouTube */
}
.btn-youtube:hover {
  background: #B91C1C;
}

.btn-linkedin {
  background: #2563EB;      /* azul LinkedIn */
}
.btn-linkedin:hover {
  background: #1D4ED8;
}

/* Foco teclado */
.btn-acao:focus {
  outline: 2px solid #111827;
  outline-offset: 2px;
}

  
  