@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

/* --- Variables de Colores --- */
:root {
  --deepBlack: #0d1221;
  --prussianBlue: #1d2d44;
  --payneGrey: #3e5c76;
  --blueSilverLake: #748CAB;
  --eggShell: #f0ebd8;
  --deepSkyBlue: #008CBA;
  --darkGray: #333333;
  --headerBackground: #0E2954;
  --menuLinkColor: #B4C0D4;
  --heroGradientStart: #001f3f;
  --heroGradientEnd: #003366;
  --heroSubtitleColor: #ADD8E6;
  --highlightYellow: #FFD700;
  --subtituloColor: #E0E0E0;
  --sectionBackground: #1a3a60;
  --mainTextColor: #f0f0f0;
  --secondaryTextColor: #ADD8E6;
  --tertiaryTextColor: #cccccc;
  --imageBorderColor: #008CBA;
  --opinionCardBackground: #0E223D;
  --footerBackground: #0E223D;
  --buttonPrimary: #007bff;
  --buttonPrimaryHover: #0056b3;
  --bubbleBackground: #1d2d44;
  --bubbleBorderHover: #008CBA;
}

/* --- Reseteo y Estilos Globales --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
  border: none;
  outline: none;
  transition: .2s linear;
  color: var(--eggShell);
  font-size: 1rem;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--deepBlack);
}