@charset "UTF-8";

@font-face {
    font-family: 'cormorantlight';
    src: url('../../assets/fonts/cormorant-variablefont_wght-webfont.woff2') format('woff2'),
         url('../../assets/fonts/cormorant-variablefont_wght-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'instrument_serifitalic';
    src: url('../../assets/fonts/instrumentserif-italic-webfont.woff2') format('woff2'),
         url('../../assets/fonts/instrumentserif-italic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'satoshibold';
    src: url('../../assets/fonts/satoshi-bold-webfont.woff2') format('woff2'),
         url('../../assets/fonts/satoshi-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'satoshimedium';
    src: url('../../assets/fonts/satoshi-medium-webfont.woff2') format('woff2'),
         url('../../assets/fonts/satoshi-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/*--------------------------------------------------------------
>>> TABLA DE CONTENIDO:
----------------------------------------------------------------
# Utilidades
--------------------------------------------------------------*/
@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

* {
    box-sizing: border-box;
    -webkit-font-smoothing: inherit;
}

html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'satoshimedium';
    font-size: 12px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'satoshibold';
    margin: 0;
}

p {
    color: #828280;
    font-size: 1rem;
    line-height: 1.5em;
    margin: 0;
}

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

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

/*--------------------------------------------------------------
# Utilidades
--------------------------------------------------------------*/
#main {
    position: relative;
    overflow: hidden;
}

.d-none {
    display: none !important;
}

.container {
    width: 100%;
    max-width: 1224px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 12px;
    padding-left: 12px;
}

.subTitle {
    font-family: 'cormorantlight';
    font-size: 1.875rem;
    line-height: 1em;
    margin-bottom: 16px;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.04em;
    line-height: 1em;
    margin-bottom: 16px;
}

.text-center {
    text-align: center !important;
}

.mb-0 {
    margin-bottom: 0px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mt-24 {
    margin-top: 24px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header-inner {
	padding: 20px 40px;
}
.header-container {
	width: 100%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
}
.header-row {
	display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
}
.header-row .header-col {
	display: flex;
    align-items: stretch;
    position: static;
    flex-basis: 0;
    flex-grow: 0.33;
    max-width: 100%;
    width: 100%;
}
.header-row .header-col.header-col_left {
	flex-grow: 0.2;
}
.header-row .header-col.header-col_center {
	flex-grow: 0.6;
}
.header-row .header-col.header-col_right {
	flex-grow: 0.2;
	justify-content: flex-end;
}

.header-logo {
	display: flex;
    align-items: center;
}

.ul-navegacion {
	position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    vertical-align: middle;
    height: 100%;
    font-weight: normal;
    font-size: 1rem;
    list-style: none;
    margin: 0px 0px;
    padding: 0px 0px;
    gap: 18px;
}
.ul-navegacion li {}
.ul-navegacion li a {
	color: #000;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.875rem;
}

.box-flex {
    display: flex;
    align-items: center;
}

.menu-icon {
    position: relative;
    width: 30px;
    height: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin-left: 16px;
    cursor: pointer;
    display: flex;
}
.menu-icon div {
    width: 100%;
    height: 2px;
    background-color: #4A4F54;
    opacity: 1;
    transform: translateY(0) rotate(0);
    transition: all 0.3s;
}

.cta {
    font-family: 'satoshibold';
    font-size: 0.875rem;
	cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: row;
    gap: 10px;
    height: min-content;
    overflow: visible;
    position: relative;
    text-decoration: none;
    width: 100%;
    padding: 10px 24px;
    border: 1px solid #000;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 40px;
    opacity: 1;
    text-transform: uppercase;
    color: #000;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.cta svg {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

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

.cta:hover svg {
    fill: rgb(255, 255, 255) !important;
    color: rgb(255, 255, 255) !important;
}

/* Header Sticky */
.header-inner_mob {
    position: fixed;
    top: -200px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    opacity: 0;
    -webkit-transition: all 0.7s;
    -moz-transition: all 0.7s;
    -o-transition: all 0.7s;
    -ms-transition: all 0.7s;
    transition: all 0.7s;
    padding: 12px 20px;
    box-shadow: 0px 2px 8px -4px rgba(0, 0, 0, 0.2);
}

.header.sticky .header-inner_mob {
    top: 0;
    opacity: 1;
}

/*--------------------------------------------------------------
# Panel Side Mobile
--------------------------------------------------------------*/
.side-panel {
    width: 100%;
    max-width: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    background: #fff;
    overflow-x: hidden;
    z-index: 9999;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    opacity: 0;
    visibility: hidden;
}

.side-panel.side-panel-open {
    opacity: 1;
    visibility: visible;
}

.side-panel_inner {
    height: 100%;
    padding: 0;
}

.side-panel_head {
    padding: 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.side-panel_body {
    padding: 20px;
}

.side-panel-redes {
    margin-top: 24px;
    line-height: 0;
}

.side-panel_body nav ul li {
    margin-bottom: 0.5rem;
}

.side-panel_body nav ul li a {
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0px;
    text-decoration: none;
    font-size: 1rem;
}

.side-panel_body nav ul li a.cta {
    padding: 10px 20px;
    width: max-content;
}

.side-panel_body .cta {
    margin-top: 24px;
}

.dropdown-menu {
    background-color: #009fe3;
    border: 0;
    width: 100%;
    padding: 10px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    background-color: #000;
    color: #fff;
}

.footer .ciclo {
        font-family: 'satoshibold';
    font-size: 1rem;
    display: block;
    margin-bottom: 16px;
}

.footer .copy {
    margin-top: 24px;
}

.footer h2 {
    letter-spacing: -0.05em;
}

.footer p {
    color: #fff;
}

.widget-footer h6 {
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer .subTitle {
    color: #fff;
}

.footer-wrapper {
    display: grid;
}
.footer-wrapper .footer-box {
    padding: 0 18px;
}
.footer-wrapper .footer-box:first-of-type {
    padding: 100px 18px 40px;
}

.footer-nav {}
.footer-nav li {
    margin-bottom: 16px;
}
.footer-nav li a {
    color: #828282;
    text-decoration: none;
    font-size: 1rem;
}

.footer-box-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
.seccion_hero {
    padding-top: 60px;
    background-image: url('../../assets/img/Redif-Web-Mob-v2-Assets_Intro-Mobile.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
}
.seccion_hero .hero_content {
    text-align: center;
        display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.seccion_hero .hero_content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1em;
    letter-spacing: -0.05em;
}
.seccion_hero .hero_content .cta {
    padding: 19px 14px;
}

/*--------------------------------------------------------------
# Ahorro
--------------------------------------------------------------*/
.seccion_ahorro {
    padding: 90px 0;
}

.seccion_ahorro .text_large {
    font-size: 1.875rem;
    color: #000;
    letter-spacing: -0.05em;
    line-height: 1.4em;
    margin-bottom: 16px;
}

.seccion_ahorro .row-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 60px;
}

.seccion_ahorro .row-grid_2 {
    display: grid;
    gap: 40px;
}

.seccion_ahorro .card h6 {
    font-family: 'satoshibold';
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/*--------------------------------------------------------------
# Inteligencia Artificial
--------------------------------------------------------------*/
.seccion_ia {
    position: relative;
    height: 600px;
    padding: 60px 24px;
    display: flex;
    align-items: flex-end;
    color: #fff;
}

.seccion_ia p {
    color: #fff;
}

.seccion_ia .cta {
    color: #fff;
    border: 1px solid #fff;
    margin-top: 20px;
}

.seccion_ia .fondo_imagen {
    position: absolute;
    border-radius: inherit;
    inset: 0px;
}
.seccion_ia .fondo_imagen > img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-position: top center;
    object-fit: cover;
}

.seccion_ia .contenido {
    position: relative;    
    width: 100%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
}

.seccion_ia .row-grid {
    display: grid;
    gap: 40px;
}

/*--------------------------------------------------------------
# Herramientas
--------------------------------------------------------------*/
.seccion_herramientas {
    padding: 90px 0;
}

.seccion_herramientas h2 {
    font-size: 1.5rem;
    line-height: 1.2em;
    margin-bottom: 16px;
}

.seccion_herramientas .cards-grid {
    display: grid;
    gap: 10px;
    margin-top: 20px;
}

.seccion_herramientas .cards-grid .card {
    background-color: #F7F7F7;
    border-radius: 10px;
    padding: 24px;
    color: #606060;
    font-family: 'satoshimedium';
    display: grid;
    grid-template-columns: 40px 1fr;
    align-items: center;
    gap: 20px;
    font-size: 1.125rem;
    line-height: 1.2;
}

.seccion_herramientas .cards-grid .card .bold {
    font-family: 'satoshibold';
}

/*--------------------------------------------------------------
# Comunicacion
--------------------------------------------------------------*/
.seccion_comunicacion .subTitle {
    color: #000;
}
.seccion_comunicacion .box-grid {
    margin-top: 24px;
    display: grid;
    gap: 20px;
}
.seccion_comunicacion .card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.seccion_comunicacion .card.card_plano {
    background-color: #F7F7F7;
    padding: 30px;
}
.seccion_comunicacion .card .fondo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.seccion_comunicacion .card .relativo {
    margin-bottom: 20px;
}
.seccion_comunicacion .card .card_content {}
.seccion_comunicacion .card .card_content.card_content_float {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
}
.seccion_comunicacion .card .card_content h3 {
    font-size: 1.25rem;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
}
.seccion_comunicacion .card .card_content p {
    font-size: 0.875rem;
    line-height: 1.6em;
}

.seccion_comunicacion .card .card_content.card_content_float h3 {
    font-size: 1.875rem;
    color: #fff;
}
.seccion_comunicacion .card .card_content.card_content_float p {
    color: #fff;
}
.seccion_comunicacion .card:last-of-type .card_content.card_content_float {
    justify-content: flex-end;
}

/*--------------------------------------------------------------
# Administracion
--------------------------------------------------------------*/
.seccion_administracion {
    padding: 90px 0;
}
.seccion_administracion .subTitle,
.seccion_integracion .subTitle {
    color: #000;
}

.seccion_administracion .grid-cards {
    display: grid;
    gap: 20px;
        margin-top: 40px;
    margin-bottom: 20px;
}

.card-admin {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    border-left: 3px solid #00A48D;
}
.card-admin .numero {
    font-family: 'instrument_serifitalic';
    color: #00A48D;
    font-size: 1.875rem;
    line-height: 1em;
}
.card-admin .card-admin_content {}
.card-admin .card-admin_content h5 {
    font-size: 1.25rem;
    letter-spacing: -0.04em;
    margin-bottom: 10px;
}
.card-admin .card-admin_content p {
    font-size: 0.875rem;
}

/*--------------------------------------------------------------
# Integracion
--------------------------------------------------------------*/
.container-carrusel {
    width: 100%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
}

.carrusel_integracion img {
    box-shadow: 0px 2px 8px -4px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    width: 270px;
}

.seccion_integracion {
    padding-top: 60px;
    padding-bottom: 60px;
    background-image: url('../../assets/img/Redif-Web-Mob-v2-Assets_Intro-Mobile.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.seccion_integracion .box-head p {
    max-width: 600px;
    margin-right: auto;
    margin-left: auto;
}

.seccion_integracion .box-head .cta {
    max-width: fit-content;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 48px;
}

/*--------------------------------------------------------------
# Automatizacion
--------------------------------------------------------------*/
.seccion_automatizacion {
    padding-top: 60px;
    padding-bottom: 60px;
}

.seccion_automatizacion .box-head {
    margin-bottom: 40px;
}

.seccion_automatizacion .box-grid .img {
    border-radius: 20px;
}

.seccion_automatizacion .grid-cards {
    display: grid;
    gap: 20px;
}

.seccion_automatizacion .grid-cards .card-admin {
    padding: 0;
    border-left: 0;
}

.seccion_automatizacion .box-grid {
    display: grid;
    gap: 20px;
}

.seccion_automatizacion .box-grid > div:first-of-type {
    order: 2;
}

.seccion_automatizacion .box-grid .grid-cards {
    order: 1;
}

/*--------------------------------------------------------------
# Nosotros
--------------------------------------------------------------*/
.seccion_nosotros {
    padding: 60px 0 90px;
}

.seccion_nosotros .box-head .cta,
.seccion_nosotros .box-grid .cta {
    max-width: fit-content;
    margin-right: auto;
    margin-left: auto;
}

.seccion_nosotros .box-grid {
    margin-top: 40px;
}
.seccion_nosotros .box-grid h3 {
    font-size: 1.5rem;
    letter-spacing: -0.04em;
    line-height: 1em;
    margin-bottom: 16px;
}
.seccion_nosotros .box-grid .box-cards {
    display: grid;
    gap: 10px;
}
.seccion_nosotros .box-grid .box-cards .item {
    background-color: #01BFA5;
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    font-size: 1rem;
    line-height: 1.2;
}

.seccion_nosotros .box-grid .box-cards .item .bold {
    font-family: 'satoshibold';
}

.seccion_nosotros .box-grid .box-cards .item:nth-of-type(2),
.seccion_nosotros .box-grid .box-cards .item:nth-of-type(5) {
    background-color: #F5D481;
    color: #606060;
}

.seccion_nosotros .box-grid .box-cards .item:nth-of-type(3) {
    background-color: #BEA1F7;
    color: #606060;
}