@charset "UTF-8";

/*--------------------------------------------------------------
>>> TABLA DE CONTENIDO:
----------------------------------------------------------------
# Normalize
# Forms
# Links
# Transitions
# Utilities
# Header
# Top Bar
# Header Sticky
# Panel Side Mobile
# Footer

# Carrusel Hero
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
    font-family: 'Blacker Sans Display Trial';
    src: url('../../assets/fonts/BlackerSansDisplayTrial-Light.woff2') format('woff2'),
        url('../../assets/fonts/BlackerSansDisplayTrial-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: "Poppins", sans-serif;
    background-color: #fff;
    color: #000;
    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: 'Blacker Sans Display Trial';
}

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: #a4a4a4;
  font-size: 0.875rem;
  line-height: 1.875;
  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%;
    border: 2px solid #EBEBEB;
    background-color: #EBEBEB;
    color: #A8A8A8;
    padding: 7px 24px;
    border-radius: 6px;
    box-sizing: border-box;
    outline: none;
    font-size: 0.875rem;
    font-weight: 500;
}

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: #a4a4a4;
}

select {
    border: 2px solid #EBEBEB;
    background-color: #EBEBEB;
    appearance: none;
    outline: none;
    padding: 7px 24px;
    border-radius: 6px;
    width: 100%;
}

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

label {
    font-size: 1rem;
    color: #8E8E8F;
}

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

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

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

:-moz-placeholder {
  /* Firefox 18- */
  color: #a4a4a4;
}
/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/
a:hover, a:focus, a:active {
  color: #000;
  text-decoration: none;
}
a:focus {
  outline: 0;
}
a:hover, a:active {
  outline: 0;
}
/*--------------------------------------------------------------
# Transitions
--------------------------------------------------------------*/
a, .Web-Header, .Web-Header.Sticky, .cta, img, .menu,
.panel-overlay, {
    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: #a4a4a4;
}
/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
.Main-Wrapper {
    display: block;
    position: relative;
}

.main-border::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    padding: 15px;
    background-color: #fff;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    z-index: 2;
}

.main-border::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    padding: 15px;
    background-color: #f4f4f4;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    z-index: 2;    
}

#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: transparent;
    padding: 10px 24px;
    border: 1px solid #000;
    color: #000;
    width: auto;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    position: relative;
    transition: all .5s ease;
    max-width: fit-content;
}

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

.parallax {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    top: 0;
    left: 0;
}

.panel-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
}

.panel-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* -----------------
# Whatsapp flotante
------------------ */
.BoxBotonWhatsappFlotante {
    position: fixed;
    right: 15px;
    bottom: 24px;
    z-index: 9991;
}

.BoxBotonWhatsappFlotante .BtnLink {
    background: linear-gradient(180deg, rgba(95, 252, 123, 1) 0%, rgba(40, 209, 70, 1) 100%);
    width: 60px;
    height: 60px;
    background-size: contain;
    border-radius: 50%;
    box-shadow: 0px 5px 5px rgb(0 0 0 / 20%);
    display: flex;
    justify-content: center;
    align-items: center;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.Web-Header {
    transition: all .3s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    padding: 12px 0;
}

.main-header .header-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
}

.header-row > [class^=col-header] {
    display: flex;
    align-items: stretch;
    position: static;
}

.header-row .col-header {
    flex-basis: 0;
    flex-grow: 0.65;
    max-width: 100%;
    width: 100%;
    min-height: 1px;
}

.header-row .col-header.col-logo {
    flex-grow: 0.4;
    align-items: center;
    justify-content: center;
}

.header-row .col-header.col-nav {
    -ms-flex-pack: center;
    justify-content: flex-end;
    flex-grow: 0.3;
}

.header-row .col-header.col-nav.col-nav_left {
    justify-content: flex-start;
}

.main-navigation {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    width: auto;
}

.main-navigation > ul {
    position: relative;
    display: flex;
    width: 100%;
    vertical-align: middle;
    height: 100%;
}

.main-navigation ul {
    font-weight: 400;
    font-size: 0.938rem;
    list-style: none;
    margin: 0px 0px;
    padding: 0px 0px;
}

