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

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

    --dark: 12, 35, 64;

    --v01: 0, 143, 134;
    --v02: 10, 105, 99;
    --v03: 110, 206, 178;
    --v04: 10, 64, 57;
    --v05: 0, 58, 58;

    --vg: linear-gradient(to bottom,  rgb(var(--v02)) 0%,rgb(var(--v01)) 100%);

    --mo: 84, 80, 228;

    --ro: 255, 52, 52;

    --gr01: 247, 247, 247;
    --gr02: 226, 226, 226;
}


::selection {
    color: rgb(var(--gr01));
    background: rgb(var(--negro));
}
::-moz-selection {
    color: rgb(var(--gr01));
    background: rgb(var(--negro));
}
::-webkit-selection {
    color: rgb(var(--gr01));
    background: rgb(var(--negro));
}

/******************************
*   Reset
******************************/
*{
    border: 0px;
    margin: 0px;
    padding: 0px;
}
html {
    scroll-behavior: smooth;
    scroll-padding: 100px;
}
body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: 'Invention';
    font-weight: normal;
    font-style: normal;
    line-height: 1.4;
    font-size: 16px;
    color: rgb(var(--dark)); 
}
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 { margin: 0 auto; }
svg,
img {
    max-width: 100%;
    height: auto;
    display: block;
}
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 {
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
}
h1 { font-size: 32px; }
h2 { font-size: 28px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 16px; }
h6 { font-size: 14px; }
input,
select,
textarea {
    display: block;
    width: 100%;
    padding: 12px 16px;
    color: rgb(var(--dark));
    background: rgb(var(--blanco));
    border-radius: 100px;
    border: 1px solid rgb(var(--gr02));
    -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(--negro)); }
button { background: transparent; }
input:focus,
select:focus,
textarea:focus,
button:focus { outline: none; }

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

ul > li::marker,
ul > li > ul > li::marker { color: rgb(var(--name)); }

