/*
Theme Name: Tema Tycsa
Author: Paulina Jara (Agencia Böll)
Author URI: https://www.boll.cl
Description: Plantilla desarrollada para proyecto web Tycsa. Agencia Böll
Version: 1.0
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
color ppal: #24c12d;
*/
* {
    box-sizing: border-box;
}

:root{
  --ff-outfit: "Outfit", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --fw-text: 400;
  --fw-heading: 700;
}

html, body {
  font-family: var(--ff-outfit);
  font-weight: var(--fw-text);
}

h1,h2,h3,h4,h5,h6,
p, ul, ol, li,
a, button, input, textarea, label,
small, strong, em, blockquote, figcaption {
  font-family: var(--ff-outfit) !important;
}

h1,h2,h3,h4,h5,h6 { font-weight: var(--fw-heading); }
p, li, a, label, input, textarea, button { font-weight: var(--fw-text); }

h1,h2,h3,h4,h5,h6 { letter-spacing: -0.02em; }


img {
    max-width: 100%;
}

body {
    background-color: #f9f9f9;
    font-family: 'Outfit', sans-serif;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
}

/** Especial Loader **/
.loader-section {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    flex-direction: column;
    transition: all .4s ease;
}



.loader-section .logo_loader {
    width: 250px;
    opacity: 1;
    animation: pulse 2s infinite;
    margin-bottom: 10px;
}

.loader-section h2 {
    font-size: 20px;
    text-align: center;
    margin: 10px 0;
    color: #0e1b4d;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

@keyframes pulse {
    0% {
        opacity: .6;
    }

    50% {
        opacity: 1
    }

    100% {
        opacity: .6;
    }
}

.efecto_img {
    position: relative;
    overflow: hidden;
}

.efecto_img:after {
    content: "";
    position: absolute;
    top: -310%;
    left: -220%;
    width: 200%;
    height: 300%;
    opacity: 0;
    transform: rotate(30deg);
    background: rgba(255, 255, 255, 0.0);
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0.0) 0%,
            rgba(255, 255, 255, 0.0) 70%,
            rgba(255, 255, 255, 0.14) 74%,
            rgba(255, 255, 255, 0.1) 76%,
            rgba(255, 255, 255, 0.0) 77%,
            rgba(255, 255, 255, 0.06) 79%,
            rgba(255, 255, 255, 0.3) 92%,
            rgba(255, 255, 255, 0.0) 100%);
    z-index: 10;
}

/* Hover state - trigger effect */

.efecto_img:hover:after {
    opacity: 1;
    top: -30%;
    left: -30%;
    transition-property: left, top, opacity;
    transition-duration: 0.7s, 0.7s, 0.15s;
    transition-timing-function: ease;
    z-index: 2;
}

.loaded {
    opacity: 0;
    z-index: -1;
}

/** Fin loader **/

.flex_btnes {
    gap: 20px;
    align-items: center;
}


.btnAsencob {
    font-size: 14px;
    letter-spacing: 0.05em;
    color: #fff !important;
    border: 1px solid #038D6B;
    border-radius: 20px;
    outline: none;
    background: #004998;
    background-size: 200% 200%;
    box-shadow: 5px 5px 0 #038D6B;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400px;
    text-decoration: none;
}

