/* =====================================

--- BASE.CSS
--- Abril 2026
--- Definicions comuns a totes les pàgines

======================================*/

:root {
  --color-principal: #DC873A;
  --color-boto-hover: #e7ac10;
  --color-fons: #ffffff;
  --color-text: #333333;
  --color-negre: #313131;
  --color-gris: #f9f9f9;
  --color-titol-pagina: #111111;

  --height-capcalera: 76px;
  --breakpoint-mobile: 768px;

  --color-text-footer: #fff;
  --color-text-footer-secundari: #bbb;

  --padding-general:2rem 18rem; */ /* Variable per cambiar el padding de tota la web */
}

/* Inicialització de valors per a tot */
* { margin:0; padding:0; box-sizing:border-box; font-family: "Inter", 'Segoe UI', Roboto, sans-serif; }


body {
  background:var(--color-fons); 
  color:var(--color-text); 
  line-height:1.7; 
  font-size: 1rem;
  -webkit-text-size-adjust: 100%;
  cursor: default;
}


h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  line-height: 1.2;
}

p {
  text-align: left;
  margin-bottom: 1.2em;
  line-height: 1.8;
}

b, strong {
  font-weight: bold;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup { top: -0.5rem; }
sub { bottom: -0.25rem; }

img {
  border: 0;
  vertical-align: top;
}