.main-navigation > ul > li {
    margin: 0px 20px;
    padding: 0px 0px;
    float: left;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

.main-navigation ul > li > a {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    text-align: center;
    outline: none;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
    padding: 20px 0 48px;
}

.col-nav.col-nav_left .main-navigation > ul > li:first-child {
    margin-left: 0;
}

.col-nav.col-nav_right .main-navigation > ul > li:last-child {
    margin-right: 0;
}

.menu-burger {
    position: relative;
    width: 40px;
    height: 100%;
    max-height: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin-left: 40px;
    cursor: pointer;
    margin-top: 22px;
}

.menu-burger > span {
    width: 100%;
    height: 2px;
    background-color: #fff;
    opacity: 1;
    transform: translateY(0) rotate(0);
    transition: all 0.3s;
}

.menu-burger span:nth-child(2) {
    position: relative;
    left: -10px;
}

.Web-Header.Sticky .navigation-sticky {}

.navigation-sticky {
    position: fixed;
    top: -200px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #242424;
    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;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 10px 0px;
}

.Web-Header.Sticky .navigation-sticky {
    top: 0;
    opacity: 1;
}

.navigation-sticky .main-navigation ul {
    font-size: 0.875rem;
}

.navigation-sticky .main-navigation ul > li > a {
    padding: 20px 0;
}

.navigation-sticky .main-navigation ul > li > a.active::after {
    bottom: 16px;
}

.navigation-sticky .main-navigation .subMenu li a {
    padding: 0;
}

.navigation-sticky .figure-logo {
    padding: 6px 16px;
}

.navigation-sticky .figure-logo .logo {
    width: 64px;
}

.header-logo .logo {
    width: 148px;
}

.header_fondo {
    height: 160px;
    background-color: #000;
}

.header_fondo.nosotros {
    background-image: url('../../assets/img/nosotros/header_bg_nosotros.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
.header_top_bar {
    padding: 12px 0;
    border-bottom: 2px solid #ffffff;
}

.header_top_bar_row {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
}

.col_top_bar {
    display: flex;
    align-items: stretch;
    position: static;
    flex-basis: 0;
    flex-grow: 0.65;
    max-width: 100%;
    width: 100%;
    min-height: 1px;
}

.col_top_bar.col_top_bar_left {
    -ms-flex-pack: center;
    justify-content: flex-start;
    align-items: center;
    flex-grow: 0.3;
}

.col_top_bar.col_top_bar_center {
    flex-grow: 0.4;
    align-items: center;
    justify-content: center;
}

.col_top_bar.col_top_bar_right {
    -ms-flex-pack: center;
    justify-content: flex-end;
    flex-grow: 0.3;
}

.topBar_text {
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
}

.list_social {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-top: 20px;
}

.list_social li a {
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all .5s ease;
}

.list_social li a:hover {
    color: #f0d085;
    text-decoration: none;
}

/*--------------------------------------------------------------
# Header Sticky
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Panel Side Mobile
--------------------------------------------------------------*/
.side-panel {
    width: 400px;
    max-width: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    background: #242424;
    overflow-x: hidden;
    z-index: 9999;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);

/*     -webkit-transform: translateX(0); */
/*     -ms-transform: translateX(0); */
/*     transform: translateX(0); */

    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;
}

.side-panel.side-panel-open {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.side-panel_inner {
    height: 100%;
    padding: 32px 24px;
    padding-top: 0;
}

.side-panel_head {
    padding: 14px 0 13px;
    border-bottom: 1px solid #d2d2cc;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.side-panel_body {
    padding: 1.5rem 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: 8px 20px;
    background-color: #fff;
    text-decoration: none;
    font-weight: 600;
}

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

.side-panel-redes > a {
    padding: 10px;
    border-radius: 50%;
    background-color: #fff;
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #000;
    font-size: 18px;
}

.main-navigation .subMenu {
    width: 200px;
    position: absolute;
    top: 100%;
    left: -24px;
    z-index: 5;
    background-color: rgb(0 159 227 / 75%);
    padding: 24px;
    transition: all .5s ease;
    opacity: 0;
    visibility: hidden;
}

.main-navigation .subMenu li {
    margin-bottom: 0.5rem;
}

.main-navigation .subMenu li:last-child {
    margin-bottom: 0;
}

.main-navigation .subMenu li a {
    color: #fff;
    padding: 0;
    font-weight: 300;
    font-family: 'PP Editorial New Ultralight';
    text-transform: capitalize;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
}

.dropdown:hover .subMenu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu {
    min-width: 17rem !important;
    width: 100% !important;
    background-color: #fff !important;
    padding: 16px 20px !important;
    border: 0 !important;
    border-radius: 0 !important;
    transform: translate(0px, 40px) !important;
}

.dropdown-menu li {
    margin-bottom: 10px !important;
}

.dropdown-menu li:last-child {
    margin-bottom: 0 !important;
}

.dropdown-menu li a {
    padding: 0 !important;
    color: #000 !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    text-transform: math-auto !important;
}

.dropdown-menu li a:hover {
    color: #000 !important;
    background-color: transparent !important;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 24px;
    width: 20px;
    height: 20px;
    background-color: #fff;
    transform: rotate(45deg);
    opacity: 0;
    visibility: hidden;
}

.navigation-sticky .main-navigation ul > li.dropdown > .dropdown-menu {
    transform: translate(0px, 61px) !important;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.5);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.Web-Footer {
    background-color: #1e1e1e;
    color: #fff;
    padding: 90px 0;
}
.widget-footer {}
.widget-footer.widget-footer_01 {}
.widget-footer a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
}

.footer_logo {}
.footer_logo > img {}

.footer_nav {}
.footer_nav a {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    margin: 0 24px;
}
.footer_nav a:first-child {
    margin-left: 0;
}
.footer_nav a:last-child {
    margin-right: 0;
}

.box_footer_contacto {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1000px;
    margin: auto;
}

.box_footer_contacto a {
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.box_footer_contacto a .tipo {
    text-transform: math-auto;
}
.box_footer_contacto a .dato {
    text-transform: math-auto;
    font-weight: 500;
}

.footer_redes {}
.footer_redes ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.footer_redes ul li {}
.footer_redes ul li a {
    font-size: 1.25rem;
    line-height: 1;
}
.footer_redes ul li a i {}

.footer_copy {}
.footer_copy .text {}
.footer_copy .copy {
    font-size: 12px;
}

/*--------------------------------------------------------------
# Carrusel Hero
--------------------------------------------------------------*/
.home_hero {
    padding: 135px 0;
    color: #fff;
    height: 643px;
    display: flex;
    align-items: flex-end;
    background-image: url('../../assets/img/RukaYanquen-Home_Header.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero_content .box_title {
    margin-bottom: 64px;
}

.hero_content .title {
    font-size: 2.5rem;
    line-height: 2.625rem;
    margin-bottom: 24px;
}

.hero_content .subTitle {
    font-size: 1.2rem;
    line-height: 1;
    letter-spacing: 0.08em;
}

.hero_content .title .font_regular {
    font-weight: 400;
}

.hero_content .title .font_bold {
    font-weight: 700;
}

.hero_content p {
    font-size: 0.938rem;
    line-height: 1.625rem;
    font-weight: 400;
    max-width: 345px;
}

.hero_content .cta {
    padding: 0;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    font-weight: 600;
    font-size: 0.938rem;
    flex-direction: column;
    align-items: flex-start;
    color: #fff;
}

.hero_content .cta::after {
    content: '';
    display: inline-block;
    width: 64px;
    height: 3px;
    background-color: #e8b634;
}

.hero_content .cta:hover {
    border: 0;
    background-color: transparent;
    color: #fff;
}

.carousel-indicators {
    margin-bottom: 3rem;
    z-index: 6;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    margin-right: 5px;
    margin-left: 5px;
    opacity: 1;
    border-radius: 50%;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-indicators [data-bs-target] .circle {
    display: block;
    background-color: #efedea;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.carousel-indicators .active .circle {
    background-color: #e8b634;
}

/*--------------------------------------------------------------
#   Servicios
--------------------------------------------------------------*/
.seccion-servicios {
    background: linear-gradient(180deg, rgba(239, 237, 234, 1) 89%, rgb(240 208 133) 89%);
    padding: 0;
    position: relative;
    z-index: 1;
}

.seccion-servicios .container-lg {
    position: relative;
    top: -64px;
}

.row-servicio {
    display: grid;
    align-items: center;
    grid-template-columns: 407px 1fr 1fr;
    position: relative;
}
.row-servicio .servicio_imagen {}
.row-servicio .servicio_imagen img {
    transition: all .5s ease;
}
.row-servicio .servicio_imagen img:hover {
    transform: scale(1.05);
}
.row-servicio .servicio_linea {
    width: 75%;
    max-width: 100%;
    height: 1px;
    background-color: #000;
    margin: auto;
}
.row-servicio .servicio_content {
    text-align: left;
}
.row-servicio .servicio_content h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    line-height: 2rem;
}
.row-servicio .servicio_content h2 .fontRegular {
    font-weight: 400;
}
.row-servicio .servicio_content p {
    font-size: 0.938rem;
    line-height: 1.625rem;
}
.row-servicio .servicio_content .cta {}
.row-servicio.row-servicio_01 {}
.row-servicio.row-servicio_02 {
    grid-template-columns: 1fr 1fr 407px;
    top: -70px;
}
.row-servicio.row-servicio_03 {
    top: -95px;
}
.row-servicio.row-servicio_04 {
    grid-template-columns: 1fr 1fr 407px;
    top: -120px;
}

.row-servicio.row-servicio_01 .servicio_imagen,
.row-servicio.row-servicio_03 .servicio_imagen {
    text-align: left;
}

.row-servicio.row-servicio_02 .servicio_imagen,
.row-servicio.row-servicio_04 .servicio_imagen {
    text-align: right;
}

/*--------------------------------------------------------------
#   Proceso
--------------------------------------------------------------*/
.seccion-proceso {
    padding: 90px 0;
}

.seccion-proceso .linea {
    display: block;
    width: 1px;
    height: 48px;
    background-color: #000;
    margin: auto;
    margin-bottom: 24px;
}

.box-title .subTitle {
    font-size: 1.125rem;
    line-height: 1.2;
    font-weight: 600;
    color: #2e294a;
    margin-bottom: 0.5rem;
}

.box-title .title {
    font-size: 2.75rem;
    line-height: 1.2;
}

.item-proceso {
    text-align: center;
}
.item-proceso .icon {}
.item-proceso h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.875rem;
    margin: 20px 0;
}
.item-proceso p {
    font-size: 1.063rem;
    line-height: 1.625rem;
    text-align: left;
}

/*--------------------------------------------------------------
#   Galeria
--------------------------------------------------------------*/
.seccion-galeria {
    padding: 90px 0;
}

.carrusel_galeria .carrusel_image {
    border-radius: 10px;
}

.tns-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.tns-nav button {
    width: 8px;
    height: 12px;
    background-color: #000;
    border-radius: 50%;
    border: 0;
    display: inline-block;
}

.tns-nav button.tns-nav-active {
    background-color: #e8b634;
}

/*--------------------------------------------------------------
#   Frases
--------------------------------------------------------------*/
.seccion-frase {
    background-color: #f0d085;
    padding-bottom: 64px;
    text-align: center;
}
.seccion-frase .container-lg {
    position: relative;
    top: -64px;
    z-index: 1;
}
blockquote {}
blockquote .frase {
    font-family: 'Blacker Sans Display Trial';
    font-size: 2.938rem;
    line-height: 4.125rem;
    position: relative;
    margin-bottom: 48px;
}
blockquote .frase::before {
    content: '';
    width: 1px;
    height: 100%;
    display: block;
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
blockquote .frase::after {
    content: '';
    width: 1px;
    height: 100%;
    display: block;
    background-color: #000;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}
blockquote .autor {
    font-size: 0.75rem;
    font-weight: 600;
    margin: 0;
}

/*--------------------------------------------------------------
#   Hero Interna
--------------------------------------------------------------*/
.seccion-interna-hero {
    background-color: #1e1e1e;
    color: #fff;
    padding: 147px 0;
}

.seccion-interna-hero .hero_content p {
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.2;
    margin-bottom: 0;
}
.seccion-interna-hero .hero_content h1 {
    font-size: 4.688rem;
    line-height: 5.625rem;
    margin: 0;
}

.page_interna .seccion-frase {
    padding-top: 64px;
}

.page_interna .seccion-frase .container-lg {
    top: 0;
}

/*--------------------------------------------------------------
#   Viandas Interna
--------------------------------------------------------------*/
.seccion-interna-viandas {
    background: linear-gradient(180deg,rgba(239, 237, 234, 1) 40%, rgba(255, 255, 255, 1) 40%);
    padding: 120px 0 90px;
}

.item_vianda {
    max-width: 360px;
}

.item_vianda img {}
.item_vianda h2 {
    font-size: 1.813rem;
    line-height: 2.5rem;
    margin-top: 30px;
}
.item_vianda.item_vianda_02 {
    position: relative;
    top: -210px;
}

/*--------------------------------------------------------------
#   Servicios Interna
--------------------------------------------------------------*/
.seccion-interna-servicios {
    background-color: #f0d085;
    padding: 90px 0;
}

.item_servicio {
    border-left: 1px solid #000;
    padding-top: 20px;
    padding-left: 32px;
    padding-bottom: 32px;
}
.item_servicio h2 {
    font-size: 2.125rem;
    line-height: 2.625rem;
    margin-bottom: 16px;
}
.item_servicio p {
    font-size: 0.875rem;
    line-height: 1.375rem;
    max-width: 300px;
}

/*--------------------------------------------------------------
#   Valor Interna
--------------------------------------------------------------*/
.seccion-interna-valor {
    background-image: url('../../assets/img/RukaYanquen-Sabor_Header-Sabor.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 177px 0 301px;
    color: #fff;
}

.seccion-interna-valor .box_content h2 {
    font-size: 3.375rem;
    line-height: 4rem;
    margin-bottom: 24px;
}

/*--------------------------------------------------------------
#   Galeria Interna
--------------------------------------------------------------*/
.seccion-interna-galeria {
    position: relative;
    top: -64px;
}

/*--------------------------------------------------------------
#   EMPRESA
--------------------------------------------------------------*/
.page_interna_empresa .seccion-servicios {
    background: linear-gradient(180deg, rgba(239, 237, 234, 1) 89%, rgb(239, 237, 234, 1) 89%);
}
.page_interna_empresa .seccion-interna-servicios {
    padding: 124px 0;
}
.page_interna_empresa .seccion-frase {
    padding-top: 64px;
    background-color: #511d10;
    color: #fff;
}
.page_interna_empresa .seccion-frase blockquote .frase::before {
    background-color: #fff;
}
.page_interna_empresa .seccion-frase blockquote .frase::after {
    background-color: #fff;
}
.page_interna_empresa .seccion-frase .container-lg {
    top: 0;
}

/*--------------------------------------------------------------
#   CONGELADOS
--------------------------------------------------------------*/
.page_interna_congelados .seccion-interna-valor {
    background-image: url('../../assets/img/congelados/RukaYanquen-Congelados_Galeria-v2.jpg');
    background-position: bottom;
}

/*--------------------------------------------------------------
#   ENSALADAS
--------------------------------------------------------------*/
.page_interna_ensaladas .seccion-interna-valor {
    background-image: url('../../assets/img/ensaladas/RukaYanquen-Ensaladas_Galeria.jpg');
}

/*--------------------------------------------------------------
#   PLATOS
--------------------------------------------------------------*/
.page_interna_platos .seccion-interna-hero {
    padding: 180px 0 64px;
}

.grid_platos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.grid_platos img {
    border-radius: 6px;
}

.seccion-interna-hero .hero_content h1 .poppins {
    font-family: "Poppins", sans-serif;
    line-height: 1;
    font-weight: 200;
}

/*--------------------------------------------------------------
#   CONTACTO
--------------------------------------------------------------*/
.seccion_contacto {}

.seccion_contacto .link_numero {
    font-size: 3.188rem;
    line-height: 1;
    font-weight: 600;
    text-decoration: none;
    color: #333333;
    display: block;
    margin-bottom: 16px;
}

.seccion_contacto .cta.cta_wsp {
    font-size: 1rem;
    padding: 10px 41px;
    border: 2px solid #34D84F;
    color: #34D84F;
    margin: auto;
}

.seccion_contacto .cta.cta_wsp:hover {
    background-color: #34D84F;
    color: #fff;
}