@charset "UTF-8";

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

# Home
# Gracias
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

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

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

body {
    font-family: "Montserrat", sans-serif;
    background-color: #fff;
    background: linear-gradient(45deg,rgba(115, 115, 115, 0.2) 0%, rgba(255, 255, 255, 1) 100%);
    color: #000;
    font-size: 16px;
    position: relative;
}

p {
    font-weight: 400;
}

p:last-child {
    margin-bottom: 0;
}

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

h1,h2,h3,h4,h5,h6 {
    font-family: "Montserrat", sans-serif;
}

h2 {
    font-size: 48px;
    line-height: 48px;
    font-weight: 600;
}

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

/*--------------------------------------------------------------
# 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 {
    font-family: "Montserrat", sans-serif;
    background-color: transparent;
    border: 2px solid #9c1c9c;
    border-radius: 16px;
    color: #9c1c9c;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    width: 100%;
    max-width: max-content;
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    letter-spacing: normal;
    position: relative;
}

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

/* ICON */
.svg-inline--fa{
    overflow:visible
}
.svg-inline--fa{
    display:inline-block;
    font-size:inherit;
    height:1em;
    overflow:visible;
    vertical-align:-.125em
}
.svg-inline--fa.fa-w-10{
    width:.625em;
}
.svg-inline--fa.fa-w-14{
    width:.875em;
}
.svg-inline--fa.fa-w-16{
    width:1em;
}
.svg-inline--fa.fa-w-18{
    width:1.125em;
}
.svg-inline--fa.fa-w-12{
    width:.75em;
}

/*--------------------------------------------------------------
# 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: 1051;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);

    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;

    box-shadow: 0px 2px 8px -4px rgba(0, 0, 0, 0.2);
}

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

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

.side-panel_head {
    padding: 0 0 48px;
/*    border-bottom: 1px solid #000;*/
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.side-panel_body {
    padding: 0;
}

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

.side-panel_body nav ul li a {
    color: #252c46;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1;
}
.side-panel_body nav ul li a.link_cta {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    background-color: #FF325E;
    border-radius: 10px;
    padding: 12px 24px;
    display: inline-block;
}

