/* estilos principales */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: var(--font-text);
    overflow-x: hidden !important;
    padding-top: 72px; /* Altura del nav */
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

section {
  scroll-margin-top: 72px; /* Altura del nav */
}

p, span, li, .text-secondary{
    font-family: var(--font-text);
}

h1, h2, h3, h4, h5{
    font-family: var(--font-title);
}

textarea{
    resize: none !important;
}

a{
    text-decoration: none;
}