/** * Flash functions and definitions. * * @link https://developer.wordpress.org/themes/basics/theme-functions/ * * @package Flash */ if ( ! function_exists( 'flash_setup' ) ) : /** * Sets up theme defaults and registers support for various WordPress features. * * Note that this function is hooked into the after_setup_theme hook, which * runs before the init hook. The init hook is too late for some features, such * as indicating support for post thumbnails. */ function flash_setup() { /* * Make theme available for translation. * Translations can be filed in the /languages/ directory. * If you're building a theme based on Flash, use a find and replace * to change 'flash' to the name of your theme in all the template files. */ load_theme_textdomain( 'flash', get_template_directory() . '/languages' ); // Add default posts and comments RSS feed links to head. add_theme_support( 'automatic-feed-links' ); /* * Let WordPress manage the document title. * By adding theme support, we declare that this theme does not use a * hard-coded tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); /* * Enable support for Post Thumbnails on posts and pages. * * @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/ */ add_theme_support( 'post-thumbnails' ); /** * Image size */ add_image_size( 'flash-square', '300', '300', true ); add_image_size( 'flash-big', '800', '400', true ); add_image_size( 'flash-grid', '370', '270', true ); /** * Enable support for site Logo */ add_theme_support( 'custom-logo' ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => esc_html__( 'Primary', 'flash' ), 'social' => esc_html__( 'Social', 'flash' ), 'footer' => esc_html__( 'Footer', 'flash' ), ) ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', ) ); /** * Enable support for woocommerce and woocommerce 3.0 product gallery */ add_theme_support( 'woocommerce' ); add_theme_support( 'wc-product-gallery-zoom' ); add_theme_support( 'wc-product-gallery-lightbox' ); add_theme_support( 'wc-product-gallery-slider' ); /** * Enable support for SiteOrigin Page Builder */ add_theme_support( 'siteorigin-panels', array( 'margin-bottom' => 0, 'recommended-widgets' => false, ) ); /** * Enable Support for selective refresh widgets in Customizer */ add_theme_support( 'customize-selective-refresh-widgets' ); // Gutenberg layout support. add_theme_support( 'align-wide' ); // Add support for Block Styles. add_theme_support( 'wp-block-styles' ); // Responsive embeds support. add_theme_support( 'responsive-embeds' ); } endif; add_action( 'after_setup_theme', 'flash_setup' ); /** * Enqueue block editor styles. * * @since Flash 1.3.5 */ function flash_block_editor_styles() { wp_enqueue_style( 'flash-editor-googlefonts', '//fonts.googleapis.com/css?family=Montserrat:400,700&display=swap' ); wp_enqueue_style( 'flash-block-editor-styles', get_template_directory_uri() . '/style-editor-block.css' ); } add_action( 'enqueue_block_editor_assets', 'flash_block_editor_styles', 1, 1 ); // Theme version. $flash_theme = wp_get_theme(); define( 'FLASH_THEME_VERSION', $flash_theme->get( 'Version' ) ); if ( ! function_exists( 'flash_content_width' ) ) : /** * Set the content width in pixels, based on the theme's design and stylesheet. * * @global int $content_width **/ function flash_content_width() { $content_width = 780; $classes = flash_get_layout(); if ( $classes == 'full-width' ) { $content_width = 1200; } $GLOBALS['content_width'] = apply_filters( 'flash_content_width', $content_width ); } add_action( 'after_setup_theme', 'flash_content_width', 0 ); endif; /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function flash_widgets_init() { // Right Sidebar register_sidebar( array( 'name' => esc_html__( 'Right Sidebar', 'flash' ), 'id' => 'flash_right_sidebar', 'description' => esc_html__( 'Add widgets here for right sidebar.', 'flash' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); // Left Sidebar register_sidebar( array( 'name' => esc_html__( 'Left Sidebar', 'flash' ), 'id' => 'flash_left_sidebar', 'description' => esc_html__( 'Add widgets here for left sidebar.', 'flash' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); // Footer 1 register_sidebar( array( 'name' => esc_html__( 'Footer Sidebar 1', 'flash' ), 'id' => 'flash_footer_sidebar1', 'description' => esc_html__( 'Add widgets here for footer sidebar 1.', 'flash' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); // Footer 2 register_sidebar( array( 'name' => esc_html__( 'Footer Sidebar 2', 'flash' ), 'id' => 'flash_footer_sidebar2', 'description' => esc_html__( 'Add widgets here for footer sidebar 2.', 'flash' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); // Footer 3 register_sidebar( array( 'name' => esc_html__( 'Footer Sidebar 3', 'flash' ), 'id' => 'flash_footer_sidebar3', 'description' => esc_html__( 'Add widgets here for footer sidebar 3.', 'flash' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); // Footer 4 register_sidebar( array( 'name' => esc_html__( 'Footer Sidebar 4', 'flash' ), 'id' => 'flash_footer_sidebar4', 'description' => esc_html__( 'Add widgets here for footer sidebar 4.', 'flash' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); } add_action( 'widgets_init', 'flash_widgets_init' ); /** * Enqueue scripts and styles. */ function flash_scripts() { $suffix = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; // Font Awesome 6.7.1. $font_awesome_styles = array( array( 'handle' => 'font-awesome-4', 'file' => '/v4-shims', 'version' => '4.7.0', ), array( 'handle' => 'font-awesome-all', 'file' => '/all', 'version' => '6.7.2', ), array( 'handle' => 'font-awesome-solid', 'file' => '/solid', 'version' => '6.7.2', ), array( 'handle' => 'font-awesome-regular', 'file' => '/regular', 'version' => '6.7.2', ), array( 'handle' => 'font-awesome-brands', 'file' => '/brands', 'version' => '6.7.2', ), ); foreach ( $font_awesome_styles as $style ) { wp_register_style( $style['handle'], get_template_directory_uri() . '/css' . $style['file'] . $suffix . '.css', false, $style['version'] ); wp_enqueue_style( $style['handle'] ); } // Font Awesome // wp_enqueue_style( 'font-awesome', get_template_directory_uri() . '/css/font-awesome' . $suffix . '.css', array(), false, false ); // Swiper CSS wp_register_style( 'swiper', get_template_directory_uri() . '/css/swiper' . $suffix . '.css', array(), false, false ); wp_enqueue_style( 'flash-style', get_stylesheet_uri() ); wp_style_add_data( 'flash-style', 'rtl', 'replace' ); // Responsive wp_enqueue_style( 'responsive', get_template_directory_uri() . '/css/responsive' . $suffix . '.css', array(), false, false ); wp_style_add_data( 'responsive', 'rtl', 'replace' ); wp_register_script( 'swiper', get_template_directory_uri() . '/js/swiper' . $suffix . '.js', array( 'jquery' ), '', true ); if ( get_theme_mod( 'flash_sticky_header', '' ) == '1' ) { wp_enqueue_script( 'sticky', get_template_directory_uri() . '/js/jquery.sticky' . $suffix . '.js', array( 'jquery' ), '', true ); } wp_register_script( 'isotope', get_template_directory_uri() . '/js/isotope.pkgd' . $suffix . '.js', array( 'jquery' ), '', true ); wp_register_script( 'waypoints', get_template_directory_uri() . '/js/waypoints' . $suffix . '.js', array( 'jquery' ), '', true ); wp_register_script( 'counterup', get_template_directory_uri() . '/js/jquery.counterup' . $suffix . '.js', array( 'jquery' ), '', true ); wp_enqueue_script( 'nav', get_template_directory_uri() . '/js/jquery.nav' . $suffix . '.js', array( 'jquery' ), '', true ); wp_enqueue_script( 'flash-custom', get_template_directory_uri() . '/js/flash' . $suffix . '.js', array( 'jquery' ), '', true ); wp_enqueue_script( 'flash-navigation', get_template_directory_uri() . '/js/navigation' . $suffix . '.js', array( 'jquery' ), '', true ); wp_enqueue_script( 'flash-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), '20151215', true ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } // Replace main style for RTL. wp_style_add_data( 'flash-style', 'rtl', 'replace' ); } add_action( 'wp_enqueue_scripts', 'flash_scripts' ); // Custom template tags for this theme. require get_template_directory() . '/inc/template-tags.php'; // Custom functions that act independently of the theme templates. require get_template_directory() . '/inc/extras.php'; // Kirki Toolkit. require get_template_directory() . '/inc/kirki/kirki.php'; // Customizer additions.s require get_template_directory() . '/inc/customizer.php'; // Load Metaboxes. require get_template_directory() . '/inc/meta-boxes.php'; // Load Jetpack compatibility file. require get_template_directory() . '/inc/jetpack.php'; // Load WooCommerce compatibility file. require get_template_directory() . '/inc/woocommerce.php'; // Load SiteOrigin Panels compatibility file. require get_template_directory() . '/inc/siteorigin-panels.php'; // Load required files for Flash notice in Admin page only. if ( is_admin() ) { require get_template_directory() . '/inc/admin/class-flash-admin.php'; require get_template_directory() . '/inc/admin/class-flash-notice.php'; require get_template_directory() . '/inc/admin/class-flash-dashboard.php'; require get_template_directory() . '/inc/admin/class-flash-welcome-notice.php'; require get_template_directory() . '/inc/admin/class-flash-upgrade-notice.php'; require get_template_directory() . '/inc/admin/class-flash-theme-review-notice.php'; } // Migrating customize options. require get_template_directory() . '/inc/migration.php'; /** * Fetch and set the typography value as Kirki defines within the theme. * * @since Flash 1.2.8 */ function flash_font_family_change() { // Lets bail out if no 'theme_mods_flash' option found. if ( false === ( $mods = get_option( 'theme_mods_flash' ) ) ) { return; } // Lets bail out if no 'flash_typography_transfer_free' option found. if ( get_option( 'flash_typography_transfer_free' ) ) { return; } // Assign the free theme body font family. $typography_options = get_theme_mod( 'flash_body_font', 'Montserrat:400,700' ); $font_family = 'Montserrat'; if ( $typography_options == 'Raleway:400,600,700' ) { $font_family = 'Raleway'; } elseif ( $typography_options == 'Ruda:400,700' ) { $font_family = 'Ruda'; } $value = array( 'font-family' => $font_family, 'variant' => 'regular', ); // Update the 'flash_body_font' theme mod. set_theme_mod( 'flash_body_font', $value ); // Set transfer as complete. update_option( 'flash_typography_transfer_free', 1 ); } add_action( 'after_setup_theme', 'flash_font_family_change' ); <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="profile" href="https://gmpg.org/xfn/11"> <meta name='robots' content='max-image-preview:large' /> <link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://www.maribel-alvarez.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.maribel-alvarez.com%2F" /> <link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://www.maribel-alvarez.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.maribel-alvarez.com%2F&format=xml" /> <style id='wp-img-auto-sizes-contain-inline-css' type='text/css'> img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px} /*# sourceURL=wp-img-auto-sizes-contain-inline-css */ </style> <link rel='stylesheet' id='scap.flashblock-css' href='https://www.maribel-alvarez.com/wp-content/plugins/compact-wp-audio-player/css/flashblock.css?ver=6.9.1' type='text/css' media='all' /> <link rel='stylesheet' id='scap.player-css' href='https://www.maribel-alvarez.com/wp-content/plugins/compact-wp-audio-player/css/player.css?ver=6.9.1' type='text/css' media='all' /> <style id='classic-theme-styles-inline-css' type='text/css'> /*! This file is auto-generated */ .wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none} /*# sourceURL=/wp-includes/css/classic-themes.min.css */ </style> <style id='global-styles-inline-css' type='text/css'> :root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;} :where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;} :where(.wp-block-term-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-term-template.is-layout-grid){gap: 1.25em;} :where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;} :root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;} /*# sourceURL=global-styles-inline-css */ </style> <link rel='stylesheet' id='dashicons-css' href='https://www.maribel-alvarez.com/wp-includes/css/dashicons.min.css?ver=6.9.1' type='text/css' media='all' /> <link rel='stylesheet' id='everest-forms-general-css' href='https://www.maribel-alvarez.com/wp-content/plugins/everest-forms/assets/css/everest-forms.css?ver=3.4.2.1' type='text/css' media='all' /> <link rel='stylesheet' id='jquery-intl-tel-input-css' href='https://www.maribel-alvarez.com/wp-content/plugins/everest-forms/assets/css/intlTelInput.css?ver=3.4.2.1' type='text/css' media='all' /> <link rel='stylesheet' id='novelist-css' href='https://www.maribel-alvarez.com/wp-content/plugins/novelist/templates/novelist-front-end.css?ver=1.3.0' type='text/css' media='all' /> <style id='novelist-inline-css' type='text/css'> .novelist-button { background: #333333; } .novelist-button:hover { background: #010101; }.novelist-button, .novelist-button:hover { color: #ffffff; } /*# sourceURL=novelist-inline-css */ </style> <link rel='stylesheet' id='siteorigin-panels-front-css' href='https://www.maribel-alvarez.com/wp-content/plugins/siteorigin-panels/css/front-flex.min.css?ver=2.33.5' type='text/css' media='all' /> <link rel='stylesheet' id='msl-main-css' href='https://www.maribel-alvarez.com/wp-content/plugins/master-slider/public/assets/css/masterslider.main.css?ver=3.11.0' type='text/css' media='all' /> <link rel='stylesheet' id='msl-custom-css' href='https://www.maribel-alvarez.com/wp-content/uploads/master-slider/custom.css?ver=8.7' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-icons-css' href='https://www.maribel-alvarez.com/wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.min.css?ver=5.46.0' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-frontend-css' href='https://www.maribel-alvarez.com/wp-content/plugins/elementor/assets/css/frontend.min.css?ver=3.34.4' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-post-2068-css' href='https://www.maribel-alvarez.com/wp-content/uploads/elementor/css/post-2068.css?ver=1771809477' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-post-5-css' href='https://www.maribel-alvarez.com/wp-content/uploads/elementor/css/post-5.css?ver=1771809477' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-gf-roboto-css' href='https://fonts.googleapis.com/css?family=Roboto:100,100italic,200,200italic,300,300italic,400,400italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic&display=auto' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-gf-robotoslab-css' href='https://fonts.googleapis.com/css?family=Roboto+Slab:100,100italic,200,200italic,300,300italic,400,400italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic&display=auto' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-gf-rosario-css' href='https://fonts.googleapis.com/css?family=Rosario:100,100italic,200,200italic,300,300italic,400,400italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic&display=auto' type='text/css' media='all' /> <!--n2css--><!--n2js--><script type="text/javascript" src="https://www.maribel-alvarez.com/wp-content/plugins/compact-wp-audio-player/js/soundmanager2-nodebug-jsmin.js?ver=6.9.1" id="scap.soundmanager2-js"></script> <script type="text/javascript" src="https://www.maribel-alvarez.com/wp-includes/js/tinymce/tinymce.min.js?ver=49110-20250317" id="wp-tinymce-root-js"></script> <script type="text/javascript" src="https://www.maribel-alvarez.com/wp-includes/js/tinymce/plugins/compat3x/plugin.min.js?ver=49110-20250317" id="wp-tinymce-js"></script> <script type="text/javascript" src="https://www.maribel-alvarez.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js"></script> <script type="text/javascript" src="https://www.maribel-alvarez.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js"></script> <link rel="https://api.w.org/" href="https://www.maribel-alvarez.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://www.maribel-alvarez.com/wp-json/wp/v2/pages/5" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.maribel-alvarez.com/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.9.1" /> <meta name="generator" content="Everest Forms 3.4.2.1" /> <link rel="canonical" href="https://www.maribel-alvarez.com/" /> <link rel='shortlink' href='https://www.maribel-alvarez.com/' /> <script>var ms_grabbing_curosr = 'https://www.maribel-alvarez.com/wp-content/plugins/master-slider/public/assets/css/common/grabbing.cur', ms_grab_curosr = 'https://www.maribel-alvarez.com/wp-content/plugins/master-slider/public/assets/css/common/grab.cur';</script> <meta name="generator" content="MasterSlider 3.11.0 - Responsive Touch Image Slider | avt.li/msf" /> <meta name="generator" content="Elementor 3.34.4; features: additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-auto"> <style type="text/css">.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style> <style> .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } @media screen and (max-height: 1024px) { .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } } @media screen and (max-height: 640px) { .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } } </style> <style media="all" id="siteorigin-panels-layouts-head">/* Layout 5 */ #pgc-5-0-0 , #pgc-5-1-0 , #pgc-5-5-0 , #pgc-5-6-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pg-5-0 , #pg-5-1 , #pg-5-2 , #pg-5-3 , #pg-5-4 , #pg-5-5 , #pg-5-6 , #pl-5 .so-panel , #pl-5 .so-panel:last-of-type { margin-bottom:0px } #pgc-5-2-0 { width:26.1823%;width:calc(26.1823% - ( 0.73817708737195 * 30px ) ) } #pgc-5-2-1 { width:51.8237%;width:calc(51.8237% - ( 0.48176255181788 * 30px ) ) } #pgc-5-2-2 { width:21.994%;width:calc(21.994% - ( 0.78006036081017 * 30px ) ) } #pgc-5-3-0 { width:11.4778%;width:calc(11.4778% - ( 0.88522203441343 * 30px ) ) } #pgc-5-3-1 { width:20.7355%;width:calc(20.7355% - ( 0.79264505959262 * 30px ) ) } #pgc-5-3-2 { width:17.7867%;width:calc(17.7867% - ( 0.82213290599395 * 30px ) ) } #pgc-5-3-3 { width:18.2175%;width:calc(18.2175% - ( 0.81782504932496 * 30px ) ) } #pgc-5-3-4 { width:20.5437%;width:calc(20.5437% - ( 0.7945626233124 * 30px ) ) } #pgc-5-3-5 { width:11.2388%;width:calc(11.2388% - ( 0.88761232736264 * 30px ) ) } #pgc-5-4-0 , #pgc-5-4-2 { width:21.1302%;width:calc(21.1302% - ( 0.7886983039371 * 30px ) ) } #pgc-5-4-1 { width:57.7397%;width:calc(57.7397% - ( 0.4226033921258 * 30px ) ) } #pgc-5-7-0 { width:18.4478%;width:calc(18.4478% - ( 0.81552177053604 * 30px ) ) } #pgc-5-7-1 { width:60.8143%;width:calc(60.8143% - ( 0.39185724413859 * 30px ) ) } #pgc-5-7-2 { width:20.7379%;width:calc(20.7379% - ( 0.79262098532537 * 30px ) ) } #pg-5-0.panel-has-style > .panel-row-style, #pg-5-0.panel-no-style , #pg-5-1.panel-has-style > .panel-row-style, #pg-5-1.panel-no-style , #pg-5-3.panel-has-style > .panel-row-style, #pg-5-3.panel-no-style , #pg-5-4.panel-has-style > .panel-row-style, #pg-5-4.panel-no-style , #pg-5-5.panel-has-style > .panel-row-style, #pg-5-5.panel-no-style , #pg-5-6.panel-has-style > .panel-row-style, #pg-5-6.panel-no-style , #pg-5-7.panel-has-style > .panel-row-style, #pg-5-7.panel-no-style { -webkit-align-items:flex-start;align-items:flex-start } #pg-5-1> .panel-row-style { background-color:#ffffff;padding:60px 0px 60px 0px } #pgc-5-4-0 { align-self:auto } #pg-5-5> .panel-row-style { padding:30px 0px 20px 0px } #panel-5-5-0-0> .panel-widget-style { background-color:#ffffff } @media (max-width:780px){ #pg-5-0.panel-no-style, #pg-5-0.panel-has-style > .panel-row-style, #pg-5-0 , #pg-5-1.panel-no-style, #pg-5-1.panel-has-style > .panel-row-style, #pg-5-1 , #pg-5-2.panel-no-style, #pg-5-2.panel-has-style > .panel-row-style, #pg-5-2 , #pg-5-3.panel-no-style, #pg-5-3.panel-has-style > .panel-row-style, #pg-5-3 , #pg-5-4.panel-no-style, #pg-5-4.panel-has-style > .panel-row-style, #pg-5-4 , #pg-5-5.panel-no-style, #pg-5-5.panel-has-style > .panel-row-style, #pg-5-5 , #pg-5-6.panel-no-style, #pg-5-6.panel-has-style > .panel-row-style, #pg-5-6 , #pg-5-7.panel-no-style, #pg-5-7.panel-has-style > .panel-row-style, #pg-5-7 { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-5-0 > .panel-grid-cell , #pg-5-0 > .panel-row-style > .panel-grid-cell , #pg-5-1 > .panel-grid-cell , #pg-5-1 > .panel-row-style > .panel-grid-cell , #pg-5-2 > .panel-grid-cell , #pg-5-2 > .panel-row-style > .panel-grid-cell , #pg-5-3 > .panel-grid-cell , #pg-5-3 > .panel-row-style > .panel-grid-cell , #pg-5-4 > .panel-grid-cell , #pg-5-4 > .panel-row-style > .panel-grid-cell , #pg-5-5 > .panel-grid-cell , #pg-5-5 > .panel-row-style > .panel-grid-cell , #pg-5-6 > .panel-grid-cell , #pg-5-6 > .panel-row-style > .panel-grid-cell , #pg-5-7 > .panel-grid-cell , #pg-5-7 > .panel-row-style > .panel-grid-cell { width:100%;margin-right:0 } #pgc-5-2-0 , #pgc-5-2-1 , #pgc-5-3-0 , #pgc-5-3-1 , #pgc-5-3-2 , #pgc-5-3-3 , #pgc-5-3-4 , #pgc-5-4-0 , #pgc-5-4-1 , #pgc-5-7-0 , #pgc-5-7-1 , #pl-5 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px } #pl-5 .panel-grid-cell { padding:0 } #pl-5 .panel-grid .panel-grid-cell-empty { display:none } #pg-5-5> .panel-row-style { padding:30px 0px 20px 0px } } </style><link rel="icon" href="https://www.maribel-alvarez.com/wp-content/uploads/2024/01/Maribel-Alvarez-150x150.png" sizes="32x32" /> <link rel="icon" href="https://www.maribel-alvarez.com/wp-content/uploads/2024/01/Maribel-Alvarez.png" sizes="192x192" /> <link rel="apple-touch-icon" href="https://www.maribel-alvarez.com/wp-content/uploads/2024/01/Maribel-Alvarez.png" /> <meta name="msapplication-TileImage" content="https://www.maribel-alvarez.com/wp-content/uploads/2024/01/Maribel-Alvarez.png" /> <style type="text/css" id="wp-custom-css"> @media (max-width:680px){.panel-row-style[style]{background-position:center center!important;background-size:auto!important}}.tg-slider-widget .btn-wrapper a{color:#313b48;border-color:#313b48}.tg-slider-widget .btn-wrapper a:hover{background:#313b48;color:#fff;border-color:#313b48}#secondary .widget ul li a{color:#000} html { scroll-behavior: smooth; } div#pg-5-3 img { max-height: 18rem; width: auto; } #panel-5-6-1-0 .widget-title { display: none; } .FeedProfilePic__fallback:not(.FeedProfilePic__with-stories) { border: 0px solid rgb(188, 148, 84)!important; } .FeedProfilePic__root img { padding: 0!important; } .FeedProfilePic__fallback.FeedProfilePic__root { padding: 0!important; } .FeedHeader__normal-style.FeedHeader__root { align-items: center; } nav li a { font-size: 18px!important; } .type-page .elementor-shape-fill { display: none; } .type-page .elementor-container.elementor-column-gap-default { max-width: unset; } .novelist-synopsis { text-align: justify; } .buy-title { font-size: 1.75rem; } .buy-links { display: flex; justify-content: start; margin-top: 1rem; gap: 1rem; } .buy-links a { padding: 1rem; background: beige; border-radius: .25rem; border: 1px solid; } .tg-feature-product-widget .feature-title-wrap a { color: wheat!important; } .tg-feature-product-widget figure { transition: 200ms; } .featured-image-desc, .featured-image-desc .feature-inner-block, .featured-image-desc .feature-title-wrap, .featured-image-desc a { width: 100%!important; height: 100%!important; } .featured-image-desc a { display: block!important; } .featured-image-desc { opacity: 0!important; } .tg-feature-product-widget { border-radius: .5rem; cursor: pointer; } .tg-feature-product-widget img { border-radius: .5rem; } .tg-feature-product-widget:hover img { scale: 1.1; } .entry-content p { text-align: justify!important; } .search-box, .search-box.active { top: 25%!important; right: 50%!important; padding: 0!important; } .type-page.status-publish p { font-size: 1.7rem; } .breadcrumb-trail.breadcrumbs { background: rgba(188, 148, 84, 0.7)!important; } .contact-links a { transition: 200ms; } .contact-links a:hover { color: #bc9454!important; } #top-footer .widget { margin-bottom: 0px!important; } .elementor-spacer-inner { display: none; } #themegrill_flash_image-10 img { padding: 0; border-radius: 0.5rem; margin-bottom: 1.5rem; max-width: 75%; } .widget#block-8 p { padding: 0!important; } #flash-breadcrumbs > .tg-container { height: 7.5rem; display: flex; justify-content: space-between; align-items: center; } #flash-breadcrumbs > .tg-container:before, #flash-breadcrumbs > .tg-container:after { content: unset!important; } .breadcrumb-trail.breadcrumbs .trail-items li span { color: #333; } .breadcrumb-trail.breadcrumbs:before { content: unset!important; } .breadcrumb-trail.breadcrumbs .trail-items .trail-item:last-child { top: 4px; position: relative; } .ms-nav-prev { left: -35px!important; filter: invert(.5); } .ms-nav-next { right: -35px!important; filter: invert(.5); } .reward-description p { margin-bottom: 0; } .novelist-cover-image { margin-bottom: 1rem; } .radio-player .srp_player_boxed { background: rgba(0,0,0,0.1)!important; } .mejs-container { background: unset!important; } .widget_media_audio { margin-top: 4rem!important; } .mejs-controls { height: 80px!important; display: flex!important; align-items: center!important; border-radius: 0.5rem!important; background: rgba(188, 148, 84, 0.7)!important; } .mejs-time-current { background: #bc9454!important; } .buy-links a { background: rgba(188,148,84,.7)!important; color: black!important; border: none!important; } /* Pagina Galeria*/ .page-id-1025 .widget-title { margin-bottom: 1rem; } .reward-wrap { display: flex; align-items: center; margin-bottom: 3rem; border: 2px solid; padding: 1rem; border-color: #B0955F; border-radius: .5rem; font-size: 1.6rem; width: max-content; } #preloader-background { display: none!important; } #pg-5-4 { margin-top: 8rem; } </style> </head> <body class="home wp-singular page-template page-template-page-templates page-template-pagebuilder page-template-page-templatespagebuilder-php page page-id-5 wp-custom-logo wp-theme-flash everest-forms-no-js _masterslider _ms_version_3.11.0 siteorigin-panels siteorigin-panels-before-js siteorigin-panels-home elementor-default elementor-kit-2068 elementor-page elementor-page-5"> <div id="preloader-background"> <div id="spinners"> <div id="preloader"> <span></span> <span></span> <span></span> <span></span> <span></span> </div> </div> </div> <div id="page" class="site"> <a class="skip-link screen-reader-text" href="#content">Saltar al contenido</a> <header id="masthead" class="site-header" role="banner"> <div class="header-bottom"> <div class="tg-container"> <div class="logo"> <figure class="logo-image">