/*
Theme Name: Virtus academy
Author: Paulina Jara (Agencia Böll)
Author URI: https://www.boll.cl
Description: Plantilla desarrollada para proyecto web Virtus Academy. 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;
}

img {
    max-width: 100%;
}

body {
    background-color: #f9f9f9;
    font-family: 'Montserrat', 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: #212139;
    font-weight: 600;
    font-family: 'Sora', 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 **/

.btn.btnGilli {
    background-color: #1b1e60;
    padding: 10px 25px;
    color: #fff;
    border-radius: 50px;
    border: 0;
    text-transform: none;
    font-weight: 500;
    font-size: 14px;
    min-width: 150px;
    transition: background-color .4s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn.btnGilli:hover {
    background: transparent;
    background-color: #56BAA2;
    color: #fff;
}

.btn.btnGilli.btnAlt {
    background-color: #56BAA2;
    color: #fff;
}

.btn.btnGilli.btnAlt:hover {
    background-color: #1b1e60;
    color: #fff;
}


.cabecera_ppal .btn.btnGilli {
    padding: 10px 20px;
    font-size: 12px;
}

/* body:not(.home) .cabecera_ppal .btn.btnGilli {
    background-color: #fff;
    color: #212139;
} */

.btn.btnGilli.btnBlanco {
    background: #252525;
    color: #fff;
    font-weight: 700;
}

.btncats_home {
    padding-top: 15px;
}

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

.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: 'Manrope', 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 **/

/** 
 * Botón servicios **/
.primary-button {
    position: relative;
    border: 2px solid #1b1b1b;
    border-radius: 5px;
    width: 220px;
    height: 48px;
    overflow: hidden;
    background-color: transparent;
    text-transform: uppercase;
    color: #1b1b1b;
    font-size: 14px;
    font-family: "Rubik", sans-serif;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
}

.primary-button.btnAgenda {
    background-color: #1c1c1c;
    color: #fff;
}

.align_der_btn .primary-button {
    float: right;
}

.primary-button:hover {
    cursor: pointer;
    border: 2px solid #1b1b1b;
    color: #fff;
}

.primary-button.btnAgenda:hover {
    background-color: transparent;
    color: #1c1c1c;
}

.primary-button .round {
    border-radius: 5px;
    background-color: #1b1b1b;
    position: absolute;
    top: 5px;
    left: 10px;
    z-index: -1;
    animation: scale-down 0.2s forwards;
}

.primary-button.btnAgenda .round {
    background-color: #fff;
}

.primary-button.animate .round {
    animation: scale-up 0.5s forwards;
}

@keyframes scale-up {
    to {
        transform: scale(600);
    }
}

@keyframes scale-down {
    from {
        transform: scale(600);
    }

    to {
        ransform: scale(0);
    }
}

.flex_btns {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 1;
}


/** BODY **/

.boxes_home .elementor-image-box-wrapper {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
}

.boxes_home .elementor-image-box-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, #000000, transparent);
    padding: 20px 30px;
}

.productos_int  .woocommerce ul.products li.product a img {
    max-height:280px;
    object-fit:contain;
}


/* .box_glass_animado {
    position: relative;
    overflow: hidden;
}

.box_glass_animado .circulos {
    width: 50px;
    height: 50px;
    position: absolute;
    z-index: -1;
    filter: blur(18px);
}

.box_glass_animado .circulos.circ1 {
    background: #499dc5b8;
    bottom: -10px;
    left: -10px;
}

.box_glass_animado .circulos.circ2 {
    background: #499dc5b8;
    top: -20px;
    right: -20px;
} */

.iconos-cats .eael-elements-flip-box-front-container .eael-elements-flip-box-icon-image,
.iconos-cats .eael-elements-flip-box-rear-container .eael-elements-flip-box-icon-image {
    margin-bottom: 10px;
}

.iconos-cats.icon-almacenamiento .eael-elements-flip-box-padding {
    padding: 30px 15px;
}

.box_categorias .elementor-image-box-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 0 0 10px 10px;
    padding: 40px 20px 20px;
    background: linear-gradient(to top, #000, transparent);
}


.box_cats2 {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 13px rgba(0, 0, 0, .13);
}

.box_cats2 .elementor-image-box-content {
    padding: 20px;
    position: absolute;
    bottom: -65px;
    background: #fff;
    transition: all .3s ease-in-out;
}

