¿Por qué nos autosaboteamos con el dinero? Todos queremos tranquilidad financiera. Sin embargo, muchas veces, somos nosotras mismas quienes boicoteamos nuestro bienestar económico. Y lo hacemos sin darnos cuenta. El autosabotaje financiero aparece en pequeñas...
Stephen R. Covey, en su libro “Los 7 hábitos de las personas altamente efectivas”, nos trae un enfoque profundo y transformador sobre el liderazgo personal y profesional. Su propuesta no es una lista de consejos rápidos, sino un cambio de paradigma: pasar...
Mi camino entre cifras… y algo más profundo Desde que acabé mi Diplomatura de Empresariales en Cáceres, empecé a relacionarme con los números, trabajando en empresa, banca, incluso dando clases particulares. Luego vino mi etapa en las islas, donde pasé desde contable...
Usamos cookies en nuestro sitio web para brindarle la experiencia más relevante recordando sus preferencias y visitas repetidas. Al hacer clic en "Aceptar todo", acepta el uso de TODAS las cookies. Sin embargo, puede visitar "Configuración de cookies" para proporcionar un consentimiento controlado.
This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience.
Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously.
Cookie
Duración
Descripción
cookielawinfo-checkbox-analytics
11 months
This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics".
cookielawinfo-checkbox-functional
11 months
The cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional".
cookielawinfo-checkbox-necessary
11 months
This cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary".
cookielawinfo-checkbox-others
11 months
This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other.
cookielawinfo-checkbox-performance
11 months
This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance".
viewed_cookie_policy
11 months
The cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data.
Functional cookies help to perform certain functionalities like sharing the content of the website on social media platforms, collect feedbacks, and other third-party features.
Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.
Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics the number of visitors, bounce rate, traffic source, etc.
Advertisement cookies are used to provide visitors with relevant ads and marketing campaigns. These cookies track visitors across websites and collect information to provide customized ads.
document.addEventListener('DOMContentLoaded', function () {
// Crear overlay si no existe
var overlay = document.getElementById('popup-overlay');
if (!overlay) {
overlay = document.createElement('div');
overlay.id = 'popup-overlay';
document.body.appendChild(overlay);
}
// Popup por clase (por si hay duplicados móvil/escritorio)
var popup = document.querySelector('.popup-libreta');
var shown = false;
function openPopup() {
if (shown) return;
if (popup && overlay) {
popup.style.display = 'block';
overlay.style.display = 'block';
shown = true;
window.removeEventListener('scroll', onScroll);
}
}
function closePopup() {
if (popup && overlay) {
popup.style.display = 'none';
overlay.style.display = 'none';
}
}
// --- Disparador por scroll (compatible) ---
function getScrollTop() {
// fallback para distintos navegadores
return window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop || 0;
}
function onScroll() {
if (shown) return;
var scrolled = getScrollTop();
// Abre a los 600px o al pasar 35% de la página (lo que ocurra antes)
var pageH = Math.max(document.body.scrollHeight, document.documentElement.scrollHeight);
var viewportH = window.innerHeight || document.documentElement.clientHeight || 0;
var percent = (scrolled + viewportH) / pageH;
if (scrolled > 600 || percent > 0.35) {
openPopup();
}
}
window.addEventListener('scroll', onScroll);
// Plan B: si no hubo scroll, abre a los 10s
setTimeout(function () {
if (!shown) openPopup();
}, 10000);
// Cerrar clicando fuera
overlay.addEventListener('click', closePopup);
// Cerrar con botón "X" dentro del popup (class="close-popup")
document.addEventListener('click', function (e) {
if (e.target && e.target.classList && e.target.classList.contains('close-popup')) {
closePopup();
}
});
});