/* ================================================================== */
/* CONFIGURAÇÕES GLOBAIS E RESET (GATEWAY PY)                         */
/* ================================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* Fundamental para o layout não estourar */
  -webkit-font-smoothing: antialiased;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden; /* Trava o site para não deslizar lateralmente */
  background-color: #1c1c1c; /* Preto Carvão conforme padrão Axtrum */
  color: #f5f5f5; /* Branco Pérola */
  font-family: "Roboto", "Montserrat", sans-serif;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* === CONTAINER PADRÃO === */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%; /* Respiro lateral de segurança */
}

/* === ELEMENTOS DE MÍDIA E LINKS === */
img {
  max-width: 100%;
  display: block;
}

ul,
li {
  list-style: none !important;
}

a {
  text-decoration: none !important;
}

/* ================================================================== */
/* AJUSTES DE TIPOGRAFIA (HERO SECTION - IMPACTO)                     */
/* ================================================================== */

/* Estilo padrão para Computadores (Desktop) */
.hero-title {
  font-size: 4rem;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  word-wrap: break-word;
}

/* === AJUSTE PARA TABLETS (Até 768px) === */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem !important; /* Redução para evitar quebra desordenada */
    padding: 0 15px;
    text-align: center;
    line-height: 1.1;
  }
}

/* === AJUSTE PARA CELULARES PEQUENOS (Até 480px) === */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem !important; /* Ajuste fino para "CONNECTING PARAGUAY" */
    letter-spacing: 1px;
  }

  .container {
    padding: 0 20px; /* Reforça o respiro lateral em telas mínimas */
  }
}
