2026-06-05 16:56:04 -06:00
|
|
|
<!doctype html>
|
2026-06-04 12:20:40 -06:00
|
|
|
<html>
|
2026-06-05 16:56:04 -06:00
|
|
|
<head>
|
|
|
|
|
<style>
|
|
|
|
|
.sec0 {
|
|
|
|
|
background-image: url(img/fondos/bg11.jpg);
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
background-size: cover;
|
|
|
|
|
background-position: center;
|
|
|
|
|
}
|
|
|
|
|
.bubble {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 136px;
|
|
|
|
|
background-image: linear-gradient(to bottom, #f9f9f9, #f5f5f5, #f1f1f1, #ededed, #e9e9e9);
|
|
|
|
|
border-top-left-radius: 25px;
|
|
|
|
|
border-top-right-radius: 25px;
|
|
|
|
|
border-bottom-right-radius: 25px;
|
|
|
|
|
}
|
|
|
|
|
.anim {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
2026-06-04 12:20:40 -06:00
|
|
|
<div class="section_charge bg w-100 h-100">
|
2026-06-05 16:56:04 -06:00
|
|
|
<div class="d-none">
|
|
|
|
|
<img src="img/fondos/bg11.jpg" alt="" />
|
|
|
|
|
<img src="img/sprites/marco_6.png" alt="" />
|
|
|
|
|
<img src="img/sprites/marco_7.png" alt="" />
|
|
|
|
|
<img src="img/sprites/ruben_5.png" alt="" />
|
|
|
|
|
<img src="img/sprites/ruben_6.png" alt="" />
|
|
|
|
|
</div>
|
|
|
|
|
<section id="sec0" class="sec0 w-100 h-100">
|
|
|
|
|
<div class="container h-100">
|
|
|
|
|
<div class="row justify-content-center h-100">
|
|
|
|
|
<div class="col-9 offset-2 mt-2 anim anim1">
|
|
|
|
|
<div class="bubble d-flex align-items-center shadow px-3 py-2">
|
|
|
|
|
<p class="m-0">
|
|
|
|
|
Ahora te compartiré algo nuevo Marcos. Recientemente en Mapfre hemos recibido el reporte de tres casos
|
|
|
|
|
en los que pueden aplicar las
|
|
|
|
|
<b>nuevas disposiciones de PLD/FT.</b>
|
|
|
|
|
Como sabes, parte de nuestras obligaciones es
|
|
|
|
|
<b>reportarlas a la SHCP</b>
|
|
|
|
|
, a través de la CNSF, ¿te gustaría escucharlos para que así puedas identificar a qué tipo de
|
|
|
|
|
operaciones pertenecen?
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-7 align-self-end anim anim2">
|
|
|
|
|
<div class="row justify-content-center">
|
|
|
|
|
<div class="col-4 align-self-end">
|
|
|
|
|
<div class="personaje_r_5 d-none"></div>
|
|
|
|
|
<div class="personaje_r_6"></div>
|
2026-06-04 12:20:40 -06:00
|
|
|
</div>
|
2026-06-05 16:56:04 -06:00
|
|
|
<div class="col-4">
|
|
|
|
|
<div class="personaje_m_6 d-none"></div>
|
|
|
|
|
<div class="personaje_m_7"></div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2026-06-04 12:20:40 -06:00
|
|
|
</div>
|
2026-06-05 16:56:04 -06:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
2026-06-04 12:20:40 -06:00
|
|
|
</div>
|
2026-06-05 16:56:04 -06:00
|
|
|
</body>
|
2026-06-04 12:20:40 -06:00
|
|
|
</html>
|
|
|
|
|
<script>
|
2026-06-05 16:56:04 -06:00
|
|
|
jQuery(document).ready(function ($) {
|
2026-06-04 12:20:40 -06:00
|
|
|
instruccion(0);
|
2026-06-05 16:56:04 -06:00
|
|
|
var Audio_12 = newSound('audio/Audio_12_Marcos.mp3');
|
|
|
|
|
var Audio_R11 = newSound('audio/Audio_11_Ruben.mp3');
|
|
|
|
|
var txt1 = 'Por supuesto. Cuéntame los casos y juntos los analizaremos.';
|
2026-06-04 12:20:40 -06:00
|
|
|
|
2026-06-05 16:56:04 -06:00
|
|
|
Audio_R11.on('end', function () {
|
|
|
|
|
stopAllSoundsAndPlay(Audio_12);
|
|
|
|
|
$('.bubble p').html(txt1);
|
|
|
|
|
$('.personaje_r_6').addClass('d-none');
|
|
|
|
|
$('.personaje_r_5').removeClass('d-none');
|
|
|
|
|
$('.personaje_m_7').addClass('d-none');
|
|
|
|
|
$('.personaje_m_6').removeClass('d-none').addClass('play');
|
2026-06-04 12:20:40 -06:00
|
|
|
});
|
2026-06-05 16:56:04 -06:00
|
|
|
Audio_12.on('end', function () {
|
|
|
|
|
fn_end();
|
|
|
|
|
$('.personaje_m_6').removeClass('play');
|
2026-06-04 12:20:40 -06:00
|
|
|
});
|
|
|
|
|
|
2026-06-05 16:56:04 -06:00
|
|
|
$('.layer-load').show();
|
2026-06-04 12:20:40 -06:00
|
|
|
$('.section_charge').waitForImages({
|
2026-06-05 16:56:04 -06:00
|
|
|
finished: function () {
|
|
|
|
|
$('.section_charge').css('visibility', 'visible');
|
|
|
|
|
$('.wloader').hide();
|
|
|
|
|
fn_animate();
|
|
|
|
|
},
|
|
|
|
|
each: function (loaded, count, success) {
|
|
|
|
|
var total = Math.floor((loaded * 100) / count);
|
|
|
|
|
$('.wloader').show();
|
|
|
|
|
},
|
|
|
|
|
waitForAll: true
|
2026-06-04 12:20:40 -06:00
|
|
|
});
|
|
|
|
|
|
2026-06-05 16:56:04 -06:00
|
|
|
function fn_animate() {
|
|
|
|
|
var tl = new TimelineMax();
|
|
|
|
|
tl.fromTo('.anim2', 1, { opacity: 0, x: -150 }, { opacity: 1, x: 0, ease: Expo.easeInOut });
|
|
|
|
|
tl.fromTo('.anim1', 0.7, { opacity: 0, y: -250 }, { opacity: 1, y: 0, ease: Expo.easeInOut });
|
|
|
|
|
tl.call(fn_firstAudio);
|
2026-06-04 12:20:40 -06:00
|
|
|
}
|
|
|
|
|
|
2026-06-05 16:56:04 -06:00
|
|
|
function fn_firstAudio() {
|
|
|
|
|
stopAllSoundsAndPlay(Audio_R11);
|
|
|
|
|
$('.personaje_r_6').addClass('play');
|
2026-06-04 12:20:40 -06:00
|
|
|
}
|
|
|
|
|
|
2026-06-05 16:56:04 -06:00
|
|
|
function fn_end() {
|
|
|
|
|
instruccion(1);
|
2026-06-04 12:20:40 -06:00
|
|
|
}
|
2026-06-05 16:56:04 -06:00
|
|
|
});
|
|
|
|
|
</script>
|