/******************************
*   Tipografias
******************************/
@import url('typo.css');

:root {
    --negro: 0, 0, 0;

    --bg-color: 255, 255, 255;
    --text-color: 12, 13, 34;

    --bg-header: 12, 13, 34;
    --color-header: 255, 255, 255;

    --icon-user: 166, 188, 201;
    --bg-user: 241, 239, 241;

    --campos: 117, 153, 186;

    --azul_l: 53, 147, 188;
}

[data-theme="dark"] {
    --bg-color: 12, 13, 34;
    --text-color: 255, 255, 255;

    --bg-header: 255, 255, 255;
    --color-header: 12, 13, 34;

    --icon-user: 255, 255, 255;
    --bg-user: 12, 13, 34;
}


::selection {
    color: rgb(var(--bg-color), 1);
    background: rgb(var(--text-color), 1);
}
::-moz-selection {
    color: rgb(var(--bg-color), 1);
    background: rgb(var(--text-color), 1);
}
::-webkit-selection {
    color: rgb(var(--bg-color), 1);
    background: rgb(var(--text-color), 1);
}

/******************************
*   Reset
******************************/
*{
    border: 0px;
    margin: 0px;
    padding: 0px;
}
html {
    scroll-behavior: smooth;
    scroll-padding: 70px;
}
body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: 'Montserrat';
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    line-height: 1.4;
    font-size: 16px;
    color: rgb(var(--text-color), 1); 
    background: rgb(var(--bg-color), 1);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
