/* ==========================================================================
   INSTITUTO IGNIS - GLOBAL DESIGN SYSTEM & RESET
   ========================================================================== */

/* Importação de Fontes Google */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Mulish:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Open+Sans:wght@300;400;500;600;700;800&family=Jost:wght@400;500;600;700&display=swap');

/* Tokens de Design & Cores Oficiais */
:root {
  --ignis-blue-dark: #073b77;
  --ignis-blue-navy: #0a294d;
  --ignis-blue-primary: #10529d;
  --ignis-orange-primary: #ff6b35;
  --ignis-orange-hover: #e05522;
  --ignis-green: #0F6E56;
  --ignis-purple: #534AB7;
  --ignis-gold: #f1c40f;
  --ignis-gold-dark: #d4af37;
  
  --text-dark: #111111;
  --text-body: #333333;
  --text-muted: #666666;
  --text-light: #767676;
  --bg-light: #f9f9f9;
  --bg-white: #ffffff;
  
  --font-poppins: 'Poppins', sans-serif;
  --font-mulish: 'Mulish', sans-serif;
  --font-open-sans: 'Open Sans', sans-serif;
  --font-jost: 'Jost', sans-serif;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-smooth: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 35px rgba(0, 0, 0, 0.15);
  --shadow-wa: 0 8px 35px rgba(0, 0, 0, 0.25);
  
  --container-max-width: 1240px;
}

/* Reset Universal */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-mulish);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-body);
  background-color: var(--bg-white);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
}

button {
  cursor: pointer;
  background: none;
}

/* Utilitários de Container e Layout */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.section-padding {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Títulos Globais de Seção */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-family: var(--font-poppins);
  font-size: 2.375rem; /* 38px */
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.25;
}

.section-header p {
  font-size: 1.0625rem; /* 17px */
  color: var(--text-muted);
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
  }

  .container {
    padding-right: 16px;
    padding-left: 16px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .section-header {
    margin-bottom: 35px;
  }

  .section-header h2 {
    font-size: 1.75rem; /* 28px */
    line-height: 1.3;
  }

  .section-header p {
    font-size: 0.925rem;
    padding: 0 5px;
  }
}