.box_cats2:hover .elementor-image-box-content {
    bottom: 0px;
}

.box_cats2 .elementor-image-box-wrapper img {
    opacity: 1;
    transition: all .3s ease-in-out;
}

.box_cats2:hover .elementor-image-box-wrapper img {
    opacity: .5;
}

.box_cats2 .elementor-image-box-content a.btn.btnGilli {
    padding: 5px 20px;
    font-size: 11px;
    margin-top: 14px;
    display: table;
}

.cats_home .elementor-image-box-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 40px 40px 0px 20px;
    background: linear-gradient(to top, #111c, #111c, transparent);
    border-radius: 0 0 10px 10px;
    /* transform: translateY(0px); */
}

.ctas {
    display: flex;
    gap: 10px;
    align-items: center;
}

.cta_texto h3 {
    color: #fff;
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    letter-spacing: -1px;
    font-weight: 700;
    margin-bottom: 0;
}

.cta_texto h3 span {
    font-weight: 400;
}

.flex_btns {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn.btnAdv,
.btnAdv {
    /* 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: #212139;
    padding: 10px 25px;
    color: #fff;
    border-radius: 0;
    border: 0;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 13px;
    min-width: 150px;
    transition: all .4s ease;

}

.btn.btnAdv:hover {
    /* background: -webkit-linear-gradient(286deg, #808080, #808080);
    background: linear-gradient(286deg, #808080, #808080);
    background: -moz-linear-gradient(286deg, #808080, #808080); */
    background: #212139;
    color: #fff;
}

.btn.btnVerde,
.btn.btnOutlineVerde {
    background: #74bc1e;
    border: 0;
    color: #fff;
    padding: 10px 20px;
    min-width: 200px;
    transition: all .4s ease;
}

.btnVerde:hover {
    color: #fff;
    background: #fd8204;
}

.btn.btnOutlineVerde {
    background: transparent;
    box-shadow: inset 0 0 0 2px #74bc1e;
}

.btn.btnOutlineVerde:hover {
    background: #74bc1e;
    color: #fff;
}

/** HEADER ***/
.topbar {
    background-color: #212139;
    padding: 10px;
}

.cabecera_ppal {
    position: fixed;
    /*sticky*/
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    padding: 3px 0;
    transition: all .3s ease;
    padding-top: 10px;
}

/* body.home .cabecera_ppal {
    background-color: #fff;
} */

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

.logo_ppal {
    width: 160px;
    transition: width .3s ease;
    padding: 7px;
    /* filter: hue-rotate(359deg) brightness(1000); */
}

/* body:not(.home) .logo_ppal {
    filter: hue-rotate(359deg) brightness(1000);
} */

.menu_principal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
}

.menu_principal ul {
    display: flex;
    list-style: none;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 13px;
    margin: 5px 0;
}

/* .menu_principal ul {
    margin-top: 8px !important;
} */


.menu_principal .menu-principal-container {
    width: 100%;
}

/* body:not(.home) .menu_principal .menu li a {
    color:#fff;
} */

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

/** SUBMENU **/
.menu-item-has-children {
    position: relative;
    display: flex;
    align-items: center;
}

.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: 'Manrope', sans-serif;
    text-decoration: none;
}

.rrss_head.rrss_movil {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.rrss_head.rrss_movil a {
  background-color: #ffffff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.rrss_head.rrss_movil a i {
  font-size: 20px;
  color: #212139; /* azul oscuro */
  line-height: 1;
}

.rrss_head.rrss_movil a:hover {
  background-color: #5DC2A7; /* verde menta */
  transform: translateY(-2px);
}

.rrss_head.rrss_movil a:hover i {
  color: #fff;
}




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

.htmega_mega_menu,
.htmega-megamenu,
.desktop_head>.container>.row>.col-sm {
    max-width: 100%;
    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: 75px !important;
}

/** on scroll **/
.cabecera_ppal.scrolling,
.cabecera_ppal.mm_activo {
    /* position: fixed; */
    top: 0;
    background: #191919;
}

.scrolling .logo_ppal,
.mm_activo .logo_ppal {
    /* width: 30%; */
    /* width: 100px; */
    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: #252525;
}

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

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

.scrolling .rrss_head a.link_login:hover {
    color: #252525;
    background: #2525251f;
}

/** fin on scroll **/

/*** BODY ***/

/* VVV Everything you need VVV */
.scroll-down {
    position: relative;
}

/* #scroll-down-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  } */

#scroll-down-animation h2 {
    color: #fff;
    font-family: 'Roboto', 'Arial', sans-serif;
    font-weight: 200;
    font-size: 14px;
}

