@charset "UTF-8";

/* =====================================================
   ROOT
===================================================== */

:root{

    /* COLORES */

    --blue:#0057D9;

    --blue-dark:#003A91;

    --white:#ffffff;

    --body-text:#0f172a;

    --muted:#f4f6fb;

    --border:#e6eaf0;

    --gray:#64748b;

    --success:#16a34a;

    --danger:#dc2626;

    /* SOMBRAS */

    --shadow-sm:
        0 2px 8px rgba(0,0,0,.04);

    --shadow-md:
        0 8px 24px rgba(0,0,0,.08);

    --shadow-lg:
        0 14px 40px rgba(0,0,0,.12);

    /* BORDES */

    --radius-sm:10px;

    --radius-md:16px;

    --radius-lg:24px;

    /* CONTENEDOR */

    --container-width:1600px;

    /* TRANSICIONES */

    --transition:.28s ease;
}

/* =====================================================
   RESET GLOBAL
===================================================== */

*,
*::before,
*::after{

    box-sizing:border-box;
}

/* =====================================================
   HTML
===================================================== */

html{

    scroll-behavior:smooth;

    -webkit-text-size-adjust:100%;
}

/* =====================================================
   BODY
===================================================== */

body{

    margin:0;

    font-family:
        Inter,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

    color:var(--body-text);

    background:#fff;

    line-height:1.6;

    overflow-x:hidden;

    text-rendering:optimizeLegibility;

    -webkit-font-smoothing:antialiased;

    -moz-osx-font-smoothing:grayscale;
}

/* =====================================================
   SELECCION
===================================================== */

::selection{

    background:#0057D9;

    color:#fff;
}

/* =====================================================
   ELEMENTOS BASE
===================================================== */

/* IMAGENES */

img{

    max-width:100%;

    display:block;

    height:auto;
}

/* LINKS */

a{

    text-decoration:none;

    color:inherit;

    transition:var(--transition);
}

/* LISTAS */

ul{

    margin:0;

    padding:0;

    list-style:none;
}

/* BOTONES */

button{

    font-family:inherit;
}

/* INPUTS */

input,
textarea,
select,
button{

    font:inherit;
}

/* =====================================================
   CONTENEDOR
===================================================== */

.container{

    width:min(94%, var(--container-width));

    margin:0 auto;
}

/* =====================================================
   UTILIDADES
===================================================== */

.text-center{

    text-align:center;
}

.hidden{

    display:none !important;
}

/* =====================================================
   SCROLLBAR
===================================================== */

::-webkit-scrollbar{

    width:10px;

    height:10px;
}

::-webkit-scrollbar-track{

    background:#f1f5f9;
}

::-webkit-scrollbar-thumb{

    background:#cbd5e1;

    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{

    background:#94a3b8;
}

/* FIREFOX */

*{

    scrollbar-width:thin;

    scrollbar-color:#cbd5e1 #f1f5f9;
}

/* =====================================================
   MONITORES GRANDES
   24" / 27"
===================================================== */

@media (min-width:1600px){

    :root{

        --container-width:1900px;
    }

    body{

        font-size:17px;
    }

    .container{

        width:min(92%, var(--container-width));
    }
}

/* =====================================================
   LAPTOPS 19" / 15"
===================================================== */

@media (max-width:1400px){

    :root{

        --container-width:1400px;
    }
}

/* =====================================================
   LAPTOPS 14"
===================================================== */

@media (max-width:1200px){

    :root{

        --container-width:1180px;
    }

    body{

        font-size:15px;
    }
}

/* =====================================================
   TABLETS
===================================================== */

@media (max-width:992px){

    :root{

        --container-width:100%;
    }

    body{

        font-size:15px;
    }

    .container{

        width:94%;
    }
}

/* =====================================================
   MOVILES
===================================================== */

@media (max-width:768px){

    html{

        scroll-behavior:auto;
    }

    body{

        font-size:14px;

        line-height:1.55;
    }

    .container{

        width:92%;
    }
}

/* =====================================================
   TELEFONOS PEQUEÑOS
===================================================== */

@media (max-width:420px){

    body{

        font-size:13px;
    }

    .container{

        width:94%;
    }
}