.btnPanelMenu {
    height: 100%;
    display: flex;
    align-items: center;
}
.btnPanelMenu .icon-close {
    position: relative;
    width: 38px;
    height: 38px;
    cursor: pointer;
    padding: 0px;
}
.btnPanelMenu .icon-close span {
    display: block;
    width: 100%;
    height: 4px;
    border-radius: 6px;
    background: #3B4249;
    opacity: 1;
    transform: translateY(0) rotate(0);
    transition: all 0.3s ease;
}
.btnPanelMenu .icon-close span:nth-child(1) {
    transform: translateY(18px) rotate(45deg);
}
.btnPanelMenu .icon-close span:nth-child(2) {
    transform: translateY(14px) rotate(-45deg);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.Web-Header {}
.Web-Header .header-social {
    padding: 8px 0;
    background-color: #000;
    font-size: 0.688rem;
    color: rgb(255 255 255 / 70%);
}
.Web-Header .header-social a {
    color: rgb(255 255 255 / 70%);
    font-size: 1.125rem;
    padding-left: 10px;
}
.Web-Header .header-navbar {
    padding: 40px 0 15px;
}
.Web-Header .header-navbar .nav.nav-underline.justify-content-end {
    align-items: center;
}
.Web-Header .header-navbar .nav-link {
    color: #7D8994;
    font-size: 0.875rem;
    font-weight: 500;
    padding: .5rem 1rem;
    margin-left: 10px;
    background-color: transparent;
    border-radius: 6px;
}
.Web-Header .header-navbar .nav-link.nav-link_cta {
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    background-color: #FF325E;
    border-radius: 10px;
    padding: .7rem 1rem;
}
.Web-Header .header-navbar .nav-link.nav-link_active {
    background-color: #E6E6E6;
}
.btn-burguer {
  width: 32px;
    background-color: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    display: block;
    margin-left: auto;
}

.btn-burguer:before,
.btn-burguer:after,
.btn-burguer div {
  background: #3B4249;
    content: "";
    display: block;
    height: 4px;
    border-radius: 3px;
    margin: 4px 0;
    transition: 0.5s;
}

/*--------------------------------------------------------------
# FOOTER
--------------------------------------------------------------*/
.Web-Footer {
    background-color: #D9D9D9;
    color: #3B4249;
    padding: 42px 0;
}
.footer-nabvar {}
.footer-nabvar .nav-link {
    font-size: 0.875rem;
    color: #7D8994;
}
.footer-copy {
    padding-top: 44px;
}
.footer-copy p {
    font-size: 1.25rem;
    font-weight: 500;
}
@media (max-width: 767px) {
    .footer-copy p {
        font-size: 1rem;
    }
}

/*--------------------------------------------------------------
# Home
--------------------------------------------------------------*/
/* Hero */
.hero-home {}
.hero-home .hero-notas-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 300px 152px;
    gap: 20px;
}
.nota-principal {
    grid-column: 1 / 9;
    grid-row: 1 / 3;
}
.nota-secundaria {
    grid-column: 9 / 13;
    grid-row: 1 / 1;
}
.nota-terciaria {
    grid-column: 9 / 13;
    grid-row: 2 / 3;
}
.grid-widht_9 {
    grid-column: 1 / 9;
}
.grid-widht_3 {
    grid-column: 9 / 13;
}
.grid-heght-1 {
    grid-row: 1 / 3;
}
.grid-heght-2 {
    grid-row: 1 / 1;
}
.grid-heght-3 {
    grid-row: 2 / 3;
}
.heading-titulo h2 {
    font-size: 1.625rem;
    line-height: 2.75rem;
    margin-bottom: 20px;
}
.loading {
    color: #7D8994;
    text-align: center;
    display: block;
    padding: 20px 0;
    font-size: 1.25rem;
    line-height: 1;
}
/* Mas Noticias */
.mas-noticias-grid {
    display: grid;
    grid-template-columns: 474px 1fr 1fr 1fr;
    gap: 20px;
}
.card-02 {
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-clip: border-box;
    position: relative;
    border: 0;
    border-radius: 30px;
    overflow: hidden;
    background-color: #fff;
    height: 100%;
}
.card-02 .card_img {
    position: relative;
    width: 100%;
    height: 353px;
}
.card-02 .card_img::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(-180deg, rgba(255, 50, 94, 0) 0%, rgba(161, 33, 150, 1) 100%);
    opacity: .5;
}
.card-02 .card_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-02 .card_description {
    padding: 30px 25px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}