.mouse {
    margin: 0 auto 5px;
    display: block;
    border-radius: 50px;
    border: 2px solid #fff;
    height: 60px;
    width: 30px;
    position: relative;
    cursor: pointer;
}

.move {
    position: absolute;
    background-color: #fff;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    animation: move 2s linear infinite;
}

@keyframes move {
    0% {
        transform: translate(-50%, 5px);
        opacity: 0;
    }

    50% {
        transform: translate(-50%, 20px);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 40px);
        opacity: 0;
    }
}

.iconos_home img {
    filter: contrast(1) brightness(1500);
}

/* .iconos_home .elementor-image-box-title {
    background: -webkit-linear-gradient(132deg, #a9a9a9, #d3d3d3, #e9e9e9, #fff, #e9e9e9, #d3d3d3, #a9a9a9);
    background: linear-gradient(132deg, #a9a9a9, #d3d3d3, #e9e9e9, #fff, #e9e9e9, #d3d3d3, #a9a9a9);
    background: -moz-linear-gradient(132deg, #a9a9a9, #d3d3d3, #e9e9e9, #fff, #e9e9e9, #d3d3d3, #a9a9a9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
} */




/* =================================================================
====================Página interna====================
============================================================== */

.wrap {
    position: relative;
    background: #fff;
}

.tit_interior {
    color: #064492;
    font-family: 'Helvetica', sans-serif;
    font-weight: 700;
}











/** form **/

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

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

.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;
    border: 1px solid #eaeaea;
    background: #ededf0;
}

.flex_box label {
    color: #252525;
    text-transform: none;
    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: 10px;
}

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

.content_form .form-control.form-control-lg {
    border-radius: 4px;
    background: #2121390f;
    border: none;
    box-shadow: none;
    font-family: 'Manrope', sans-serif;
}

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

.content_form .form-control::placeholder {
    color: #2121395c;
}

.content_form textarea {
    min-height: 111px;
}

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

.contenedor_form_footer {
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
}

.contenedor_form_footer .cards_form {
    grid-template-columns: repeat(2, minmax(250px, 1fr));
}

/** fin form **/



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

body.blog .cabecera_ppal {
    background: #161616;
    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; */
}


/** 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: 'Montserrat', 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: 'Montserrat', 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: 'Montserrat', 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: 'Montserrat', sans-serif;
}

.wp-block-latest-posts__post-date,
.box_content_blog .fecha_post {
    color: #D2D314;
    font-family: 'Montserrat', 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: #fff;
}

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 {
    filter: brightness(0);
    width: 80px;
}

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

.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: 'Montserrat', 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: 'Montserrat', 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: 15px;
}

#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: 15px 0 0 15px;
}

.bg_modal_form {
    background: url('https://gohost.cl/virtusacademy/wp-content/uploads/2025/10/rsw_984h_911-1.png') no-repeat center center;
    background-size: cover;
    overflow: hidden;
    border-radius: 0 7px 7px 0;
}

.content_modal_form {
    padding: 20px;
}

.content_modal_form h4 {
    margin-bottom: 20px;
}

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

.btn_flotante {
    display: flex;
    position: fixed;
    top: 45%;
    right: 0;
    z-index: 99;
    align-items: stretch;
    max-width: 250px;
    text-decoration: none;
    color: #111;
    transform: translateX(65%);
    transition: transform .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 7px #0000001a;
    border: 1px solid #f9f9fc;
    border-radius: 5px 0 0 5px;
}

.btn_flotante:hover {
    text-decoration: none;
    transform: translateX(0%);
    color: #111;
}

.img_boton {
    width: 35%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: 5px 0 0 5px;
    padding: 10px;
}

.img_boton img {
    width: 50px;
}

.img_boton p {
    margin: 0;
    font-size: 9px;
    font-weight: 500;
    font-family: 'Sora', sans-serif;
}

.info_hablemos {
    width: 65%;
    background: #fff;
    border-left: 1px solid #eaeaea;
    padding: 10px;
    display: flex;
    align-items: center;
}

.info_hablemos h5 {
    font-size: 14px;
    font-family: 'Sora', sans-serif;
    margin: 0;
}

.info_hablemos h5 span {
    display: block;
    font-size: 9px;
    font-weight: 400;
}

body.page-id-1648 .btn_flotante {
    display: none;
}


/** BUSCADOR HOME **/
.woocommerce-filtro-busqueda {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #d21b18;
    /* Fondo rojo */
    border-radius: 5px;
    width: 90%;
    padding: 20px;
    max-width: 900px;
    margin: 10px auto 35px;
}