figure {
    pointer-events: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
figure img,
figure svg { margin: 0 auto; }
img, svg {
    max-width: 100%;
    height: auto;
    display: block;
}
svg path,
svg polygon {
    fill: rgb(var(--text-color), 1);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
a, a:link, a:hover, a:visited {
    text-decoration: none;
    color: inherit;
    cursor: pointer;

    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
ul,
ol {
    margin: 0;
    padding: 0;
    padding-inline-start: 20px;
}
li + li { margin-top: 15px; }
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 800;
    font-style: normal;
}
input,
select,
textarea {
    display: block;
    width: 100%;
    padding: 12px 16px;
    
    border-radius: 16px;
    -moz-appearance: none;
    -webkit-appearance: none;
}
textarea {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
}
/* Change autocomplete styles in WebKit */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: ;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  transition: background-color 5000s ease-in-out 0s;
}
input::placeholder,
textarea::placeholder { color: rgb(var(--name), 1); }
button { background: transparent; }
input:focus,
select:focus,
textarea:focus,
button:focus { outline: none; }

p { margin: 0; }
* + p,
* + ol,
* + ul { margin-top: 20px; }
ol + *,
ul + *,
* + h2,
* + h3,
* + h4,
* + h5,
* + h6 { margin-top: 40px; }

ul > li::marker,
ol > li::marker { font-weight: 800; }

/******************************
*   Loader
******************************/
.loader {
    position: fixed;
}

/******************************
*   General
******************************/
main {
    min-height: calc(100vh - 141px);
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    flex-direction: column;
}
.full__h {
    min-height: 100vh;
    min-height: 100dvh;
}
main section {
    padding: 60px 0;
    position: relative;
}

/* Box Content */
.box__content + *,
* + .box__content { margin-top: 40px; }
.box__content {
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
}
.box__min { max-width: 450px; }
.box__grid {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-wrap: row wrap;
    flex-flow: row wrap;
    gap: 30px;
}

/* Head Sectio */
* + .h__sect, 
.h__sect + * { margin-top: 40px; }
.h__sect { text-align: center; }
.h__sect > * + * { margin-top: 20px; }
.h__sect h2 {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
}
.h__sect h2 span {
    display: block;
    font-weight: 300;
    font-size: 95%;
}
.h__sect p {
    max-width: 800px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/* CTA */
* + .c__cta { margin-top: 40px; }
.c__cta {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-wrap: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
}
button.cta {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.cta,
a.cta {
    display: inline-block;
    white-space: nowrap;
    min-width: 130px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
    padding: 12px 20px;
    color: rgb(var(--bg-color), 1);
    background: rgb(var(--text-color), 1);
    position: relative;
    border-radius: 16px;
}
.cta__simple,
a.cta__simple { color: rgb(var(--azul_l), 1); }

/* Logo Centarl */
.logo__cont + * { margin-top: 30px; }
.logo__cont figure {
    width: 70px;
    margin: 0 auto;
}
.log__01 {
    position: absolute;
    top: 30px;
}
.log__01 + .h__sect + * { margin-top: 100px; }

/* Box logo */
.box__icon figure {
    width: 100%;
    padding-top: 100%;
    border-radius: 40px;
    position: relative;
    background: rgb(var(--text-color), 1);
}
.box__icon figure svg {
    position: absolute;
    display: flex;
    width: 70%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.box__icon figure svg path,
.box__icon figure svg polygon { fill: rgb(var(--bg-color), 1); }
.menu__tex { text-align: center; }

/* Card */
.card__content {
    --blanco: 255, 255, 255;
    --text-color: 12, 13, 34;
    border-radius: 10px;
    background: rgb(var(--blanco), 1);
    color: rgb(var(--text-color), 1);
    box-shadow: 0 0 10px rgb(var(--negro), .1);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.card__content:hover { box-shadow: 0 0 15px rgb(var(--negro), .2); }
.card__content a {
    display: block;
    padding: 25px;
}
.card__content a > *:last-child {
    color: rgb(var(--azul_l), 1);
    text-align: right;
    text-transform: uppercase;
    font-weight: 500;
}
.card__content { font-size: 14px; }
.card__content h3 { font-size: 18px; }

/******************************
*   Home
******************************/


/******************************
*   Menu Grid
******************************/
.cont__opt ul {
    list-style: none;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-wrap: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-inline-start: 0px;
    gap: 30px 40px;
}
.cont__opt ul li {
    width: calc((100% - 40px) / 2);
    margin: 0;
}
.opt__menu a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/******************************
*   Icons
******************************/
.icon figure {
    width: 120px;
    margin: 0 auto;
}
.icon.icon__agradecer figure { width: 60px; }

.icon.box__icon figure {
    width: 120px;
    padding-top: 120px;
    border-radius: 30px;
}


/******************************
*   Formularios
******************************/
.no__acount {
    margin: 40px 0;
    text-align: center;
}
.campo + .campo { margin-top: 20px; }
.campo label {
    font-weight: normal;
    font-size: 90%;
}
.campo > div { position: relative; }
.campo > div input,
.campo > div select,
.campo > div textarea {
    background: rgb(var(--campos), .15);
    border: 1px solid transparent;
}
.campo > div textarea { min-height: 150px; }
[data-theme="dark"] .campo input,
[data-theme="dark"] .campo textarea,
[data-theme="dark"] .campo select { border: 1px solid rgb(var(--text-color), .15); }
.campo .c__cta { padding-top: 20px; }
.campo__icon {
    position: absolute;
    width: 15px;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    pointer-events: none;
}
.cont__check + .cont__check { margin-top: 20px; }
.cont__check label {
    padding-left: 30px;
    cursor: pointer;
    margin: 0;
    position: relative;
    z-index: 1;
}
.cont__check a { text-decoration: underline; }
.cont__check input,
.cont__check i {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    left: 0%;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background: rgb(var(--campos), .2);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: 0;
}
.cont__check input { opacity: 0; }
.cont__check i { pointer-events: none; }
.cont__check i svg {
    width: 70%;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -moz-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -ms-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -o-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
}
.cont__check input:checked + i svg {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}




.con__file {
    margin: 0 auto;
    width: 200px;
    height: 150px;
    background: rgb(var(--campos), .15);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.con__file input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}
#img__preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#img__preview img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
* + .disclaimer { margin-top: 15px; }
.disclaimer {
    text-align: center;
    font-size: 80%;
    font-style: italic;
    opacity: .6;
}
.icon__pload {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25%;
    opacity: .5;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
[data-theme="dark"] .icon__pload { opacity: .2; }


/******************************
*   Mobile
******************************/
/* Extra Small Devices, Phones */ 
@media (max-width : 479px) {
}
@media (min-width : 480px) {
}
/* Small Devices, Tablets */
@media (min-width : 480px) and (max-width : 767px) {
}
@media (max-width : 649px) {

.box__grid { width: calc(100% - 15px); }

}
@media (min-width : 650px) {

/* Head Sectio */
.h__sect h2 { font-size: 36px; }

/* Logo Centarl */
.logo__cont figure { width: 90px; }
.log__01 + .h__sect + * { margin-top: 140px; }

.log__02 {
    position: absolute;
    top: 30px;
}

/* Menu grid */
.cont__opt ul li { width: calc((100% - 2 * 40px) / 3); }


/* Icons */
.icon figure { width: 150px; }
.icon.box__icon figure {
    width: 150px;
    padding-top: 150px;
    border-radius: 40px;
}


}
@media (min-width : 680px) and (max-width : 767px) {
}
/* Small Devices, Nav */
@media (max-width : 767px) {

.menu__tex { font-size: 14px; }

/* Menu grid */
.cont__opt ul {
    margin-right: auto;
    margin-left: auto;
    width: calc(100% - 40px);
}


}
/* Medium Devices to Large Devices */
@media (min-width : 768px) {





}
/* Medium Devices, Desktops */

@media (min-width : 650px) and (max-width : 1200px) {
/* Logo Centarl */
.log__02 + .h__sect, 
.log__02 + .h__sect + * { padding: 0 120px; }
}

@media (min-width : 768px) and (max-width : 991px) {
}
@media (max-width : 991px) {
}
@media (min-width : 992px) {

/* Box Content */
.item__grid { width: calc((100% - 30px) / 2); }

/* Menu grid */
.cont__opt ul li { width: calc((100% - 4 * 40px) / 5); }

}
/* Large Devices, Wide Screens */
@media (min-width : 992px) and (max-width : 1200px) {
}
@media (max-width : 1199px) {
}
@media (min-width : 1200px) {
}






header ul,
footer ul,
header ol,
footer ol {
    padding-inline-start: 0;
    list-style: none;
}
header li + li,
footer li + li,
header ol + ol,
footer ul + ul,
footer ol + ul,
footer ul + ol { margin-top: 0; }

.social {
    display: flex;
    gap: 20px;
}

/******************************
*   Header
******************************/
.header {
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -o-sticky;
    position: -ms-sticky;
    position: sticky;
    z-index: 100;
    top: 0;
}
.cont__menu {
    background: rgb(var(--bg-header), 1);
    color: rgb(var(--color-header), 1);
    border-bottom-right-radius: 30px;
    padding: 15px 20px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    gap: 20px;
}
.btn__menu {
    width: 35px;
    height: 35px;
    position: relative;
    z-index: 1;
    cursor: pointer;

    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.btn__menu .bars { width: 100%; }
.btn__menu .bars span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 10px;
    background: rgb(var(--bg-color), 1);
    -webkit-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -moz-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -ms-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -o-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
}
.btn__menu .bars span + span {  margin-top: 6px; }
.btn__menu.active .bars span:nth-child(1) {
    -webkit-transform: translate(0px, 8px) rotate(45deg);
    -moz-transform: translate(0px, 8px) rotate(45deg);
    -ms-transform: translate(0px, 8px) rotate(45deg);
    -o-transform: translate(0px, 8px) rotate(45deg);
    transform: translate(0px, 8px) rotate(45deg);
}
.btn__menu.active .bars span:nth-child(2) {
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
}
.btn__menu.active .bars span:nth-child(3) {
    -webkit-transform: translate(0px, -8px) rotate(-45deg);
    -moz-transform: translate(0px, -8px) rotate(-45deg);
    -ms-transform: translate(0px, -8px) rotate(-45deg);
    -o-transform: translate(0px, -8px) rotate(-45deg);
    transform: translate(0px, -8px) rotate(-45deg);
}
.header::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    height: calc(100dvh - 80px);
    background: rgb(var(--negro), .2);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.menu > div {
    position: absolute;
    top: 80px;
    left: 0;
    max-width: 500px;
    width: 90%;
    height: calc(100vh - 80px);
    height: calc(100dvh - 80px);
    background: rgb(var(--text-color), 1);
    overflow: auto;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.active.header::before {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.active .cont__menu { border-bottom-right-radius: 0px; }
.active .menu > div {
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
}
.menu > div nav { padding: 40px 30px; }
.menu > div nav ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.menu > div nav .opt__menu a {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    flex-direction: row;
    gap: 30px;
}
.menu > div nav .opt__menu a .box__icon {
    width: 60px;
    min-width: 60px;
}
.menu > div nav .opt__menu a .box__icon figure {
    border-radius: 15px;
    background: rgb(var(--bg-color), .1);
}
.menu > div nav .opt__menu a .menu__tex {
    font-weight: 600;
    text-align: left;
}
.user a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}
.user__name {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 20px;
}
.user__icon figure { width: 50px; }
.user__icon figure .user { fill: rgb(var(--icon-user), 1); }
.user__icon figure .bg__user { fill: rgb(var(--bg-user), 1); }


/* Extra Small Devices, Phones */ 
@media (max-width : 479px) {
}
@media (min-width : 480px) {
}
/* Small Devices, Tablets */
@media (min-width : 480px) and (max-width : 767px) {
}
@media (max-width : 679px) {
}
@media (min-width : 680px) {
}
@media (min-width : 680px) and (max-width : 767px) {
}
/* Small Devices, Nav */
@media (max-width : 767px) {
}
/* Medium Devices to Large Devices */
@media (min-width : 768px) {
}
/* Medium Devices, Desktops */
@media (min-width : 768px) and (max-width : 991px) {
}
@media (max-width : 991px) {
}
@media (min-width : 992px) {
}
/* Large Devices, Wide Screens */
@media (min-width : 992px) and (max-width : 1200px) {
}
@media (max-width : 1199px) {
}
@media (min-width : 1200px) {
}


/******************************
*   Footer
******************************/
.footer {
    padding: 20px;
    line-height: 1.2;
    font-size: 14px;
    text-align: center;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    border-top: 1px solid rgb(var(--text-color), .2);
    max-width: 1200px;
    width: calc(100% - 30px);
    top: 1px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}
.footer figure {
    width: 100px;
    margin: 0 auto;
}

/* Extra Small Devices, Phones */ 
@media (max-width : 479px) {
}
@media (min-width : 480px) {
}
/* Small Devices, Tablets */
@media (min-width : 480px) and (max-width : 767px) {
}
@media (max-width : 679px) {
}
@media (min-width : 680px) {
}
@media (min-width : 680px) and (max-width : 767px) {
}
/* Small Devices, Nav */
@media (max-width : 767px) {
}
/* Medium Devices to Large Devices */
@media (min-width : 768px) {
}
/* Medium Devices, Desktops */
@media (min-width : 768px) and (max-width : 991px) {
}
@media (max-width : 991px) {
}
@media (min-width : 992px) {
}
/* Large Devices, Wide Screens */
@media (min-width : 992px) and (max-width : 1200px) {
}
@media (max-width : 1199px) {
}
@media (min-width : 1200px) {
}