.btnAsencob i {
    opacity: 0;
    font-size: 0px;
    transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btnAsencob:hover {
    animation: gradient 10s ease infinite;
    font-size: 14px;
    color: #fff;
    box-shadow: 2px 2px 0 #038D6B;
}

.btnAsencob:hover i {
    opacity: 1;
    font-size: 14px;
    margin-left: 10px;
}

/* .btnAsencob a {
    color: #fff;
    text-decoration: none;
    position: relative;
} */

/* Ícono del carrito */
.btnCarrito {
    color: #ffffff;
    font-size: 22px;
    padding: 8px;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.btnCarrito:hover {
    color: #cccccc; /* color al pasar el mouse */
}

/* Contador del carrito (opcional) */
.cart-count {
    background: red;
    color: white;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 50%;
    position: absolute;
    top: -5px;
    right: -8px;
}

/* Ícono del buscador */
.btnBuscador {
    color: #ffffff;
    font-size: 22px;
    padding: 8px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.btnBuscador:hover {
    color: #cccccc;
}


.btnAsencob.btnNaranjo {
    background: #ef8d2d;
    color: #111;
    font-weight: 700;
    border: 1px solid #111;
    box-shadow: 5px 5px 0 #111;
}

.btnAsencob.btnNaranjo:hover {
    color: #111;
    box-shadow: 2px 2px 0 #111;
}

.btncats_home {
    padding-top: 15px;
}

.btncats_home .btn.btnAsencob {
    padding: 7px 20px;
    font-size: 10px;
}

.btn.btnAsencob.btnLink {
    background: transparent;
    text-decoration: underline;
}

.btnCtaSeccion {
    display: flex;
    justify-content: center;
    padding-top: 25px;
}

/** btnAnimado **/
.cta {
    display: flex;
    align-items: center;
    color: #fff;
    background: none;
    border: none;
    padding: 12px 18px;
    position: relative;
    z-index: 9;
}

.cta a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.cta a:hover {
    color: #fff;
}

.cta::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateX(calc(200% - 5px));
    width: 45px;
    height: 45px;
    background: linear-gradient(130deg, #499dc5 0%, #181b8f 45%);
    border-radius: 50px;
    transition: transform .25s .25s cubic-bezier(0, 0, .5, 2), width .25s cubic-bezier(0, 0, .5, 2);
    z-index: -1;
}

.cta:hover::before {
    width: 100%;
    transform: translateY(-50%) translateX(-18px);
    transition: transform .25s cubic-bezier(0, 0, .5, 2), width .25s .25s cubic-bezier(0, 0, .5, 2);
}

.cta i {
    margin-left: 5px;
    transition: transform .25s .4s cubic-bezier(0, 0, .5, 2);
}

.cta:hover i {
    transform: translateX(3px);
}

/** fim btnAnimado **/


/** HEADER ***/

.topbar {
    background: #203A73;
    padding: 5px 0;
    margin-bottom: 10px;
}

.info_topbar {
    display: flex;
    gap: 15px;
}

.txt_topbar {
    font-size: 13px;
}

.icono_topbar {
    color: #fff;
}

.txt_topbar a,
.txt_topbar {
    color: #fff;
    text-decoration: none;
}



.logo {
    display: flex;
    justify-content: center;
}

.logo_ppal {
    width: 185px;
    max-width: 200px;
    /* margin-top: -20px; */
    transition: width .3s ease;
    /* filter: hue-rotate(359deg) brightness(1000); */
}

.menu_principal {
    display: flex;
    justify-content: center;
    margin-left: 20px;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.menu_principal ul {
    display: flex;
    justify-content: flex-end;
    margin-left: 20px;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    list-style: none;
}

.menu_principal .menu,
.menu_principal .htmega-megamenu {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
    align-content: stretch;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
    letter-spacing: -.1px;
    font-size: 15px;
    font-family: 'Outfit', sans-serif;
}

.menu_principal .htmega-menu-container ul>li {
    margin-right: 10px !important;
}

.menu_principal .menu li a,
.htmega-megamenu li>a {
    color: #e2e2e2;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 0;
    height: 100%;
    display: flex;
    align-items: center;
}


.menu_principal .menu li.current-menu-item a,
.htmega-megamenu li.current-menu-item>a {
    color: #fff;
}

.menu_principal .btnVerde,
.menu_principal .btnNaranja,
.menu_principal .btn.btnOutlineVerde {
    min-width: 120px;
}

/** SUBMENU **/
/* ===================== */
/* Estilo para SUBMENÚ   */
/* ===================== */

.menu-item-has-children {
  position: relative;
}

.menu-item-has-children .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 240px;
  background: #004998;
  padding: 8px 0;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 99;
}

.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
}

/* Ítems del submenú */

.menu-item-has-children .sub-menu li {
  position: relative;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-item-has-children .sub-menu li:last-child {
  border-bottom: none;
}

.menu-item-has-children .sub-menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.menu-item-has-children .sub-menu li a:hover {
  color: #FF9015;
}

/* 🟧 SOLO flecha para ítems que tienen hijos */
.menu-item-has-children .sub-menu .menu-item-has-children > a::after {
  content: "\f105"; /* flecha derecha */
  font-family: 'FontAwesome';
  font-size: 12px;
  color: #FF9015;
  margin-left: 10px;
}

/* =========================== */
/* SUB-SUBMENÚ (nivel 3)       */
/* =========================== */

.menu-item-has-children .sub-menu .menu-item-has-children {
  position: relative;
}

.menu-item-has-children .sub-menu .menu-item-has-children .sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: -2px;
  background: #005fb4;
  width: 220px;
  padding: 6px 0;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 100;
}

.menu-item-has-children .sub-menu .menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
}

/* Sub-submenú items */
.menu-item-has-children .sub-menu .menu-item-has-children .sub-menu li {
  padding: 0 16px;
  font-size: 13px;
}

.menu-item-has-children .sub-menu .menu-item-has-children .sub-menu li a {
  color: #fff;
  padding: 10px 0;
  transition: all 0.3s ease;
}

.menu-item-has-children .sub-menu .menu-item-has-children .sub-menu li a:hover {
  color: #FF9015;
}



.btnes_head {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.rrss_head {
    display: flex;
    gap: 10px;
    margin-right: 10px;
}

.rrss_head a {
    color: #fff;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}

.rrss_head a i {
    font-size: 18px;
    margin-right: 9px;
    background: #FF9015;
    padding: 8px;
    border-radius: 50px;
    color: #fff;
}

.rrss_head a.link_login {
    color: #203A73;
    background-color: transparent;
    border-radius: 50px;
    padding: 3px 10px;
    text-decoration: none;
    transition: background-color .3s ease-in-out;
    display: flex;
    align-items: center;
    font-weight: 700;
    line-height: 1;
}

.rrss_head a.link_login:hover {
    color: #fff;
    background: #0000001f;
}

.fono_menu {
    display: flex;
    flex-direction: column;
}

.fono_menu span {
    font-size: 12px;
    font-weight: 400;
}

.rrss_head.rrss_movil {
    margin-top: 25px;
}

.rrss_head.rrss_movil a {
    background: #0e1b4d;
    padding: 9px 10px;
    border-radius: 50%;
    line-height: 1;
}

/** MEGAMENU **/
.htmegamenu-content-wrapper.sub-menu {
    top: 0px !important;
    padding: 10px !important;
}

.htmega_mega_menu,
.htmega-megamenu,
.desktop_head>.container>.row>.col-sm {
    position: unset !important;
}

/* .htmega_mega_menu:hover::before {
    content: '';
    position: absolute;
    background: #fff;
    width: 100%;
    height: 100px;
    top: 0;
    left: 0;
} */

.menu_principal .htmega-megamenu .htmegamenu-content-wrapper {
    width: 100%;
    box-shadow: none;
    top: 105px !important;
}

.logo_2 {
    display: none;
}


.cabecera_ppal {
    position: sticky;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    background: #004998; /* Azul sólido en estado normal */
    padding: 15px 0;
    transition: all 0.3s ease-in-out;
}

.cabecera_ppal.scrolling,
.cabecera_ppal.mm_activo {
    background: linear-gradient(to top, #004998e2 1%, #004998bf 2%);
    box-shadow: 0 0 7px rgba(0, 0, 0, .2);
}

.scrolling .logo_ppal,
.mm_activo .logo_ppal {
    width: 150px;
    margin-top: 0;
    filter: none;
}

.scrolling .menu_principal .menu li a,
.scrolling .htmega-menu-container ul > li > a,
.scrolling .rrss_head a,
.mm_activo .menu_principal .menu li a,
.mm_activo .htmega-menu-container ul > li > a,
.mm_activo .rrss_head a {
    color: #fff;
}

.scrolling .menu_principal .menu li.menu-item-has-children .sub-menu li a {
    color: #fff;
}

.scrolling .btn.btnOutlineVerde {
    color: #74bc1e;
}

.scrolling .mobile_head .rrss_head.rrss_movil a {
    color: #fff;
}

.scrolling .rrss_head a i {
    padding: 0;
    background: transparent;
    color: #203A73;
}

.scrolling .logo_1 {
    display: none;
}

.scrolling .logo_2 {
    display: block;
}

/** fin on scroll **/

/*** BODY ***/
.box_servicio_asencob {
    border: 1px solid #000;
    padding: 20px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-around;
    gap: 20px;
    z-indeX: 1;
    height: 100%;
}

.box_servicio_asencob::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 50px;
    height: 50px;
    border-radius: 20px;
    background-color: #ef8d2d;
    transition: all .3s ease-in-out;
    z-index: -1;
}

.box_servicio_asencob:hover::before {
    width: 500px;
    height: 400px;
}

.box_servicio_asencob .icono img {
    width: 60px;
    height: 60px;
    transition: all .3s ease;
}

.box_servicio_asencob .contenido {
    font-family: 'Outfit', sans-serif;
    color: #111;
}

.box_servicio_asencob .contenido h2 {
    font-size: 20px;
    margin-bottom: 15px;
}

.box_servicio_asencob .contenido p {
    color: #6b6b6b;
    font-size: 13px;
}

.box_servicio_asencob:hover .icono img {
    filter: contrast(0) brightness(1500);
}

.box_servicio_asencob:hover .contenido,
.box_servicio_asencob:hover .contenido p {
    color: #fff;
}













.num_prefijo .elementor-counter-number-wrapper {
    align-items: center;
}

.num_prefijo .elementor-counter-number-prefix {
    font-size: 24px;
}

.list_skills {
    padding: 0;
}

.box_servicios .eael-elements-flip-box-front-container {
    background-blend-mode: unset;
    position: relative;
}

.box_servicios .eael-elements-flip-box-front-container::before {
    content: '';
    position: absolute;
    top: 0;
    lefT: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #004998e0 20%, #004998bf 80%);
    border-radius: 5px;
    z-index: -1;
}

.galeria_universidades #gallery-1 img {
    border: 0;
}

.galeria_universidades #gallery-1 .gallery-item {
    margin-top: 5px;
}

/***
**** PAGINA INTERNA ***
****/
.tit_ppal_int span {
    font-weight: 600;
    display: block;
    font-size: 60%;
}

.planes .eael-pricing.style-2 .eael-pricing-item .eael-pricing-icon {
    display: none;
}

.planes .eael-pricing.style-2 .eael-pricing-item {
    padding-top: 0;
}

.planes .eael-pricing.style-2 .eael-pricing-item .header {
    border-radius: 10px 10px 0 0;
}

.planes .eael-pricing.style-2 .eael-pricing-item .eael-pricing-tag {
    display: none;
}

.planes .eael-pricing.style-2 .eael-pricing-item .body ul {
    text-align: left;
    padding: 0 10px;
}

.planes .eael-pricing.style-2 .eael-pricing-item .body ul li {
    display: flex;
    align-items: center;
    gap: 7px;
}

.planes.planes_dest .body ul li:first-of-type {
    font-weight: bold;
}

/*** ACORDEON HOME ***/
.accordion {
    width: 100%;
    height: 90vh;
    overflow: hidden;
    margin: 0px auto;
}

.accordion ul {
    width: 100%;
    display: table;
    table-layout: fixed;
    margin: 0;
    padding: 0;
}

.accordion ul li {
    display: table-cell;
    vertical-align: bottom;
    position: relative;
    width: 10%;
    height: 90vh;
    background-repeat: no-repeat;
    background-position: center center;
    transition: all 500ms ease-in-out;
    background-size: cover;
}

.accordion ul li.hovered {
    width: 80%;
}

.accordion ul li.hovered .overlay {
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), transparent);
}