.woocommerce-filtro-busqueda form {
    display: flex;
    justify-content: space-around;
    width: 100%;
    gap: 25px;
}

.filtro {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.box_input {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.filtro label {
    font-size: 14px;
    font-weight: bold;
    color: white;
    margin-bottom: 5px;
}

.filtro select,
.filtro input {
    padding: 5px;
    border: none;
    border-radius: 3px;
    width: 105px;
    background: #d21b18;
    color: #fff;
    font-size: 12px;
}

.filtro button {
    background: #fff;
    border: none;
    padding: 8px;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.filtro button img {
    width: 30px;
    height: 30px;
}

.filtro button::before {
    content: '';
    width: 30px;
    height: 30px;
    position: absolute;
    clip-path: polygon(20% 50%, 100% 0%, 100% 100%);
    background: #fff;
    top: 50%;
    left: -18px;
    transform: translateY(-50%);
    border-radius: 2px;
    z-index: -1;
}


/****************************************************************
**** FOOTER ********************************
**************************************************************** */
/* Tipografía base */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap');

.footer-virtus {
  background:#191919; color:#fff; font-family:'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.footer-virtus .container {
  max-width:1200px; margin:0 auto; padding:0 20px;
}

/* Top bar */
.footer-top {
  display:grid;
  grid-template-columns: auto 1fr auto;
  align-items:center;
  gap:24px;
  padding:28px 0 18px;
}
.footer-logo img{ height:34px; width:auto; display:block; }

.footer-menu { display:flex; gap:22px; flex-wrap:wrap; list-style:none; margin:0; padding:0; }
.footer-menu a { color:#fff; text-decoration:none; font-weight:500; font-size:14px; }
.footer-menu a:hover, .footer-menu .current-menu-item > a { text-decoration:underline; }

.footer-social { display:flex; gap:14px; }
.social-link {
  display:inline-flex; align-items:center; justify-content:center;
  width:34px; height:34px; border:1px solid rgba(255,255,255,.25); border-radius:6px;
  color:#fff; text-decoration:none;
}
.social-link:hover { border-color:#fff; }

/* Divider */
.footer-divider { border:0; border-top:1px solid rgba(255,255,255,.12); margin:10px 0 18px; }

/* Mid info row */
.footer-info {
  display:grid; gap:10px; padding-bottom:24px;
  grid-template-columns: 1fr; /* mobile default */
  font-size:13px;
}
.info-item { display:flex; align-items:center; gap:10px; }
.info-ico { font-size:14px; line-height:1; opacity:.9; }
.footer-info a { color:#fff; text-decoration:none; }
.footer-info a:hover { text-decoration:underline; }

/* Bottom copy */
.footer-copy { background:#191919; border-top:1px solid rgba(255,255,255,.12); }
.footer-copy-inner {
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:16px 0 22px;
}
.footer-copy p { margin:0; color:#cfcfcf; font-size:12.5px; }
.footer-copy .copy-agencia { color:#fff; font-weight:600; text-decoration:none; }
.footer-copy .copy-agencia:hover { text-decoration:underline; }

/* Responsive */
@media (min-width:700px){
  .footer-info{
    grid-template-columns: 1fr 1fr 2fr;
  }
}
@media (max-width:699px){
  .footer-top{ grid-template-columns: 1fr; gap:14px; }
  .footer-social{ order:3; }
  .footer-nav{ order:2; }
  .footer-brand{ order:1; }
  .footer-copy-inner{ flex-direction:column; align-items:flex-start; }
}


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

.blend-mode img {
    mix-blend-mode: darken;
}

.flecha_mov {
    display: none;
}

.mobile_head {
    display: none;
}




@media (max-width:1000px) {

    .desktop_head {
        display: none;
    }

    .mobile_head {
        display: block;
    }

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

    /** 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: #191919 !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,
    body.page-template-page-servicios .scrolling .hamburger-inner,
    body.page-template-page-servicios .scrolling .hamburger-inner:after,
    body.page-template-page-servicios .scrolling .hamburger-inner:before {
        background-color: #1c1c1c !important;
    }
	


/* ---------- CONTENEDOR OFFCANVAS ---------- */
.offcanvas.offcanvas-end.show {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  background-color: #fff;
  z-index: 1055;
  display: flex;
  flex-direction: column;
  font-family: 'Montserrat', sans-serif;
  color: #1B1E60;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

/* ---------- HEADER DEL MENÚ ---------- */
.offcanvas-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
}

.offcanvas-header h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1B1E60;
  margin: 0;
}

.offcanvas-header .btn-close {
  filter: invert(15%);
}

/* ---------- BODY CON SCROLL ---------- */
.offcanvas-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
}

/* ---------- MENÚ PRINCIPAL ---------- */
.menu_movil {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.menu_movil li a {
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  color: #1B1E60;
  padding: 0.75rem 0;
  display: block;
  border-bottom: 1px solid #eee;
  transition: color 0.2s ease;
}
	
	.menu_movil li a {
  display: block;
  width: 100%; /* Esto asegura que el borde se extienda completamente */
  box-sizing: border-box; /* Asegura que el padding no desborde el ancho */
}


.menu_movil li a:hover {
  color: #56BAA2;
}

/* ---------- BOTONES ---------- */
.btnes_head {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btnes_head .btn {
  background-color: #56BAA2;
  color: #fff;
  font-weight: 600;
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.btnes_head .btn:hover {
  background-color: #1B1E60;
}

/* ---------- REDES SOCIALES ---------- */
.rrss_head a {
  display: inline-block;
  color: #56BAA2;
  font-size: 1.25rem;
  margin-right: 10px;
  transition: color 0.3s ease;
}

.rrss_head a:hover {
  color: #1B1E60;
}

/* ---------- COPYRIGHT MOVIL ---------- */
.copy_movil {
  margin-top: auto;
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: #888;
  text-align: center;
}

/* ---------- BACKDROP (opcional) ---------- */
.offcanvas-backdrop.show {
  background-color: rgba(0, 0, 0, 0.5);
}

    .btnes_head {
        justify-content: center;
    }

    .menuitem {
        padding: 10px 0;
    }

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

    /** Body **/

    .box_cats2 .elementor-image-box-content {
        bottom: 0;
        position: relative;
    }

    .box_cats2 .elementor-image-box-description {
        display: none;
    }



    .cats_home_movil .elementor-image-box-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
        border-radius: 5px;
        background-color: #F9F9FC;
        gap: 20px;
        border: 1px solid #eaeaea;
    }

    .cats_farma_movil .elementor-image-box-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
        gap: 20px;
    }

    .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 **/
    footer {
        padding-top: 20px;
    }

    .prefooter {
        margin-top: 0px;
    }

    .tits_cds_foot {
        color: #fff;
        font-size: 20px;
        line-height: 23px;
    }

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

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

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

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

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

    .box_foot.order3 {
        width: 50%;
        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%);
    }

    .flecha_mov {
        display: flex;
        top: -200px;
        position: absolute;
        right: 10px;
    }

    .box_cats2 .elementor-image-box-content .flecha_mov a.btn.btnGilli {
        min-width: auto;
        width: 40px;
        height: 40px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contenedor_form_footer {
        width: 100%;
    }

    .contenedor_form_footer .cards_form {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }



}

/* ======== HEADER (limpio) ======== */

/* Estado base sobre hero: fondo transparente, textos blancos */
.cabecera_ppal{
  position:fixed; top:0; left:0; right:0; z-index:9999;
  background:transparent;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
  padding: 10px 0;
}
.cabecera_ppal .logo { display:flex; align-items:center; }
.cabecera_ppal .logo_ppal { width:160px; padding:7px; display:block; }

.menu_principal{ display:flex; justify-content:center; align-items:center; }
.menu_principal ul{ display:flex; gap:20px; margin:5px 0; padding:0; list-style:none; }
.menu_principal ul li a{
  font:500 13px/1 'Montserrat', sans-serif;
  color:#fff; text-decoration:none; padding:20px 0; display:flex; align-items:center;
}

/* Contenedor: botón a la derecha */
.cabecera_ppal .btnes_head{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:10px;
}

/* Botón: tamaño normal */
.cabecera_ppal .btn.btnGilli{
  background:#2f47d7;          /* azul sólido similar a la imagen */
  color:#fff;
  border:0;
  border-radius:6px;           /* pill suave */
  padding:10px 14px;            /* alto/ancho normales */
  font:500 14px 'Montserrat', sans-serif; /* texto blanco y grueso */
  letter-spacing:.2px;
  box-shadow:none;              /* sin glow */
  text-decoration:none;
}

/* Hover sutil */
.cabecera_ppal .btn.btnGilli:hover{
  background:#2840cc;
}

/* Opcional: móvil un pelín más compacto */
@media (max-width: 480px){
  .cabecera_ppal .btn.btnGilli{
    padding:12px 18px;
    font-size:14px;
    border-radius:6px;
  }
}

/* Scroll: fondo blanco, textos oscuros */
.cabecera_ppal.scrolling{
  background:#191919; box-shadow:0 8px 24px rgba(0,0,0,.06);
}
.cabecera_ppal.scrolling .menu_principal ul li a{ color:#fff; }

/* Submenú compacto */
.menu-item-has-children{ position:relative; display:flex; align-items:center; }
.menu-item-has-children>.sub-menu{
  display:none; position:absolute; top:100%; left:0; min-width:240px;
  background:#191919; border-radius:10px; padding:10px; list-style:none; box-shadow:0 10px 26px rgba(0,0,0,.08); z-index:20;
}
.menu-item-has-children:hover>.sub-menu{ display:block; }
.menu-item-has-children .sub-menu>li{ margin:0; border-bottom:1px solid #eaeaea29; }
.menu-item-has-children .sub-menu>li>a{
  display:block; padding:10px 12px; color:#fff; font:500 14px/1.2 'Montserrat',sans-serif; position:relative; text-decoration:none;
}
.menu-item-has-children .sub-menu>li>a::after{
  content:''; position:absolute; left:12px; right:12px; bottom:6px; height:2px; width:0; background:#212139; transition:width .25s ease;
}
.menu-item-has-children .sub-menu>li>a:hover::after{ width:calc(100% - 24px); }

/* ===== Responsive ===== */
@media (max-width:1000px){
  .desktop_head{ display:none; }
  .mobile_head{ display:block; }
  .cabecera_ppal .mobile_head .logo .logo_ppal{ width:150px; }
  .cabecera_ppal .btnes_head{ justify-content:center; } /* cambia alineación en móvil */
  .rrss_head.rrss_movil{
    display:flex; justify-content:center; gap:16px; margin-top:20px;
  }
  .rrss_head.rrss_movil a{
    background:#fff; width:48px; height:48px; border-radius:50%;
    display:flex; align-items:center; justify-content:center; box-shadow:0 2px 6px rgba(0,0,0,.05);
  }
}

/* Logo base */
.logo .logo-color { display: none; }
.logo .logo-blanco { display: block; }

/* Cuando el header tiene scroll, se cambia */
.cabecera_ppal.scrolling .logo .logo-blanco { display: none; }
.cabecera_ppal.scrolling .logo .logo-color  { display: block; }

/* Tamaños y transición */
.logo_ppal {
  width: 160px;
  transition: width .25s ease;
}
.cabecera_ppal.scrolling .logo_ppal {
  width: 140px; /* opcional: más compacto al hacer scroll */
}

/* —— Ajustes generales de enlaces en el footer —— */
.footer-virtus .footer-copy,
.footer-virtus .footer-copy .container,
.footer-virtus .footer-copy-inner{
  padding-top: 44px !important;
  padding-bottom: 44px !important;
  line-height: 1.7 !important;
}

/* separa mejor el bloque superior del copy */
.footer-virtus .footer-info{
  padding-bottom: 36px !important;
}
.footer-virtus .footer-divider{
  margin: 18px 0 30px !important;
}

/* “Agencia Böll” destacado */
.footer-virtus .footer-copy p{
  margin: 0 !important;
  color: #cfcfcf !important;
  font-size: 13.5px !important;
}
.footer-virtus .footer-copy a.copy-agencia{
  color: #fff !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}
.footer-virtus .footer-copy a.copy-agencia:hover{
  text-decoration: underline !important;
}

/* por si el contenedor del tema “aplasta” padding */
.footer-virtus .footer-copy .container{
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 20px !important;
  flex-wrap: wrap !important;
}

/* móvil: también con aire */
@media (max-width: 699px){
  .footer-virtus .footer-copy .container{
    align-items: flex-start !important;
  }
  .footer-virtus .footer-copy,
  .footer-virtus .footer-copy .container,
  .footer-virtus .footer-copy-inner{
    padding-top: 36px !important;
    padding-bottom: 40px !important;
  }
}

        .virtus-form { width: 100%; }
        .virtus-form__feedback { margin: 0 0 16px; padding: 12px 14px; border-radius: 10px; font-size: 14px; }
        .virtus-form__feedback--ok { background: rgba(34,197,94,.12); border: 1px solid rgba(34,197,94,.35); }
        .virtus-form__feedback--error { background: rgba(239,68,68,.10); border: 1px solid rgba(239,68,68,.30); }

        .virtus-form__form { background: transparent; }
        .virtus-form__grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 16px;
        }
        .virtus-form__field--full { grid-column: 1 / -1; }

        .virtus-form__field label {
			color: #fff;
            display:block;
            margin: 0 0 8px;
            font-size: 13px;
            opacity: .9;
        }
        .virtus-form input,
        .virtus-form select,
        .virtus-form textarea {
            width: 100%;
            background: rgba(255,255,255,.04);
            border: 1px solid rgba(255,255,255,.12);
            color: #fff;
            padding: 12px 14px;
            border-radius: 12px;
            outline: none;
        }
        .virtus-form input::placeholder,
        .virtus-form textarea::placeholder { color: rgba(255,255,255,.45); }

        .virtus-form__phone {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .virtus-form__phone-prefix {
            padding: 12px 12px;
            border-radius: 12px;
            background: rgba(255,255,255,.06);
            border: 1px solid rgba(255,255,255,.12);
            color: rgba(255,255,255,.85);
            white-space: nowrap;
        }

        .virtus-form__actions { margin-top: 16px; display:flex; justify-content:center; }
        .virtus-form__btn {
            background: #2f5bff;
            border: 0;
            color: #fff;
            padding: 12px 28px;
            border-radius: 12px;
            cursor: pointer;
            font-weight: 600;
        }
        .virtus-form__btn:hover { filter: brightness(1.05); }

        @media (max-width: 720px) {
            .virtus-form__grid { grid-template-columns: 1fr; }
        }

/* FIX selects en dark mode */
.virtus-form select {
  background-color: rgba(255,255,255,.04);
  color: #ffffff;
}

/* Opciones del select */
.virtus-form select option {
  background-color: #1e1e1e; /* fondo oscuro */
  color: #ffffff;            /* texto visible */
}

/* Opción seleccionada */
.virtus-form select option:checked {
  background-color: #2f5bff;
  color: #ffffff;
}

/* 1) que el LI sea el ancla del dropdown */
.menu_principal li.menu-item-has-children{
  position: relative;
}

/* 2) abrir por hover/focus */
.menu_principal li.menu-item-has-children:hover > .sub-menu,
.menu_principal li.menu-item-has-children:focus-within > .sub-menu{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* 3) dropdown estable (NO display:none) */
.menu_principal li.menu-item-has-children > .sub-menu{
  position: absolute;
  top: calc(100% + 8px);   /* separación controlada */
  left: 0;
  min-width: 240px;
  background: #191919;
  border-radius: 10px;
  padding: 10px;
  list-style: none;
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
  z-index: 999999;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
}

/* 4) puente invisible para que NO se cierre al bajar el mouse */
.menu_principal li.menu-item-has-children::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:100%;
  height: 16px;
}

/* 5) MUY común: el header recorta el dropdown */
.menu_principal, 
.menu_principal *{
  overflow: visible;
}

/* asegura el contexto y que el overlay se dibuje encima */
.ocultar-yt,
.ocultar-yt .elementor-wrapper,
.ocultar-yt .elementor-video,
.ocultar-yt .elementor-fit-aspect-ratio {
  position: relative !important;
}

/* el iframe abajo */
.ocultar-yt iframe {
  position: relative !important;
  z-index: 1 !important;
}

/* capa que tapa el titulo/canal */
.ocultar-yt .elementor-wrapper::before,
.ocultar-yt .elementor-video::before,
.ocultar-yt::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 50px;        /* ajusta 60-120 */
  background: #161616;    /* pon el color real del fondo */
  z-index: 999999 !important;
  pointer-events: none;
}


/* RESET CF7 para que no meta espacios */
.virtus-form .wpcf7-form,
.virtus-form form { margin: 0; }

.virtus-form .wpcf7-form p { margin: 0 !important; padding: 0 !important; }
.virtus-form .wpcf7-form br { display: none !important; }
.virtus-form .wpcf7-form-control-wrap { display:block; width:100%; }

/* GRID compacto */
.virtus-form__grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;  /* más apretado */
}
.virtus-form__field--full{ grid-column: 1 / -1; }

/* Label compacto */
.virtus-form__label{
  display:block;
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.92);
}

/* Inputs compactos */
.virtus-form input,
.virtus-form select,
.virtus-form textarea{
  width:100% !important;
  box-sizing:border-box !important;
  display:block !important;

  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  color:#fff;

  padding: 10px 12px;      /* más compacto */
  border-radius: 12px;
  outline:none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

/* Alturas como tu mock */
.virtus-form input,
.virtus-form select{
  height: 42px;            /* más bajo */
}

/* Textarea compacta */
.virtus-form textarea{
  min-height: 140px;
  resize: none;            /* como tu captura */
  padding-top: 14px;
}

/* Placeholder */
.virtus-form input::placeholder,
.virtus-form textarea::placeholder{
  color: rgba(255,255,255,.45);
}

/* Focus */
.virtus-form input:focus,
.virtus-form select:focus,
.virtus-form textarea:focus{
  border-color: rgba(47,91,255,.70);
  box-shadow: 0 0 0 4px rgba(47,91,255,.14);
  background: rgba(255,255,255,.05);
}

/* TELÉFONO compacto (igual a tu HTML) */
.virtus-form__phone{
  display:flex;
  align-items:center;
  gap: 10px;
}

/* Prefijo como input chico */
.virtus-form__phone input.virtus-form__phone-prefix{
  width: 46px !important;
  min-width: 46px !important;
  height: 42px !important;
  padding: 10px 0 !important;
  text-align:center;
  font-weight: 700;
  background: rgba(255,255,255,.06);
}

/* Input tel ocupa todo */
.virtus-form__phone .wpcf7-form-control-wrap{
  flex: 1;
}
.virtus-form__phone input[type="tel"]{
  height: 42px !important;
}

/* Select dark */
.virtus-form select{ background-color: rgba(255,255,255,.04); color:#fff; }
.virtus-form select option{ background:#1b1b1b; color:#fff; }

/* Botón */
.virtus-form__actions{
  margin-top: 10px;
  display:flex;
  justify-content:center;
}

.virtus-form__btn,
.virtus-form input[type="submit"]{
  background:#2f5bff !important;
  border:0 !important;
  color:#fff !important;
  padding: 10px 26px !important;
  border-radius: 12px !important;
  cursor:pointer;
  font-weight: 600;
  height: 44px !important;
  min-width: 140px;
}
.virtus-form__btn:hover{ filter: brightness(1.08); }

/* Responsive */
@media (max-width: 720px){
  .virtus-form__grid{ grid-template-columns: 1fr; }
}

.virtus-form__phone-prefix{
  width: 46px;
  height: 42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
  font-weight: 700;
}

/* Teléfono + input en la misma línea SI O SI */
.virtus-form__phone{
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.virtus-form__phone-prefix{
  width: 46px;
  height: 42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
  font-weight: 700;
  flex: 0 0 46px;
}

/* El wrap de CF7 debe estirarse */
.virtus-form__phone .wpcf7-form-control-wrap{
  flex: 1 !important;
  width: 100% !important;
  display: block !important;
}

/* El input debe ocupar todo el ancho */
.virtus-form__phone input[type="tel"]{
  width: 100% !important;
  height: 42px !important;
}

.footer-social{
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer-social .social-link{
  color: rgba(255,255,255,.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 10px;
  background: transparent;
  border: 0;
  opacity: .9;
  transition: opacity .2s ease, transform .2s ease, color .2s ease;
}

.footer-social .social-link:hover{
  opacity: 1;
  transform: translateY(-1px);
  color: #fff;
}

.footer-social svg{
  display:block;
}

.footer-social .social-link{
  color: rgba(255,255,255,.9);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 6px;
}

.footer-social .social-link:hover{
  color:#fff;
  transform: translateY(-1px);
}

.footer-social svg{
  display:block;
}
