/*+++++++++++++++++++++++++++++++++++++++++++++++
            Global Main Styles
************************************************/
html {
    box-sizing: border-box;
    font-size: 16px;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    position: relative;
    scroll-behavior: smooth;
}

/* Estilos para navegadores basados en WebKit */
html::-webkit-scrollbar {
    width: 16px;
    /* Ancho de la barra de desplazamiento */
}

html::-webkit-scrollbar-track {
    background: #ffc280;
    /* Fondo de la pista (un tono naranja claro) */
    border-radius: 10px;
    /* Bordes redondeados para un aspecto más suave */
}

html::-webkit-scrollbar-thumb {
    background-color: #fc7a23;
    /* Pulgar (parte desplazable) en un naranja intermedio */
    border-radius: 12px;
    /* Bordes redondeados para el pulgar */
    border: 3px solid #fc8200;
    /* Borde alrededor del pulgar, del mismo color que el track */
}

html::-webkit-scrollbar-thumb:hover {
    background-color: #d46a00;
    /* Color más oscuro en hover */
}

/* Estilos para Firefox */
html {
    scrollbar-color: #ff944d #ffe6cc;
    /* Color del pulgar y del track */
    scrollbar-width: thin;
    /* Ancho más delgado */
}


*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    font-family: "Roboto", sans-serif;
    color: #333;
    background-color: #f4f4f4;
    font-size: 16px;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
    color: #000;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    list-style: none !important;
}

.econotec-section__h3-title {
    color: #212121;
    margin-bottom: 30px;
    text-align: center;
    font-size: clamp(24px, 8vw, 50px);
}

.container, .container-md, .container-sm {
    max-width: 90% !important;
}