@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
    box-sizing: border-box;
}

body {
    font-size: 14px;
}

html {
    scroll-behavior: smooth;
}

:root {
    --red-spc: #FE040C;
    --red-spc-10: rgba(254, 4, 12, .07);
    --red-light-spc: #FF7B7B;
    --dark-red-spc: #C1272D;
    --dark-red-spc-10: rgba(193, 39, 45, .1);
    --black-spc: #171717;
    --dark-gray-spc: #4D4D4D;
    --dark-gray-light-spc: #868686;
    --gray-spc: #C4C4C4;
    --light-gray-spc: #F4F4F4;
    --white-spc: #ffffff;
}

h1 {
    font-size: 3.4em;
    font-weight: 900;
}

@media only screen and (max-width: 992px) {
    h1 {
        font-size: 3em;
    }
}

@media only screen and (max-width: 576px) {
    h1 {
        font-size: 2.2em;
    }
}

h2 {
    font-size: 2.2em;
    font-weight: 900;
}

@media only screen and (max-width: 576px) {
    h2 {
        font-size: 1.8em;
    }
}

h3 {
    font-size: 1.2em;
}

@media only screen and (max-width: 576px) {
    h3 {
        font-size: 1.2em;
    }
}

h4 {
    font-size: 1em;
    font-weight: 500;
}



/*SCROLLBAR CUSTOM*/

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--gray-spc);
}


::-webkit-scrollbar-thumb {
    background: var(--black-spc);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-gray-spc);
}


/*BUTTONS*/

.spc-nav-buttons {
    color: var(--dark-red-spc);
    font-size: 14px;
    padding: 8px 12px;
    border: transparent;
    border-radius: 6px;
    background-color: transparent;

}

.spc-nav-buttons:hover {
    transition: 0.3s;
    color: var(--dark-red-spc);
    background-color: var(--red-spc-10);
}

.spc-nav-buttons:active {
    transition: 0.3s;
    color: var(--dark-red-spc);
    background-color: var(--red-spc-10);
}

.spc-buttons {
    background-color: var(--dark-red-spc);
    color: var(--white-spc);
    font-weight: 700;
    font-size: 14px;
    padding: 8px 12px;
    border: 0px;
    border-radius: 6px;
}

.spc-buttons i{
    margin-right: 8px;
}

.spc-buttons:hover {
    transition: 0.3s;
    background-color: #D04E53;
    color: var(--white-spc);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
}

.spc-buttons-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--dark-red-spc);
    font-weight: 700;
    font-size: 14px;
    padding: 8px 12px;
    border: 0px;
    border-radius: 8px;
}

.spc-buttons-secondary:hover {
    transition: 0.3s;
    color: var(--dark-red-spc);
    background-color: var(--red-spc-10);
}

.spc-buttons-secondary i{
    margin-right: 8px;
}

/* BUTTONS DESABLED */
.spc-buttons-desabled {
    background-color: var(--light-gray-spc);
    color: var(--dark-gray-light-spc);
    border: 1px solid var(--gray-spc);
    font-weight: 700;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: not-allowed !important;
}

.spc-buttons-desabled i {
    margin-right: 8px;
}


/*SCROLL BUTTON*/

.scrollup-button {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 30px;
    right: 30px;
    height: 40px;
    width: 40px;
    color: var(--red-spc);
    border: solid 1px var(--light-gray-spc);
    border-radius: 8px;
    background-color: var(--white-spc);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
    z-index: 100;
}

.scrollup-button:hover {
    background-color: var(--red-spc);
    color: var(--white-spc);
    border: transparent;
}

/* MODAL COOKIE */

.modal-dialog {
    max-width: 80%;
    position: fixed;
    bottom: 0;
    left: 0%;
    right: 0%;
    
    .modal-content {
      border-radius: 8px;
    }
    
    .buttons {
      .btn {
        margin: 0.2rem;
      }
    }
  }

  @media only screen and (max-width: 540px) {
    .modal-dialog {
        max-width: 100%;
    }
}