/*-----  Configuraciones Básicas -----*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;    /* Mejora el suavizado de fuentes en Chrome/Safari */
    -moz-osx-font-smoothing: grayscale;     /* Mejora fuentes en Firefox/macOS */
    scroll-behavior: smooth;                /* Permite desplazamiento suave cuando usás #anclas en los enlaces*/
    font-family: "montserrat", sans-serif;
}


html {
    scroll-behavior: smooth;
    scroll-padding: 10rem;
}


a {
    text-decoration: none;
    color: inherit;
}
  
ul, ol {
    list-style: none;
}
  
img {
    max-width: 100%;
    display: block;
}

body{
    max-width: 100%;
    overflow-x: hidden;
}

/*--- Variables ---*/

:root{
    --main-color: #802527
}

/*//////////////////////// FONTS ////////////////////////*/

@font-face {
    font-family: 'montserrat';
    src: url('../fonts/Montserrat/Montserrat-VariableFont_wght.ttf') format('truetype');
}

@font-face {
    font-family: "Lora";
    src: url("../fonts/Lora/Lora-VariableFont_wght.ttf") format("truetype");
}