.accordion ul li.hovered>h2 {
    opacity: 0;
}

.accordion ul li.hovered div>* {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    transition: all 400ms ease-in-out;
    transition-delay: 400ms;
}

.accordion ul li .overlay {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #3f5efb;
    background: linear-gradient(180deg, #3f5efb 0%, #fc466b 100%);
}

.accordion ul li>h2 {
    color: white;
    font-size: 37px;
    position: absolute;
    box-sizing: border-box;
    padding-left: 0;
    margin: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    white-space: nowrap;
    left: 0;
    transition: 0.3s linear;
    transform: rotate(-90deg);
    transform-origin: left top;
    left: 46px;
    font-family: 'Paytone One', sans-serif;
}

.accordion ul li div {
    display: block;
    overflow: hidden;
    width: 100%;
}

.accordion ul li div>div {
    display: flex;
    height: 300px;
    width: 100%;
    position: relative;
    z-index: 3;
    vertical-align: bottom;
    padding: 30px 30px 50px 70px;
    gap: 10px;
    contain-intrinsic-block-size: auto 100px;
    color: #fff;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    transition: all 300ms ease-in-out;
    /* pointer-events: none; */
    flex-direction: column;
    justify-content: flex-end;
}

.accordion ul li div>div>* {
    opacity: 0;
    margin: 0;
    width: 100%;
    max-width: 60%;
    position: relative;
    z-index: 5;
    white-space: normal;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
}

.accordion ul li div>div h2 {
    font-family: 'Paytone One', sans-serif;
    text-overflow: clip;
    font-size: 37px;
    /* text-transform: uppercase; */
    margin-bottom: 2px;
    /* top: 160px; */
}

.accordion ul li div>div p {
    /* top: 160px; */
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 10px;
    padding-right: 100px;
    font-family: 'Lato', sans-serif;
}

.accordion .btnAsencob {
    max-width: 170px;
    font-size: 11px;
}


.accordion ul li:nth-child(1) {
    background: linear-gradient(180deg, #004998de 0%, #038d6bde 100%), url("https://tycsa.cl/wp-content/uploads/2025/12/Lineas-Peru-scaled.webp") no-repeat;
    background-position: center, 50% 30%;
    background-size: cover;
}

.accordion ul li.hovered:nth-child(1) {
    background: linear-gradient(21deg, #000000b0 20%, transparent 60%), url("https://tycsa.cl/wp-content/uploads/2025/12/Lineas-Peru-scaled.webp") no-repeat;
    background-position: center, 15% 0%;
    background-size: cover;
}

.accordion ul li:nth-child(2) {
    background: linear-gradient(180deg, #004998de 0%, #038d6bde 100%), url("https://tycsa.cl/wp-content/uploads/2025/12/Canalizacion-1.webp") no-repeat;
    background-position: center, 70% 0%;
    background-size: cover;
}

.accordion ul li.hovered:nth-child(2) {
    background: linear-gradient(21deg, #000000b0 20%, transparent 60%), url("https://tycsa.cl/wp-content/uploads/2025/12/Canalizacion-1.webp") no-repeat;
    background-position: center, 70% 0%;
    background-size: cover;
}

.accordion ul li:nth-child(3) {
    background: linear-gradient(180deg, #004998de 0%, #038d6bde 100%), url("https://tycsa.cl/wp-content/uploads/2025/12/ChatGPT-Image-23-dic-2025-12_26_49-p.m.webp") no-repeat;
    background-position: center, 50% 50%;
    background-size: cover;
}

.accordion ul li.hovered:nth-child(3) {
    background: linear-gradient(21deg, #000000b0 20%, transparent 60%), url("https://tycsa.cl/wp-content/uploads/2025/12/ChatGPT-Image-23-dic-2025-12_26_49-p.m.webp") no-repeat;
    background-position: center, 50% 50%;
    background-size: cover;
}

/* .accordion ul li:nth-child(4) {
    background: linear-gradient(180deg, #004998de 0%, #038d6bde 100%), url("https://gohost.cl/hk/wp-content/uploads/2024/06/home-equipo-hk.jpg") no-repeat;
    background-position: center, 50% 50%;
    background-size: cover;
}

.accordion ul li.hovered:nth-child(4) {
    background: linear-gradient(21deg, #000000b0 20%, transparent 60%), url("https://gohost.cl/hk/wp-content/uploads/2024/06/home-equipo-hk.jpg") no-repeat;
    background-position: center, 50% 50%;
    background-size: cover;
} */

@media (max-width: 680px) {

    .accordion {
        height: 60vh;
    }

    .accordion ul li {
        height: 60vh;
    }

    .accordion ul li>h2 {
        opacity: 1;
        font-size: 17px;
        left: 10px;
    }

    .accordion ul li.hovered>h2 {
        opacity: 0;
        font-size: 17px;
    }

    .accordion ul li.hovered>div>div>h2 {
        opacity: 1;
        font-size: 20px;
    }

    .accordion ul li.hovered div>div {
        padding: 20px;
    }

    .accordion ul li div>div>* {
        max-width: 100%;
    }

    .accordion ul li div>div p {
        padding-right: 0;
    }

    .accordion ul li.hovered:nth-child(1) {
        background: linear-gradient(21deg, #000000b0 20%, transparent 60%), url("https://tycsa.cl/wp-content/uploads/2025/12/Lineas-Peru-scaled.webp") no-repeat;
        background-position: center, 50% 0%;
        background-size: cover;
    }

    .accordion ul li.hovered:nth-child(2) {
        background: linear-gradient(21deg, #000000b0 20%, transparent 60%), url("https://tycsa.cl/wp-content/uploads/2025/12/Canalizacion-1.webp") no-repeat;
        background-position: center, 50% 0%;
        background-size: cover;
    }

    .accordion ul li.hovered:nth-child(3) {
        background: linear-gradient(21deg, #000000b0 20%, transparent 60%), url("https://tycsa.cl/wp-content/uploads/2025/12/ChatGPT-Image-23-dic-2025-12_26_49-p.m.webp") no-repeat;
        background-position: center, 50% 0%;
        background-size: cover;
    }
}










/** form **/

.flex_form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form_row {
    display: flex;
    gap: 10px;
    width: 100%;
    flex-direction: column;
}

.flex_box {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.flex_box p,
.flex_box input,
.flex_box select,
.flex_box textarea,
.flex_box label {
    width: 100%;
}

.flex_box input,
.flex_box select,
.flex_box textarea {
    border: 0;
    border-radius: 5px;
    padding: 10px 15px;
}

.flex_box label {
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 0;
}

.flex_box textarea {
    max-height: 120px;
}



.cards_form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    color: #42421C;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.content_form .form-control.form-control-lg {
    border-radius: 4px;
    background: #fff;
    border: 0;
    border-bottom: 1px solid #111;
    border-radius: 0;
    box-shadow: none;
    font-family: 'Outfit', sans-serif;
}

.content_form .form-control {
    color: #42421C;
    font-size: 14px;
}

.content_form .form-control::placeholder {
    color: #42421C8a;
}

.content_form textarea {
    min-height: 108px !important;
}

.content_form .input-group-text {
    height: 100%;
    color: #111;
    background-color: #038D6B42;
    border: none;
    border-radius: 0.25rem 0 0 0.25rem;
    font-size: 14px;
}

/** fin form **/



.ocultar {
    visibility: hidden;
    opacity: 0;
    height: 0;
    overflow: hidden;
    padding: 0 !important;
    margin: 0 !important;
}

body.blog .cabecera_ppal {
    background: #fff;
    padding-bottom: 0;
}

body.blog .menu_principal .menu li a {
    color: #1c1c1c;
}

body.blog .logo_ppal {
    filter: hue-rotate(359deg) brightness(1000);
    max-width: 120px;
}

body.page-template-page-servicios .logo_ppal {
    /* filter: none; */
    max-width: 170px;
}

.container.mw1000 {
    max-width: 700px;
}

.submenu_int {
    background: #1c1c1c;
}

.submenu_flex {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
}

.menuitem {
    width: 100%;
    text-align: center;
    padding: 10px;
}

.menuitem.activo,
.menuitem:hover {
    background-color: #ffffff40;
}

.menuitem a {
    color: #fff;
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    text-decoration: none;
}

.menuitem:hover a {
    color: #fff;
}

.smalltxt {
    font-size: 14px;
}

.col_equipo .elementor-widget-wrap.elementor-element-populated {
    overflow: hidden;
}

.secc_equipo .iconos_equipo {
    position: absolute;
    top: 15px;
    z-index: 3;
    padding-right: 10px;
}

.secc_equipo .abs_titulo {
    position: absolute;
    bottom: 0;
    background: linear-gradient(to top, black, transparent);
    padding: 30px 20px 20px 20px;
    z-index: 2;
}

/*** MAPA **/
/* #map {
    position: relative;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 500px;
} */

/***
 * Estilos Mapa *
 ***/
.contenedor_pdv {
    position: relative;
    height: 500px;
    overflow: hidden;
    display: block;
}

.mapa .sidebar {
    position: absolute;
    width: 30%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    border-right: 1px solid rgba(0, 0, 0, 0.25);
    background: #f6f6fb7a;
    border-radius: 10px 0 0 10px;
}

.pad2 {
    padding: 20px;
}

.mapa .map {
    position: absolute;
    left: 30%;
    width: 70%;
    top: 0;
    bottom: 0;
    height: 100%;
    filter: none;
}

.mapa h3 {
    font-size: 22px;
    margin: 0;
    font-weight: 400;
    line-height: 20px;
    padding: 20px 2px;
}

.mapa a {
    color: #404040;
    text-decoration: none;
}

.mapa a:hover {
    color: #101010;
}

.heading {
    border-bottom: 1px solid #eee;
    min-height: 60px;
    line-height: 60px;
    padding: 0 10px;
    background-color: #24c12d;
    color: #fff;
}

.heading h3 {
    color: #fff;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
}

.listings {
    height: 100%;
    overflow: auto;
    padding-bottom: 60px;
}

.listings .item {
    display: block;
    border-bottom: 1px solid #eee;
    padding: 10px;
    text-decoration: none;
}

.listings .item:hover {
    background: #fff;
}

.listings .item>div {
    font-size: 13px;
    line-height: 1.3;
    font-family: 'Poppins', sans-serif;
}

.listings .item:last-child {
    border-bottom: none;
}

.listings .item .title {
    display: block;
    color: #24c12d;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.listings .item .title small {
    font-weight: 400;
}

.listings .item.active .title,
.listings .item .title:hover {
    color: #111;
}

.listings .item.active {
    background-color: #f8f8f8;
}

.contenedor_pdv ::-webkit-scrollbar {
    width: 3px;
    height: 3px;
    border-left: 0;
    background: rgba(0, 0, 0, 0.1);
}

.contenedor_pdv ::-webkit-scrollbar-track {
    background: none;
}

.contenedor_pdv ::-webkit-scrollbar-thumb {
    background: #111;
    border-radius: 0;
}

.marker {
    border: none;
    cursor: pointer;
    height: 45px;
    width: 45px;
    background-image: url(includes/img/marker-tw.png);
    background-color: rgba(0, 0, 0, 0);
    background-size: contain;
}

.clearfix {
    display: block;
}

.clearfix:after {
    content: '.';
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

/* Marker tweaks */
.mapboxgl-popup {
    padding-bottom: 50px;
}

.mapboxgl-popup-close-button {
    display: none;
}

.mapa .mapboxgl-popup-content {
    font: 400 15px/22px 'Poppins', 'Helvetica Neue', Sans-serif;
    padding: 0;
    width: 275px;
}

.mapboxgl-popup-content-wrapper {
    padding: 1%;
}

.mapboxgl-popup-content h3 {
    background: #24c12d;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    margin: 0;
    display: block;
    padding: 10px;
    border-radius: 3px 3px 0 0;
    font-weight: 700;
    margin-top: -15px;
    font-size: 17px;
}

.mapboxgl-popup-content h4 {
    margin: 0;
    display: block;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
}

.mapboxgl-popup-content div {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.mapboxgl-container .leaflet-marker-icon {
    cursor: pointer;
}

.mapboxgl-popup-anchor-top>.mapboxgl-popup-content {
    margin-top: 15px;
}

.mapboxgl-popup-anchor-top>.mapboxgl-popup-tip {
    border-bottom-color: #a29bfe;
}

.text-center {
    text-align: center
}

@media (max-width:767px) {
    .contenedor_pdv {
        height: auto;
    }

    .mapa .map {
        position: relative;
        height: 350px;
        width: 100%;
        left: 0;
    }

    .mapa .sidebar {
        position: relative;
        height: 250px;
        width: 100%;
    }
}

/** MORPH **/
.circle {
    background: plum;
    width: 450px;
    height: 450px;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    overflow: hidden;
    animation: morph 4s linear infinite;
    margin: 0 auto;
}

.circle img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

@keyframes morph {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%;
    }

    34% {
        border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
    }

    67% {
        border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
    }

    100% {
        border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%;
    }

}

/** CSS BOTON VIDEO **/
.Blink {
    animation: blinker 1.5s cubic-bezier(.5, 0, 1, 1) infinite alternate;
}

@keyframes blinker {
    from {
        transform: scale(1.1);
        opacity: .5;
    }

    to {
        transform: scale(.6);
        opacity: 1;
    }
}

.Blink_in {
    animation: blinker 1.5s cubic-bezier(.4, 0, 1, 1) infinite alternate;
}

.circle_btn {
    display: block;
    border-radius: 50%;
    background-color: #ffffff8a;
    width: 110px;
    height: 110px;
    margin: 0 auto;
    padding: 15px;
}

.circle_btn.circle_in {
    width: 80px;
    height: 80px;
    background-color: #ffffff8a;
    margin: 0px auto;
    padding: 0;
}

.btn_video {
    position: relative;
}

.btn__video {
    position: absolute;
    left: calc(50% - 22.5px);
    top: calc(50% - 22.5px);
}

.icono_video {
    width: 45px;
    height: auto;
    margin: 0 auto;
}

.txt_int_init p {
    margin-bottom: 0;
    line-height: 1;
}

/****************************************************************
**** PAGINA BLOGs ********************************
**************************************************************** */

.wrap_blog {
    padding-top: 150px;
    padding-bottom: 60px;
    background: #96A6FD1A;
}

.blog_page {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.blog_page .article-loop {
    width: 31%;
    margin-bottom: 10px;
}

.content_video_frame {
    max-width: 600px;
    margin: 30px auto;
    display: block;
}

.flex_blog {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.box_img_video {
    height: 315px;
    width: 100%;
}

.box_img_video img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center;
}

.box_content_blog {
    padding: 20px;
}

.box_content_blog h2 {
    font-family: 'Yummo W03', sans-serif;
    font-weight: 700;
    font-size: 20px;
}

.box_content_blog h2 a {
    color: #000;
}

.box_content_blog a {
    text-decoration: none;
}

.box_content_blog p {
    font-size: 13px;
    line-height: 1.3;
}

.primary-sidebar.widget-area {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 7px #9d9d9d0d;
}

.primary-sidebar.widget-area h2 {
    font-family: 'Yummo W03', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin: 10px 0 20px;
}

.primary-sidebar.widget-area ul li {
    margin-bottom: 10px;
    background: #0000000a;
    padding: 10px;
    border-radius: 10px;
}

.primary-sidebar.widget-area a {
    /* text-decoration: none; */
    font-family: 'Yummo W03', sans-serif;
    color: #000;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 500;
}

.primary-sidebar.widget-area .wp-block-latest-posts__post-excerpt {
    font-size: 13px;
    font-family: 'Yummo W03', sans-serif;
}

.wp-block-latest-posts__post-date,
.box_content_blog .fecha_post {
    color: #D2D314;
    font-family: 'Yummo W03', sans-serif;
    font-size: 11px;
}


.socios-idicam #gallery-1 img,
.socios-idicam #gallery-2 img {
    border: 0;
}


/****************************************************************
**** PAGINA INTERNA BLOG ********************************
**************************************************************** */
body.single.single-post .cabecera_ppal,
body.single-videoteca .cabecera_ppal,
body.page-template-page-videoteca .cabecera_ppal,
body.page-template-page-blogidicam .cabecera_ppal {
    position: relative;
    background: #004998;
}

body.single.single-post .logo_ppal,
body.single-videoteca .logo_ppal,
body.page-template-page-videoteca .logo_ppal,
body.page-template-page-blogidicam .logo_ppal {
    width: 170px;
}

body.single.single-post .cabecera_ppal .menu_principal .menu li a,
body.single.single-post .cabecera_ppal .rrss_head a,
body.single-videoteca .cabecera_ppal .menu_principal .menu li a,
body.single-videoteca .cabecera_ppal .rrss_head a,
body.page-template-page-videoteca .cabecera_ppal .menu_principal .menu li a,
body.page-template-page-videoteca .cabecera_ppal .rrss_head a,
body.page-template-page-blogidicam .cabecera_ppal .menu_principal .menu li a,
body.page-template-page-blogidicam .cabecera_ppal .rrss_head a {
    color: #fff;
}

.blog_wrap {
    background: #f0f0f0;
    padding: 70px 0;
}

.seccion_blog_single {
    display: flex;
    gap: 30px;
}

.seccion_blog_single article {
    width: 70%;
}

.seccion_blog_single .sidebar_col {
    width: 30%;
}

.seccion_blog_single article h1 {
    font-family: 'Yummo W03', sans-serif;
    font-weight: bold;
    font-size: 36px;
    line-height: 1.2;
}


.modelpup {
    height: auto !important;
    margin-bottom: 30px;
}


/*** carrusel temp **/
#carrusel {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* #carrusel .left-arrow {
    position: absolute;
    left: 10px;
    z-index: 1;
    top: 50%;
    margin-top: -9px;
}

#carrusel .right-arrow {
    position: absolute;
    right: 10px;
    z-index: 1;
    top: 50%;
    margin-top: -9px;
} */

.carrusel {
    display: flex;
    align-items: stretch;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.carrusel>.product {
    width: 25%;
    text-align: center;
    padding: 5px;
}

.content_video_frame_ {
    position: relative;
}

.int_card {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 5px;
    background-color: #f5f6ff;
}

.icono_video_frame {
    color: #fff;
    font-size: 50px;
    position: absolute;
    top: 50%;
    lefT: 50%;
    transform: translate(-50%, -50%);
}




.caf-post-layout3.blog-idicam {
    box-shadow: 0 10px 6px -6px #0000003b;
    border-radius: 10px;
}

.caf-post-layout3.blog-idicam #manage-post-area {
    background-image: linear-gradient(to top, #000000, #00000085);
}

.caf-post-layout3.blog-idicam .caf-post-title h2 a,
.caf-post-layout3.blog-idicam .caf-post-title h2 {
    font-size: 15px !important;
    font-family: 'Yummo W03', sans-serif !important;
}

.caf-post-layout3.blog-idicam .caf-post-title h2 a:hover {
    color: #fff !important;
}

.data-target-div1 .caf-post-layout3.blog-idicam .caf-meta-content-cats li a {
    background: transparent !important;
    color: #fff !important;
    font-weight: bold;
}

.seccion_blog_single .content_video_frame {
    display: none;
}

body.single-videoteca .seccion_blog_single .content_video_frame {
    display: block;
}

.header_blog {
    margin-bottom: 35px;
}

/* .carrusel i {
    cursor: pointer;
} */

/** fin carrusl temp **/

/****************************************************************
**** MODALS ********************************
**************************************************************** */
#modalForm .modal-body {
    padding: 0;
    border-radius: 7px;
}

#modalForm .modal-body .btn-close {
    position: absolute;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    background: #ffffffa6;
    line-height: 1;
    border-radius: 50%;
    color: #000;
    right: 10px;
    top: 10px;
}

#modalForm .modal-body .row .col-sm:first-of-type {
    background-color: #fff;
    border-radius: 7px 0 0 7px;
}

.bg_modal_form {
    background: url(/santa_noelia/wp-content/uploads/2025/03/Foto-24-1-3-1.jpg) no-repeat center center;
    background-size: cover;
    overflow: hidden;
    border-radius: 0 7px 7px 0;
}

.content_modal_form {
    padding: 7px;
}

.content_modal_form h4 {
    margin-top: 10px;
    margin-bottom: 10px;
    color: #111;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.content_modal_form .form_row {
    flex-direction: column;
    gap: 0;
}


/****************************************************************
**** FOOTER ********************************
**************************************************************** */
footer {
    width: 100%;
    padding: 0;
    padding-top: 50px;
    /* background: linear-gradient(to right, #4b82fb, #720fad); */
    background-color: #fff;
}

.boxes_footer {
    display: flex;
    gap: 20px;
    justify-content: center;
}


.box_foot {
    width: 100%;
    display: flex;
    flex-direction: column;

}

.box_foot:first-child {
    align-items: flex-start;
    /* width: 40%; */
    gap: 20px;
}

.box_foot:first-child p {
    padding-right: 80px;
}

.box_foot {
    /* align-items: flex-end; */
    /* width: 20%; */
}

.box_foot:nth-child(2) {
    /* width: 30%; */
    /* align-items: flex-start; */
}

.box_foot h3 {
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 35px;
    color: #004998;
    text-transform: uppercase;
    letter-spacing: -.5px;
}

.box_foot .rrss_foot a {
    text-decoration: none;
    /* background: -webkit-linear-gradient(286deg, #808080, #b6b6b6, #fdfdfd, #d0d0d0, #9c9c9c, #9c9c9c);
    background: linear-gradient(286deg, #808080, #b6b6b6, #fdfdfd, #d0d0d0, #9c9c9c, #9c9c9c);
    background: -moz-linear-gradient(286deg, #808080, #b6b6b6, #fdfdfd, #d0d0d0, #9c9c9c, #9c9c9c); */
    background-color: #fff;
    color: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box_foot p {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffffffcf;
    text-align: right;
}

/* .box_foot:nth-child(2) p {
    text-align: left;
} */

.box_foot p i {
    margin-right: 10px;
    color: #74bc1e;
    display: none;
}

.box_foot a {
    font-family: 'Outfit', sans-serif;
    color: #333333cf;
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 7px;
}

.box_foot a:hover {
    color: #fa7b00;
}

.list_footer {
    list-style: none;
    padding: 0;
    font-family: 'Oufit', sans-serif;
    font-size: 16px;
}

.list_footer li {}

.list_footer li a {
    color: #1c1c1c;
    text-decoration: none;
}

.list_footer li a:hover {
    text-decoration: underline;
}

.foot_1 img {
    width: 80%;
    max-width: 200px !important;
}

.separador_footer {
    width: 90%;
    height: 1px;
    background-color: #ffffff4a;
    display: block;
    margin: 0 auto 25px;
}

.box_copy {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.copy_footer {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    background: #004998;
    width: 100%;
    padding: 10px 0;
    margin-top: 30px;
    border-radius: 50px 50px 0 0;
}

.copy_footer p a {
	color: #fff;
}

.rrss_footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    /* margin-top: 15px; */
    position: relative;
}

.rrss_footer a {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #252424;
    background-color: transparent;
    border-radius: 5px;
    border: 2px solid #333333;
    transition: all .4s ease-in-out;
}

.rrss_footer a i {
    font-size: 20px;
    line-height: 1;
}

.rrss_footer a:hover {
    background-color: #2c2b2b;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-5px);
}

.box_foot.order3 {
    padding-left: 40px;
    gap: 10px;
    align-items: center;
}

.logos_apps {
    flex-direction: column;
}

.copy_footer p {
    margin: 0;
    color: #fff;
}

.copy_footer p a {
    text-decoration: underline;
    color: #fff;
}

.mobile_head {
    display: none;
}

/* ===== FIX Footer menus (no bullets, alineado, spacing) ===== */
.boxes_footer { align-items: flex-start; } /* columnas alineadas arriba */

.box_foot h3 { margin-bottom: 16px; }      /* acercar título a la lista */

.box_foot .footer-menu {
  list-style: none;     /* sin puntos */
  margin: 0;            /* sin margen extra */
  padding: 0;           /* sin indentación del <ul> */
  display: grid;
  gap: 8px;             /* espacio uniforme entre items */
}
/* por si algún navegador insiste con viñetas */
.box_foot .footer-menu li::marker { content: none; }

.box_foot .footer-menu li { margin: 0; }

.box_foot .footer-menu a {
  display: inline-block;             /* mejor click area */
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  color: #333333cf;
  text-decoration: none;
}
.box_foot .footer-menu a:hover { color: #fa7b00; }




/*** BLOG **/
.blog .eael-grid-post-holder {
    border: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, .05);
}

.blog .eael-grid-post-holder:hover {
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, .1);
}

.blog .eael-grid-post .eael-entry-wrapper {
    padding: 20px 15px;
}

.blog .eael-grid-post .eael-entry-wrapper .eael-entry-title {
    font-family: 'Orkney', sans-serif;
}

.blog .eael-grid-post .eael-entry-wrapper .eael-entry-content {
    font-family: 'Effra', sans-serif;
}

.blog .eael-grid-post .eael-entry-wrapper .eael-entry-content a {
    display: table;
    margin-top: 10px;
}




@media (max-width:767px) {

    .desktop_head {
        display: none;
    }

    .mobile_head {
        display: block;
    }

    .logo_ppal {
        max-width: 80%;
        width: auto;
        max-height: 70px;
    }

    .mobile_head .hamburger {
        background-color: transparent;
    }

    /** Menu movil **/
    .hamburger-inner,
    .hamburger-inner:after,
    .hamburger-inner:before,
    body.page-template-page-servicios .hamburger-inner,
    body.page-template-page-servicios .hamburger-inner:after,
    body.page-template-page-servicios .hamburger-inner:before {
        background-color: #fff !important;
    }

    .scrolling .hamburger-inner,
    .scrolling .hamburger-inner:after,
    .scrolling .hamburger-inner:before,
    body.single.single-post .hamburger-inner,
    body.single.single-post .hamburger-inner:after,
    body.single.single-post .hamburger-inner:before,
    body.page-template-page-blogidicam .hamburger-inner,
    body.page-template-page-blogidicam .hamburger-inner:after,
    body.page-template-page-blogidicam .hamburger-inner:before {
        background-color: #fff !important;
    }

    .scrolling .logo_ppal {
        /* max-height: 70px; */
        width:auto;
    }

    .menu_movil .menu {
        list-style: none;
        padding: 0;
        font-size: 16px;
        text-transform: uppercase;
        line-height: 1.5;
        font-weight: 500;
    }

    .menu_movil .menu li {
        padding: 10px;
        border-bottom: 1px solid #f0f1f4;
    }

    .menu_movil .menu li a {
        text-decoration: none;
        color: #111;
        font-family: 'Outfit', sans-serif;
    }

    .menu_movil .menu li .sub-menu li a {
        color: #fff;
    }

    .btnes_head {
        justify-content: center;
    }

    .menuitem {
        padding: 10px 0;
    }

    .menuitem a {
        font-size: 10px;
    }

    /** Body **/

    .tit_ppal .elementor-heading-title span {
        font-size: 20px;
    }

    .iconos_interior .elementor-image-box-wrapper {
        display: flex;
        gap: 20px;
    }

    .maq-pouchera .box_caracteristicas {
        max-width: 100% !important;
    }











    .circle {
        width: 300px;
        height: 300px;
    }

    .tarjeta,
    .tarjeta.tarjeta_izq {
        margin-left: auto;
        margin-right: auto;
    }

    .box_int_contacto h2 {
        font-size: 30px;
    }

    .box_int_contacto.boxes_der h2 {
        font-size: 18px;
    }

    .boxtxt {
        font-size: 10px;
    }

    .box_flotante,
    .box_int_contacto {
        width: 90%;
    }

    .wrap_blog {
        padding-top: 80px;
    }

    .blog_page .article-loop {
        width: 100%;
    }

    /** Footer **/
    .flex_cds {
        gap: 0;
        border-radius: 10px;
        overflow: hidden;
        flex-wrap: wrap;
    }

    .cds {
        width: 33.3%;
        border-radius: 0;
    }

    .boxes_footer {
        flex-wrap: wrap;
        gap: 0;
    }

    .boxes_footer .box_foot {
        width: 100%;
        margin-bottom: 20px;
        padding: 2%;
    }

    .foot_1 img {
        margin: 0 auto;
    }

    .boxes_footer .box_foot:nth-child(2) {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .box_foot.order3 {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
    }

    .box_foot h3 {
        font-size: 16px;
        margin-bottom: 25px;
        width: 100%;
    }

    .box_foot p {
        margin-bottom: 5px;
    }

    .box_foot:first-child {
        align-items: flex-start;
    }

    .box_foot:first-child p {
        text-align: left;
    }

    /* .box_foot a {
        width: 33%;
        margin-bottom: 10px;
    } */

    .order1 {
        order: 1;
    }

    .order2 {
        order: 2;
    }

    .order3 {
        order: 3;
    }

    .copy_footer p {
        text-align: center;
    }

    .carrusel>.product {
        width: 50%;
    }

    .seccion_blog_single {
        flex-direction: column;
    }

    .seccion_blog_single article,
    .seccion_blog_single .sidebar_col {
        width: 100%;
    }

    .item_video-contenido p {
        display: none;
    }

    .copy_movil p {
        font-size: 12px;
        text-align: center;
        margin: 30px 0 15px;
    }

    .info_bio {
        padding: 20px;
    }

    .link_bio .btn.btnAdv {
        font-size: 15px;
    }


    .box_glass {
        background: linear-gradient(221deg, #499dc5 0%, #181b8f 55%);
    }



}