/* Reset/normalize base */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  margin: 0;
  overflow-y: scroll;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  min-height: 100%;
  margin: 0;
  font-family: Roboto, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.5;
  color: #fff;              /* cor padrão do SITE (pode ajustar) */
  background: #0a1830;      /* fundo padrão (opcional) */
  letter-spacing: 0.5px;    /* se quiser manter */
}

ul, ol { list-style: none; margin: 0; padding: 0; }

a {
  color: inherit;
  text-decoration: none;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, textarea, select{
  font: inherit;
  color: #787878;
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 15px;
}

button { background: none; border: none; cursor: pointer; font: inherit; }

/* Acessibilidade */
:focus-visible {
  outline: 2px solid #66a3ff;
  outline-offset: 2px;
}

/* Utilitário de container — consistente no mobile também */
:root {
  --container-max: 1500px;                 /* você pode trocar para 1440 se preferir */
  --container-pad-min: 16px;               /* respiro mínimo no mobile */
  --container-pad-max: 10vw;               /* cresce em telas médias */
}

.container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: var(--container-max);
  /* padding inline responsivo: mínimo de 16px, cresce até ~10% e limita no max-width */
  padding-inline: clamp(var(--container-pad-min), var(--container-pad-max), 10%);
  margin-left: auto;
  margin-right: auto;
}

/* Tipografia base (opcional, ajuda na consistência) */
h1, h2, h3, h4, h5, h6 { 
  margin: 0; 
  line-height: 1.2; 
}

/* Utilitário para esconder texto visualmente (acessibilidade) */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* button padrão  */

.btn {
  display: inline-block;
  padding: 5px 30px;
  width: fit-content;
  background: linear-gradient(
    30deg, 
    #000000 0%, 
    #E2B852 33%, 
    #EAC466 67%, 
    #C9A524 100%
  );
  color: #00072C; /* texto escuro funciona bem aqui */
  font-weight: 700;
  text-transform: uppercase;
  font-size: 20px;
  border-radius: 5px;
  text-align: center;
  transition: 0.3s ease;
  position: inherit;
  z-index: 2;

}
  .btn:hover{
    transform: scale(1.03);
    transition: ease-in-out
  }
@media (max-width: 768px) {
  .btn {
    padding: 5px 20px;
    font-size: 14px; 
    padding-inline: 30px;
  }
}