.logo__1 { fill: #188471; }
.logo__2 { fill: #1a2835; }


.cont__table { overflow: auto; }
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid rgba(var(--dark), .6);
    border-radius: 20px;
}
th,
td { padding: 12px; }
th + th,
td + td { border-left: 1px solid rgba(var(--dark), .6); }
td { border-top: 1px solid rgba(var(--dark), .6); }
th { text-align: center; }
td { font-size: 14px; }
tr:nth-child(even) td {
    background: rgba(var(--dark), .05);
}


/******************************
*   General
******************************/
.wrapper { opacity: 0; }
.cont__auth { background: rgb(var(--gr01));  }
.cont__auth main { min-height: 100vh; }
main {
    min-height: calc(100vh - 60px);
    position: relative;
}
.m__center {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
section {
    padding: 60px 0;
    position: relative;
}
.h__full {
    width: 100%;
    height: 100vh;
}
.sect__dark {
    color: rgb(var(--blanco));
    padding-bottom: 120px;
    overflow: hidden;
}
main.cont__dark > section + * { background: rgb(var(--blanco)); }
main.cont__dark section:nth-child(1) { padding-top: 120px; }

/* Head Section */
.h__sect + *, 
* + .h__sect { margin-top: 40px; }
.h__sect > * + * { margin-top: 10px; }
.h__sect h2 i,
.h__sect h3 i,
.h__sect h4 i {
    -webkit-transform: scale(.8);
    -moz-transform: scale(.8);
    -ms-transform: scale(.8);
    -o-transform: scale(.8);
    transform: scale(.8);
}

/* CTA */
* + .c__cta { margin-top: 60px; }
.c__cta {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.cta,
a.cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 250px;
    gap: 10px;
    text-align: center;
    line-height: 1;
    padding: 15px;
    position: relative;
    border: 1px solid rgb(var(--v02));
    color: rgb(var(--blanco));
    background: var(--vg);
    border-radius: 100px;
    overflow: hidden;
    filter: drop-shadow(0px 3px 6px rgb(var(--negro), .4));
    will-change: filter;
}

/* Box */
.cont__box {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    overflow: hidden;
    background: rgb(var(--blanco));
    border-radius: 22px;
    filter: drop-shadow(0px 0px 20px rgb(var(--negro), .15));
    will-change: filter;
    position: relative;
}

.box__col {
    position: relative;
    overflow: hidden;
}
.col__01 { padding: 40px 20px; }
.col__02 { background: rgb(var(--v01)); }


.logos + *,
* + .logos { margin-top: 40px; }
.logos > * + * { margin-top: 25px; }
.logo__brand {
    width: 100px;
    margin-left: auto;
    margin-right: auto;
}
.logo__traza {
    width: 190px;
    margin-left: auto;
    margin-right: auto;
}

.container { position: relative; }
/* Box */
.cont__tabs + * { margin-top: 0; }
.cont__tabs {
    position: absolute;
    left: 15px;
    bottom: calc(100% + 60px);
    display: flex;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    background: rgb(var(--gr01));
}
.tab a {
    display: block;
    padding: 15px 30px;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    font-weight: 700;
}
.tab.active a {
    background: rgb(var(--blanco));
    pointer-events: none;
}


/******************************
*   BG
******************************/
.bd__traz {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 80%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}
.bd__traz::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    background: linear-gradient(to bottom,  rgba(1,10,11,0) 0%,rgba(1,10,11,0.65) 100%);
}
.bd__traz > * {
    grid-area: 1 / 1 / 2 / 2;
    position: relative;
}
.cont__halo {
    opacity: .8;
    -webkit-mask-image: linear-gradient(to top, rgba(var(--negro), 0) 0%, rgba(var(--negro), 1) 20%);
    mask-image: linear-gradient(to top, rgba(var(--negro), 0) 0%, rgba(var(--negro), 1) 20%);
}
.halo {
    position: absolute;
    width: 200%;
    left: 50%;
    top: 0%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    filter: blur(80px);
    opacity: 1;
    will-change: filter;
    overflow: hidden;
}
.halo::before {
    display: block;
    content: '';
    width: 50%;
    padding-top: 50%;
    border-radius: 50%;
    background: #115959;
    margin: 0 auto;
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    -ms-transform: scale(2);
    -o-transform: scale(2);
    transform: scale(2);
    transform-origin: 50% 100%;
}

.cont__elemts {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-bottom: -3%;
}

.ele__hov {
    position: relative;
    overflow: hidden;
    min-width: 1200px;
}
.ele__hov figure img {
    width: 100%;
    max-width: initial;
}
.ele__hov figure { position: absolute; }
.ele__hov .el__01 {
    position: relative;
    margin-left: -10%;
    margin-right: -10%;
    opacity: .8;
}
.ele__hov .el__02 {
   top: 5%;
    left: -5%;
    right: -5%;
    opacity: .8;
}
.ele__hov .el__03 {
    top: 10%;
    mix-blend-mode: lighten;
    will-change: filter;
    opacity: .8;
}
.ele__hov .el__04 {
    width: 90%;
    top: 17%;
    left: 4%;
    mix-blend-mode: lighten;
    will-change: filter;
    opacity: .8;
}
.ele__hov .el__05 {
    width: 90%;
    top: 52%;
    left: 4%;
    mix-blend-mode: lighten;
    will-change: filter;
    opacity: .8;
}
.ele__hov .el__06 {
    width: 40%;
    top: 36%;
    right: -15%;
    mix-blend-mode: lighten;
    will-change: filter;
    opacity: .8;
}
.ele__hov .el__07 {
    width: 28%;
    top: 28%;
    right: 24%;
    mix-blend-mode: color-dodge;
    will-change: filter;
    opacity: .8;
}

.bur {
    position: absolute;
    opacity: .8;
}
.bur__00 {
    width: 55%;
    right: 52%;
    bottom: 72vw;
    mix-blend-mode: color-dodge;
    will-change: filter;
}
.bur__01 {
    width: 90%;
    left: 50%;
    bottom: 10%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}
.bur__02 {
    width: 50%;
    right: 70%;
    bottom: 91vw;
}
.bur__03 {
    width: 58%;
    right: -26%;
    bottom: 0;
}
.cont__bur {
    position: absolute;
    width: 80%;
    min-width: 1200px;
    left: 0%;
    bottom: 0;
    padding-top: 149%;
}
.buble::before,
.buble::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    padding-top: 100%;
    border-radius: 50%;
    filter: blur(4px);
}
.buble::before {
    border-left: 6px solid #7FD348;
    left: -2px;
}
.buble::after {
    border-right: 6px solid #7FD348;
    right: -2px;
}
.buble div {
    width: 100%;
    padding-top: 100%;
    background: radial-gradient(ellipse at center, rgba(82,184,180, 0) 40%,rgba(82,184,180, .4) 100%);
    border: 1px solid rgba(82,184,180, .1);
    border-radius: 50%;
}
.buble div::before,
.buble div::after {
    content: '';
    position: absolute;
    width: 16%;
    height: 40%;
    border-radius: 50%;
    background: #dbffab;
    filter: blur(10px);
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.buble div::before { left: -8%; }
.buble div::after { right: -8%; }

.bur__04 {
    top: 50%;
    width: 6%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.bur__05 {
    bottom: 7%;
    width: 7%;
    left: 13%;
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    -o-transform: rotate(10deg);
    transform: rotate(10deg);
}
.bur__06 {
    top: 10%;
    width: 5%;
    left: 18%;
    -webkit-transform: rotate(-20deg);
    -moz-transform: rotate(-20deg);
    -ms-transform: rotate(-20deg);
    -o-transform: rotate(-20deg);
    transform: rotate(-20deg);
}
.bur__07 {
    top: 37%;
    width: 8%;
    left: 40%;
    -webkit-transform: translateY(-50%) rotate(-20deg);
    -moz-transform: translateY(-50%) rotate(-20deg);
    -ms-transform: translateY(-50%) rotate(-20deg);
    -o-transform: translateY(-50%) rotate(-20deg);
    transform: translateY(-50%) rotate(-20deg);
}
.bur__08 {
    top: 0%;
    width: 6%;
    right: 29%;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.bur__09 {
    top: 35%;
    width: 6%;
    right: 0%;
    -webkit-transform: rotate(20deg);
    -moz-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    -o-transform: rotate(20deg);
    transform: rotate(20deg);
}

/******************************
*   Formularios
******************************/
.cont__form + *, 
* + .cont__form { margin-top: 40px; }
.cont__camps {
    display: flex;
    flex-flow: column;
    gap: 30px;
}
.cont__camps .camp a { text-decoration: underline; }
.cont__camps .camp.c__cta { margin: 0; }
.cont__camps .camp input,
.cont__camps .camp select { padding-right: 48px; }
.cont__camps .camp div { position: relative; }
.cont__camps .camp div i {
    position: absolute;
    top: 50%;
    right: 15px;
    font-size: 18px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -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;
    pointer-events: none;
    color: rgb(var(--v02));
}
.error__list {
    font-size: 14px;
    color: rgb(var(--ro));
}
.c__check {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.c__check > div { position: relative; }
.cont__camps .c__check > div input {
    position: absolute;
    -moz-appearance: none;
    -webkit-appearance: none;
    opacity: 1;
    width: 100%;
    height: 100%;
    cursor: pointer;
    padding: 0;
    padding-right: 0;
    border-radius: 0;
    opacity: 0;
    margin: 0;
}
.c__check > div span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    width: 20px;
    height: 20px;
    background: rgb(var(--blanco));
    border-radius: 2px;
    border: 1px solid currentcolor;
    font-weight: 400;
    font-family: "Font Awesome 6 Pro";
}
.c__check > div span::before {
    content: "\f00c";
    line-height: 1;
    opacity: 0;
    -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;
    color: rgb(var(--blanco));
}
.cont__camps .c__check > div input:checked + span {
    background: rgb(var(--v02));
    border-color: rgb(var(--v02));
}
.cont__camps .c__check > div input:checked + span::before { opacity: 1; }
.c__check label {
    font-weight: 500;
    margin: 0;
    cursor: pointer;
}
.c__check label a { text-decoration: underline; }

.link__text { text-align: center; }
.link__text a {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    color: rgb(var(--v02));
}
.link__text a span { text-decoration: underline; }

/******************************
*   CTA Back
******************************/
.cta__back {
    padding: 20px;
    font-size: 18px;
    font-weight: bold;
    color: rgb(var(--v02));
}
.cta__back a {  
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
}

/******************************
*   Mensajes
******************************/
.cont__message {
    margin-right: auto;
    margin-left: auto;
    max-width: 800px;
    text-align: center;
}

/******************************
*   Inicio
******************************/
.form__search {
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
}
.form__search .cont__camps {
    flex-flow: wrap;
    align-items: center;
    gap: 60px;
}
.form__search .cont__camps .camp { flex: 1 1 100%; } 

.f__ini input {
    padding: 16px;
    color: rgb(var(--blanco));
    background: rgb(var(--v05));
    border-radius: 18px;
    border: 1px solid rgb(var(--v02));
    padding-left: 48px;
}
.f__ini .cont__camps .camp input,
.f__ini .cont__camps .camp select { padding-right: 16px; }
.f__ini input::placeholder { color: rgb(var(--blanco)); }
.f__ini .cont__camps .camp div i {
    right: initial;
    left: 15px;
    color: rgba(var(--blanco), .5);
}

/******************************
*   Historial
******************************/
.l__traz {
    margin-right: auto;
    margin-left: auto;
    width: 300px;
    max-width: 70%;
}
.cont__histo > * + * { margin-top: 20px; }
.histo__item {
    padding: 30px 20px;
    border: 1px solid currentcolor;
    border-radius: 20px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.item__col {
    display: flex;
    gap: 30px;
}

/******************************
*   Grid
******************************/
.grid {
    display: flex;
    flex-flow: wrap;
    gap: 30px;
}
.grd__item { flex: 0 1 100%; }
.pord {
    background: rgba(var(--dark), .05);
    padding: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    font-size: 14px;
}
.pord > *:last-child { text-align: center; }
.prod__col a {
    color: rgb(var(--v02));
    font-weight: 700;
    text-decoration: underline;
}

.prod__nam { font-size: 18px; }
.prod__nam + * { margin-top: 15px; }
.prod__info { color: rgba(var(--dark), .7); }
.prod__info > * + * { margin-top: 6px; }

/******************************
*   Resultados
******************************/
.h__col {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    gap: 30px;
}
.h__col > * { margin: 0; }
.number__result { color: rgb(var(--mo)); }


/******************************
*   Contenido
******************************/
.legal__cont h2,
.legal__cont h3,
.legal__cont h4,
.legal__cont h5,
.legal__cont h6 { color: rgb(var(--negro)); }
.legal__cont a { word-break: break-word; }

/******************************
*   Loader
******************************/
.loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgb(var(--negro), .7);
    z-index: 1000;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}
.loader__box {
    background: rgb(var(--gr01));
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    width: 230px;
}
.loader__box > * + * { margin-top: 15px; }
.cont__spiner {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}
.spinner {
    position: relative;
    width: 10px;
    height: 10px;
}
.spinner div {
    animation: spinner-4t3wzl 1.875s infinite backwards;
    background-color: #008f86;
    border-radius: 50%;
    height: 100%;
    position: absolute;
    width: 100%;
}

.spinner div:nth-child(1) {
    animation-delay: 0.15s;
    background-color: rgba(0,143,134,0.9);
}

.spinner div:nth-child(2) {
    animation-delay: 0.3s;
    background-color: rgba(0,143,134,0.8);
}

.spinner div:nth-child(3) {
    animation-delay: 0.45s;
    background-color: rgba(0,143,134,0.7);
}

.spinner div:nth-child(4) {
    animation-delay: 0.6s;
    background-color: rgba(0,143,134,0.6);
}

.spinner div:nth-child(5) {
    animation-delay: 0.75s;
    background-color: rgba(0,143,134,0.5);
}

@keyframes spinner-4t3wzl {
    0% {
        transform: rotate(0deg) translateY(-200%);
    }
    60%, 100% {
        transform: rotate(360deg) translateY(-200%);
    }
}



/******************************
*   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 : 679px) {

.form__search .cont__camps .camp figure {
    margin: 0 auto;
    max-width: 300px;
    width: 60%;
}


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

.form__search .cont__camps .camp { flex: 1 1 calc((100%  - (60px * 2))/ 2); } 


/* Hitorial */
.histo__item {
    flex-flow: wrap;
    padding: 20px;
}

/* Grid */
.grd__item { flex: 0 1 calc((100% - (30px * 1))/2); }



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

.cont__table  {
    padding: 15px;
    border-radius: 25px;
    box-shadow: -9px -1px 16px 6px rgba(var(--dark),0.19) inset;
    -webkit-box-shadow: -9px -1px 16px 6px rgba(var(--dark),0.19) inset;
    -moz-box-shadow: -9px -1px 16px 6px rgba(var(--dark),0.19) inset;
}
.cont__table table { min-width: 700px; }
.cont__table table th { font-size: 14px; }
.cont__table table td { font-size: 12px; }


}
/* Medium Devices to Large Devices */
@media (min-width : 768px) {
h1 { font-size: 36px; }
h2 { font-size: 32px; }
h3 { font-size: 28px; }
h4 { font-size: 24px; }
h5 { font-size: 20px; }
h6 { font-size: 16px; }

.cta__back {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 60px;
    z-index: 1;
}

.cont__box { display: flex; }
.box__col { flex: 1 1 calc(100% / 2); }
.col__01 { padding: 60px; }

.camp__col { flex-flow: wrap; }
.camp__col .camp { flex: 1 1 calc((100%  - (30px * 2))/ 2); }
.camp__col .camp.c__full { flex: 1 1 100%; }

main.cont__dark section:nth-child(1) { padding-top: 144px; }
main { min-height: calc(100vh - 84px); }

.cont__halo { opacity: .8; }
.halo {
    width: 60%;
    filter: blur(130px);
}
.bur__00 {
    width: 25%;
    bottom: 17vw;
}
.bur__01 {
    width: 35%;
    bottom: 0;
}
.bur__02 {
    width: 25%;
    right: 61%;
    bottom: 25vw;
}
.bur__03 {
    width: 18%;
    right: 24%;
    bottom: -4%;
}

.cont__bur {
    padding-top: 25%;
    min-height: 350px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.info__head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin: initial;
}
.l__traz { margin: initial; }
.info__head .c__cta { margin-top: 0; }

/* Grid */
.grd__item { flex: 0 1 calc((100% - (30px * 2))/3); }


}
/* Medium Devices, Desktops */
@media (min-width : 768px) and (max-width : 991px) {
}
@media (max-width : 991px) {

/* BG */
.ele__hov {
    margin-left: -30%;
    margin-right: -30%;
}

}
@media (min-width : 992px) {
}
/* 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 { margin-top: 0; }


/******************************
*   Header
******************************/
.header {
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -o-sticky;
    position: -ms-sticky;
    position: sticky;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    top: 0px;
    z-index: 1000;
}
.cont__menu {
    padding: 0 0 0 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo { width: 100px; }
.logo figure svg * {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.user__opt {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 0px 5px 0px;
    color: rgb(var(--blanco));
}
.opt__icon {
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(var(--blanco), .1);
}

.cont__opt ul li:last-child { border-top: 1px solid rgb(var(--v03)); }
.cont__opt ul li > *,
.cont__opt ul li > * button {
    display: flex;
    align-items: center;
    gap: 20px;
}
.cont__opt ul li > * {
    padding: 18px 0;
    color: rgb(var(--blanco));
}

.menu nav { position: relative; }

.header:has(+ main.cont__dark) {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}
.header:has(+ main.cont__dark) figure svg *, 
.header.active figure svg * { fill: rgb(var(--blanco)); }

.header.scroll:has(+ main.cont__dark) { background: rgb(var(--v01)); }
.header.scroll:has(+ main.cont__dark) .btn__mob > div span,
.header:has(+ main.cont__dark) .btn__mob > div span,
.btn__mob.active > div span { background: rgb(var(--blanco)); }

.header.scroll {
    background: rgb(var(--gr01));
    filter: drop-shadow(0px 0px 6px rgb(var(--negro), .1));
    will-change: filter;
}

/* Btn mobile */
.btn__mob {
    width: 60px;
    height: 60px;
    cursor: pointer;
    position: relative;
    border-radius: 50%;
    z-index: 10;
    pointer-events: all;
}
.btn__mob > div {
    position: absolute;
    width: 60%;
    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%);
    z-index: 1;
}
.btn__mob > div span {
    display: block;
    width: 100%;
    height: 2px;
    background: rgb(var(--v01));
    -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__mob > div span + span { margin-top: 8px; }

.btn__mob > div span:nth-child(2) { width: 70%; }
.btn__mob > div span:nth-child(3) { width: 40%; }

.btn__mob.active > div span { width: 100%; }
.btn__mob.active > div span:nth-child(2) {
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
}
.btn__mob.active > div span:nth-child(1) {
    -webkit-transform: translate(0px, 10px) rotate(45deg);
    -moz-transform: translate(0px, 10px) rotate(45deg);
    -ms-transform: translate(0px, 10px) rotate(45deg);
    -o-transform: translate(0px, 10px) rotate(45deg);
    transform: translate(0px, 10px) rotate(45deg);
}
.btn__mob.active > div span:nth-child(3) {
    -webkit-transform: translate(0px, -10px) rotate(-45deg);
    -moz-transform: translate(0px, -10px) rotate(-45deg);
    -ms-transform: translate(0px, -10px) rotate(-45deg);
    -o-transform: translate(0px, -10px) rotate(-45deg);
    transform: translate(0px, -10px) rotate(-45deg);
}


/* 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) {
.cont__menu::after {
    content: '';
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 0;
    border-top: 1px solid rgba(var(--blanco), .5);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}
.active .cont__menu::after {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
.menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    height: calc(100dvh - 60px);
    background: rgb(var(--v05));
    padding: 0 20px;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.menu.active {
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
}
.header.active { background: rgb(var(--v05)); }

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

.btn__mob { display: none; }
.cont__menu {
    padding: 15px;
    justify-content: flex-end;
}
.logo {
    position: absolute;
    left: 50%;
    top: 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%);
}
.user__opt {
    background: rgb(var(--v01));
    cursor: pointer;
    padding: 8px 15px 8px 10px;
    border-radius: 100px;
    border: 1px solid rgb(var(--v03));
}
.cont__opt {
    min-width: 170px;
    position: absolute;
    opacity: 0;
    right: 0;
    pointer-events: none;
    visibility: hidden;
    padding-top: 20px;
    width: 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;
}
.menu nav:hover .cont__opt {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
}
.cont__opt ul {
    border-radius: 14px;
    border: 1px solid rgb(var(--v03));
    background: rgb(var(--v01));
}
.cont__opt ul li > * {
    padding: 15px;
    white-space: nowrap;
}
.header:has(+ main.cont__dark) .user__opt { background: linear-gradient(to bottom,  rgba(var(--v03),0) 0%, rgba(var(--v03),0.65) 100%); }
.header:has(+ main.cont__dark) .cont__opt ul { background: rgb(var(--v04)); }

}
/* 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: 35px 15px 30px;
    text-align: center;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: rgb(var(--v01));
    color: rgb(var(--blanco));
}
.footer .foo__brand figure svg * { fill: rgb(var(--blanco)); }
.foo__links {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    gap: 20px;
}
.foo__brand figure {
    width: 80px;
    margin-left: auto;
    margin-right: auto;
}

.cont__auth .footer {
    background: rgb(var(--blanco));
    color: rgb(var(--dark));
}
.cont__auth .footer .foo__brand figure svg .logo__1 { fill: #188471; }
.cont__auth .footer .foo__brand figure svg .logo__2 { fill: #1a2835; }

/* 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) {
}


/* ----------- iPad ----------- */
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1.5),
       only screen and (min-width: 820px) and (max-width: 834px) and (min-height: 1100px) and (max-height: 1190px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2),
       only screen and (min-width: 768px) and (max-width: 768px) and (min-height: 1024px) and (max-height: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {

    .bd__traz { min-height: 76%; }
    .bur__01 { width: 65%; }
    .bur__02 {
        width: 45%;
        right: 68%;
        bottom: 48vw;
    }
    .bur__03 {
        width: 38%;
        right: -6%;
        bottom: -4%;
    }
    .ele__hov { min-width: 2000px; }
    .cont__bur { padding-top: 85%; }

}
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1.5) {

    .bd__traz { min-height: 66%; }

}

