@charset "UTF-8";

/*--------------------------------------------------------------
>>> TABLA DE CONTENIDO:
----------------------------------------------------------------
# Normalize
# Forms
# Links
# Transitions
# Utilities

# Home
# Gracias
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/

@font-face {
    font-family: 'Barlow';
    src: url('../../assets/fonts/Barlow-Regular.woff2') format('woff2'),
         url('../../assets/fonts/Barlow-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Barlow';
    src: url('../../assets/fonts/Barlow-SemiBold.woff2') format('woff2'),
         url('../../assets/fonts/Barlow-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Barlow Condensed';
    src: url('../../assets/fonts/BarlowCondensed-Regular.woff2') format('woff2'),
         url('../../assets/fonts/BarlowCondensed-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Barlow Condensed';
    src: url('../../assets/fonts/BarlowCondensed-Bold.woff2') format('woff2'),
         url('../../assets/fonts/BarlowCondensed-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Barlow Condensed';
    src: url('../../assets/fonts/BarlowCondensed-ExtraBold.woff2') format('woff2'),
         url('../../assets/fonts/BarlowCondensed-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
}

html {
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: 'Barlow';
    background-color: #fff;
    color: #555555;
    font-size: 16px;
    position: relative;
}

p {
    font-weight: 400;
}

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

h1,h2,h3,h4,h5,h6 {
    font-family: 'Barlow Condensed';    
}

img {
    max-width: 100%;
    height: auto;
}
/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

input:focus,
select:focus {
  outline: 0;
}

input:focus-visible,
select:focus-visible {
  outline: 0;
}

button,
input,
select,
textarea {
    color: #000;
    font-size: 0.813rem;
    line-height: 1;
    word-break: break-word;
    box-sizing: border-box;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea {
  width: 100%;
  color: #000;
  border: none;
  background: transparent;
  border-bottom: 1px solid #0c27b2;
  padding: 10px 0;
  box-sizing: border-box;
  outline: none;
  font-size: 0.813rem;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus {
  color: #000;
}

select {
  border: none;
  background: transparent;
  outline: none;
  border-bottom: 1px solid #0c27b2;
}

textarea {
  width: 100%;
  height: 40px;
  vertical-align: top;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #999999;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #999999;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: #999999;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #999999;
}
/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/
a:hover, a:focus, a:active {
  color: #000;
  text-decoration: none;
}
a:focus {
  outline: 0;
}
a:hover, a:active {
  outline: 0;
}
/*--------------------------------------------------------------
# Transitions
--------------------------------------------------------------*/
a, img {
    text-decoration: none;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    letter-spacing: normal;
    color: #000;
}
/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
main {
    display: block;
    position: relative;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 999999;
}

#status {
    width: 200px;
    height: 200px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -100px 0 0 -100px;
}

.cta {
    background-color: #0c27b2;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1rem;
    font-weight: 600;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    letter-spacing: normal;
    border-radius: 6px;
    position: relative;
    padding: 14px 28px;
}

.cta:hover {
    background-color: #ed5743;
    color: #fff;
}

/*--------------------------------------------------------------
# Home
--------------------------------------------------------------*/
.box_contenedor {
    width: 520px;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
}
.box_contenedor_inner {
    padding: 46px 0;
}
.logo-principal {
    position: relative;
    left: -26px;
}
h1 {
    text-transform: uppercase;
    color: #0c27b2;
    font-size: 4.5rem;
    line-height: 1;
    font-weight: 800;
}
p {
    font-size: 1.25rem;
}
/* ========== Contacto ========== */
.box_contacto {
    display: grid;
    grid-template-columns: 1fr 82px;
    align-items: center;
    gap: 24px;
}

.box_contacto .box_content .title {
    text-transform: uppercase;
    font-size: 2rem;
    line-height: 2.125rem;
}

.box_contacto .box_content .text {
    font-size: 1.625rem;
    line-height: 1.625rem;
}

.box_contacto .icon {
    background-color: #f2a744;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 39px;
}

.box_contacto .icon:hover {
    background-color: #ed5743;
}

/* ========== Formulario ========== */
.btnSubmit {
    background-color: #0c27b2;
    border: 1px solid #0c27b2;
    color: #fff;
    padding: 13px 26px;
    font-size: 1rem;
    line-height: 1;
    font-weight: 600;
    border-radius: 4px;
}

/* ========== Marcas ========== */
.grid_logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    align-items: center;
    gap: 32px;
}

.imagen_sticky {
    position: sticky;
    top: 0;
}

/* ========== Footer ========== */
.box_footer {
    background: #242424;
    color: #fff;
    padding: 10px 0;
}

.box_footer .copy {
    font-size: 0.813rem;
    line-height: 1;
}

/*--------------------------------------------------------------
# Gracias
--------------------------------------------------------------*/
/* ========== Gracias ========== */
.seccion_gracias {
    min-height: 100vh;
    background-color: #0c27b2;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 48px 0;
}
.seccion_gracias h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #EDEEF4;
    text-transform: none;
}
.seccion_gracias p {
    color: rgb(255 255 255 / 70%);
    font-family: 'Barlow Condensed';
    font-weight: 400;
}
.seccion_gracias .cta {
    background-color: #fff;
    color: #0c27b2;
}
.seccion_gracias .box_content .text {
    font-size: 1.2rem;
    line-height: 1.5rem;
}