.card-02 .card_description h4 {
    font-size: 1.125rem;
    line-height: 1.375rem;
    color: #fff;
    margin-bottom: 10px;
}
.card-02 .card_description p {
    color: #fff;
    font-size: 1rem;
    line-height: 1.375rem;
    font-weight: 500;
}
.nota-principal .card-02 .card_img {
    height: 100%;
}
.grid-nota-aside .card-02 .card_img {
    height: 100%;
}
.nota-principal .card-02 .card_description h4 {
    font-size: 1.625rem;
    line-height: 1.875rem;
    max-width: 560px;
}
.nota-principal .card-02 .card_description p {
    max-width: 560px;
}
/* Mas Notas */
.notas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.card {
    position: relative;
    border: 0;
    border-radius: 30px;
    overflow: hidden;
    background-color: #fff;
    height: 100%;
}
.card .card_img {
    position: relative;
    width: 100%;
    height: 230px;
}
.card .card_img::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(-180deg,rgba(255, 50, 94, 0) 0%, rgba(161, 33, 150, 1) 100%);
    opacity: .5;
}
.card .card_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card .card_description {
    padding: 16px 25px 30px;
}
.tag {
    display: block;
    width: max-content;
    background: linear-gradient(90deg, rgba(156, 31, 153, 1) 0%, rgba(255, 50, 94, 1) 100%);
    color: #fff;
    padding: 2px 10px;
    border-radius: 7px;
    font-size: 0.75rem;
    line-height: 1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.card .card_description h4 {
    font-size: 1.125rem;
    line-height: 1.375rem;
    color: #3B4249;
    font-weight: 500;
}
.card .card_description p {
    color: #3B4249;
    font-size: 1rem;
    line-height: 1.375rem;
    font-weight: 500;
}
/* Nosotros */
.nosotros-seccion {
    padding: 60px 0;
    text-align: center;
}
.nosotros-seccion p {
    font-size: 1.875rem;
    max-width: 1020px;
    margin: auto;
    margin-top: 24px;
}
/* Distribucion */
.distribucion-seccion {
    padding: 42px 0;
    /* background: linear-gradient(0deg,rgba(217, 217, 217, 1) 50%, rgba(255, 255, 255, 1) 50%); */
    background: linear-gradient(0deg,rgba(217, 217, 217, 1) 50%, transparent 50%);
}
.distribucion-seccion .box {
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.3;
    color: #fff;
    background-color: #FF325E;
    border-radius: 20px;
    padding: 50px;
}
.distribucion-seccion .box h4 {
    font-size: 1.875rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
}
.distribucion-seccion .box .cta {
    margin-top: 20px;
    background-color: #fff;
    color: #FF325E;
    border: 2px solid #fff;
}
.distribucion-seccion .box.box_02 {
    background-color: #971F9C;
}
/*--------------------------------------------------------------
# Interna
--------------------------------------------------------------*/
.main-nota {}
.seccion-nota {
    padding: 15px 0;
}
.nota-imagen-principal {
    position: relative;
    margin-bottom: 30px;
}
.nota-imagen-principal::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(-180deg, rgba(255, 50, 94, 0) 0%, rgba(161, 33, 150, 1) 100%);
    opacity: .5;
    border-radius: 20px;
}
.nota-imagen-principal img {
    width: 100%;
    border-radius: 20px;
}

.imagen-producto {
    text-align: center;
    padding-bottom: 30px;
}

.imagen-producto img{
    width: 100%;
    max-width: 600px;
}

.nota-contenido h6 {
    margin-bottom: 1rem;
}
.nota-contenido,
.nota-contenido .texto,
.nota-contenido p {
    font-size: 0.856rem;
    line-height: 1.125rem;
}
.nota-contenido_grid {
        display: grid;
    grid-template-columns: 853px 1fr;
    gap: 20px;
}
.etiqueta {
    margin-bottom: 20px;
}
.titulo,
.titulo h1 {
    font-size: 2rem;
    line-height: 2.25rem;
    font-weight: 500;
    margin-bottom: 20px;
}
.texto-principal,
.texto-principal p {
    font-size: 1.125rem;
    line-height: 1.375rem;
}

.box-ads {
    padding: 40px;
    text-align: center;
}
.aside-ads {
    padding: 30px;
    text-align: center;
    position: sticky;
    top: 0;
}

.seccion-agencias {
    padding: 15px 0;
}
.post-grid-01 {
    display: grid;
    grid-template-columns: 853px 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.post-grid-02 {
    display: grid;
    grid-template-columns: 1fr 853px;
    gap: 20px;
    margin-bottom: 20px;
}
.columna {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.seccion-agencias .post-01 .card-02 .card_img {
    height: 470px;
}
.seccion-agencias .post-02 .card-02 .card_img {
    height: 300px;
}
.seccion-agencias .post-03 .card-02 .card_img {
    height: 152px;
}
.seccion-agencias .post-01 .card-02 .card_description h4 {
    font-size: 1.625rem;
    line-height: 1.875rem;
    max-width: 560px;
}
.seccion-agencias .post-01 .card-02 .card_description p {
    max-width: 560px;
}
/*--------------------------------------------------------------
# Productos
--------------------------------------------------------------*/
.seccion-productos {
    padding: 80px 0;
}
.seccion-productos h2 {
    font-size: 2rem;
    line-height: 1.2;
}
.seccion-productos .card-producto {
    padding: 25px;
    font-size: 1rem;
    line-height: 1.25rem;
}
.seccion-productos .card-producto .card-producto_texto {
    padding: 25px 0 30px;
}
.seccion-productos .card-producto img {
    box-shadow: 0px 14px 55px rgb(0 0 0 / 25%);
}
.seccion-productos .card-producto h4 {
    font-size: 1.375rem;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 10px;
}
