/*===== Google fonts =====*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500&display=swap');

/*"arquidois" font -> Iwata News Gothic Pro Demibold*/
/*"ARQUITETOS" font -> Geometric 231 Std Roman*/

@font-face {
    font-family: 'Geometr231 BT';
    src: url('../fonts/Geometric231BT-RomanC.eot');
    src: url('../fonts/Geometric231BT-RomanC.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Geometric231BT-RomanC.woff') format('woff'),
        url('../fonts/Geometric231BT-RomanC.ttf') format('truetype'),
        url('../fonts/Geometric231BT-RomanC.svg#Geometric231BT-RomanC') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/*===== Variables CSS =====*/
:root {
    /*===== Font and typography =====*/
    --body-font: 'Montserrat', sans-serif;
    --first-color: #f76d31;
    --background-color: #e0e0e0;
    --text-color: #393939;
    --link-color: #151515;
}

/*===== Base =====*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}

.active-menu, .custom-dot {
    color: var(--first-color);
}

hr {
    border-color: var(--link-color);
}

.small-text {
    font-size: 22px;
    margin-top: 2rem;
    font-weight: 400;
}

.dot {
    height: 8px;
    width: 8px;
    background-color: var(--first-color);
    border-radius: 50%;
    display: inline-block;
    margin-left: 2px;
}

.d-none {
    display: none !important;
}

/*===== Body =====*/
body {
    font-family: var(--body-font);
    background: var(--background-color);
    color: var(--text-color);
    position: relative;
}

/*===== Inputs =====*/
input[type=text] {
    background: transparent;
    outline: none;
    border: none;
    border-bottom: 2px solid #676767;
}

/*===== Section =====*/
.section-title {
    font-size: 30px;
    font-weight: 400;
    max-width: 400px;
}

.section-subtitle {
    font-size: 20px;
    font-weight: 300;
    max-width: 400px;
    text-transform: capitalize;
    letter-spacing: 5px;
}

/*===== Header =====*/
header {
    width: 100%;
    background: transparent;
    z-index: 10;
    /* padding: 2.5rem 1rem; */
    padding: 2.5rem 1rem 1rem 1rem;
}

/*===== Nav =====*/
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    align-items: flex-start;
}

nav ul {
    display: flex;
    gap: 2em;
    margin: 0;
}

nav ul li {
    position: relative;
}

nav ul li a {
    color: var(--link-color);
    display: block;
    font-weight: 500;
    text-decoration: none;
    font-size: 15px;
    text-transform: uppercase;
}

nav ul li ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    padding-left: 0;
    left: 0;
    display: none;
    z-index: 1;
    background: #e0e0e0;
    padding: 6px;
    box-shadow: 0 4px 8px rgb(0 0 0 / 30%);
}

nav ul li ul li {
    padding: 6px 0;
}

nav ul li:hover > ul, nav ul li ul:hover {
    visibility: visible;
    opacity: 1;
    display: block;
    text-align: left;
    padding-top: 5px;
    width: 280px;
}

nav ul li a:hover {
    color: var(--first-color);
}

/*===== Logo =====*/
.logo {
    color: var(--text-color);
    font-weight: 500;
    text-decoration: none;
}

.logo img {
    height: 50px;
}

/*===== Button =====*/
button {
    font-size: 20px;
    background: var(--first-color);
    color: white;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
}

/*===== Page =====*/
.container-page {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.page-title {
    display: flex;
    justify-content: space-between;
}

/*===== Alerts =====*/
.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

/*===== Title =====*/
.title {
    font-size: 5rem;
    font-weight: 200;
    line-height: 1;
}

/*===== Subtitle =====*/
.subtitle {
    font-size: 30px;
    font-weight: 300;
}

/*===== Main =====*/
main {
    padding: 1rem;
}

/*===== Footer =====*/
footer {
    padding: 1rem;
}

.footer-data a {
    text-decoration: none !important;
    color: inherit !important;
    background: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    cursor: inherit !important;
}

.container-footer {
    margin-top: 2rem;
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

/*===== Social =====*/
.social-icon {
    font-size: 2rem;
    cursor: pointer;
}

/*===== Company mission =====*/
.company-mission {
    gap: 1rem;
    display: flex;
}

.company-mission img {
    height: 40px;
}

/*===== DevImpulse =====*/
.devimpulse {
    margin-top: 2rem;
}

/*===== Warning message =====*/
.warning-span-msg {
    margin-left: 0.25rem;
    color: red;
    font-size: 12px;
    display: block;
}

/*===== Margins =====*/
.mt-1 {
    margin-top: 0.5rem;
}

.mr-1 {
    margin-right: 0.5rem;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.ml-1 {
    margin-left: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mr-2 {
    margin-right: 1rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.ml-2 {
    margin-left: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mr-3 {
    margin-right: 1.5rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.ml-3 {
    margin-left: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mr-4 {
    margin-right: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.ml-4 {
    margin-left: 2rem;
}

.mt-5 {
    margin-top: 2.5rem;
}

.mr-5 {
    margin-right: 2.5rem;
}

.mb-5 {
    margin-bottom: 2.5rem;
}

.ml-5 {
    margin-left: 2.5rem;
}

.mt-6 {
    margin-top: 3rem;
}

.mr-6 {
    margin-right: 3rem;
}

.mb-6 {
    margin-bottom: 3rem;
}

.ml-6 {
    margin-left: 3rem;
}

/*===== Scrollbar =====*/
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
    background: rgba(0,0,0,0.1);
}

::-webkit-scrollbar-thumb{
    border-radius: 10px;
    background: rgba(0,0,0,0.2);
}

::-webkit-scrollbar-thumb:hover{
  	background: rgba(0,0,0,0.4);
}

::-webkit-scrollbar-thumb:active{
  	background: rgba(0,0,0,.9);
}

/*===== Toast message =====*/
#toastContainer {
    position: fixed; 
    top: 20px; 
    right: 20px; 
    z-index: 9999;
}

.toast i {
    margin-right: 10px;
}

.toast {
    display: none;
    min-width: 200px;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    text-align: left; /* Change to left to align text and icon */
    opacity: 0.9;
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
    word-break: break-word;
}

.toast-error {
    background-color: #f44336;
}

.toast-warning {
    background-color: #ff9800;
}

.toast-success {
    background-color: #4caf50;
}