-- Softaculous SQL Dump
-- http://www.softaculous.com
--
-- Host: localhost
-- Generation Time: October 22, 2025, 3:35 pm
-- Server version: 10.6.23
-- PHP Version: 8.4.13

SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";


/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;

--
-- Database: `aeroclas_wp377`
--

-- --------------------------------------------------------

--
-- Table structure for table `wpmr_commentmeta`
--

CREATE TABLE `wpmr_commentmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpmr_comments`
--

CREATE TABLE `wpmr_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0,
  `comment_author` tinytext NOT NULL,
  `comment_author_email` varchar(100) NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT 0,
  `comment_approved` varchar(20) NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) NOT NULL DEFAULT '',
  `comment_type` varchar(20) NOT NULL DEFAULT 'comment',
  `comment_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpmr_comments`
--

INSERT INTO `wpmr_comments` VALUES
(1, 1, 'A WordPress Commenter', 'wapuu@wordpress.example', 'https://wordpress.org/', '', '2025-08-29 14:15:39', '2025-08-29 14:15:39', 'Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href="https://gravatar.com/">Gravatar</a>.', 0, '1', '', 'comment', 0, 0);

-- --------------------------------------------------------

--
-- Table structure for table `wpmr_e_events`
--

CREATE TABLE `wpmr_e_events` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `event_data` text DEFAULT NULL,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `created_at_index` (`created_at`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpmr_e_events`
--

INSERT INTO `wpmr_e_events` VALUES
(1, '{"event":"modal load","version":"","details":"{\\"placement\\":\\"Onboarding wizard\\",\\"step\\":\\"account\\",\\"user_state\\":\\"anon\\"}","ts":"2025-08-29T11:29:32.186+03:00"}', '2025-08-29 11:29:32'),
(2, '{"event":"close modal","version":"","details":"{\\"placement\\":\\"Onboarding wizard\\",\\"step\\":\\"account\\"}","ts":"2025-08-29T11:30:50.282+03:00"}', '2025-08-29 11:30:50');

-- --------------------------------------------------------

--
-- Table structure for table `wpmr_e_notes`
--

CREATE TABLE `wpmr_e_notes` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `route_url` text DEFAULT NULL COMMENT 'Clean url where the note was created.',
  `route_title` varchar(255) DEFAULT NULL,
  `route_post_id` bigint(20) unsigned DEFAULT NULL COMMENT 'The post id of the route that the note was created on.',
  `post_id` bigint(20) unsigned DEFAULT NULL,
  `element_id` varchar(60) DEFAULT NULL COMMENT 'The Elementor element ID the note is attached to.',
  `parent_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `author_id` bigint(20) unsigned DEFAULT NULL,
  `author_display_name` varchar(250) DEFAULT NULL COMMENT 'Save the author name when the author was deleted.',
  `status` varchar(20) NOT NULL DEFAULT 'publish',
  `position` text DEFAULT NULL COMMENT 'A JSON string that represents the position of the note inside the element in percentages. e.g. {x:10, y:15}',
  `content` longtext DEFAULT NULL,
  `is_resolved` tinyint(1) NOT NULL DEFAULT 0,
  `is_public` tinyint(1) NOT NULL DEFAULT 1,
  `last_activity_at` datetime DEFAULT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `route_url_index` (`route_url`(191)),
  KEY `post_id_index` (`post_id`),
  KEY `element_id_index` (`element_id`),
  KEY `parent_id_index` (`parent_id`),
  KEY `author_id_index` (`author_id`),
  KEY `status_index` (`status`),
  KEY `is_resolved_index` (`is_resolved`),
  KEY `is_public_index` (`is_public`),
  KEY `created_at_index` (`created_at`),
  KEY `updated_at_index` (`updated_at`),
  KEY `last_activity_at_index` (`last_activity_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpmr_e_notes_users_relations`
--

CREATE TABLE `wpmr_e_notes_users_relations` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `type` varchar(60) NOT NULL COMMENT 'The relation type between user and note (e.g mention, watch, read).',
  `note_id` bigint(20) unsigned NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `type_index` (`type`),
  KEY `note_id_index` (`note_id`),
  KEY `user_id_index` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpmr_e_submissions`
--

CREATE TABLE `wpmr_e_submissions` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `type` varchar(60) DEFAULT NULL,
  `hash_id` varchar(60) NOT NULL,
  `main_meta_id` bigint(20) unsigned NOT NULL COMMENT 'Id of main field. to represent the main meta field',
  `post_id` bigint(20) unsigned NOT NULL,
  `referer` varchar(500) NOT NULL,
  `referer_title` varchar(300) DEFAULT NULL,
  `element_id` varchar(20) NOT NULL,
  `form_name` varchar(60) NOT NULL,
  `campaign_id` bigint(20) unsigned NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `user_ip` varchar(46) NOT NULL,
  `user_agent` text NOT NULL,
  `actions_count` int(11) DEFAULT 0,
  `actions_succeeded_count` int(11) DEFAULT 0,
  `status` varchar(20) NOT NULL,
  `is_read` tinyint(1) NOT NULL DEFAULT 0,
  `meta` text DEFAULT NULL,
  `created_at_gmt` datetime NOT NULL,
  `updated_at_gmt` datetime NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `hash_id_unique_index` (`hash_id`),
  KEY `main_meta_id_index` (`main_meta_id`),
  KEY `hash_id_index` (`hash_id`),
  KEY `type_index` (`type`),
  KEY `post_id_index` (`post_id`),
  KEY `element_id_index` (`element_id`),
  KEY `campaign_id_index` (`campaign_id`),
  KEY `user_id_index` (`user_id`),
  KEY `user_ip_index` (`user_ip`),
  KEY `status_index` (`status`),
  KEY `is_read_index` (`is_read`),
  KEY `created_at_gmt_index` (`created_at_gmt`),
  KEY `updated_at_gmt_index` (`updated_at_gmt`),
  KEY `created_at_index` (`created_at`),
  KEY `updated_at_index` (`updated_at`),
  KEY `referer_index` (`referer`(191)),
  KEY `referer_title_index` (`referer_title`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpmr_e_submissions_actions_log`
--

CREATE TABLE `wpmr_e_submissions_actions_log` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `submission_id` bigint(20) unsigned NOT NULL,
  `action_name` varchar(60) NOT NULL,
  `action_label` varchar(60) DEFAULT NULL,
  `status` varchar(20) NOT NULL,
  `log` text DEFAULT NULL,
  `created_at_gmt` datetime NOT NULL,
  `updated_at_gmt` datetime NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `submission_id_index` (`submission_id`),
  KEY `action_name_index` (`action_name`),
  KEY `status_index` (`status`),
  KEY `created_at_gmt_index` (`created_at_gmt`),
  KEY `updated_at_gmt_index` (`updated_at_gmt`),
  KEY `created_at_index` (`created_at`),
  KEY `updated_at_index` (`updated_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpmr_e_submissions_values`
--

CREATE TABLE `wpmr_e_submissions_values` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `submission_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `key` varchar(60) DEFAULT NULL,
  `value` longtext DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `submission_id_index` (`submission_id`),
  KEY `key_index` (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpmr_jet_post_types`
--

CREATE TABLE `wpmr_jet_post_types` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `slug` text DEFAULT NULL,
  `status` text DEFAULT NULL,
  `labels` longtext DEFAULT NULL,
  `args` longtext DEFAULT NULL,
  `meta_fields` longtext DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpmr_jet_taxonomies`
--

CREATE TABLE `wpmr_jet_taxonomies` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `slug` text DEFAULT NULL,
  `object_type` text DEFAULT NULL,
  `status` text DEFAULT NULL,
  `labels` longtext DEFAULT NULL,
  `args` longtext DEFAULT NULL,
  `meta_fields` longtext DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpmr_links`
--

CREATE TABLE `wpmr_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) NOT NULL DEFAULT '',
  `link_name` varchar(255) NOT NULL DEFAULT '',
  `link_image` varchar(255) NOT NULL DEFAULT '',
  `link_target` varchar(25) NOT NULL DEFAULT '',
  `link_description` varchar(255) NOT NULL DEFAULT '',
  `link_visible` varchar(20) NOT NULL DEFAULT 'Y',
  `link_owner` bigint(20) unsigned NOT NULL DEFAULT 1,
  `link_rating` int(11) NOT NULL DEFAULT 0,
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) NOT NULL DEFAULT '',
  `link_notes` mediumtext NOT NULL,
  `link_rss` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpmr_options`
--

CREATE TABLE `wpmr_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) NOT NULL DEFAULT '',
  `option_value` longtext NOT NULL,
  `autoload` varchar(20) NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`),
  KEY `autoload` (`autoload`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpmr_options`
--

INSERT INTO `wpmr_options` VALUES
(1, 'cron', 'a:11:{i:1761099371;a:1:{s:21:"wp_update_user_counts";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}}i:1761142539;a:1:{s:32:"recovery_mode_clean_expired_keys";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1761142571;a:2:{s:19:"wp_scheduled_delete";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}s:25:"delete_expired_transients";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1761142572;a:1:{s:30:"wp_scheduled_auto_draft_delete";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1761143364;a:1:{s:28:"elementor/tracker/send_event";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1761160543;a:1:{s:34:"wp_privacy_delete_old_export_files";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:6:"hourly";s:4:"args";a:0:{}s:8:"interval";i:3600;}}}i:1761185739;a:1:{s:16:"wp_update_themes";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}}i:1761185743;a:2:{s:17:"wp_update_plugins";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}s:16:"wp_version_check";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}}i:1761315344;a:1:{s:30:"wp_delete_temp_updater_backups";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:6:"weekly";s:4:"args";a:0:{}s:8:"interval";i:604800;}}}i:1761401739;a:1:{s:30:"wp_site_health_scheduled_check";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:6:"weekly";s:4:"args";a:0:{}s:8:"interval";i:604800;}}}s:7:"version";i:2;}', 'on'),
(2, 'siteurl', 'https://mod25.aeroclasses.com.br', 'on'),
(3, 'home', 'https://mod25.aeroclasses.com.br', 'on'),
(4, 'blogname', 'Curso Aero Classes', 'on'),
(5, 'blogdescription', 'modelo 26', 'on'),
(6, 'users_can_register', '0', 'on'),
(7, 'admin_email', 'apefia1998@gmail.com', 'on'),
(8, 'start_of_week', '0', 'on'),
(9, 'use_balanceTags', '0', 'on'),
(10, 'use_smilies', '1', 'on'),
(11, 'require_name_email', '1', 'on'),
(12, 'comments_notify', '1', 'on'),
(13, 'posts_per_rss', '10', 'on'),
(14, 'rss_use_excerpt', '0', 'on'),
(15, 'mailserver_url', 'mail.example.com', 'on'),
(16, 'mailserver_login', 'login@example.com', 'on'),
(17, 'mailserver_pass', '', 'on'),
(18, 'mailserver_port', '110', 'on'),
(19, 'default_category', '1', 'on'),
(20, 'default_comment_status', 'open', 'on'),
(21, 'default_ping_status', 'open', 'on'),
(22, 'default_pingback_flag', '1', 'on'),
(23, 'posts_per_page', '10', 'on'),
(24, 'date_format', 'd/m/Y', 'on'),
(25, 'time_format', 'H:i', 'on'),
(26, 'links_updated_date_format', 'F j, Y g:i a', 'on'),
(27, 'comment_moderation', '0', 'on'),
(28, 'moderation_notify', '1', 'on'),
(29, 'permalink_structure', '/%postname%/', 'on'),
(30, 'rewrite_rules', 'a:111:{s:11:"^wp-json/?$";s:22:"index.php?rest_route=/";s:14:"^wp-json/(.*)?";s:33:"index.php?rest_route=/$matches[1]";s:21:"^index.php/wp-json/?$";s:22:"index.php?rest_route=/";s:24:"^index.php/wp-json/(.*)?";s:33:"index.php?rest_route=/$matches[1]";s:17:"^wp-sitemap\\.xml$";s:23:"index.php?sitemap=index";s:17:"^wp-sitemap\\.xsl$";s:36:"index.php?sitemap-stylesheet=sitemap";s:23:"^wp-sitemap-index\\.xsl$";s:34:"index.php?sitemap-stylesheet=index";s:48:"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$";s:75:"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]";s:34:"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$";s:47:"index.php?sitemap=$matches[1]&paged=$matches[2]";s:47:"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$";s:52:"index.php?category_name=$matches[1]&feed=$matches[2]";s:42:"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$";s:52:"index.php?category_name=$matches[1]&feed=$matches[2]";s:23:"category/(.+?)/embed/?$";s:46:"index.php?category_name=$matches[1]&embed=true";s:35:"category/(.+?)/page/?([0-9]{1,})/?$";s:53:"index.php?category_name=$matches[1]&paged=$matches[2]";s:17:"category/(.+?)/?$";s:35:"index.php?category_name=$matches[1]";s:44:"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?tag=$matches[1]&feed=$matches[2]";s:39:"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?tag=$matches[1]&feed=$matches[2]";s:20:"tag/([^/]+)/embed/?$";s:36:"index.php?tag=$matches[1]&embed=true";s:32:"tag/([^/]+)/page/?([0-9]{1,})/?$";s:43:"index.php?tag=$matches[1]&paged=$matches[2]";s:14:"tag/([^/]+)/?$";s:25:"index.php?tag=$matches[1]";s:45:"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?post_format=$matches[1]&feed=$matches[2]";s:40:"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?post_format=$matches[1]&feed=$matches[2]";s:21:"type/([^/]+)/embed/?$";s:44:"index.php?post_format=$matches[1]&embed=true";s:33:"type/([^/]+)/page/?([0-9]{1,})/?$";s:51:"index.php?post_format=$matches[1]&paged=$matches[2]";s:15:"type/([^/]+)/?$";s:33:"index.php?post_format=$matches[1]";s:46:"e-floating-buttons/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:56:"e-floating-buttons/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:76:"e-floating-buttons/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:71:"e-floating-buttons/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:71:"e-floating-buttons/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:52:"e-floating-buttons/[^/]+/attachment/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:35:"e-floating-buttons/([^/]+)/embed/?$";s:51:"index.php?e-floating-buttons=$matches[1]&embed=true";s:39:"e-floating-buttons/([^/]+)/trackback/?$";s:45:"index.php?e-floating-buttons=$matches[1]&tb=1";s:47:"e-floating-buttons/([^/]+)/page/?([0-9]{1,})/?$";s:58:"index.php?e-floating-buttons=$matches[1]&paged=$matches[2]";s:54:"e-floating-buttons/([^/]+)/comment-page-([0-9]{1,})/?$";s:58:"index.php?e-floating-buttons=$matches[1]&cpage=$matches[2]";s:43:"e-floating-buttons/([^/]+)(?:/([0-9]+))?/?$";s:57:"index.php?e-floating-buttons=$matches[1]&page=$matches[2]";s:35:"e-floating-buttons/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:45:"e-floating-buttons/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:65:"e-floating-buttons/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:60:"e-floating-buttons/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:60:"e-floating-buttons/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:41:"e-floating-buttons/[^/]+/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:12:"robots\\.txt$";s:18:"index.php?robots=1";s:13:"favicon\\.ico$";s:19:"index.php?favicon=1";s:12:"sitemap\\.xml";s:24:"index.php??sitemap=index";s:48:".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$";s:18:"index.php?feed=old";s:20:".*wp-app\\.php(/.*)?$";s:19:"index.php?error=403";s:18:".*wp-register.php$";s:23:"index.php?register=true";s:32:"feed/(feed|rdf|rss|rss2|atom)/?$";s:27:"index.php?&feed=$matches[1]";s:27:"(feed|rdf|rss|rss2|atom)/?$";s:27:"index.php?&feed=$matches[1]";s:8:"embed/?$";s:21:"index.php?&embed=true";s:20:"page/?([0-9]{1,})/?$";s:28:"index.php?&paged=$matches[1]";s:41:"comments/feed/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?&feed=$matches[1]&withcomments=1";s:36:"comments/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?&feed=$matches[1]&withcomments=1";s:17:"comments/embed/?$";s:21:"index.php?&embed=true";s:44:"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:40:"index.php?s=$matches[1]&feed=$matches[2]";s:39:"search/(.+)/(feed|rdf|rss|rss2|atom)/?$";s:40:"index.php?s=$matches[1]&feed=$matches[2]";s:20:"search/(.+)/embed/?$";s:34:"index.php?s=$matches[1]&embed=true";s:32:"search/(.+)/page/?([0-9]{1,})/?$";s:41:"index.php?s=$matches[1]&paged=$matches[2]";s:14:"search/(.+)/?$";s:23:"index.php?s=$matches[1]";s:47:"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?author_name=$matches[1]&feed=$matches[2]";s:42:"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?author_name=$matches[1]&feed=$matches[2]";s:23:"author/([^/]+)/embed/?$";s:44:"index.php?author_name=$matches[1]&embed=true";s:35:"author/([^/]+)/page/?([0-9]{1,})/?$";s:51:"index.php?author_name=$matches[1]&paged=$matches[2]";s:17:"author/([^/]+)/?$";s:33:"index.php?author_name=$matches[1]";s:69:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$";s:80:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]";s:64:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$";s:80:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]";s:45:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$";s:74:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true";s:57:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$";s:81:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]";s:39:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$";s:63:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]";s:56:"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$";s:64:"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]";s:51:"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$";s:64:"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]";s:32:"([0-9]{4})/([0-9]{1,2})/embed/?$";s:58:"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true";s:44:"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$";s:65:"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]";s:26:"([0-9]{4})/([0-9]{1,2})/?$";s:47:"index.php?year=$matches[1]&monthnum=$matches[2]";s:43:"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?year=$matches[1]&feed=$matches[2]";s:38:"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?year=$matches[1]&feed=$matches[2]";s:19:"([0-9]{4})/embed/?$";s:37:"index.php?year=$matches[1]&embed=true";s:31:"([0-9]{4})/page/?([0-9]{1,})/?$";s:44:"index.php?year=$matches[1]&paged=$matches[2]";s:13:"([0-9]{4})/?$";s:26:"index.php?year=$matches[1]";s:27:".?.+?/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:37:".?.+?/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:57:".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:52:".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:52:".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:33:".?.+?/attachment/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:16:"(.?.+?)/embed/?$";s:41:"index.php?pagename=$matches[1]&embed=true";s:20:"(.?.+?)/trackback/?$";s:35:"index.php?pagename=$matches[1]&tb=1";s:40:"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$";s:47:"index.php?pagename=$matches[1]&feed=$matches[2]";s:35:"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$";s:47:"index.php?pagename=$matches[1]&feed=$matches[2]";s:28:"(.?.+?)/page/?([0-9]{1,})/?$";s:48:"index.php?pagename=$matches[1]&paged=$matches[2]";s:35:"(.?.+?)/comment-page-([0-9]{1,})/?$";s:48:"index.php?pagename=$matches[1]&cpage=$matches[2]";s:24:"(.?.+?)(?:/([0-9]+))?/?$";s:47:"index.php?pagename=$matches[1]&page=$matches[2]";s:27:"[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:37:"[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:57:"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:52:"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:52:"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:33:"[^/]+/attachment/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:16:"([^/]+)/embed/?$";s:37:"index.php?name=$matches[1]&embed=true";s:20:"([^/]+)/trackback/?$";s:31:"index.php?name=$matches[1]&tb=1";s:40:"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?name=$matches[1]&feed=$matches[2]";s:35:"([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?name=$matches[1]&feed=$matches[2]";s:28:"([^/]+)/page/?([0-9]{1,})/?$";s:44:"index.php?name=$matches[1]&paged=$matches[2]";s:35:"([^/]+)/comment-page-([0-9]{1,})/?$";s:44:"index.php?name=$matches[1]&cpage=$matches[2]";s:24:"([^/]+)(?:/([0-9]+))?/?$";s:43:"index.php?name=$matches[1]&page=$matches[2]";s:16:"[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:26:"[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:46:"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:41:"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:41:"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:22:"[^/]+/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";}', 'on'),
(31, 'hack_file', '0', 'on'),
(32, 'blog_charset', 'UTF-8', 'on'),
(33, 'moderation_keys', '', 'off'),
(34, 'active_plugins', 'a:5:{i:0;s:31:"elementor-pro/elementor-pro.php";i:1;s:23:"elementor/elementor.php";i:2;s:37:"imunify-security/imunify-security.php";i:3;s:25:"jet-blocks/jet-blocks.php";i:4;s:25:"jet-engine/jet-engine.php";}', 'on'),
(35, 'category_base', '', 'on'),
(36, 'ping_sites', 'https://rpc.pingomatic.com/', 'on'),
(37, 'comment_max_links', '2', 'on'),
(38, 'gmt_offset', '0', 'on'),
(39, 'default_email_category', '1', 'on'),
(40, 'recently_edited', 'a:2:{i:0;s:83:"/home/aeroclas/mod25.aeroclasses.com.br/wp-content/themes/hello-elementor/style.css";i:2;s:0:"";}', 'off'),
(41, 'template', 'hello-elementor', 'on'),
(42, 'stylesheet', 'hello-elementor', 'on'),
(43, 'comment_registration', '0', 'on'),
(44, 'html_type', 'text/html', 'on'),
(45, 'use_trackback', '0', 'on'),
(46, 'default_role', 'subscriber', 'on'),
(47, 'db_version', '60421', 'on'),
(48, 'uploads_use_yearmonth_folders', '1', 'on'),
(49, 'upload_path', '', 'on'),
(50, 'blog_public', '1', 'on'),
(51, 'default_link_category', '2', 'on'),
(52, 'show_on_front', 'posts', 'on'),
(53, 'tag_base', '', 'on'),
(54, 'show_avatars', '1', 'on'),
(55, 'avatar_rating', 'G', 'on'),
(56, 'upload_url_path', '', 'on'),
(57, 'thumbnail_size_w', '150', 'on'),
(58, 'thumbnail_size_h', '150', 'on'),
(59, 'thumbnail_crop', '1', 'on'),
(60, 'medium_size_w', '300', 'on'),
(61, 'medium_size_h', '300', 'on'),
(62, 'avatar_default', 'mystery', 'on'),
(63, 'large_size_w', '1024', 'on'),
(64, 'large_size_h', '1024', 'on'),
(65, 'image_default_link_type', 'none', 'on'),
(66, 'image_default_size', '', 'on'),
(67, 'image_default_align', '', 'on'),
(68, 'close_comments_for_old_posts', '0', 'on'),
(69, 'close_comments_days_old', '14', 'on'),
(70, 'thread_comments', '1', 'on'),
(71, 'thread_comments_depth', '5', 'on'),
(72, 'page_comments', '0', 'on'),
(73, 'comments_per_page', '50', 'on'),
(74, 'default_comments_page', 'newest', 'on'),
(75, 'comment_order', 'asc', 'on'),
(76, 'sticky_posts', 'a:0:{}', 'on'),
(77, 'widget_categories', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'auto'),
(78, 'widget_text', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'auto'),
(79, 'widget_rss', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'auto'),
(80, 'uninstall_plugins', 'a:1:{s:23:"elementor/elementor.php";a:2:{i:0;s:21:"Elementor\\Maintenance";i:1;s:9:"uninstall";}}', 'off'),
(81, 'timezone_string', '', 'on'),
(82, 'page_for_posts', '0', 'on'),
(83, 'page_on_front', '0', 'on'),
(84, 'default_post_format', '0', 'on'),
(85, 'link_manager_enabled', '0', 'on'),
(86, 'finished_splitting_shared_terms', '1', 'on'),
(87, 'site_icon', '15', 'on'),
(88, 'medium_large_size_w', '768', 'on'),
(89, 'medium_large_size_h', '0', 'on'),
(90, 'wp_page_for_privacy_policy', '3', 'on'),
(91, 'show_comments_cookies_opt_in', '1', 'on'),
(92, 'admin_email_lifespan', '1772028939', 'on'),
(93, 'disallowed_keys', '', 'off'),
(94, 'comment_previously_approved', '1', 'on'),
(95, 'auto_plugin_theme_update_emails', 'a:0:{}', 'off'),
(96, 'auto_update_core_dev', 'enabled', 'on'),
(97, 'auto_update_core_minor', 'enabled', 'on'),
(98, 'auto_update_core_major', 'enabled', 'on'),
(99, 'wp_force_deactivated_plugins', 'a:0:{}', 'on'),
(100, 'wp_attachment_pages_enabled', '0', 'on'),
(101, 'initial_db_version', '60421', 'on'),
(102, 'wpmr_user_roles', 'a:5:{s:13:"administrator";a:2:{s:4:"name";s:13:"Administrator";s:12:"capabilities";a:68:{s:13:"switch_themes";b:1;s:11:"edit_themes";b:1;s:16:"activate_plugins";b:1;s:12:"edit_plugins";b:1;s:10:"edit_users";b:1;s:10:"edit_files";b:1;s:14:"manage_options";b:1;s:17:"moderate_comments";b:1;s:17:"manage_categories";b:1;s:12:"manage_links";b:1;s:12:"upload_files";b:1;s:6:"import";b:1;s:15:"unfiltered_html";b:1;s:10:"edit_posts";b:1;s:17:"edit_others_posts";b:1;s:20:"edit_published_posts";b:1;s:13:"publish_posts";b:1;s:10:"edit_pages";b:1;s:4:"read";b:1;s:8:"level_10";b:1;s:7:"level_9";b:1;s:7:"level_8";b:1;s:7:"level_7";b:1;s:7:"level_6";b:1;s:7:"level_5";b:1;s:7:"level_4";b:1;s:7:"level_3";b:1;s:7:"level_2";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:17:"edit_others_pages";b:1;s:20:"edit_published_pages";b:1;s:13:"publish_pages";b:1;s:12:"delete_pages";b:1;s:19:"delete_others_pages";b:1;s:22:"delete_published_pages";b:1;s:12:"delete_posts";b:1;s:19:"delete_others_posts";b:1;s:22:"delete_published_posts";b:1;s:20:"delete_private_posts";b:1;s:18:"edit_private_posts";b:1;s:18:"read_private_posts";b:1;s:20:"delete_private_pages";b:1;s:18:"edit_private_pages";b:1;s:18:"read_private_pages";b:1;s:12:"delete_users";b:1;s:12:"create_users";b:1;s:17:"unfiltered_upload";b:1;s:14:"edit_dashboard";b:1;s:14:"update_plugins";b:1;s:14:"delete_plugins";b:1;s:15:"install_plugins";b:1;s:13:"update_themes";b:1;s:14:"install_themes";b:1;s:11:"update_core";b:1;s:10:"list_users";b:1;s:12:"remove_users";b:1;s:13:"promote_users";b:1;s:18:"edit_theme_options";b:1;s:13:"delete_themes";b:1;s:6:"export";b:1;s:26:"create_notes_elementor-pro";b:1;s:24:"edit_notes_elementor-pro";b:1;s:26:"delete_notes_elementor-pro";b:1;s:24:"read_notes_elementor-pro";b:1;s:31:"edit_others_notes_elementor-pro";b:1;s:33:"delete_others_notes_elementor-pro";b:1;s:39:"read_others_private_notes_elementor-pro";b:1;}}s:6:"editor";a:2:{s:4:"name";s:6:"Editor";s:12:"capabilities";a:34:{s:17:"moderate_comments";b:1;s:17:"manage_categories";b:1;s:12:"manage_links";b:1;s:12:"upload_files";b:1;s:15:"unfiltered_html";b:1;s:10:"edit_posts";b:1;s:17:"edit_others_posts";b:1;s:20:"edit_published_posts";b:1;s:13:"publish_posts";b:1;s:10:"edit_pages";b:1;s:4:"read";b:1;s:7:"level_7";b:1;s:7:"level_6";b:1;s:7:"level_5";b:1;s:7:"level_4";b:1;s:7:"level_3";b:1;s:7:"level_2";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:17:"edit_others_pages";b:1;s:20:"edit_published_pages";b:1;s:13:"publish_pages";b:1;s:12:"delete_pages";b:1;s:19:"delete_others_pages";b:1;s:22:"delete_published_pages";b:1;s:12:"delete_posts";b:1;s:19:"delete_others_posts";b:1;s:22:"delete_published_posts";b:1;s:20:"delete_private_posts";b:1;s:18:"edit_private_posts";b:1;s:18:"read_private_posts";b:1;s:20:"delete_private_pages";b:1;s:18:"edit_private_pages";b:1;s:18:"read_private_pages";b:1;}}s:6:"author";a:2:{s:4:"name";s:6:"Author";s:12:"capabilities";a:10:{s:12:"upload_files";b:1;s:10:"edit_posts";b:1;s:20:"edit_published_posts";b:1;s:13:"publish_posts";b:1;s:4:"read";b:1;s:7:"level_2";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:12:"delete_posts";b:1;s:22:"delete_published_posts";b:1;}}s:11:"contributor";a:2:{s:4:"name";s:11:"Contributor";s:12:"capabilities";a:5:{s:10:"edit_posts";b:1;s:4:"read";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:12:"delete_posts";b:1;}}s:10:"subscriber";a:2:{s:4:"name";s:10:"Subscriber";s:12:"capabilities";a:2:{s:4:"read";b:1;s:7:"level_0";b:1;}}}', 'on'),
(103, 'fresh_site', '1', 'off'),
(104, 'user_count', '1', 'off'),
(105, 'widget_block', 'a:6:{i:2;a:1:{s:7:"content";s:19:"<!-- wp:search /-->";}i:3;a:1:{s:7:"content";s:154:"<!-- wp:group --><div class="wp-block-group"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->";}i:4;a:1:{s:7:"content";s:227:"<!-- wp:group --><div class="wp-block-group"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {"displayAvatar":false,"displayDate":false,"displayExcerpt":false} /--></div><!-- /wp:group -->";}i:5;a:1:{s:7:"content";s:146:"<!-- wp:group --><div class="wp-block-group"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->";}i:6;a:1:{s:7:"content";s:150:"<!-- wp:group --><div class="wp-block-group"><!-- wp:heading --><h2>Categories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->";}s:12:"_multiwidget";i:1;}', 'auto'),
(106, 'sidebars_widgets', 'a:2:{s:19:"wp_inactive_widgets";a:5:{i:0;s:7:"block-2";i:1;s:7:"block-3";i:2;s:7:"block-4";i:3;s:7:"block-5";i:4;s:7:"block-6";}s:13:"array_version";i:3;}', 'auto'),
(107, 'widget_pages', 'a:1:{s:12:"_multiwidget";i:1;}', 'auto'),
(108, 'widget_calendar', 'a:1:{s:12:"_multiwidget";i:1;}', 'auto'),
(109, 'widget_archives', 'a:1:{s:12:"_multiwidget";i:1;}', 'auto'),
(110, 'widget_media_audio', 'a:1:{s:12:"_multiwidget";i:1;}', 'auto'),
(111, 'widget_media_image', 'a:1:{s:12:"_multiwidget";i:1;}', 'auto'),
(112, 'widget_media_gallery', 'a:1:{s:12:"_multiwidget";i:1;}', 'auto'),
(113, 'widget_media_video', 'a:1:{s:12:"_multiwidget";i:1;}', 'auto'),
(114, 'widget_meta', 'a:1:{s:12:"_multiwidget";i:1;}', 'auto'),
(115, 'widget_search', 'a:1:{s:12:"_multiwidget";i:1;}', 'auto'),
(116, 'widget_recent-posts', 'a:1:{s:12:"_multiwidget";i:1;}', 'auto'),
(117, 'widget_recent-comments', 'a:1:{s:12:"_multiwidget";i:1;}', 'auto'),
(118, 'widget_tag_cloud', 'a:1:{s:12:"_multiwidget";i:1;}', 'auto'),
(119, 'widget_nav_menu', 'a:1:{s:12:"_multiwidget";i:1;}', 'auto'),
(120, 'widget_custom_html', 'a:1:{s:12:"_multiwidget";i:1;}', 'auto'),
(121, 'recovery_keys', 'a:0:{}', 'off'),
(122, 'theme_mods_twentytwentyfive', 'a:2:{s:18:"custom_css_post_id";i:-1;s:16:"sidebars_widgets";a:2:{s:4:"time";i:1756477743;s:4:"data";a:3:{s:19:"wp_inactive_widgets";a:0:{}s:9:"sidebar-1";a:3:{i:0;s:7:"block-2";i:1;s:7:"block-3";i:2;s:7:"block-4";}s:9:"sidebar-2";a:2:{i:0;s:7:"block-5";i:1;s:7:"block-6";}}}}', 'off'),
(123, '_transient_wp_core_block_css_files', 'a:2:{s:7:"version";s:5:"6.8.2";s:5:"files";a:536:{i:0;s:23:"archives/editor-rtl.css";i:1;s:27:"archives/editor-rtl.min.css";i:2;s:19:"archives/editor.css";i:3;s:23:"archives/editor.min.css";i:4;s:22:"archives/style-rtl.css";i:5;s:26:"archives/style-rtl.min.css";i:6;s:18:"archives/style.css";i:7;s:22:"archives/style.min.css";i:8;s:20:"audio/editor-rtl.css";i:9;s:24:"audio/editor-rtl.min.css";i:10;s:16:"audio/editor.css";i:11;s:20:"audio/editor.min.css";i:12;s:19:"audio/style-rtl.css";i:13;s:23:"audio/style-rtl.min.css";i:14;s:15:"audio/style.css";i:15;s:19:"audio/style.min.css";i:16;s:19:"audio/theme-rtl.css";i:17;s:23:"audio/theme-rtl.min.css";i:18;s:15:"audio/theme.css";i:19;s:19:"audio/theme.min.css";i:20;s:21:"avatar/editor-rtl.css";i:21;s:25:"avatar/editor-rtl.min.css";i:22;s:17:"avatar/editor.css";i:23;s:21:"avatar/editor.min.css";i:24;s:20:"avatar/style-rtl.css";i:25;s:24:"avatar/style-rtl.min.css";i:26;s:16:"avatar/style.css";i:27;s:20:"avatar/style.min.css";i:28;s:21:"button/editor-rtl.css";i:29;s:25:"button/editor-rtl.min.css";i:30;s:17:"button/editor.css";i:31;s:21:"button/editor.min.css";i:32;s:20:"button/style-rtl.css";i:33;s:24:"button/style-rtl.min.css";i:34;s:16:"button/style.css";i:35;s:20:"button/style.min.css";i:36;s:22:"buttons/editor-rtl.css";i:37;s:26:"buttons/editor-rtl.min.css";i:38;s:18:"buttons/editor.css";i:39;s:22:"buttons/editor.min.css";i:40;s:21:"buttons/style-rtl.css";i:41;s:25:"buttons/style-rtl.min.css";i:42;s:17:"buttons/style.css";i:43;s:21:"buttons/style.min.css";i:44;s:22:"calendar/style-rtl.css";i:45;s:26:"calendar/style-rtl.min.css";i:46;s:18:"calendar/style.css";i:47;s:22:"calendar/style.min.css";i:48;s:25:"categories/editor-rtl.css";i:49;s:29:"categories/editor-rtl.min.css";i:50;s:21:"categories/editor.css";i:51;s:25:"categories/editor.min.css";i:52;s:24:"categories/style-rtl.css";i:53;s:28:"categories/style-rtl.min.css";i:54;s:20:"categories/style.css";i:55;s:24:"categories/style.min.css";i:56;s:19:"code/editor-rtl.css";i:57;s:23:"code/editor-rtl.min.css";i:58;s:15:"code/editor.css";i:59;s:19:"code/editor.min.css";i:60;s:18:"code/style-rtl.css";i:61;s:22:"code/style-rtl.min.css";i:62;s:14:"code/style.css";i:63;s:18:"code/style.min.css";i:64;s:18:"code/theme-rtl.css";i:65;s:22:"code/theme-rtl.min.css";i:66;s:14:"code/theme.css";i:67;s:18:"code/theme.min.css";i:68;s:22:"columns/editor-rtl.css";i:69;s:26:"columns/editor-rtl.min.css";i:70;s:18:"columns/editor.css";i:71;s:22:"columns/editor.min.css";i:72;s:21:"columns/style-rtl.css";i:73;s:25:"columns/style-rtl.min.css";i:74;s:17:"columns/style.css";i:75;s:21:"columns/style.min.css";i:76;s:33:"comment-author-name/style-rtl.css";i:77;s:37:"comment-author-name/style-rtl.min.css";i:78;s:29:"comment-author-name/style.css";i:79;s:33:"comment-author-name/style.min.css";i:80;s:29:"comment-content/style-rtl.css";i:81;s:33:"comment-content/style-rtl.min.css";i:82;s:25:"comment-content/style.css";i:83;s:29:"comment-content/style.min.css";i:84;s:26:"comment-date/style-rtl.css";i:85;s:30:"comment-date/style-rtl.min.css";i:86;s:22:"comment-date/style.css";i:87;s:26:"comment-date/style.min.css";i:88;s:31:"comment-edit-link/style-rtl.css";i:89;s:35:"comment-edit-link/style-rtl.min.css";i:90;s:27:"comment-edit-link/style.css";i:91;s:31:"comment-edit-link/style.min.css";i:92;s:32:"comment-reply-link/style-rtl.css";i:93;s:36:"comment-reply-link/style-rtl.min.css";i:94;s:28:"comment-reply-link/style.css";i:95;s:32:"comment-reply-link/style.min.css";i:96;s:30:"comment-template/style-rtl.css";i:97;s:34:"comment-template/style-rtl.min.css";i:98;s:26:"comment-template/style.css";i:99;s:30:"comment-template/style.min.css";i:100;s:42:"comments-pagination-numbers/editor-rtl.css";i:101;s:46:"comments-pagination-numbers/editor-rtl.min.css";i:102;s:38:"comments-pagination-numbers/editor.css";i:103;s:42:"comments-pagination-numbers/editor.min.css";i:104;s:34:"comments-pagination/editor-rtl.css";i:105;s:38:"comments-pagination/editor-rtl.min.css";i:106;s:30:"comments-pagination/editor.css";i:107;s:34:"comments-pagination/editor.min.css";i:108;s:33:"comments-pagination/style-rtl.css";i:109;s:37:"comments-pagination/style-rtl.min.css";i:110;s:29:"comments-pagination/style.css";i:111;s:33:"comments-pagination/style.min.css";i:112;s:29:"comments-title/editor-rtl.css";i:113;s:33:"comments-title/editor-rtl.min.css";i:114;s:25:"comments-title/editor.css";i:115;s:29:"comments-title/editor.min.css";i:116;s:23:"comments/editor-rtl.css";i:117;s:27:"comments/editor-rtl.min.css";i:118;s:19:"comments/editor.css";i:119;s:23:"comments/editor.min.css";i:120;s:22:"comments/style-rtl.css";i:121;s:26:"comments/style-rtl.min.css";i:122;s:18:"comments/style.css";i:123;s:22:"comments/style.min.css";i:124;s:20:"cover/editor-rtl.css";i:125;s:24:"cover/editor-rtl.min.css";i:126;s:16:"cover/editor.css";i:127;s:20:"cover/editor.min.css";i:128;s:19:"cover/style-rtl.css";i:129;s:23:"cover/style-rtl.min.css";i:130;s:15:"cover/style.css";i:131;s:19:"cover/style.min.css";i:132;s:22:"details/editor-rtl.css";i:133;s:26:"details/editor-rtl.min.css";i:134;s:18:"details/editor.css";i:135;s:22:"details/editor.min.css";i:136;s:21:"details/style-rtl.css";i:137;s:25:"details/style-rtl.min.css";i:138;s:17:"details/style.css";i:139;s:21:"details/style.min.css";i:140;s:20:"embed/editor-rtl.css";i:141;s:24:"embed/editor-rtl.min.css";i:142;s:16:"embed/editor.css";i:143;s:20:"embed/editor.min.css";i:144;s:19:"embed/style-rtl.css";i:145;s:23:"embed/style-rtl.min.css";i:146;s:15:"embed/style.css";i:147;s:19:"embed/style.min.css";i:148;s:19:"embed/theme-rtl.css";i:149;s:23:"embed/theme-rtl.min.css";i:150;s:15:"embed/theme.css";i:151;s:19:"embed/theme.min.css";i:152;s:19:"file/editor-rtl.css";i:153;s:23:"file/editor-rtl.min.css";i:154;s:15:"file/editor.css";i:155;s:19:"file/editor.min.css";i:156;s:18:"file/style-rtl.css";i:157;s:22:"file/style-rtl.min.css";i:158;s:14:"file/style.css";i:159;s:18:"file/style.min.css";i:160;s:23:"footnotes/style-rtl.css";i:161;s:27:"footnotes/style-rtl.min.css";i:162;s:19:"footnotes/style.css";i:163;s:23:"footnotes/style.min.css";i:164;s:23:"freeform/editor-rtl.css";i:165;s:27:"freeform/editor-rtl.min.css";i:166;s:19:"freeform/editor.css";i:167;s:23:"freeform/editor.min.css";i:168;s:22:"gallery/editor-rtl.css";i:169;s:26:"gallery/editor-rtl.min.css";i:170;s:18:"gallery/editor.css";i:171;s:22:"gallery/editor.min.css";i:172;s:21:"gallery/style-rtl.css";i:173;s:25:"gallery/style-rtl.min.css";i:174;s:17:"gallery/style.css";i:175;s:21:"gallery/style.min.css";i:176;s:21:"gallery/theme-rtl.css";i:177;s:25:"gallery/theme-rtl.min.css";i:178;s:17:"gallery/theme.css";i:179;s:21:"gallery/theme.min.css";i:180;s:20:"group/editor-rtl.css";i:181;s:24:"group/editor-rtl.min.css";i:182;s:16:"group/editor.css";i:183;s:20:"group/editor.min.css";i:184;s:19:"group/style-rtl.css";i:185;s:23:"group/style-rtl.min.css";i:186;s:15:"group/style.css";i:187;s:19:"group/style.min.css";i:188;s:19:"group/theme-rtl.css";i:189;s:23:"group/theme-rtl.min.css";i:190;s:15:"group/theme.css";i:191;s:19:"group/theme.min.css";i:192;s:21:"heading/style-rtl.css";i:193;s:25:"heading/style-rtl.min.css";i:194;s:17:"heading/style.css";i:195;s:21:"heading/style.min.css";i:196;s:19:"html/editor-rtl.css";i:197;s:23:"html/editor-rtl.min.css";i:198;s:15:"html/editor.css";i:199;s:19:"html/editor.min.css";i:200;s:20:"image/editor-rtl.css";i:201;s:24:"image/editor-rtl.min.css";i:202;s:16:"image/editor.css";i:203;s:20:"image/editor.min.css";i:204;s:19:"image/style-rtl.css";i:205;s:23:"image/style-rtl.min.css";i:206;s:15:"image/style.css";i:207;s:19:"image/style.min.css";i:208;s:19:"image/theme-rtl.css";i:209;s:23:"image/theme-rtl.min.css";i:210;s:15:"image/theme.css";i:211;s:19:"image/theme.min.css";i:212;s:29:"latest-comments/style-rtl.css";i:213;s:33:"latest-comments/style-rtl.min.css";i:214;s:25:"latest-comments/style.css";i:215;s:29:"latest-comments/style.min.css";i:216;s:27:"latest-posts/editor-rtl.css";i:217;s:31:"latest-posts/editor-rtl.min.css";i:218;s:23:"latest-posts/editor.css";i:219;s:27:"latest-posts/editor.min.css";i:220;s:26:"latest-posts/style-rtl.css";i:221;s:30:"latest-posts/style-rtl.min.css";i:222;s:22:"latest-posts/style.css";i:223;s:26:"latest-posts/style.min.css";i:224;s:18:"list/style-rtl.css";i:225;s:22:"list/style-rtl.min.css";i:226;s:14:"list/style.css";i:227;s:18:"list/style.min.css";i:228;s:22:"loginout/style-rtl.css";i:229;s:26:"loginout/style-rtl.min.css";i:230;s:18:"loginout/style.css";i:231;s:22:"loginout/style.min.css";i:232;s:25:"media-text/editor-rtl.css";i:233;s:29:"media-text/editor-rtl.min.css";i:234;s:21:"media-text/editor.css";i:235;s:25:"media-text/editor.min.css";i:236;s:24:"media-text/style-rtl.css";i:237;s:28:"media-text/style-rtl.min.css";i:238;s:20:"media-text/style.css";i:239;s:24:"media-text/style.min.css";i:240;s:19:"more/editor-rtl.css";i:241;s:23:"more/editor-rtl.min.css";i:242;s:15:"more/editor.css";i:243;s:19:"more/editor.min.css";i:244;s:30:"navigation-link/editor-rtl.css";i:245;s:34:"navigation-link/editor-rtl.min.css";i:246;s:26:"navigation-link/editor.css";i:247;s:30:"navigation-link/editor.min.css";i:248;s:29:"navigation-link/style-rtl.css";i:249;s:33:"navigation-link/style-rtl.min.css";i:250;s:25:"navigation-link/style.css";i:251;s:29:"navigation-link/style.min.css";i:252;s:33:"navigation-submenu/editor-rtl.css";i:253;s:37:"navigation-submenu/editor-rtl.min.css";i:254;s:29:"navigation-submenu/editor.css";i:255;s:33:"navigation-submenu/editor.min.css";i:256;s:25:"navigation/editor-rtl.css";i:257;s:29:"navigation/editor-rtl.min.css";i:258;s:21:"navigation/editor.css";i:259;s:25:"navigation/editor.min.css";i:260;s:24:"navigation/style-rtl.css";i:261;s:28:"navigation/style-rtl.min.css";i:262;s:20:"navigation/style.css";i:263;s:24:"navigation/style.min.css";i:264;s:23:"nextpage/editor-rtl.css";i:265;s:27:"nextpage/editor-rtl.min.css";i:266;s:19:"nextpage/editor.css";i:267;s:23:"nextpage/editor.min.css";i:268;s:24:"page-list/editor-rtl.css";i:269;s:28:"page-list/editor-rtl.min.css";i:270;s:20:"page-list/editor.css";i:271;s:24:"page-list/editor.min.css";i:272;s:23:"page-list/style-rtl.css";i:273;s:27:"page-list/style-rtl.min.css";i:274;s:19:"page-list/style.css";i:275;s:23:"page-list/style.min.css";i:276;s:24:"paragraph/editor-rtl.css";i:277;s:28:"paragraph/editor-rtl.min.css";i:278;s:20:"paragraph/editor.css";i:279;s:24:"paragraph/editor.min.css";i:280;s:23:"paragraph/style-rtl.css";i:281;s:27:"paragraph/style-rtl.min.css";i:282;s:19:"paragraph/style.css";i:283;s:23:"paragraph/style.min.css";i:284;s:35:"post-author-biography/style-rtl.css";i:285;s:39:"post-author-biography/style-rtl.min.css";i:286;s:31:"post-author-biography/style.css";i:287;s:35:"post-author-biography/style.min.css";i:288;s:30:"post-author-name/style-rtl.css";i:289;s:34:"post-author-name/style-rtl.min.css";i:290;s:26:"post-author-name/style.css";i:291;s:30:"post-author-name/style.min.css";i:292;s:26:"post-author/editor-rtl.css";i:293;s:30:"post-author/editor-rtl.min.css";i:294;s:22:"post-author/editor.css";i:295;s:26:"post-author/editor.min.css";i:296;s:25:"post-author/style-rtl.css";i:297;s:29:"post-author/style-rtl.min.css";i:298;s:21:"post-author/style.css";i:299;s:25:"post-author/style.min.css";i:300;s:33:"post-comments-form/editor-rtl.css";i:301;s:37:"post-comments-form/editor-rtl.min.css";i:302;s:29:"post-comments-form/editor.css";i:303;s:33:"post-comments-form/editor.min.css";i:304;s:32:"post-comments-form/style-rtl.css";i:305;s:36:"post-comments-form/style-rtl.min.css";i:306;s:28:"post-comments-form/style.css";i:307;s:32:"post-comments-form/style.min.css";i:308;s:26:"post-content/style-rtl.css";i:309;s:30:"post-content/style-rtl.min.css";i:310;s:22:"post-content/style.css";i:311;s:26:"post-content/style.min.css";i:312;s:23:"post-date/style-rtl.css";i:313;s:27:"post-date/style-rtl.min.css";i:314;s:19:"post-date/style.css";i:315;s:23:"post-date/style.min.css";i:316;s:27:"post-excerpt/editor-rtl.css";i:317;s:31:"post-excerpt/editor-rtl.min.css";i:318;s:23:"post-excerpt/editor.css";i:319;s:27:"post-excerpt/editor.min.css";i:320;s:26:"post-excerpt/style-rtl.css";i:321;s:30:"post-excerpt/style-rtl.min.css";i:322;s:22:"post-excerpt/style.css";i:323;s:26:"post-excerpt/style.min.css";i:324;s:34:"post-featured-image/editor-rtl.css";i:325;s:38:"post-featured-image/editor-rtl.min.css";i:326;s:30:"post-featured-image/editor.css";i:327;s:34:"post-featured-image/editor.min.css";i:328;s:33:"post-featured-image/style-rtl.css";i:329;s:37:"post-featured-image/style-rtl.min.css";i:330;s:29:"post-featured-image/style.css";i:331;s:33:"post-featured-image/style.min.css";i:332;s:34:"post-navigation-link/style-rtl.css";i:333;s:38:"post-navigation-link/style-rtl.min.css";i:334;s:30:"post-navigation-link/style.css";i:335;s:34:"post-navigation-link/style.min.css";i:336;s:27:"post-template/style-rtl.css";i:337;s:31:"post-template/style-rtl.min.css";i:338;s:23:"post-template/style.css";i:339;s:27:"post-template/style.min.css";i:340;s:24:"post-terms/style-rtl.css";i:341;s:28:"post-terms/style-rtl.min.css";i:342;s:20:"post-terms/style.css";i:343;s:24:"post-terms/style.min.css";i:344;s:24:"post-title/style-rtl.css";i:345;s:28:"post-title/style-rtl.min.css";i:346;s:20:"post-title/style.css";i:347;s:24:"post-title/style.min.css";i:348;s:26:"preformatted/style-rtl.css";i:349;s:30:"preformatted/style-rtl.min.css";i:350;s:22:"preformatted/style.css";i:351;s:26:"preformatted/style.min.css";i:352;s:24:"pullquote/editor-rtl.css";i:353;s:28:"pullquote/editor-rtl.min.css";i:354;s:20:"pullquote/editor.css";i:355;s:24:"pullquote/editor.min.css";i:356;s:23:"pullquote/style-rtl.css";i:357;s:27:"pullquote/style-rtl.min.css";i:358;s:19:"pullquote/style.css";i:359;s:23:"pullquote/style.min.css";i:360;s:23:"pullquote/theme-rtl.css";i:361;s:27:"pullquote/theme-rtl.min.css";i:362;s:19:"pullquote/theme.css";i:363;s:23:"pullquote/theme.min.css";i:364;s:39:"query-pagination-numbers/editor-rtl.css";i:365;s:43:"query-pagination-numbers/editor-rtl.min.css";i:366;s:35:"query-pagination-numbers/editor.css";i:367;s:39:"query-pagination-numbers/editor.min.css";i:368;s:31:"query-pagination/editor-rtl.css";i:369;s:35:"query-pagination/editor-rtl.min.css";i:370;s:27:"query-pagination/editor.css";i:371;s:31:"query-pagination/editor.min.css";i:372;s:30:"query-pagination/style-rtl.css";i:373;s:34:"query-pagination/style-rtl.min.css";i:374;s:26:"query-pagination/style.css";i:375;s:30:"query-pagination/style.min.css";i:376;s:25:"query-title/style-rtl.css";i:377;s:29:"query-title/style-rtl.min.css";i:378;s:21:"query-title/style.css";i:379;s:25:"query-title/style.min.css";i:380;s:25:"query-total/style-rtl.css";i:381;s:29:"query-total/style-rtl.min.css";i:382;s:21:"query-total/style.css";i:383;s:25:"query-total/style.min.css";i:384;s:20:"query/editor-rtl.css";i:385;s:24:"query/editor-rtl.min.css";i:386;s:16:"query/editor.css";i:387;s:20:"query/editor.min.css";i:388;s:19:"quote/style-rtl.css";i:389;s:23:"quote/style-rtl.min.css";i:390;s:15:"quote/style.css";i:391;s:19:"quote/style.min.css";i:392;s:19:"quote/theme-rtl.css";i:393;s:23:"quote/theme-rtl.min.css";i:394;s:15:"quote/theme.css";i:395;s:19:"quote/theme.min.css";i:396;s:23:"read-more/style-rtl.css";i:397;s:27:"read-more/style-rtl.min.css";i:398;s:19:"read-more/style.css";i:399;s:23:"read-more/style.min.css";i:400;s:18:"rss/editor-rtl.css";i:401;s:22:"rss/editor-rtl.min.css";i:402;s:14:"rss/editor.css";i:403;s:18:"rss/editor.min.css";i:404;s:17:"rss/style-rtl.css";i:405;s:21:"rss/style-rtl.min.css";i:406;s:13:"rss/style.css";i:407;s:17:"rss/style.min.css";i:408;s:21:"search/editor-rtl.css";i:409;s:25:"search/editor-rtl.min.css";i:410;s:17:"search/editor.css";i:411;s:21:"search/editor.min.css";i:412;s:20:"search/style-rtl.css";i:413;s:24:"search/style-rtl.min.css";i:414;s:16:"search/style.css";i:415;s:20:"search/style.min.css";i:416;s:20:"search/theme-rtl.css";i:417;s:24:"search/theme-rtl.min.css";i:418;s:16:"search/theme.css";i:419;s:20:"search/theme.min.css";i:420;s:24:"separator/editor-rtl.css";i:421;s:28:"separator/editor-rtl.min.css";i:422;s:20:"separator/editor.css";i:423;s:24:"separator/editor.min.css";i:424;s:23:"separator/style-rtl.css";i:425;s:27:"separator/style-rtl.min.css";i:426;s:19:"separator/style.css";i:427;s:23:"separator/style.min.css";i:428;s:23:"separator/theme-rtl.css";i:429;s:27:"separator/theme-rtl.min.css";i:430;s:19:"separator/theme.css";i:431;s:23:"separator/theme.min.css";i:432;s:24:"shortcode/editor-rtl.css";i:433;s:28:"shortcode/editor-rtl.min.css";i:434;s:20:"shortcode/editor.css";i:435;s:24:"shortcode/editor.min.css";i:436;s:24:"site-logo/editor-rtl.css";i:437;s:28:"site-logo/editor-rtl.min.css";i:438;s:20:"site-logo/editor.css";i:439;s:24:"site-logo/editor.min.css";i:440;s:23:"site-logo/style-rtl.css";i:441;s:27:"site-logo/style-rtl.min.css";i:442;s:19:"site-logo/style.css";i:443;s:23:"site-logo/style.min.css";i:444;s:27:"site-tagline/editor-rtl.css";i:445;s:31:"site-tagline/editor-rtl.min.css";i:446;s:23:"site-tagline/editor.css";i:447;s:27:"site-tagline/editor.min.css";i:448;s:26:"site-tagline/style-rtl.css";i:449;s:30:"site-tagline/style-rtl.min.css";i:450;s:22:"site-tagline/style.css";i:451;s:26:"site-tagline/style.min.css";i:452;s:25:"site-title/editor-rtl.css";i:453;s:29:"site-title/editor-rtl.min.css";i:454;s:21:"site-title/editor.css";i:455;s:25:"site-title/editor.min.css";i:456;s:24:"site-title/style-rtl.css";i:457;s:28:"site-title/style-rtl.min.css";i:458;s:20:"site-title/style.css";i:459;s:24:"site-title/style.min.css";i:460;s:26:"social-link/editor-rtl.css";i:461;s:30:"social-link/editor-rtl.min.css";i:462;s:22:"social-link/editor.css";i:463;s:26:"social-link/editor.min.css";i:464;s:27:"social-links/editor-rtl.css";i:465;s:31:"social-links/editor-rtl.min.css";i:466;s:23:"social-links/editor.css";i:467;s:27:"social-links/editor.min.css";i:468;s:26:"social-links/style-rtl.css";i:469;s:30:"social-links/style-rtl.min.css";i:470;s:22:"social-links/style.css";i:471;s:26:"social-links/style.min.css";i:472;s:21:"spacer/editor-rtl.css";i:473;s:25:"spacer/editor-rtl.min.css";i:474;s:17:"spacer/editor.css";i:475;s:21:"spacer/editor.min.css";i:476;s:20:"spacer/style-rtl.css";i:477;s:24:"spacer/style-rtl.min.css";i:478;s:16:"spacer/style.css";i:479;s:20:"spacer/style.min.css";i:480;s:20:"table/editor-rtl.css";i:481;s:24:"table/editor-rtl.min.css";i:482;s:16:"table/editor.css";i:483;s:20:"table/editor.min.css";i:484;s:19:"table/style-rtl.css";i:485;s:23:"table/style-rtl.min.css";i:486;s:15:"table/style.css";i:487;s:19:"table/style.min.css";i:488;s:19:"table/theme-rtl.css";i:489;s:23:"table/theme-rtl.min.css";i:490;s:15:"table/theme.css";i:491;s:19:"table/theme.min.css";i:492;s:24:"tag-cloud/editor-rtl.css";i:493;s:28:"tag-cloud/editor-rtl.min.css";i:494;s:20:"tag-cloud/editor.css";i:495;s:24:"tag-cloud/editor.min.css";i:496;s:23:"tag-cloud/style-rtl.css";i:497;s:27:"tag-cloud/style-rtl.min.css";i:498;s:19:"tag-cloud/style.css";i:499;s:23:"tag-cloud/style.min.css";i:500;s:28:"template-part/editor-rtl.css";i:501;s:32:"template-part/editor-rtl.min.css";i:502;s:24:"template-part/editor.css";i:503;s:28:"template-part/editor.min.css";i:504;s:27:"template-part/theme-rtl.css";i:505;s:31:"template-part/theme-rtl.min.css";i:506;s:23:"template-part/theme.css";i:507;s:27:"template-part/theme.min.css";i:508;s:30:"term-description/style-rtl.css";i:509;s:34:"term-description/style-rtl.min.css";i:510;s:26:"term-description/style.css";i:511;s:30:"term-description/style.min.css";i:512;s:27:"text-columns/editor-rtl.css";i:513;s:31:"text-columns/editor-rtl.min.css";i:514;s:23:"text-columns/editor.css";i:515;s:27:"text-columns/editor.min.css";i:516;s:26:"text-columns/style-rtl.css";i:517;s:30:"text-columns/style-rtl.min.css";i:518;s:22:"text-columns/style.css";i:519;s:26:"text-columns/style.min.css";i:520;s:19:"verse/style-rtl.css";i:521;s:23:"verse/style-rtl.min.css";i:522;s:15:"verse/style.css";i:523;s:19:"verse/style.min.css";i:524;s:20:"video/editor-rtl.css";i:525;s:24:"video/editor-rtl.min.css";i:526;s:16:"video/editor.css";i:527;s:20:"video/editor.min.css";i:528;s:19:"video/style-rtl.css";i:529;s:23:"video/style-rtl.min.css";i:530;s:15:"video/style.css";i:531;s:19:"video/style.min.css";i:532;s:19:"video/theme-rtl.css";i:533;s:23:"video/theme-rtl.min.css";i:534;s:15:"video/theme.css";i:535;s:19:"video/theme.min.css";}}', 'on'),
(130, '_transient_wp_styles_for_blocks', 'a:2:{s:4:"hash";s:32:"05ab89f9d448fb6733feb795156f8d10";s:6:"blocks";a:5:{s:11:"core/button";s:0:"";s:14:"core/site-logo";s:0:"";s:18:"core/post-template";s:0:"";s:12:"core/columns";s:0:"";s:14:"core/pullquote";s:69:":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}";}}', 'on'),
(131, 'WPLANG', 'pt_BR', 'yes'),
(155, 'can_compress_scripts', '1', 'on'),
(164, 'finished_updating_comment_type', '1', 'auto'),
(167, 'new_admin_email', 'apefia1998@gmail.com', 'auto'),
(172, '_site_transient_wp_plugin_dependencies_plugin_data', 'a:1:{s:9:"elementor";a:35:{s:4:"name";s:78:"Elementor Website Builder &#8211; Mais do que apenas um construtor de páginas";s:4:"slug";s:9:"elementor";s:7:"version";s:6:"3.31.3";s:6:"author";s:64:"<a href="https://profiles.wordpress.org/elemntor/">Elementor</a>";s:14:"author_profile";s:40:"https://profiles.wordpress.org/elemntor/";s:12:"contributors";a:1:{s:8:"elemntor";a:3:{s:7:"profile";s:40:"https://profiles.wordpress.org/elemntor/";s:6:"avatar";s:120:"https://secure.gravatar.com/avatar/7d70f15d78757f876d1847a8f87dd93e1d9c168264b4aeeaf72058656690d05b?s=96&d=monsterid&r=g";s:12:"display_name";s:9:"Elementor";}}s:8:"requires";s:3:"6.6";s:6:"tested";s:5:"6.8.2";s:12:"requires_php";s:3:"7.4";s:16:"requires_plugins";a:0:{}s:6:"rating";i:90;s:7:"ratings";a:5:{i:5;i:6046;i:4;i:219;i:3;i:106;i:2;i:104;i:1;i:622;}s:11:"num_ratings";i:7097;s:11:"support_url";s:47:"https://wordpress.org/support/plugin/elementor/";s:15:"support_threads";i:106;s:24:"support_threads_resolved";i:93;s:15:"active_installs";i:10000000;s:12:"last_updated";s:22:"2025-08-27 10:18am GMT";s:5:"added";s:10:"2016-05-30";s:8:"homepage";s:87:"https://elementor.com/?utm_source=wp-plugins&utm_campaign=plugin-uri&utm_medium=wp-dash";s:8:"sections";a:6:{s:11:"description";s:29170:"<p><iframe loading="lazy" title="Elementor - The Leading Platform for Web Creators" width="750" height="422" src="https://www.youtube.com/embed/le72grP_Q6k?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></p>\n<h4>O CONSTRUTOR DE SITES WORDPRESS Nº 1 DE ARRASTAR E SOLTAR, SEM CÓDIGOS, COM MAIS DE 18 MILHÕES DE SITES EM TODO O MUNDO, AGORA COM IA.</h4>\n<p>O Elementor, a principal plataforma de criação de sites do WordPress, permite que você crie sites profissionais e perfeitos em termos de pixels, de maneira integrada.</p>\n<p>Desbloqueie todos os recursos com o <a href="https://go.elementor.com/wp-repo-description-tab-elementor-pro-pro-features/" rel="nofollow ugc">Elementor Pro</a>.</p>\n<p>Precisa de hospedagem em nuvem rápida e segura para seu site Elementor? Experimente o <strong><a href="https://elemn.to/repo-hosting" rel="nofollow ugc">Elementor Hosting</a></strong>, desenvolvido pelo Google Cloud e Cloudflare. Pontuação de 4,9/5 no TrustPilot.</p>\n<h3>🌟 Crie sites profissionais impressionantes</h3>\n<ul>\n<li><strong><a href="https://go.elementor.com/feature-page-editor/" rel="nofollow ugc">Construtor de arrastar e soltar intuitivo</a></strong>: Crie qualquer site com nosso editor de arrastar e soltar sem códigos. Alcance a precisão no design com controle total sobre o layout e o estilo.</li>\n<li><strong><a href="https://go.elementor.com/wp-repo-description-tab-pro-features-feature-page/" rel="nofollow ugc">Ferramentas de design com pixels perfeitos</a></strong>: Envie SVGs, aplique máscaras, gradientes, sombras de caixa, efeitos de título, divisores de forma e use controles CSS integrados para personalização avançada.</li>\n<li><strong><a href="https://go.elementor.com/wp-repo-description-tab-library-full-website-kit/" rel="nofollow ugc">Biblioteca de modelos</a></strong>: Aplique kits de sites completos para configurações instantâneas ou escolha em uma vasta biblioteca de páginas únicas, blocos e modelos de pop-up.</li>\n<li><strong><a href="https://go.elementor.com/feature-page-editor/" rel="nofollow ugc">Widgets avançados</a></strong>: Acesse mais de 40 widgets GRATUITOS, incluindo título, imagem, editor de texto, vídeo, botão, galeria, carrossel e muito mais.</li>\n<li><strong><a href="https://go.elementor.com/wp-repo-description-tab-elementor-ai/" rel="nofollow ugc">Recursos de IA</a></strong>: Revolucione seu processo de criação de design e conteúdo com a integração nativa de IA. Crie imediatamente seções, textos, códigos e imagens.</li>\n</ul>\n<h4>🗝️ Principais recursos:</h4>\n<ul>\n<li><strong><a href="https://go.elementor.com/feature-page-global-settings/" rel="nofollow ugc">Sistema de design</a></strong>: Use o sistema de design do Elementor para obter cores, tipografia e elementos de design consistentes, garantindo uma aparência coesa e profissional.</li>\n<li><strong><a href="https://go.elementor.com/feature-page-responsive-design/" rel="nofollow ugc">Design responsivo</a></strong>: Otimize seu design para todos os dispositivos com pontos de interrupção personalizados, garantindo uma experiência perfeita em desktops, tablets e dispositivos móveis.</li>\n<li><strong>Formas de máscara</strong>: Transforme qualquer elemento, como uma imagem ou um vídeo, em qualquer forma que você queira para criar designs marcantes.</li>\n<li><strong>Transformação de CSS</strong>: Use a transformação de CSS para rotacionar, dimensionar e inclinar elementos, adicionando um estilo dinâmico ao seu site.</li>\n<li><strong>Animações de entrada</strong>: Adicione animações de entrada aos elementos para criar experiências de usuário envolventes e interativas.</li>\n<li><strong><a href="https://elementor.com/features/#SaveBackup" rel="nofollow ugc">Histórico de revisões</a></strong>: O recurso de histórico de revisões do Elementor permite que os usuários acompanhem e revertam para versões anteriores dos seus designs, proporcionando tranquilidade e flexibilidade durante o processo criativo.</li>\n<li><strong><a href="https://go.elementor.com/wp-repo-description-tab-developers-developers-website/" rel="nofollow ugc">Amigável para desenvolvedores</a></strong>: Equipado com ampla documentação, API, ferramentas para desenvolvedores e áreas de código personalizado, o Elementor oferece um ambiente propício para que os desenvolvedores ampliem seus recursos e criem soluções personalizadas.</li>\n<li><strong>Botões flutuantes</strong>: Melhore a interação do usuário com botões de ação flutuantes e personalizáveis que permanecem visíveis à medida que os usuários rolam a tela.</li>\n<li><strong><a href="https://go.elementor.com/wp-repo-description-tab-pro-features-industry-leading-theme-builder/" rel="nofollow ugc">Construtor de temas</a> [Pro]</strong>: Crie cada parte do seu site &#8211; cabeçalhos, rodapés, posts e arquivos &#8211; para ter controle total sobre a aparência.</li>\n<li><strong><a href="https://go.elementor.com/wp-repo-description-tab-pro-features-popup-builder/" rel="nofollow ugc">Construtor de pop-ups</a> [Pro]</strong>: Crie pop-ups chamativos com o construtor de pop-ups do Elementor, que conta com opções avançadas de direcionamento e acionamento para otimizar o envolvimento do usuário e as conversões.</li>\n<li><strong><a href="https://go.elementor.com/wp-repo-description-tab-pro-features-professional-form-builder-and-submission-log/" rel="nofollow ugc">Formulários</a> [Pro]</strong>: Crie e integre formulários personalizados, usando recursos avançados e integrações para capturar e gerenciar envios de forma eficaz.</li>\n<li><strong><a href="https://go.elementor.com/wp-repo-description-tab-pro-features-woocommerce-builder/" rel="nofollow ugc">Construtor do WooCommerce</a> [Pro]</strong>: Integre o Elementor ao WooCommerce para criar páginas de produtos personalizadas, layouts de loja, arquivos, carrinhos, páginas de finalização de compra, minha conta e muito mais, aumentando o apelo visual e a funcionalidade da sua loja.</li>\n<li><strong><a href="https://go.elementor.com/wp-repo-description-tab-pro-features-dynamic-content/" rel="nofollow ugc">Conteúdo dinâmico</a> [Pro]</strong>: Aproveite os recursos de conteúdo dinâmico para criar experiências personalizadas e interativas na web, conectando seus designs a várias fontes de dados.</li>\n<li><strong><a href="https://go.elementor.com/features-page-notes/" rel="nofollow ugc">Anotações</a> [Pro]</strong>: Melhore a colaboração da equipe usando o recurso de anotações do Elementor para deixar feedbacks e comentários diretamente na interface do design.</li>\n<li><strong>Código personalizado [Pro]</strong>: Insere código personalizado para estender a funcionalidade do seu site, oferecendo flexibilidade para personalizações avançadas.</li>\n<li><strong> CSS personalizado [Pro]</strong>: Aplique CSS personalizado para fazer o ajuste fino do estilo dos elementos, garantindo um controle preciso sobre os aspectos do design.</li>\n<li><strong><a href="https://go.elementor.com/wp-repo-description-tab-pro-features-motion-effects/" rel="nofollow ugc">Efeitos de movimento</a> [Pro]</strong>: Adicione efeitos de movimento avançados a elementos para proporcionar uma experiência de usuário mais dinâmica e envolvente.</li>\n<li><strong>Fontes e ícones personalizados [Pro]</strong>: Envie e use fontes e ícones personalizados para combinar com a identidade da sua marca.</li>\n</ul>\n<h4>😍 Widgets do Elementor GRATUITO</h4>\n<p>Desbloqueie o potencial do Elementor com nosso conjunto abrangente de widgets e ferramentas gratuitas, desenvolvido para otimizar seu processo de criação de sites e melhorar seus recursos de design:</p>\n<ul>\n<li><strong>Título</strong>. Adicione manchetes chamativas.</li>\n<li><strong>Imagem</strong>. Controle o tamanho, a opacidade e muito mais.</li>\n<li><strong>Editor de texto</strong>. Exatamente como o editor do WordPress.</li>\n<li><strong>Vídeo</strong>. Adicione vídeos do YouTube, do Vimeo, do Dailymotion ou auto-hospedados.</li>\n<li><strong>Botão</strong>. Crie botões interativos.</li>\n<li><strong>Link na biografia</strong>. Crie componentes de link na biografia para promover sua empresa/serviços.</li>\n<li><strong>Caixa de imagem</strong>. Uma caixa com imagem, título e texto.</li>\n<li><strong>Depoimentos</strong>. Depoimentos de clientes.</li>\n<li><strong>Ícone</strong>. Coloque um ou mais dos mais de 600 ícones disponíveis.</li>\n<li><strong>Caixa de ícones</strong>. Um ícone, um título manchete e um texto em um único widget.</li>\n<li><strong>Ícones sociais</strong>. Crie links para suas páginas sociais com os ícones do Facebook/X (antigo Twitter).</li>\n<li><strong>Galeria de imagens</strong>. Exiba suas imagens em uma grade.</li>\n<li><strong>Carrossel de imagens</strong>. Crie carrosséis rotativos ou controles deslizantes (sliders) para as imagens escolhidas.</li>\n<li><strong>Lista de ícones</strong>. Use qualquer ícone para criar uma lista com marcadores.</li>\n<li><strong>Contador</strong>. Mostre os números de forma crescente.</li>\n<li><strong>Barra de progresso</strong>. Inclua uma barra de progresso crescente.</li>\n<li><strong>Abas aninhadas</strong>. Exiba o conteúdo em abas verticais ou horizontais.</li>\n<li><strong>Sanfona aninhada</strong>. Exiba qualquer tipo de conteúdo em seções recolhíveis.</li>\n<li><strong>Alternar</strong>. Use o &#8220;Alternar&#8221; para ocultar ou exibir conteúdo, como perguntas frequentes (FAQ).</li>\n<li><strong>Classificação</strong>. Exibe quantas estrelas (ou outro ícone) os outros visitantes deram.</li>\n<li><strong>Alerta</strong>. Inclua uma caixa de alerta colorida para chamar a atenção do visitante.</li>\n<li><strong> HTML </strong>. Insira código na página.</li>\n<li><strong>Shortcode</strong>. Insira shortcodes de qualquer plugin na página.</li>\n<li><strong>Âncora de menu</strong>. Vincule qualquer menu a esta âncora.</li>\n<li><strong>Leia mais</strong>. Defina o limite &#8220;Leia mais&#8221; para o resumo nas páginas de arquivo.</li>\n<li><strong>Barra lateral</strong>. Adicione barras laterais à página.</li>\n<li><strong>Google Maps</strong>. Incorpore mapas na página.</li>\n<li><strong>SoundCloud</strong>. Adicione trechos de áudio do SoundCloud.</li>\n<li><strong>Divisor</strong>. Separe o conteúdo com um divisor projetado.</li>\n<li><strong>Espaçador</strong>. Adicione espaço entre elementos.</li>\n<li><strong>Caminho de texto</strong>. Anexe seu texto a um caminho.</li>\n<li><strong>E contando&#8230;</strong></li>\n</ul>\n<h3>🚀 Melhore seu site</h3>\n<p><strong><a href="https://go.elementor.com/wp-repo-description-tab-performance-performance-page/" rel="nofollow ugc">Sites com alto desempenho</a></strong>: O desempenho do site afeta a experiência do visitante e a classificação dos resultados da pesquisa. O Elementor, em parceria com o Google Chrome, melhora continuamente o desempenho sem comprometer o design.</p>\n<p><strong>Os principais recursos incluem:</strong></p>\n<ul>\n<li><strong>Saída DOM reduzida</strong>: Estrutura HTML otimizada para renderização mais rápida.</li>\n<li><strong>Carregamento de arquivos de mídia melhorado</strong>: Carregamento otimizado de imagens, vídeos e outros ativos de mídia.</li>\n<li><strong>Arquivos CSS e JS reduzidos</strong>: Folhas de estilo e scripts minimizados e concatenados para tempos de carregamento mais rápidos.</li>\n<li><strong>Carregamento lento</strong>: Carregamento adiado de recursos não críticos para melhorar a velocidade de carregamento inicial da página.</li>\n<li><strong>Carregamento mais rápido de fontes</strong>: Fornecimento eficiente de fontes da web para aumentar a velocidade de renderização dos textos.</li>\n<li><strong>Carregamento otimizado de ativos da interface</strong>: Carregamento eficiente de ativos como JavaScript e CSS para minimizar o bloqueio de renderização.</li>\n<li><strong>Armazenamento em cache de elementos</strong>: Armazene em cache os elementos de design acessados com frequência, para reduzir o tempo de resposta do servidor e melhorar o desempenho geral.</li>\n</ul>\n<h3>🔥 Recursos do Elementor Pro</h3>\n<p>Crie sites inigualáveis e economize tempo, dinheiro e recursos com o construtor de sites completo do <a href="https://go.elementor.com/wp-repo-description-tab-elementor-pro-elementor-pro/" rel="nofollow ugc">Elementor Pro</a>. Tenha acesso a mais de 100 widgets, recursos e ferramentas profissionais.</p>\n<p><strong>Widgets de designs profissionais:</strong></p>\n<ol>\n<li><strong>Posts</strong>: Exibe os posts do seu blog com layouts e estilos personalizáveis.</li>\n<li><strong>Botões de compartilhamento</strong>: Permite que os visitantes compartilhem seu conteúdo com facilidade em várias plataformas de mídia social.</li>\n<li><strong>Portfólio</strong>: Apresente seu trabalho ou projetos com layouts de portfólio impressionantes.</li>\n<li><strong>Slides</strong>: Crie apresentações de slides dinâmicos com animações e transições personalizadas.</li>\n<li><strong>Formulário</strong>: Crie e personalize formulários avançados para interação com o usuário e coleta de dados.</li>\n<li><strong>Acesso</strong>: Adicione um formulário de acesso ou um módulo de cadastro de usuário ao seu site.</li>\n<li><strong>Menu de navegação</strong>: Personalize e estilize o menu de navegação do seu site para melhorar a experiência do usuário.</li>\n<li><strong>Manchete animada</strong>: Crie títulos principais que chamam a atenção com efeitos animados.</li>\n<li><strong>Tabela de preços</strong>: Exibe planos ou pacotes de preços em um formato estruturado e visualmente atraente.</li>\n<li><strong>Lista de preços</strong>: Exibe uma lista de preços ou serviços com opções de estilo personalizáveis.</li>\n<li><strong>Galeria</strong>: Crie lindas galerias de imagens com várias opções de layout e suporte a lightbox.</li>\n<li><strong>Caixa giratória</strong>: Adicione animações interativas com efeito de giro para destacar conteúdos ou recursos.</li>\n<li><strong>Chamada para ação</strong>: Estimule a interação do usuário e as conversões com seções de chamada para ação convincentes.</li>\n<li><strong>Carrossel de mídia</strong>: Exibe um carrossel de arquivos de mídia, como imagens ou vídeos.</li>\n<li><strong>Carrossel de depoimentos</strong>: Exibe depoimentos de clientes em um formato de carrossel como prova social.</li>\n<li><strong>Carrossel aninhado</strong>: Crie carrosséis aninhados para uma organização do conteúdo mais sofisticada.</li>\n<li><strong>Carrossel em loop</strong>: Exibe conteúdo em um carrossel em loop para visualização contínua.</li>\n<li><strong>Tabela de conteúdo</strong>: Gere uma tabela de conteúdo (índice) para artigos ou guias mais longos para melhorar a navegação.</li>\n<li><strong>Contagem regressiva</strong>: Adicione temporizadores com contagem regressiva para criar urgência em promoções ou eventos.</li>\n<li><strong>Página do Facebook</strong>: Incorpore o feed ou o conteúdo da sua página do Facebook ao seu site.</li>\n<li><strong>Bloco de citação</strong>: Destaque citações ou depoimentos com opções de formatação elegantes.</li>\n<li><strong>Modelo</strong>: Salve e reutilize modelos de design para manter a consistência da marca e do layout.</li>\n<li><strong>Avaliações</strong>: Apresente as avaliações e classificações dos clientes para aumentar a confiança e a credibilidade.</li>\n<li><strong>Botão do Facebook</strong>: Adicione botões para promover interações com sua página ou conteúdo do Facebook.</li>\n<li><strong>Incorporação do Facebook</strong>: Incorpore publicações ou conteúdo do Facebook ao seu site.</li>\n<li><strong>Comentários do Facebook</strong>: Ative os comentários do Facebook nas páginas ou posts do seu site.</li>\n<li><strong>Botão do PayPal</strong>: Integre botões do PayPal para facilitar os pagamentos on-line.</li>\n<li><strong>Botão do Stripe</strong>: Integre botões de pagamento do Stripe para facilitar transações on-line seguras.</li>\n<li><strong>Widget Lottie</strong>: Adicione animações Lottie para aumentar o apelo visual e o envolvimento.</li>\n<li><strong>Destaque de código</strong>: Exiba fragmentos de código (snippets) com destaque na sintaxe para melhorar a legibilidade.</li>\n<li><strong>Lista de reprodução de vídeos</strong>: Crie e personalize listas de reprodução para conteúdo de vídeo no seu site.</li>\n<li><strong>Mega menu</strong>: Personalize menus avançados para melhorar a navegação e exibir conteúdo complexo.</li>\n<li><strong>Fora da tela</strong>: Crie áreas fora da tela que deslizam para mostrar informações ou menus adicionais sem sobrecarregar o layout principal.</li>\n</ol>\n<p><strong>Widgets Pro para temas:</strong></p>\n<p>Crie e personalize todas as partes principais do seu site, incluindo cabeçalhos, rodapés, página 404, arquivos globais e muito mais</p>\n<ol>\n<li><strong>Título do post</strong>: Personalize o título dos posts ou páginas individuais do blog.</li>\n<li><strong>Resumo do post</strong>: Exibe um breve resumo ou prévia dos seus posts do blog.</li>\n<li><strong>Conteúdo do post</strong>: Personalize a área de conteúdo principal dos posts ou páginas do seu blog.</li>\n<li><strong>Imagem destacada</strong>: Defina e personalize imagens destacadas para posts ou páginas do blog.</li>\n<li><strong>Caixa do autor</strong>: Exibe informações e biografias do autor nos posts do blog.</li>\n<li><strong>Comentários de posts</strong>: Personalize a aparência e a funcionalidade das seções de comentários no seu site.</li>\n<li><strong>Navegação em posts</strong>: Adicione links de navegação aos posts adjacentes para facilitar a navegação.</li>\n<li><strong>Informações do post</strong>: Exibe informações adicionais sobre os posts do blog, como autor e data.</li>\n<li><strong>Logo do site</strong>: Envie e personalize o logo do seu site para fins de marca.</li>\n<li><strong>Título do site</strong>: Personalize o título do seu site.</li>\n<li><strong>Título da página</strong>: Personalize o título de páginas individuais.</li>\n<li><strong>Barra de pesquisa</strong>: Adicione uma barra de pesquisa para permitir que os usuários pesquisem o conteúdo do seu site.</li>\n<li><strong>Caminhos de navegação (breadcrumbs)</strong>: Exiba caminhos de navegação hierárquicos para melhorar a navegação do usuário.</li>\n<li><strong>Sitemap</strong>: Gere um sitemap para melhorar a indexação nos mecanismos de pesquisa e a navegação do usuário.</li>\n<li><strong>Grade em loop</strong>: Crie e personalize layouts de grade para arquivos de posts de blogs ou listagens de produtos.</li>\n</ol>\n<p><strong>Widgets Pro para WooCommerce:</strong></p>\n<p>Crie e personalize uma experiência completa de compras on-line em todo o seu site.</p>\n<ol>\n<li><strong>Produto</strong>: Exiba produtos individuais com layouts e estilos personalizáveis.</li>\n<li><strong>Caminhos de navegação (breadcrumbs)</strong>: Exiba caminhos de navegação hierárquicos para melhorar a navegação do usuário na sua loja.</li>\n<li><strong>Título do produto</strong>: Personalize o título de produtos individuais.</li>\n<li><strong>Imagens de produtos</strong>: Defina e personalize imagens para listagens de produtos.</li>\n<li><strong>Preço do produto</strong>: Exibe o preço de produtos individuais.</li>\n<li><strong>Adicionar ao carrinho</strong>: Adicione botões personalizáveis de adicionar ao carrinho para facilitar a compra.</li>\n<li><strong>Classificação do produto</strong>: Exibe classificações e avaliações dos produtos.</li>\n<li><strong>Estoque do produto</strong>: Exibe a disponibilidade de estoque dos produtos.</li>\n<li><strong>Meta do produto</strong>: Exibe informações adicionais sobre produtos, como SKU e categorias.</li>\n<li><strong>Conteúdo do produto</strong>: Personalize a área de conteúdo principal das descrições dos produtos.</li>\n<li><strong>Descrição curta</strong>: Exibe breves resumos ou prévias de produtos.</li>\n<li><strong>Abas de dados do produto</strong>: Organize as informações do produto em seções com abas para melhorar a organização.</li>\n<li><strong>Informações adicionais</strong>: Exibe detalhes adicionais sobre os produtos, como dimensões e peso.</li>\n<li><strong>Produto relacionado</strong>: Exibe produtos relacionados para incentivar compras adicionais.</li>\n<li><strong>Vendas adicionais (upsells)</strong>: Promova a venda adicional de produtos para aumentar o valor médio do pedido.</li>\n<li><strong>Produtos</strong>: Exibe uma grade ou lista de produtos com configurações personalizáveis.</li>\n<li><strong>Adicionar ao carrinho personalizado</strong>: Personalize o botão adicionar ao carrinho para produtos específicos.</li>\n<li><strong>Páginas do WooCommerce</strong>: Crie e personalize páginas específicas do WooCommerce, como as páginas do carrinho e da finalização de compra.</li>\n<li><strong>Categorias de produtos</strong>: Exibe categorias de produtos para facilitar a navegação na sua loja.</li>\n<li><strong>Menu do carrinho</strong>: Exibe um ícone de carrinho no seu menu de navegação para facilitar o acesso ao carrinho de compras.</li>\n<li><strong>Carrinho</strong>: Personalize a aparência e a funcionalidade da página do carrinho de compras.</li>\n<li><strong>Finalização de compra</strong>: Personalize a aparência e a funcionalidade da página de finalização de compra.</li>\n<li><strong>Minha conta</strong>: Personalize a aparência e a funcionalidade da área da conta do cliente.</li>\n<li><strong>Resumo da compra</strong>: Exibe um resumo das compras durante o processo de finalização de compra.</li>\n<li><strong>Notificações do WooCommerce</strong>: Personalize a aparência e a funcionalidade das notificações do WooCommerce, como mensagens de confirmação de pedido.</li>\n</ol>\n<p>Crie sites profissionais com o <strong><a href="https://go.elementor.com/wp-repo-description-tab-elementor-pro-elementor-pro/" rel="nofollow ugc">Elementor Pro</a></strong>!</p>\n<h4>🔒 SEGURANÇA E CONFORMIDADE</h4>\n<p>O Elementor coloca um foco primordial na segurança, evidente através de nossa aquisição de certificações do setor, como ISO/IEC 27001, ISO/IEC 27017, ISO/IEC 27018, ISO/IEC 27701 e SOC 2 Tipo II. Essas certificações ressaltam nosso compromisso com a implementação de medidas de segurança robustas e destacam nossa dedicação em aderir a padrões reconhecidos do setor.</p>\n<p>Incentivamos a pesquisa ética de segurança através do nosso <a href="https://go.elementor.com/wp-repo-description-tab-bug-crowd-bug-bounty-program/" rel="nofollow ugc">Programa de recompensa por erros</a>. Colaboramos com os principais serviços de recompensa por erros para oferecer oportunidades aos pesquisadores de relatar vulnerabilidades em nossos serviços. Nossos programas de recompensas incluem uma equipe de triagem disponível 24 horas por dia, 7 dias por semana, 365 dias por ano.</p>\n<p>For more information: <a href="https://go.elementor.com/trust-center/" rel="nofollow ugc">Central de confiança</a>.</p>\n<h4>♿ Melhores práticas de acessibilidade</h4>\n<p>O Elementor oferece ferramentas e melhorias de acessibilidade para ajudá-lo a proporcionar uma experiência melhor para todos os usuários. Incluindo HTML 5 semântico, menu de navegação com teclado completo, melhoria contínua dos recursos, widget e muito mais.</p>\n<h4>🌐 Traduzido para mais de 63 idiomas, inclui compatibilidade com RTL</h4>\n<p>O Elementor oferece suporte a vários idiomas, tipografias e RTL, com traduções do editor em <a href="https://go.elementor.com/wp-repo-description-tab-wordpress-plugin-translate/" rel="nofollow ugc">mais de 63 idiomas</a>.</p>\n<p>Também é compatível com o WPML, Polylang, TranslatePress, Weglot e outros. Para contribuir, adicione um novo idioma através do site translate.wordpress.org. Consulte nosso guia sobre <a href="https://go.elementor.com/wp-repo-description-tab-help-center-translate/" rel="nofollow ugc">como traduzir e localizar o plugin</a>.</p>\n<h4>⏩ Uso de serviços de terceiros </h4>\n<p>Para melhorar a experiência do usuário, o Elementor pode usar os seguintes serviços de terceiros se o recurso exigido estiver ativado:</p>\n<ul>\n<li>Fontes do Google &#8211; são carregadas para adicionar fontes adicionais ao seu site. Consulte os <a href="https://policies.google.com/terms" rel="nofollow ugc">Termos de uso</a> e a <a href="https://policies.google.com/privacy" rel="nofollow ugc">Política de privacidade</a> do Google.</li>\n<li>Alguns recursos do Elementor exigem o carregamento de ativos do Elementor.com. Esses ativos não são usados para rastreamento, a menos que sejam explicitamente mencionados, exigindo sua aprovação e aceitação manual. Saiba mais em nossos <a href="https://go.elementor.com/wp-repo-description-tab-elementor-plugin-terms/" rel="nofollow ugc">Termos de serviço</a> e <a href="https://go.elementor.com/wp-repo-description-tab-elementor-plugin-privacy/" rel="nofollow ugc">Política de privacidade</a>.</li>\n</ul>\n<h4>📧 Produtos relacionados do Elementor</h4>\n<p><strong><a href="https://go.elementor.com/wp-repo-description-tab-elementor-io/" rel="nofollow ugc">Image Optimizer</a></strong>: Compactação de imagens superior, para um desempenho mais rápido e de alta qualidade do site.</p>\n<p><strong><a href="https://go.elementor.com/wp-repo-description-tab-elementor-sm/" rel="nofollow ugc">Site Mailer</a></strong>: Gerenciamento de e-mails confiável sem plugins de SMTP, mantendo suas comunicações simplificadas e eficientes.</p>\n<h4>📣 Veja o que nossos usuários têm a dizer</h4>\n<blockquote>\n<p>“O Elementor é, sem dúvida, o melhor construtor de páginas que existe” – ★★★★★ <em><a href="https://wordpress.org/support/topic/elementor-is-hands-down-the-best-page-builder-out-there/" rel="ugc">Graphicvision1</a></em></p>\n<p>“Um plugin incrivelmente fácil de usar” – ★★★★★ <em><a href="https://wordpress.org/support/topic/a-wonderful-experience/" rel="ugc">Hyeyoga</a></em></p>\n<p>“Sem dúvidas, meu plugin de WP mais usado” – ★★★★★ <em><a href="https://wordpress.org/support/topic/easily-my-most-used-wp-plugin/" rel="ugc">Xander Venske</a></em></p>\n<p>“ Atualizei para a versão Pro e estou adorando este plugin!” &#8211; ★★★★★ <em><a href="https://wordpress.org/support/topic/love-elementor-17/" rel="ugc">Andybarn56</a></em></p>\n<p>“Excelente produto com ótimo suporte técnico“ &#8211; ★★★★★ <em><a href="https://wordpress.org/support/topic/excellent-product-with-great-tech-support/" rel="ugc">Martywilsonnj</a></em></p>\n</blockquote>\n<p><em><a href="https://wordpress.org/support/plugin/elementor/reviews/?filter=5" rel="ugc">Mais depoimentos</a></em></p>\n<h4>🌍 Participe de uma comunidade global</h4>\n<p>Participe de uma comunidade global, que se ajudam mutuamente a atingir seus objetivos.</p>\n<ul>\n<li><a href="https://elemn.to/discord" rel="nofollow ugc">Comunidade Discord</a> &#8211; Canais específicos para tópicos e idiomas, além de Ella, uma incrível ajudante de IA, pronta para ajudar você.</li>\n<li><a href="https://go.elementor.com/wp-repo-description-tab-facebook-group/" rel="nofollow ugc">Comunidade do Facebook</a> &#8211; Mais de 150 mil membros, oferecendo suporte, conselhos, feedback e tutoriais.</li>\n<li><a href="https://go.elementor.com/wp-repo-description-tab-github-repo/" rel="nofollow ugc">Comunidade do GitHub</a> &#8211; Receba informações sobre versões, solicite recursos ou relate um erro.</li>\n<li><a href="https://go.elementor.com/wp-repo-description-tab-addons-dozens-of-elementor-addons/" rel="nofollow ugc">Complementos, temas e kits do Elementor</a> Temas e kits &#8211; criados especificamente para o Elementor.</li>\n<li>Aprenda insights e técnicas valiosas em nosso <a href="https://go.elementor.com/wp-repo-description-tab-youtube-channel/" rel="nofollow ugc">canal do YouTube</a>.</li>\n<li>Acesse nossa <a href="https://go.elementor.com/wp-repo-description-tab-academy-elementor-academy/" rel="nofollow ugc">Academia</a> e <a href="https://go.elementor.com/wp-repo-description-tab-help-center-help-center/" rel="nofollow ugc">Central de ajuda</a> &#8211; Encontre guias, tutoriais e recursos para responder às suas perguntas e aumentar a criatividade.</li>\n<li>Demonstre seu apoio <a href="https://go.elementor.com/wp-repo-description-tab-wordpress-plugin-review/" rel="nofollow ugc">nos classificando no WordPress</a>. Seu feedback estimula nosso crescimento! 🤗</li>\n<li>Se você tiver dúvidas ou precisar de suporte, acesse o <a href="https://go.elementor.com/wp-repo-description-tab-wordpress-plugin-forum/" rel="nofollow ugc">fórum do plugin</a>. Os usuários do Elementor Pro podem receber suporte premium 24 horas por dia, 7 dias por semana, &hellip;</li>\n</ul>\n";s:12:"installation";s:1535:"<h4>Requisitos mínimos</h4>\n<ul>\n<li>WordPress 6.5 ou superior</li>\n<li>Versão do PHP 7.4 ou superior</li>\n<li>Versão do MySQL 5.0 ou superior</li>\n</ul>\n<h4>Requisitos recomendados</h4>\n<ul>\n<li>Versão do PHP 8.1 ou superior</li>\n<li>Versão do MySQL 5.6 ou superior</li>\n<li>Limite de memória do WordPress de 64 MB ou mais (preferencialmente 128 MB ou superior)</li>\n</ul>\n<p><iframe loading="lazy" title="Installing Elementor on WordPress" width="750" height="422" src="https://www.youtube.com/embed/9EZ159ryFNs?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></p>\n<h4>Instalação</h4>\n<ol>\n<li>Instale usando o instalador de plugin integrado do WordPress ou extraia o arquivo zip e coloque o conteúdo no diretório <code>wp-content/plugins/</code> da sua instalação do WordPress.</li>\n<li>Ative o plugin através do menu &#8220;Plugins&#8221; no WordPress.</li>\n<li>Vá para Páginas > Adicionar nova</li>\n<li>Pressione o botão &#8220;Editar com o Elementor&#8221;.</li>\n<li>Agora você pode arrastar e soltar widgets do painel esquerdo para a área de conteúdo, bem como adicionar novas seções e colunas que compõem a estrutura da página.</li>\n</ol>\n<p>Para documentação e tutoriais, acesse nossa <a href="https://elementor.com/help/?utm_source=wp-repo&amp;utm_medium=link&amp;utm_campaign=readme" rel="nofollow ugc">Base de conhecimento</a>.</p>\n";s:3:"faq";s:5272:"\n<dt id=''how%20do%20i%20install%20elementor%3F''>\nComo faço para instalar o Elementor?\n</h4>\n<p>\n<p>Para instalar a versão gratuita do Elementor, siga os passos abaixo:<br />\nNo painel do WordPress -> Vá para Plugins -> Clique em &#8220;Adicionar novo&#8221; -> No campo de pesquisa, digite Elementor e escolha Elementor Website Builder.<br />\nPressione instalar -> Após a instalação, clique em &#8220;Ativar&#8221;.</p>\n</p>\n<dt id=''does%20elementor%20work%20with%20all%20the%20themes%3F''>\nO Elementor funciona com todos os temas?\n</h4>\n<p>\n<p>O Elementor funciona com todos os temas que respeitam os padrões de codificação do WordPress estabelecidos pelo seu Codex. É recomendável usar o <a href="https://go.elementor.com/wp-repo-description-tab-hello-theme-hello-theme/" rel="nofollow ugc">Tema Hello</a> do Elementor, uma tela em branco leve, para aproveitar da total flexibilidade ao usar o Elementor e otimizar sua experiência.</p>\n</p>\n<dt id=''is%20elementor%20compatible%20with%20gutenberg%3F''>\nO Elementor é compatível com o Gutenberg?\n</h4>\n<p>\n<p>O Elementor e o Gutenberg funcionam perfeitamente juntos. Como usuário, você pode decidir facilmente qual editor usar em cada ponto da edição do seu site.</p>\n</p>\n<dt id=''can%20i%20create%20an%20online%20store%3F''>\nPosso criar uma loja on-line?\n</h4>\n<p>\n<p>Sim, com o Elementor Pro WooCommerce Builder, você pode personalizar cada página da sua loja virtual para criar uma incrível experiência aos clientes que irá impulsionar as vendas.</p>\n</p>\n<dt id=''does%20it%20work%20with%20other%20wordpress%20plugins%3F''>\nFunciona com outros plugins do WordPress?\n</h4>\n<p>\n<p>Ele funciona com quase todos os plugins. Se você encontrar um problema de incompatibilidade, nos informe e também ao plugin que está em conflito com o Elementor.</p>\n</p>\n<dt id=''do%20i%20need%20to%20know%20how%20to%20code%3F''>\nPreciso saber programar?\n</h4>\n<p>\n<p>Não! O Elementor fornece todos os widgets e recursos que você precisa para criar um site profissional sem usar código.</p>\n</p>\n<dt id=''do%20i%20need%20to%20know%20how%20to%20design%3F''>\nPreciso saber sobre design?\n</h4>\n<p>\n<p>Não, você pode escolher entre kits e modelos desenvolvidos profissionalmente, que se adaptam a todos os segmentos e têm tudo o que você precisa para criar seu próprio site profissional.</p>\n</p>\n<dt id=''will%20elementor%20slow%20down%20my%20website%3F''>\nO Elementor vai deixar meu site mais lento?\n</h4>\n<p>\n<p>Como o Elementor prioriza velocidade e desempenho, você desfruta de melhorias de desempenho a cada nova versão. Ao testar o mesmo layout de página em versões antigas, você pode observar uma melhoria significativa no desempenho, de uma pontuação de 82 no Google PageSpeed Insight na versão 3.1 para uma pontuação de 95 na versão 3.5.</p>\n</p>\n<dt id=''is%20my%20site%20secure%20with%20elementor%3F''>\nMeu site é seguro com o Elementor?\n</h4>\n<p>\n<p>A segurança do seu site é extremamente importante para nós, e tomamos medidas proativas para garantir que seus sites sejam seguros. O Elementor é certificado pelo ISO 27001 e possui uma equipe dedicada de profissionais de segurança que implementa as melhores práticas do setor para máxima segurança e conformidade, 24 horas por dia, 7 dias por semana.</p>\n<p>Também há um programa gerenciado de segurança de recompensa por erros, utilizando o poder da comunidade ao ativar a detecção de vulnerabilidades 24 horas por dia, 7 dias por semana, durante todo o ano.</p>\n</p>\n<dt id=''can%20i%20buy%20templates%20separately%3F''>\nPosso comprar modelos separadamente?\n</h4>\n<p>\n<p>Claro, você pode usar qualquer modelo que seja compatível com o Elementor.</p>\n</p>\n<dt id=''is%20elementor%20compatible%20with%20post%20and%20custom%20post%20types%3F''>\nO Elementor é compatível com posts e tipos de post personalizados?\n</h4>\n<p>\n<p>Claro que sim! Você pode definir quais tipos de post irão ativar o Elementor na página de configurações.</p>\n</p>\n<dt id=''what%20is%20the%20difference%20between%20elementor%27s%20free%20plugin%20and%20elementor%20pro''>\nQual é a diferença entre o Plugin gratuito do Elementor e o Elementor Pro\n</h4>\n<p>\n<p>A versão gratuita do Elementor permite explorar nosso revolucionário editor visual de arrastar e soltar, além de oferecer widgets básicos e modelos. O Elementor Pro (Essential, Advanced, Expert, Studio e Agency) proporciona ferramentas mais profissionais que aceleram seu fluxo de trabalho, oferecem acesso a suporte humano, ajudam a criar conteúdo mais avançado e a converter visitantes. Veja a comparação completa aqui.</p>\n</p>\n<dt id=''how%20can%20i%20become%20a%20contributor''>\nComo posso me tornar um colaborador\n</h4>\n<p>\n<p>Se quiser contribuir, acesse nosso <a href="https://github.com/elementor/elementor" rel="nofollow ugc">Repositório GitHub do Elementor</a> e veja como pode ajudar.<br />\nTambém é possível adicionar um novo idioma pelo site <a href="https://go.elementor.com/wp-repo-description-tab-wordpress-plugin-translate/" rel="nofollow ugc">translate.wordpress.org</a>. Criamos um pequeno guia explicando <a href="https://go.elementor.com/wp-repo-description-tab-wordpress-plugin-translate-faq/" rel="nofollow ugc">como traduzir e localizar o plugin</a>.</p>\n</p>\n\n";s:9:"changelog";s:5524:"<h4>3.31.3 &#8211; 2025-08-27</h4>\n<ul>\n<li>Ajuste: Desativado o popover de indicação nos itens do repetidor &#8211; Editor V4</li>\n<li>Ajuste: Forçadas as teclas numéricas em <code>promotionWidgets</code> e garantida a injeção consistente de widgets Pro</li>\n<li>Correção: A barra flutuante desaparecia da interface após a ativação do Elementor Pro</li>\n</ul>\n<h4>3.31.2 &#8211; 2025-08-11</h4>\n<ul>\n<li>Ajuste: Melhorada a funcionalidade de permissões no gerenciamento de classes &#8211; Editor V4</li>\n<li>Correção: Falha ao salvar a página em determinados provedores de hospedagem, devido a solicitações bloqueadas &#8211; Editor V4 (<a href="https://github.com/elementor/elementor/issues/31992" rel="nofollow ugc">#31992</a>)</li>\n<li>Correção: A renomeação de uma classe fazia com que ela perdesse os estilos aplicados &#8211; Editor V4</li>\n<li>Correção: Os valores herdados não estavam funcionando como esperado com unidades personalizadas em modos responsivos &#8211; Editor V4</li>\n<li>Correção: O controle de escolha visual não estava sendo exibido corretamente no Firefox para o divisor de formas</li>\n<li>Correção: O alinhamento do ícone não estava funcionando no widget de caixa de ícones</li>\n</ul>\n<h4>3.31.1 &#8211; 2025-08-06</h4>\n<ul>\n<li>Ajuste: Atualizada a versão do pacote <code>form-data</code></li>\n<li>Correção: O campo de pedido personalizado sumia quando era definido como 0 ou limpo &#8211; Editor V4</li>\n</ul>\n<h4>3.31.0 &#8211; 2025-08-05</h4>\n<ul>\n<li>Novo: Apresentamos as variáveis &#8211; defina valores reutilizáveis de cores e fontes, para garantir um design consistente e dimensionável em todo o seu site &#8211; Editor V4</li>\n<li>Novo: Apresentamos os valores herdados &#8211; as propriedades de estilo agora indicam quando os valores são herdados de classes ou estilos básicos &#8211; Editor V4</li>\n<li>Novo: Apresentamos os filtros &#8211; adicione efeitos visuais como desfoque, brilho e contraste, com controle total do design &#8211; Editor V4</li>\n<li>Novo: Apresentamos os filtros de fundo &#8211; aplique efeitos visuais atrás dos elementos para um design em camadas &#8211; Editor V4</li>\n<li>Novo: Apresentamos o divisor &#8211; um elemento de layout modular, para separação visual &#8211; Editor V4</li>\n<li>Novo: Visão geral do uso da classe &#8211; tenha informações sobre o uso da classe, diretamente do gerenciador de classes &#8211; Editor V4</li>\n<li>Novo: Localizador de classe &#8211; localize todos os elementos que usam uma classe específica em todo seu design &#8211; Editor V4</li>\n<li>Ajuste: Removido vídeos de fundo da árvore de acessibilidade, para melhorar o comportamento do leitor de tela (<a href="https://github.com/elementor/elementor/issues/23880" rel="nofollow ugc">#23880</a>)</li>\n<li>Ajuste: Pesquisar por nome de classe &#8211; localiza rapidamente as classes existentes no gerenciador de classes &#8211; Editor V4</li>\n<li>Ajuste: Melhorada a detecção de estilo em pontos de interrupção ao usar classes &#8211; Editor V4</li>\n<li>Ajuste: Adicionada a opção personalizada à posição do objeto na seção “Tamanho” &#8211; Editor V4</li>\n<li>Ajuste: Adicionado controle de ID no elemento do YouTube &#8211; Editor V4</li>\n<li>Ajuste: Adicionado o controle de opacidade &#8211; define a transparência do elemento &#8211; Editor V4</li>\n<li>Ajuste: Exibir indicação de estilo básico &#8211; mostra claramente quando os estilos básicos são aplicados a um elemento &#8211; Editor V4</li>\n<li>Ajuste: Melhorado o comportamento do recurso de arrastar e soltar em Flexbox e blocos Div dentro do Canvas &#8211; Editor V4</li>\n<li>Ajuste: Substituição do controle de seleção por um controle de escolha visual nos divisores de forma</li>\n<li>Ajuste: Substituídos mixins e funções SASS por propriedades lógicas de CSS nativas</li>\n<li>Ajuste: Adicionado suporte para unidades CSS <code>lh</code> e <code>rlh</code> no controle de altura da linha de tipografia</li>\n<li>Ajuste: Adicionados recursos responsivos à máscara personalizada</li>\n<li>Ajuste: Ativado o experimento “Cache de elementos” para todos os sites</li>\n<li>Ajuste: Atualização do widget de lista de ícones, para usar as propriedades lógicas do CSS</li>\n<li>Ajuste: Atualizado o widget de classificação por estrelas, para usar as propriedades lógicas do CSS</li>\n<li>Ajuste: Atualização do widget de alerta, para usar as propriedades lógicas do CSS</li>\n<li>Ajuste: Atualização do widget de sanfona, para usar as propriedades lógicas do CSS</li>\n<li>Ajuste: Atualização do widget de alternância, para usar as propriedades lógicas do CSS</li>\n<li>Ajuste: Atualização do widget de caixa de ícones, para usar as propriedades lógicas do CSS</li>\n<li>Ajuste: Atualização do widget de âncora de menu, para usar as propriedades lógicas do CSS</li>\n<li>Ajuste: Atualização do widget de abas, para usar as propriedades lógicas do CSS</li>\n<li>Ajuste: Atualização do widget de depoimento, para usar as propriedades lógicas do CSS</li>\n<li>Ajuste: Atualização do widget do editor de texto, para usar as propriedades lógicas do CSS</li>\n<li>Ajuste: Atualização do espaçamento entre parágrafos na tipografia das configurações do site, para usar as propriedades lógicas do CSS</li>\n<li>Ajuste: Saída CSS otimizada para máscaras</li>\n</ul>\n<p><a href="https://go.elementor.com/full-changelog/" rel="nofollow ugc">Consulte o registro de alterações para todas as versões.</a></p>\n";s:11:"screenshots";s:3515:"<ol><li><a href="https://ps.w.org/elementor/assets/screenshot-1.gif?rev=3005087"><img src="https://ps.w.org/elementor/assets/screenshot-1.gif?rev=3005087" alt="&lt;strong&gt;Editor visual de arrastar e soltar&lt;/strong&gt; - Projete e crie os layouts do seu site e coloque qualquer elemento em qualquer lugar da página para obter designs perfeitos em pixels."></a><p><strong>Editor visual de arrastar e soltar</strong> - Projete e crie os layouts do seu site e coloque qualquer elemento em qualquer lugar da página para obter designs perfeitos em pixels.</p></li><li><a href="https://ps.w.org/elementor/assets/screenshot-2.gif?rev=3005087"><img src="https://ps.w.org/elementor/assets/screenshot-2.gif?rev=3005087" alt="&lt;strong&gt;Sistema de design completo&lt;/strong&gt; - Tenha um fluxo de trabalho profissional e garanta consistência em todo o seu site. Defina suas configurações, use-as globalmente e ajuste-as instantaneamente a qualquer momento."></a><p><strong>Sistema de design completo</strong> - Tenha um fluxo de trabalho profissional e garanta consistência em todo o seu site. Defina suas configurações, use-as globalmente e ajuste-as instantaneamente a qualquer momento.</p></li><li><a href="https://ps.w.org/elementor/assets/screenshot-3.gif?rev=3005087"><img src="https://ps.w.org/elementor/assets/screenshot-3.gif?rev=3005087" alt="&lt;strong&gt;Design responsivo&lt;/strong&gt; - Edite totalmente o seu site e personalize o comportamento em desktop, tablet e dispositivos móveis para otimizar a experiência do visitante em todos os dispositivos."></a><p><strong>Design responsivo</strong> - Edite totalmente o seu site e personalize o comportamento em desktop, tablet e dispositivos móveis para otimizar a experiência do visitante em todos os dispositivos.</p></li><li><a href="https://ps.w.org/elementor/assets/screenshot-4.gif?rev=3005087"><img src="https://ps.w.org/elementor/assets/screenshot-4.gif?rev=3005087" alt="&lt;strong&gt;Kits e modelos&lt;/strong&gt; - Inicie rapidamente o seu processo de criação de sites ou se inspire com modelos projetados profissionalmente ou kits completos de sites disponíveis para personalização imediata."></a><p><strong>Kits e modelos</strong> - Inicie rapidamente o seu processo de criação de sites ou se inspire com modelos projetados profissionalmente ou kits completos de sites disponíveis para personalização imediata.</p></li><li><a href="https://ps.w.org/elementor/assets/screenshot-5.gif?rev=3005087"><img src="https://ps.w.org/elementor/assets/screenshot-5.gif?rev=3005087" alt="&lt;strong&gt;Elementos aninhados&lt;/strong&gt; - Aproveite os widgets aninhados do Elementor para colocar qualquer widget dentro da área de conteúdo de outro widget, como abas e sanfonas, para total flexibilidade de design."></a><p><strong>Elementos aninhados</strong> - Aproveite os widgets aninhados do Elementor para colocar qualquer widget dentro da área de conteúdo de outro widget, como abas e sanfonas, para total flexibilidade de design.</p></li><li><a href="https://ps.w.org/elementor/assets/screenshot-6.gif?rev=3005087"><img src="https://ps.w.org/elementor/assets/screenshot-6.gif?rev=3005087" alt="&lt;strong&gt;Efeitos de movimento&lt;/strong&gt; - Adicione animações de entrada e transições a qualquer elemento do seu site para cativar os visitantes."></a><p><strong>Efeitos de movimento</strong> - Adicione animações de entrada e transições a qualquer elemento do seu site para cativar os visitantes.</p></li></ol>";s:7:"reviews";s:15299:"<div class="review">\n	<div class="review-head">\n		<div class="reviewer-info">\n			<div class="review-title-section">\n				<h4 class="review-title">Excellent website builder</h4>\n				<div class="star-rating">\n				<div class="wporg-ratings" aria-label="5 de 5 estrelas" data-title-template="%s de 5 estrelas" data-rating="5" style="color:#ffb900;"><span class="star dashicons dashicons-star-filled"></span><span class="star dashicons dashicons-star-filled"></span><span class="star dashicons dashicons-star-filled"></span><span class="star dashicons dashicons-star-filled"></span><span class="star dashicons dashicons-star-filled"></span></div>				</div>\n			</div>\n			<p class="reviewer">\n				Por <a href="https://profiles.wordpress.org/elmehdibousstani/"><img alt='''' src=''https://secure.gravatar.com/avatar/b9c3b49c2442bb23767ad90b6c08984ebc75da5c15142efb65fee5e3f35a094b?s=16&#038;d=monsterid&#038;r=g'' srcset=''https://secure.gravatar.com/avatar/b9c3b49c2442bb23767ad90b6c08984ebc75da5c15142efb65fee5e3f35a094b?s=32&#038;d=monsterid&#038;r=g 2x'' class=''avatar avatar-16 photo'' height=''16'' width=''16'' loading=''lazy'' decoding=''async''/></a><a href="https://profiles.wordpress.org/elmehdibousstani/" class="reviewer-name">elmehdibousstani</a> em <span class="review-date">agosto 27, 2025</span>			</p>\n		</div>\n	</div>\n	<div class="review-body"><!-- wp:paragraph -->\n<p>Excellent website builder</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class="review">\n	<div class="review-head">\n		<div class="reviewer-info">\n			<div class="review-title-section">\n				<h4 class="review-title">The absolute best</h4>\n				<div class="star-rating">\n				<div class="wporg-ratings" aria-label="5 de 5 estrelas" data-title-template="%s de 5 estrelas" data-rating="5" style="color:#ffb900;"><span class="star dashicons dashicons-star-filled"></span><span class="star dashicons dashicons-star-filled"></span><span class="star dashicons dashicons-star-filled"></span><span class="star dashicons dashicons-star-filled"></span><span class="star dashicons dashicons-star-filled"></span></div>				</div>\n			</div>\n			<p class="reviewer">\n				Por <a href="https://profiles.wordpress.org/idco1425/"><img alt='''' src=''https://secure.gravatar.com/avatar/6b207578282ca788e13570e261404c019531a4f94618d28de79023a80b60764f?s=16&#038;d=monsterid&#038;r=g'' srcset=''https://secure.gravatar.com/avatar/6b207578282ca788e13570e261404c019531a4f94618d28de79023a80b60764f?s=32&#038;d=monsterid&#038;r=g 2x'' class=''avatar avatar-16 photo'' height=''16'' width=''16'' loading=''lazy'' decoding=''async''/></a><a href="https://profiles.wordpress.org/idco1425/" class="reviewer-name">idco1425</a> em <span class="review-date">agosto 26, 2025</span>			</p>\n		</div>\n	</div>\n	<div class="review-body"><!-- wp:paragraph -->\n<p>I used to use Divi yrs ago, then i found elementor and never looked back. My entire business runs on this incredible plugin. Thanks to a fantastic team</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class="review">\n	<div class="review-head">\n		<div class="reviewer-info">\n			<div class="review-title-section">\n				<h4 class="review-title">I like it</h4>\n				<div class="star-rating">\n				<div class="wporg-ratings" aria-label="5 de 5 estrelas" data-title-template="%s de 5 estrelas" data-rating="5" style="color:#ffb900;"><span class="star dashicons dashicons-star-filled"></span><span class="star dashicons dashicons-star-filled"></span><span class="star dashicons dashicons-star-filled"></span><span class="star dashicons dashicons-star-filled"></span><span class="star dashicons dashicons-star-filled"></span></div>				</div>\n			</div>\n			<p class="reviewer">\n				Por <a href="https://profiles.wordpress.org/pedrogarcia197722/"><img alt='''' src=''https://secure.gravatar.com/avatar/013ba8fcbe97d007293d61bf34137edfa998189d6b37252f111e2cbd397079dd?s=16&#038;d=monsterid&#038;r=g'' srcset=''https://secure.gravatar.com/avatar/013ba8fcbe97d007293d61bf34137edfa998189d6b37252f111e2cbd397079dd?s=32&#038;d=monsterid&#038;r=g 2x'' class=''avatar avatar-16 photo'' height=''16'' width=''16'' loading=''lazy'' decoding=''async''/></a><a href="https://profiles.wordpress.org/pedrogarcia197722/" class="reviewer-name">pedrogarcia197722</a> em <span class="review-date">agosto 26, 2025</span>			</p>\n		</div>\n	</div>\n	<div class="review-body"><!-- wp:paragraph -->\n<p>One of the best wordpress builder</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class="review">\n	<div class="review-head">\n		<div class="reviewer-info">\n			<div class="review-title-section">\n				<h4 class="review-title">Facing the white screen issue.</h4>\n				<div class="star-rating">\n				<div class="wporg-ratings" aria-label="5 de 5 estrelas" data-title-template="%s de 5 estrelas" data-rating="5" style="color:#ffb900;"><span class="star dashicons dashicons-star-filled"></span><span class="star dashicons dashicons-star-filled"></span><span class="star dashicons dashicons-star-filled"></span><span class="star dashicons dashicons-star-filled"></span><span class="star dashicons dashicons-star-filled"></span></div>				</div>\n			</div>\n			<p class="reviewer">\n				Por <a href="https://profiles.wordpress.org/rahulbasu/"><img alt='''' src=''https://secure.gravatar.com/avatar/381db4c00d90a714ed769f33ea873e2674e140b0edc6907dd4ad321759109d63?s=16&#038;d=monsterid&#038;r=g'' srcset=''https://secure.gravatar.com/avatar/381db4c00d90a714ed769f33ea873e2674e140b0edc6907dd4ad321759109d63?s=32&#038;d=monsterid&#038;r=g 2x'' class=''avatar avatar-16 photo'' height=''16'' width=''16'' loading=''lazy'' decoding=''async''/></a><a href="https://profiles.wordpress.org/rahulbasu/" class="reviewer-name">Rahul Basu <small>(rahulbasu)</small></a> em <span class="review-date">agosto 25, 2025</span>			</p>\n		</div>\n	</div>\n	<div class="review-body"><!-- wp:paragraph -->\n<p>I’ve built my entire blog from scratch with Elementor and love how it lets me customize every detail without touching any code. But sometimes, when I try editing an existing page, it just crashes i.e., the screen stays white forever and I feel helpless :(<br />Does anyone else run into this weird issue?</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class="review">\n	<div class="review-head">\n		<div class="reviewer-info">\n			<div class="review-title-section">\n				<h4 class="review-title">عالی</h4>\n				<div class="star-rating">\n				<div class="wporg-ratings" aria-label="5 de 5 estrelas" data-title-template="%s de 5 estrelas" data-rating="5" style="color:#ffb900;"><span class="star dashicons dashicons-star-filled"></span><span class="star dashicons dashicons-star-filled"></span><span class="star dashicons dashicons-star-filled"></span><span class="star dashicons dashicons-star-filled"></span><span class="star dashicons dashicons-star-filled"></span></div>				</div>\n			</div>\n			<p class="reviewer">\n				Por <a href="https://profiles.wordpress.org/alismart/"><img alt='''' src=''https://secure.gravatar.com/avatar/c289588e2ed41f3289470c47f4fcf0f03e170128673d1e0cea2f9650191cc23f?s=16&#038;d=monsterid&#038;r=g'' srcset=''https://secure.gravatar.com/avatar/c289588e2ed41f3289470c47f4fcf0f03e170128673d1e0cea2f9650191cc23f?s=32&#038;d=monsterid&#038;r=g 2x'' class=''avatar avatar-16 photo'' height=''16'' width=''16'' loading=''lazy'' decoding=''async''/></a><a href="https://profiles.wordpress.org/alismart/" class="reviewer-name">alismart</a> em <span class="review-date">agosto 25, 2025</span>			</p>\n		</div>\n	</div>\n	<div class="review-body"><!-- wp:paragraph -->\n<p>بهترین صفحه ساز وردپرس است</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class="review">\n	<div class="review-head">\n		<div class="reviewer-info">\n			<div class="review-title-section">\n				<h4 class="review-title">Subscription canceled even though auto-renewal and valid payment were activeSubs</h4>\n				<div class="star-rating">\n				<div class="wporg-ratings" aria-label="1 de 5 estrelas" data-title-template="%s de 5 estrelas" data-rating="1" style="color:#ffb900;"><span class="star dashicons dashicons-star-filled"></span><span class="star dashicons dashicons-star-empty"></span><span class="star dashicons dashicons-star-empty"></span><span class="star dashicons dashicons-star-empty"></span><span class="star dashicons dashicons-star-empty"></span></div>				</div>\n			</div>\n			<p class="reviewer">\n				Por <a href="https://profiles.wordpress.org/martechrewaa/"><img alt='''' src=''https://secure.gravatar.com/avatar/73989f2baa91e1d89995b9ed9f9882ddeaae0738fcc7f6ea82434a999a63dc1b?s=16&#038;d=monsterid&#038;r=g'' srcset=''https://secure.gravatar.com/avatar/73989f2baa91e1d89995b9ed9f9882ddeaae0738fcc7f6ea82434a999a63dc1b?s=32&#038;d=monsterid&#038;r=g 2x'' class=''avatar avatar-16 photo'' height=''16'' width=''16'' loading=''lazy'' decoding=''async''/></a><a href="https://profiles.wordpress.org/martechrewaa/" class="reviewer-name">martechrewaa</a> em <span class="review-date">agosto 24, 2025</span>			</p>\n		</div>\n	</div>\n	<div class="review-body"><!-- wp:paragraph -->\n<p>I am extremely disappointed with Elementor. My subscription was suddenly canceled even though my Visa card is active, has enough balance, and auto-renewal was already enabled on my account. I did not request cancellation. Losing access disrupted my work and wasted valuable time. I contacted support but did not receive a clear solution. This is unacceptable for a paid service. Elementor must improve billing reliability and customer care.</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class="review">\n	<div class="review-head">\n		<div class="reviewer-info">\n			<div class="review-title-section">\n				<h4 class="review-title">it&#039;s so clunky</h4>\n				<div class="star-rating">\n				<div class="wporg-ratings" aria-label="1 de 5 estrelas" data-title-template="%s de 5 estrelas" data-rating="1" style="color:#ffb900;"><span class="star dashicons dashicons-star-filled"></span><span class="star dashicons dashicons-star-empty"></span><span class="star dashicons dashicons-star-empty"></span><span class="star dashicons dashicons-star-empty"></span><span class="star dashicons dashicons-star-empty"></span></div>				</div>\n			</div>\n			<p class="reviewer">\n				Por <a href="https://profiles.wordpress.org/pluginoise/"><img alt='''' src=''https://secure.gravatar.com/avatar/5985b479e3c7209ebbdd92eb58ecfbd0a2abef78a168b41d5710460eca88d943?s=16&#038;d=monsterid&#038;r=g'' srcset=''https://secure.gravatar.com/avatar/5985b479e3c7209ebbdd92eb58ecfbd0a2abef78a168b41d5710460eca88d943?s=32&#038;d=monsterid&#038;r=g 2x'' class=''avatar avatar-16 photo'' height=''16'' width=''16'' loading=''lazy'' decoding=''async''/></a><a href="https://profiles.wordpress.org/pluginoise/" class="reviewer-name">pluginoise</a> em <span class="review-date">agosto 20, 2025</span>			</p>\n		</div>\n	</div>\n	<div class="review-body"><!-- wp:paragraph -->\n<p>I just don''t know what to do with this app.. </p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class="review">\n	<div class="review-head">\n		<div class="reviewer-info">\n			<div class="review-title-section">\n				<h4 class="review-title">A very reliable solution for building my websites</h4>\n				<div class="star-rating">\n				<div class="wporg-ratings" aria-label="5 de 5 estrelas" data-title-template="%s de 5 estrelas" data-rating="5" style="color:#ffb900;"><span class="star dashicons dashicons-star-filled"></span><span class="star dashicons dashicons-star-filled"></span><span class="star dashicons dashicons-star-filled"></span><span class="star dashicons dashicons-star-filled"></span><span class="star dashicons dashicons-star-filled"></span></div>				</div>\n			</div>\n			<p class="reviewer">\n				Por <a href="https://profiles.wordpress.org/manoj718/"><img alt='''' src=''https://secure.gravatar.com/avatar/cd96a575cfab1f70b3c0f8eabfb1dfed28f0f020c276bb3899672ad573414e57?s=16&#038;d=monsterid&#038;r=g'' srcset=''https://secure.gravatar.com/avatar/cd96a575cfab1f70b3c0f8eabfb1dfed28f0f020c276bb3899672ad573414e57?s=32&#038;d=monsterid&#038;r=g 2x'' class=''avatar avatar-16 photo'' height=''16'' width=''16'' loading=''lazy'' decoding=''async''/></a><a href="https://profiles.wordpress.org/manoj718/" class="reviewer-name">manoj718</a> em <span class="review-date">agosto 19, 2025</span>			</p>\n		</div>\n	</div>\n	<div class="review-body"><!-- wp:paragraph -->\n<p>A modular plugin to build websites at scale. Really liked it.</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class="review">\n	<div class="review-head">\n		<div class="reviewer-info">\n			<div class="review-title-section">\n				<h4 class="review-title">My favorite WordPress Website builder</h4>\n				<div class="star-rating">\n				<div class="wporg-ratings" aria-label="5 de 5 estrelas" data-title-template="%s de 5 estrelas" data-rating="5" style="color:#ffb900;"><span class="star dashicons dashicons-star-filled"></span><span class="star dashicons dashicons-star-filled"></span><span class="star dashicons dashicons-star-filled"></span><span class="star dashicons dashicons-star-filled"></span><span class="star dashicons dashicons-star-filled"></span></div>				</div>\n			</div>\n			<p class="reviewer">\n				Por <a href="https://profiles.wordpress.org/illumined/"><img alt='''' src=''https://secure.gravatar.com/avatar/676269308dd8be55e4d923c75dd190e99ea48f9c6a912914e5d2e91bc5b6f9c0?s=16&#038;d=monsterid&#038;r=g'' srcset=''https://secure.gravatar.com/avatar/676269308dd8be55e4d923c75dd190e99ea48f9c6a912914e5d2e91bc5b6f9c0?s=32&#038;d=monsterid&#038;r=g 2x'' class=''avatar avatar-16 photo'' height=''16'' width=''16'' loading=''lazy'' decoding=''async''/></a><a href="https://profiles.wordpress.org/illumined/" class="reviewer-name">Samuel Pfleumer <small>(illumined)</small></a> em <span class="review-date">agosto 16, 2025</span>			</p>\n		</div>\n	</div>\n	<div class="review-body"><!-- wp:paragraph -->\n<p>Elementor is a very powerful WordPress Website builder, and I like how easy it is for me to make changes to my website with it.</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class="review">\n	<div class="review-head">\n		<div class="reviewer-info">\n			<div class="review-title-section">\n				<h4 class="review-title">Ads</h4>\n				<div class="star-rating">\n				<div class="wporg-ratings" aria-label="5 de 5 estrelas" data-title-template="%s de 5 estrelas" data-rating="5" style="color:#ffb900;"><span class="star dashicons dashicons-star-filled"></span><span class="star dashicons dashicons-star-filled"></span><span class="star dashicons dashicons-star-filled"></span><span class="star dashicons dashicons-star-filled"></span><span class="star dashicons dashicons-star-filled"></span></div>				</div>\n			</div>\n			<p class="reviewer">\n				Por <a href="https://profiles.wordpress.org/pixer/"><img alt='''' src=''https://secure.gravatar.com/avatar/63554d0fd75fad7529bf42c1dfb1db8998f6c69c1760ca8b293df0b73c3fcc42?s=16&#038;d=monsterid&#038;r=g'' srcset=''https://secure.gravatar.com/avatar/63554d0fd75fad7529bf42c1dfb1db8998f6c69c1760ca8b293df0b73c3fcc42?s=32&#038;d=monsterid&#038;r=g 2x'' class=''avatar avatar-16 photo'' height=''16'' width=''16'' loading=''lazy'' decoding=''async''/></a><a href="https://profiles.wordpress.org/pixer/" class="reviewer-name">pixer</a> em <span class="review-date">agosto 16, 2025</span>			</p>\n		</div>\n	</div>\n	<div class="review-body">Elementor team just can’t help themselves spamming the user with tons of ads. WordPress should remove these kinds of themes and plugins from their registery.</div>\n</div>\n";}s:17:"short_description";s:198:"O construtor de sites Elementor tem tudo: construtor de páginas do tipo arrastar e soltar, design perfeito em pixels, edição responsiva para dispositivos móveis e muito mais. Comece agora mesmo!";s:13:"download_link";s:59:"https://downloads.wordpress.org/plugin/elementor.3.31.3.zip";s:14:"upgrade_notice";a:0:{}s:11:"screenshots";a:6:{i:1;a:2:{s:3:"src";s:62:"https://ps.w.org/elementor/assets/screenshot-1.gif?rev=3005087";s:7:"caption";s:188:"<strong>Editor visual de arrastar e soltar</strong> - Projete e crie os layouts do seu site e coloque qualquer elemento em qualquer lugar da página para obter designs perfeitos em pixels.";}i:2;a:2:{s:3:"src";s:62:"https://ps.w.org/elementor/assets/screenshot-2.gif?rev=3005087";s:7:"caption";s:226:"<strong>Sistema de design completo</strong> - Tenha um fluxo de trabalho profissional e garanta consistência em todo o seu site. Defina suas configurações, use-as globalmente e ajuste-as instantaneamente a qualquer momento.";}i:3;a:2:{s:3:"src";s:62:"https://ps.w.org/elementor/assets/screenshot-3.gif?rev=3005087";s:7:"caption";s:204:"<strong>Design responsivo</strong> - Edite totalmente o seu site e personalize o comportamento em desktop, tablet e dispositivos móveis para otimizar a experiência do visitante em todos os dispositivos.";}i:4;a:2:{s:3:"src";s:62:"https://ps.w.org/elementor/assets/screenshot-4.gif?rev=3005087";s:7:"caption";s:216:"<strong>Kits e modelos</strong> - Inicie rapidamente o seu processo de criação de sites ou se inspire com modelos projetados profissionalmente ou kits completos de sites disponíveis para personalização imediata.";}i:5;a:2:{s:3:"src";s:62:"https://ps.w.org/elementor/assets/screenshot-5.gif?rev=3005087";s:7:"caption";s:215:"<strong>Elementos aninhados</strong> - Aproveite os widgets aninhados do Elementor para colocar qualquer widget dentro da área de conteúdo de outro widget, como abas e sanfonas, para total flexibilidade de design.";}i:6;a:2:{s:3:"src";s:62:"https://ps.w.org/elementor/assets/screenshot-6.gif?rev=3005087";s:7:"caption";s:146:"<strong>Efeitos de movimento</strong> - Adicione animações de entrada e transições a qualquer elemento do seu site para cativar os visitantes.";}}s:4:"tags";a:5:{s:13:"drag-and-drop";s:13:"drag-and-drop";s:6:"editor";s:6:"editor";s:9:"elementor";s:9:"elementor";s:12:"landing-page";s:12:"landing page";s:12:"page-builder";s:12:"page builder";}s:8:"versions";a:352:{s:5:"3.0.0";s:58:"https://downloads.wordpress.org/plugin/elementor.3.0.0.zip";s:5:"3.0.1";s:58:"https://downloads.wordpress.org/plugin/elementor.3.0.1.zip";s:6:"3.0.10";s:59:"https://downloads.wordpress.org/plugin/elementor.3.0.10.zip";s:6:"3.0.11";s:59:"https://downloads.wordpress.org/plugin/elementor.3.0.11.zip";s:6:"3.0.12";s:59:"https://downloads.wordpress.org/plugin/elementor.3.0.12.zip";s:6:"3.0.13";s:59:"https://downloads.wordpress.org/plugin/elementor.3.0.13.zip";s:6:"3.0.14";s:59:"https://downloads.wordpress.org/plugin/elementor.3.0.14.zip";s:6:"3.0.15";s:59:"https://downloads.wordpress.org/plugin/elementor.3.0.15.zip";s:6:"3.0.16";s:59:"https://downloads.wordpress.org/plugin/elementor.3.0.16.zip";s:5:"3.0.2";s:58:"https://downloads.wordpress.org/plugin/elementor.3.0.2.zip";s:5:"3.0.3";s:58:"https://downloads.wordpress.org/plugin/elementor.3.0.3.zip";s:5:"3.0.4";s:58:"https://downloads.wordpress.org/plugin/elementor.3.0.4.zip";s:5:"3.0.5";s:58:"https://downloads.wordpress.org/plugin/elementor.3.0.5.zip";s:5:"3.0.6";s:58:"https://downloads.wordpress.org/plugin/elementor.3.0.6.zip";s:5:"3.0.7";s:58:"https://downloads.wordpress.org/plugin/elementor.3.0.7.zip";s:5:"3.0.8";s:58:"https://downloads.wordpress.org/plugin/elementor.3.0.8.zip";s:7:"3.0.8.1";s:60:"https://downloads.wordpress.org/plugin/elementor.3.0.8.1.zip";s:5:"3.0.9";s:58:"https://downloads.wordpress.org/plugin/elementor.3.0.9.zip";s:5:"3.1.0";s:58:"https://downloads.wordpress.org/plugin/elementor.3.1.0.zip";s:11:"3.1.0-beta1";s:64:"https://downloads.wordpress.org/plugin/elementor.3.1.0-beta1.zip";s:11:"3.1.0-beta2";s:64:"https://downloads.wordpress.org/plugin/elementor.3.1.0-beta2.zip";s:11:"3.1.0-beta3";s:64:"https://downloads.wordpress.org/plugin/elementor.3.1.0-beta3.zip";s:11:"3.1.0-beta4";s:64:"https://downloads.wordpress.org/plugin/elementor.3.1.0-beta4.zip";s:10:"3.1.0-dev1";s:63:"https://downloads.wordpress.org/plugin/elementor.3.1.0-dev1.zip";s:10:"3.1.0-dev2";s:63:"https://downloads.wordpress.org/plugin/elementor.3.1.0-dev2.zip";s:10:"3.1.0-dev3";s:63:"https://downloads.wordpress.org/plugin/elementor.3.1.0-dev3.zip";s:5:"3.1.1";s:58:"https://downloads.wordpress.org/plugin/elementor.3.1.1.zip";s:5:"3.1.2";s:58:"https://downloads.wordpress.org/plugin/elementor.3.1.2.zip";s:5:"3.1.3";s:58:"https://downloads.wordpress.org/plugin/elementor.3.1.3.zip";s:5:"3.1.4";s:58:"https://downloads.wordpress.org/plugin/elementor.3.1.4.zip";s:6:"3.10.0";s:59:"https://downloads.wordpress.org/plugin/elementor.3.10.0.zip";s:11:"3.10.0-dev1";s:64:"https://downloads.wordpress.org/plugin/elementor.3.10.0-dev1.zip";s:6:"3.10.1";s:59:"https://downloads.wordpress.org/plugin/elementor.3.10.1.zip";s:6:"3.10.2";s:59:"https://downloads.wordpress.org/plugin/elementor.3.10.2.zip";s:6:"3.11.0";s:59:"https://downloads.wordpress.org/plugin/elementor.3.11.0.zip";s:12:"3.11.0-beta1";s:65:"https://downloads.wordpress.org/plugin/elementor.3.11.0-beta1.zip";s:12:"3.11.0-beta2";s:65:"https://downloads.wordpress.org/plugin/elementor.3.11.0-beta2.zip";s:12:"3.11.0-beta3";s:65:"https://downloads.wordpress.org/plugin/elementor.3.11.0-beta3.zip";s:11:"3.11.0-dev1";s:64:"https://downloads.wordpress.org/plugin/elementor.3.11.0-dev1.zip";s:11:"3.11.0-dev2";s:64:"https://downloads.wordpress.org/plugin/elementor.3.11.0-dev2.zip";s:11:"3.11.0-dev3";s:64:"https://downloads.wordpress.org/plugin/elementor.3.11.0-dev3.zip";s:6:"3.11.1";s:59:"https://downloads.wordpress.org/plugin/elementor.3.11.1.zip";s:6:"3.11.2";s:59:"https://downloads.wordpress.org/plugin/elementor.3.11.2.zip";s:6:"3.11.3";s:59:"https://downloads.wordpress.org/plugin/elementor.3.11.3.zip";s:6:"3.11.4";s:59:"https://downloads.wordpress.org/plugin/elementor.3.11.4.zip";s:6:"3.11.5";s:59:"https://downloads.wordpress.org/plugin/elementor.3.11.5.zip";s:6:"3.12.0";s:59:"https://downloads.wordpress.org/plugin/elementor.3.12.0.zip";s:6:"3.12.1";s:59:"https://downloads.wordpress.org/plugin/elementor.3.12.1.zip";s:6:"3.12.2";s:59:"https://downloads.wordpress.org/plugin/elementor.3.12.2.zip";s:6:"3.13.0";s:59:"https://downloads.wordpress.org/plugin/elementor.3.13.0.zip";s:12:"3.13.0-beta1";s:65:"https://downloads.wordpress.org/plugin/elementor.3.13.0-beta1.zip";s:12:"3.13.0-beta2";s:65:"https://downloads.wordpress.org/plugin/elementor.3.13.0-beta2.zip";s:12:"3.13.0-beta3";s:65:"https://downloads.wordpress.org/plugin/elementor.3.13.0-beta3.zip";s:11:"3.13.0-dev3";s:64:"https://downloads.wordpress.org/plugin/elementor.3.13.0-dev3.zip";s:11:"3.13.0-dev4";s:64:"https://downloads.wordpress.org/plugin/elementor.3.13.0-dev4.zip";s:6:"3.13.1";s:59:"https://downloads.wordpress.org/plugin/elementor.3.13.1.zip";s:6:"3.13.2";s:59:"https://downloads.wordpress.org/plugin/elementor.3.13.2.zip";s:6:"3.13.3";s:59:"https://downloads.wordpress.org/plugin/elementor.3.13.3.zip";s:6:"3.13.4";s:59:"https://downloads.wordpress.org/plugin/elementor.3.13.4.zip";s:6:"3.14.0";s:59:"https://downloads.wordpress.org/plugin/elementor.3.14.0.zip";s:12:"3.14.0-beta1";s:65:"https://downloads.wordpress.org/plugin/elementor.3.14.0-beta1.zip";s:12:"3.14.0-beta2";s:65:"https://downloads.wordpress.org/plugin/elementor.3.14.0-beta2.zip";s:12:"3.14.0-beta3";s:65:"https://downloads.wordpress.org/plugin/elementor.3.14.0-beta3.zip";s:12:"3.14.0-beta4";s:65:"https://downloads.wordpress.org/plugin/elementor.3.14.0-beta4.zip";s:12:"3.14.0-beta5";s:65:"https://downloads.wordpress.org/plugin/elementor.3.14.0-beta5.zip";s:6:"3.14.1";s:59:"https://downloads.wordpress.org/plugin/elementor.3.14.1.zip";s:6:"3.15.0";s:59:"https://downloads.wordpress.org/plugin/elementor.3.15.0.zip";s:6:"3.15.1";s:59:"https://downloads.wordpress.org/plugin/elementor.3.15.1.zip";s:6:"3.15.2";s:59:"https://downloads.wordpress.org/plugin/elementor.3.15.2.zip";s:6:"3.15.3";s:59:"https://downloads.wordpress.org/plugin/elementor.3.15.3.zip";s:6:"3.16.0";s:59:"https://downloads.wordpress.org/plugin/elementor.3.16.0.zip";s:12:"3.16.0-beta3";s:65:"https://downloads.wordpress.org/plugin/elementor.3.16.0-beta3.zip";s:12:"3.16.0-beta4";s:65:"https://downloads.wordpress.org/plugin/elementor.3.16.0-beta4.zip";s:11:"3.16.0-dev1";s:64:"https://downloads.wordpress.org/plugin/elementor.3.16.0-dev1.zip";s:11:"3.16.0-dev2";s:64:"https://downloads.wordpress.org/plugin/elementor.3.16.0-dev2.zip";s:6:"3.16.1";s:59:"https://downloads.wordpress.org/plugin/elementor.3.16.1.zip";s:6:"3.16.2";s:59:"https://downloads.wordpress.org/plugin/elementor.3.16.2.zip";s:6:"3.16.3";s:59:"https://downloads.wordpress.org/plugin/elementor.3.16.3.zip";s:6:"3.16.4";s:59:"https://downloads.wordpress.org/plugin/elementor.3.16.4.zip";s:6:"3.16.5";s:59:"https://downloads.wordpress.org/plugin/elementor.3.16.5.zip";s:6:"3.16.6";s:59:"https://downloads.wordpress.org/plugin/elementor.3.16.6.zip";s:6:"3.17.0";s:59:"https://downloads.wordpress.org/plugin/elementor.3.17.0.zip";s:11:"3.17.0-dev2";s:64:"https://downloads.wordpress.org/plugin/elementor.3.17.0-dev2.zip";s:11:"3.17.0-dev3";s:64:"https://downloads.wordpress.org/plugin/elementor.3.17.0-dev3.zip";s:11:"3.17.0-dev4";s:64:"https://downloads.wordpress.org/plugin/elementor.3.17.0-dev4.zip";s:6:"3.17.1";s:59:"https://downloads.wordpress.org/plugin/elementor.3.17.1.zip";s:6:"3.17.2";s:59:"https://downloads.wordpress.org/plugin/elementor.3.17.2.zip";s:6:"3.17.3";s:59:"https://downloads.wordpress.org/plugin/elementor.3.17.3.zip";s:6:"3.18.0";s:59:"https://downloads.wordpress.org/plugin/elementor.3.18.0.zip";s:12:"3.18.0-beta1";s:65:"https://downloads.wordpress.org/plugin/elementor.3.18.0-beta1.zip";s:12:"3.18.0-beta2";s:65:"https://downloads.wordpress.org/plugin/elementor.3.18.0-beta2.zip";s:12:"3.18.0-beta3";s:65:"https://downloads.wordpress.org/plugin/elementor.3.18.0-beta3.zip";s:12:"3.18.0-beta4";s:65:"https://downloads.wordpress.org/plugin/elementor.3.18.0-beta4.zip";s:11:"3.18.0-dev1";s:64:"https://downloads.wordpress.org/plugin/elementor.3.18.0-dev1.zip";s:6:"3.18.1";s:59:"https://downloads.wordpress.org/plugin/elementor.3.18.1.zip";s:6:"3.18.2";s:59:"https://downloads.wordpress.org/plugin/elementor.3.18.2.zip";s:6:"3.18.3";s:59:"https://downloads.wordpress.org/plugin/elementor.3.18.3.zip";s:6:"3.19.0";s:59:"https://downloads.wordpress.org/plugin/elementor.3.19.0.zip";s:12:"3.19.0-beta1";s:65:"https://downloads.wordpress.org/plugin/elementor.3.19.0-beta1.zip";s:12:"3.19.0-beta2";s:65:"https://downloads.wordpress.org/plugin/elementor.3.19.0-beta2.zip";s:12:"3.19.0-beta3";s:65:"https://downloads.wordpress.org/plugin/elementor.3.19.0-beta3.zip";s:12:"3.19.0-beta4";s:65:"https://downloads.wordpress.org/plugin/elementor.3.19.0-beta4.zip";s:12:"3.19.0-beta5";s:65:"https://downloads.wordpress.org/plugin/elementor.3.19.0-beta5.zip";s:12:"3.19.0-beta6";s:65:"https://downloads.wordpress.org/plugin/elementor.3.19.0-beta6.zip";s:11:"3.19.0-dev1";s:64:"https://downloads.wordpress.org/plugin/elementor.3.19.0-dev1.zip";s:11:"3.19.0-dev2";s:64:"https://downloads.wordpress.org/plugin/elementor.3.19.0-dev2.zip";s:11:"3.19.0-dev3";s:64:"https://downloads.wordpress.org/plugin/elementor.3.19.0-dev3.zip";s:11:"3.19.0-dev4";s:64:"https://downloads.wordpress.org/plugin/elementor.3.19.0-dev4.zip";s:11:"3.19.0-dev5";s:64:"https://downloads.wordpress.org/plugin/elementor.3.19.0-dev5.zip";s:11:"3.19.0-dev6";s:64:"https://downloads.wordpress.org/plugin/elementor.3.19.0-dev6.zip";s:6:"3.19.1";s:59:"https://downloads.wordpress.org/plugin/elementor.3.19.1.zip";s:6:"3.19.2";s:59:"https://downloads.wordpress.org/plugin/elementor.3.19.2.zip";s:6:"3.19.3";s:59:"https://downloads.wordpress.org/plugin/elementor.3.19.3.zip";s:6:"3.19.4";s:59:"https://downloads.wordpress.org/plugin/elementor.3.19.4.zip";s:5:"3.2.0";s:58:"https://downloads.wordpress.org/plugin/elementor.3.2.0.zip";s:5:"3.2.1";s:58:"https://downloads.wordpress.org/plugin/elementor.3.2.1.zip";s:5:"3.2.2";s:58:"https://downloads.wordpress.org/plugin/elementor.3.2.2.zip";s:5:"3.2.3";s:58:"https://downloads.wordpress.org/plugin/elementor.3.2.3.zip";s:5:"3.2.4";s:58:"https://downloads.wordpress.org/plugin/elementor.3.2.4.zip";s:5:"3.2.5";s:58:"https://downloads.wordpress.org/plugin/elementor.3.2.5.zip";s:6:"3.20.0";s:59:"https://downloads.wordpress.org/plugin/elementor.3.20.0.zip";s:12:"3.20.0-beta1";s:65:"https://downloads.wordpress.org/plugin/elementor.3.20.0-beta1.zip";s:12:"3.20.0-beta2";s:65:"https://downloads.wordpress.org/plugin/elementor.3.20.0-beta2.zip";s:12:"3.20.0-beta3";s:65:"https://downloads.wordpress.org/plugin/elementor.3.20.0-beta3.zip";s:12:"3.20.0-beta4";s:65:"https://downloads.wordpress.org/plugin/elementor.3.20.0-beta4.zip";s:11:"3.20.0-dev1";s:64:"https://downloads.wordpress.org/plugin/elementor.3.20.0-dev1.zip";s:11:"3.20.0-dev2";s:64:"https://downloads.wordpress.org/plugin/elementor.3.20.0-dev2.zip";s:11:"3.20.0-dev3";s:64:"https://downloads.wordpress.org/plugin/elementor.3.20.0-dev3.zip";s:11:"3.20.0-dev4";s:64:"https://downloads.wordpress.org/plugin/elementor.3.20.0-dev4.zip";s:6:"3.20.1";s:59:"https://downloads.wordpress.org/plugin/elementor.3.20.1.zip";s:6:"3.20.2";s:59:"https://downloads.wordpress.org/plugin/elementor.3.20.2.zip";s:6:"3.20.3";s:59:"https://downloads.wordpress.org/plugin/elementor.3.20.3.zip";s:6:"3.20.4";s:59:"https://downloads.wordpress.org/plugin/elementor.3.20.4.zip";s:6:"3.21.0";s:59:"https://downloads.wordpress.org/plugin/elementor.3.21.0.zip";s:12:"3.21.0-beta1";s:65:"https://downloads.wordpress.org/plugin/elementor.3.21.0-beta1.zip";s:12:"3.21.0-beta2";s:65:"https://downloads.wordpress.org/plugin/elementor.3.21.0-beta2.zip";s:12:"3.21.0-beta3";s:65:"https://downloads.wordpress.org/plugin/elementor.3.21.0-beta3.zip";s:11:"3.21.0-dev1";s:64:"https://downloads.wordpress.org/plugin/elementor.3.21.0-dev1.zip";s:11:"3.21.0-dev2";s:64:"https://downloads.wordpress.org/plugin/elementor.3.21.0-dev2.zip";s:11:"3.21.0-dev3";s:64:"https://downloads.wordpress.org/plugin/elementor.3.21.0-dev3.zip";s:6:"3.21.1";s:59:"https://downloads.wordpress.org/plugin/elementor.3.21.1.zip";s:6:"3.21.2";s:59:"https://downloads.wordpress.org/plugin/elementor.3.21.2.zip";s:6:"3.21.3";s:59:"https://downloads.wordpress.org/plugin/elementor.3.21.3.zip";s:6:"3.21.4";s:59:"https://downloads.wordpress.org/plugin/elementor.3.21.4.zip";s:6:"3.21.5";s:59:"https://downloads.wordpress.org/plugin/elementor.3.21.5.zip";s:6:"3.21.6";s:59:"https://downloads.wordpress.org/plugin/elementor.3.21.6.zip";s:6:"3.21.7";s:59:"https://downloads.wordpress.org/plugin/elementor.3.21.7.zip";s:6:"3.21.8";s:59:"https://downloads.wordpress.org/plugin/elementor.3.21.8.zip";s:6:"3.22.0";s:59:"https://downloads.wordpress.org/plugin/elementor.3.22.0.zip";s:12:"3.22.0-beta1";s:65:"https://downloads.wordpress.org/plugin/elementor.3.22.0-beta1.zip";s:12:"3.22.0-beta2";s:65:"https://downloads.wordpress.org/plugin/elementor.3.22.0-beta2.zip";s:12:"3.22.0-beta3";s:65:"https://downloads.wordpress.org/plugin/elementor.3.22.0-beta3.zip";s:12:"3.22.0-beta4";s:65:"https://downloads.wordpress.org/plugin/elementor.3.22.0-beta4.zip";s:12:"3.22.0-beta5";s:65:"https://downloads.wordpress.org/plugin/elementor.3.22.0-beta5.zip";s:12:"3.22.0-beta6";s:65:"https://downloads.wordpress.org/plugin/elementor.3.22.0-beta6.zip";s:11:"3.22.0-dev1";s:64:"https://downloads.wordpress.org/plugin/elementor.3.22.0-dev1.zip";s:11:"3.22.0-dev2";s:64:"https://downloads.wordpress.org/plugin/elementor.3.22.0-dev2.zip";s:11:"3.22.0-dev3";s:64:"https://downloads.wordpress.org/plugin/elementor.3.22.0-dev3.zip";s:11:"3.22.0-dev4";s:64:"https://downloads.wordpress.org/plugin/elementor.3.22.0-dev4.zip";s:11:"3.22.0-dev5";s:64:"https://downloads.wordpress.org/plugin/elementor.3.22.0-dev5.zip";s:11:"3.22.0-dev6";s:64:"https://downloads.wordpress.org/plugin/elementor.3.22.0-dev6.zip";s:6:"3.22.1";s:59:"https://downloads.wordpress.org/plugin/elementor.3.22.1.zip";s:6:"3.22.2";s:59:"https://downloads.wordpress.org/plugin/elementor.3.22.2.zip";s:6:"3.22.3";s:59:"https://downloads.wordpress.org/plugin/elementor.3.22.3.zip";s:6:"3.23.0";s:59:"https://downloads.wordpress.org/plugin/elementor.3.23.0.zip";s:12:"3.23.0-beta1";s:65:"https://downloads.wordpress.org/plugin/elementor.3.23.0-beta1.zip";s:12:"3.23.0-beta2";s:65:"https://downloads.wordpress.org/plugin/elementor.3.23.0-beta2.zip";s:12:"3.23.0-beta3";s:65:"https://downloads.wordpress.org/plugin/elementor.3.23.0-beta3.zip";s:12:"3.23.0-beta4";s:65:"https://downloads.wordpress.org/plugin/elementor.3.23.0-beta4.zip";s:12:"3.23.0-beta5";s:65:"https://downloads.wordpress.org/plugin/elementor.3.23.0-beta5.zip";s:12:"3.23.0-beta6";s:65:"https://downloads.wordpress.org/plugin/elementor.3.23.0-beta6.zip";s:11:"3.23.0-dev1";s:64:"https://downloads.wordpress.org/plugin/elementor.3.23.0-dev1.zip";s:11:"3.23.0-dev2";s:64:"https://downloads.wordpress.org/plugin/elementor.3.23.0-dev2.zip";s:11:"3.23.0-dev3";s:64:"https://downloads.wordpress.org/plugin/elementor.3.23.0-dev3.zip";s:11:"3.23.0-dev4";s:64:"https://downloads.wordpress.org/plugin/elementor.3.23.0-dev4.zip";s:11:"3.23.0-dev5";s:64:"https://downloads.wordpress.org/plugin/elementor.3.23.0-dev5.zip";s:11:"3.23.0-dev6";s:64:"https://downloads.wordpress.org/plugin/elementor.3.23.0-dev6.zip";s:6:"3.23.1";s:59:"https://downloads.wordpress.org/plugin/elementor.3.23.1.zip";s:6:"3.23.2";s:59:"https://downloads.wordpress.org/plugin/elementor.3.23.2.zip";s:6:"3.23.3";s:59:"https://downloads.wordpress.org/plugin/elementor.3.23.3.zip";s:6:"3.23.4";s:59:"https://downloads.wordpress.org/plugin/elementor.3.23.4.zip";s:6:"3.24.0";s:59:"https://downloads.wordpress.org/plugin/elementor.3.24.0.zip";s:12:"3.24.0-beta1";s:65:"https://downloads.wordpress.org/plugin/elementor.3.24.0-beta1.zip";s:12:"3.24.0-beta2";s:65:"https://downloads.wordpress.org/plugin/elementor.3.24.0-beta2.zip";s:12:"3.24.0-beta3";s:65:"https://downloads.wordpress.org/plugin/elementor.3.24.0-beta3.zip";s:11:"3.24.0-dev1";s:64:"https://downloads.wordpress.org/plugin/elementor.3.24.0-dev1.zip";s:11:"3.24.0-dev2";s:64:"https://downloads.wordpress.org/plugin/elementor.3.24.0-dev2.zip";s:11:"3.24.0-dev3";s:64:"https://downloads.wordpress.org/plugin/elementor.3.24.0-dev3.zip";s:6:"3.24.1";s:59:"https://downloads.wordpress.org/plugin/elementor.3.24.1.zip";s:6:"3.24.2";s:59:"https://downloads.wordpress.org/plugin/elementor.3.24.2.zip";s:6:"3.24.3";s:59:"https://downloads.wordpress.org/plugin/elementor.3.24.3.zip";s:6:"3.24.4";s:59:"https://downloads.wordpress.org/plugin/elementor.3.24.4.zip";s:6:"3.24.5";s:59:"https://downloads.wordpress.org/plugin/elementor.3.24.5.zip";s:6:"3.24.6";s:59:"https://downloads.wordpress.org/plugin/elementor.3.24.6.zip";s:6:"3.24.7";s:59:"https://downloads.wordpress.org/plugin/elementor.3.24.7.zip";s:6:"3.24.8";s:59:"https://downloads.wordpress.org/plugin/elementor.3.24.8.zip";s:6:"3.25.0";s:59:"https://downloads.wordpress.org/plugin/elementor.3.25.0.zip";s:12:"3.25.0-beta1";s:65:"https://downloads.wordpress.org/plugin/elementor.3.25.0-beta1.zip";s:12:"3.25.0-beta2";s:65:"https://downloads.wordpress.org/plugin/elementor.3.25.0-beta2.zip";s:12:"3.25.0-beta3";s:65:"https://downloads.wordpress.org/plugin/elementor.3.25.0-beta3.zip";s:11:"3.25.0-dev1";s:64:"https://downloads.wordpress.org/plugin/elementor.3.25.0-dev1.zip";s:11:"3.25.0-dev2";s:64:"https://downloads.wordpress.org/plugin/elementor.3.25.0-dev2.zip";s:11:"3.25.0-dev3";s:64:"https://downloads.wordpress.org/plugin/elementor.3.25.0-dev3.zip";s:6:"3.25.1";s:59:"https://downloads.wordpress.org/plugin/elementor.3.25.1.zip";s:7:"3.25.10";s:60:"https://downloads.wordpress.org/plugin/elementor.3.25.10.zip";s:7:"3.25.11";s:60:"https://downloads.wordpress.org/plugin/elementor.3.25.11.zip";s:6:"3.25.2";s:59:"https://downloads.wordpress.org/plugin/elementor.3.25.2.zip";s:6:"3.25.3";s:59:"https://downloads.wordpress.org/plugin/elementor.3.25.3.zip";s:6:"3.25.4";s:59:"https://downloads.wordpress.org/plugin/elementor.3.25.4.zip";s:6:"3.25.5";s:59:"https://downloads.wordpress.org/plugin/elementor.3.25.5.zip";s:6:"3.25.6";s:59:"https://downloads.wordpress.org/plugin/elementor.3.25.6.zip";s:6:"3.25.7";s:59:"https://downloads.wordpress.org/plugin/elementor.3.25.7.zip";s:6:"3.25.8";s:59:"https://downloads.wordpress.org/plugin/elementor.3.25.8.zip";s:6:"3.25.9";s:59:"https://downloads.wordpress.org/plugin/elementor.3.25.9.zip";s:6:"3.26.0";s:59:"https://downloads.wordpress.org/plugin/elementor.3.26.0.zip";s:12:"3.26.0-beta1";s:65:"https://downloads.wordpress.org/plugin/elementor.3.26.0-beta1.zip";s:12:"3.26.0-beta2";s:65:"https://downloads.wordpress.org/plugin/elementor.3.26.0-beta2.zip";s:12:"3.26.0-beta3";s:65:"https://downloads.wordpress.org/plugin/elementor.3.26.0-beta3.zip";s:12:"3.26.0-beta4";s:65:"https://downloads.wordpress.org/plugin/elementor.3.26.0-beta4.zip";s:12:"3.26.0-beta5";s:65:"https://downloads.wordpress.org/plugin/elementor.3.26.0-beta5.zip";s:11:"3.26.0-dev1";s:64:"https://downloads.wordpress.org/plugin/elementor.3.26.0-dev1.zip";s:11:"3.26.0-dev2";s:64:"https://downloads.wordpress.org/plugin/elementor.3.26.0-dev2.zip";s:11:"3.26.0-dev3";s:64:"https://downloads.wordpress.org/plugin/elementor.3.26.0-dev3.zip";s:11:"3.26.0-dev4";s:64:"https://downloads.wordpress.org/plugin/elementor.3.26.0-dev4.zip";s:11:"3.26.0-dev5";s:64:"https://downloads.wordpress.org/plugin/elementor.3.26.0-dev5.zip";s:6:"3.26.1";s:59:"https://downloads.wordpress.org/plugin/elementor.3.26.1.zip";s:6:"3.26.2";s:59:"https://downloads.wordpress.org/plugin/elementor.3.26.2.zip";s:6:"3.26.3";s:59:"https://downloads.wordpress.org/plugin/elementor.3.26.3.zip";s:6:"3.26.4";s:59:"https://downloads.wordpress.org/plugin/elementor.3.26.4.zip";s:6:"3.26.5";s:59:"https://downloads.wordpress.org/plugin/elementor.3.26.5.zip";s:6:"3.27.0";s:59:"https://downloads.wordpress.org/plugin/elementor.3.27.0.zip";s:12:"3.27.0-beta1";s:65:"https://downloads.wordpress.org/plugin/elementor.3.27.0-beta1.zip";s:12:"3.27.0-beta2";s:65:"https://downloads.wordpress.org/plugin/elementor.3.27.0-beta2.zip";s:11:"3.27.0-dev1";s:64:"https://downloads.wordpress.org/plugin/elementor.3.27.0-dev1.zip";s:11:"3.27.0-dev2";s:64:"https://downloads.wordpress.org/plugin/elementor.3.27.0-dev2.zip";s:6:"3.27.1";s:59:"https://downloads.wordpress.org/plugin/elementor.3.27.1.zip";s:6:"3.27.2";s:59:"https://downloads.wordpress.org/plugin/elementor.3.27.2.zip";s:6:"3.27.3";s:59:"https://downloads.wordpress.org/plugin/elementor.3.27.3.zip";s:6:"3.27.4";s:59:"https://downloads.wordpress.org/plugin/elementor.3.27.4.zip";s:6:"3.27.5";s:59:"https://downloads.wordpress.org/plugin/elementor.3.27.5.zip";s:6:"3.27.6";s:59:"https://downloads.wordpress.org/plugin/elementor.3.27.6.zip";s:6:"3.27.7";s:59:"https://downloads.wordpress.org/plugin/elementor.3.27.7.zip";s:6:"3.28.0";s:59:"https://downloads.wordpress.org/plugin/elementor.3.28.0.zip";s:12:"3.28.0-beta1";s:65:"https://downloads.wordpress.org/plugin/elementor.3.28.0-beta1.zip";s:12:"3.28.0-beta2";s:65:"https://downloads.wordpress.org/plugin/elementor.3.28.0-beta2.zip";s:12:"3.28.0-beta3";s:65:"https://downloads.wordpress.org/plugin/elementor.3.28.0-beta3.zip";s:11:"3.28.0-dev1";s:64:"https://downloads.wordpress.org/plugin/elementor.3.28.0-dev1.zip";s:11:"3.28.0-dev2";s:64:"https://downloads.wordpress.org/plugin/elementor.3.28.0-dev2.zip";s:11:"3.28.0-dev3";s:64:"https://downloads.wordpress.org/plugin/elementor.3.28.0-dev3.zip";s:6:"3.28.1";s:59:"https://downloads.wordpress.org/plugin/elementor.3.28.1.zip";s:6:"3.28.2";s:59:"https://downloads.wordpress.org/plugin/elementor.3.28.2.zip";s:6:"3.28.3";s:59:"https://downloads.wordpress.org/plugin/elementor.3.28.3.zip";s:6:"3.28.4";s:59:"https://downloads.wordpress.org/plugin/elementor.3.28.4.zip";s:6:"3.29.0";s:59:"https://downloads.wordpress.org/plugin/elementor.3.29.0.zip";s:12:"3.29.0-beta1";s:65:"https://downloads.wordpress.org/plugin/elementor.3.29.0-beta1.zip";s:12:"3.29.0-beta2";s:65:"https://downloads.wordpress.org/plugin/elementor.3.29.0-beta2.zip";s:12:"3.29.0-beta3";s:65:"https://downloads.wordpress.org/plugin/elementor.3.29.0-beta3.zip";s:12:"3.29.0-beta4";s:65:"https://downloads.wordpress.org/plugin/elementor.3.29.0-beta4.zip";s:11:"3.29.0-dev1";s:64:"https://downloads.wordpress.org/plugin/elementor.3.29.0-dev1.zip";s:11:"3.29.0-dev2";s:64:"https://downloads.wordpress.org/plugin/elementor.3.29.0-dev2.zip";s:11:"3.29.0-dev3";s:64:"https://downloads.wordpress.org/plugin/elementor.3.29.0-dev3.zip";s:11:"3.29.0-dev4";s:64:"https://downloads.wordpress.org/plugin/elementor.3.29.0-dev4.zip";s:6:"3.29.1";s:59:"https://downloads.wordpress.org/plugin/elementor.3.29.1.zip";s:6:"3.29.2";s:59:"https://downloads.wordpress.org/plugin/elementor.3.29.2.zip";s:5:"3.3.0";s:58:"https://downloads.wordpress.org/plugin/elementor.3.3.0.zip";s:5:"3.3.1";s:58:"https://downloads.wordpress.org/plugin/elementor.3.3.1.zip";s:6:"3.30.0";s:59:"https://downloads.wordpress.org/plugin/elementor.3.30.0.zip";s:12:"3.30.0-beta1";s:65:"https://downloads.wordpress.org/plugin/elementor.3.30.0-beta1.zip";s:12:"3.30.0-beta2";s:65:"https://downloads.wordpress.org/plugin/elementor.3.30.0-beta2.zip";s:12:"3.30.0-beta3";s:65:"https://downloads.wordpress.org/plugin/elementor.3.30.0-beta3.zip";s:11:"3.30.0-dev1";s:64:"https://downloads.wordpress.org/plugin/elementor.3.30.0-dev1.zip";s:11:"3.30.0-dev2";s:64:"https://downloads.wordpress.org/plugin/elementor.3.30.0-dev2.zip";s:11:"3.30.0-dev3";s:64:"https://downloads.wordpress.org/plugin/elementor.3.30.0-dev3.zip";s:6:"3.30.1";s:59:"https://downloads.wordpress.org/plugin/elementor.3.30.1.zip";s:6:"3.30.2";s:59:"https://downloads.wordpress.org/plugin/elementor.3.30.2.zip";s:6:"3.30.3";s:59:"https://downloads.wordpress.org/plugin/elementor.3.30.3.zip";s:6:"3.30.4";s:59:"https://downloads.wordpress.org/plugin/elementor.3.30.4.zip";s:6:"3.31.0";s:59:"https://downloads.wordpress.org/plugin/elementor.3.31.0.zip";s:12:"3.31.0-beta1";s:65:"https://downloads.wordpress.org/plugin/elementor.3.31.0-beta1.zip";s:12:"3.31.0-beta2";s:65:"https://downloads.wordpress.org/plugin/elementor.3.31.0-beta2.zip";s:11:"3.31.0-dev1";s:64:"https://downloads.wordpress.org/plugin/elementor.3.31.0-dev1.zip";s:11:"3.31.0-dev2";s:64:"https://downloads.wordpress.org/plugin/elementor.3.31.0-dev2.zip";s:6:"3.31.1";s:59:"https://downloads.wordpress.org/plugin/elementor.3.31.1.zip";s:6:"3.31.2";s:59:"https://downloads.wordpress.org/plugin/elementor.3.31.2.zip";s:6:"3.31.3";s:59:"https://downloads.wordpress.org/plugin/elementor.3.31.3.zip";s:5:"3.4.0";s:58:"https://downloads.wordpress.org/plugin/elementor.3.4.0.zip";s:10:"3.4.0-dev7";s:63:"https://downloads.wordpress.org/plugin/elementor.3.4.0-dev7.zip";s:10:"3.4.0-dev8";s:63:"https://downloads.wordpress.org/plugin/elementor.3.4.0-dev8.zip";s:10:"3.4.0-dev9";s:63:"https://downloads.wordpress.org/plugin/elementor.3.4.0-dev9.zip";s:5:"3.4.1";s:58:"https://downloads.wordpress.org/plugin/elementor.3.4.1.zip";s:5:"3.4.2";s:58:"https://downloads.wordpress.org/plugin/elementor.3.4.2.zip";s:5:"3.4.3";s:58:"https://downloads.wordpress.org/plugin/elementor.3.4.3.zip";s:5:"3.4.4";s:58:"https://downloads.wordpress.org/plugin/elementor.3.4.4.zip";s:5:"3.4.5";s:58:"https://downloads.wordpress.org/plugin/elementor.3.4.5.zip";s:5:"3.4.6";s:58:"https://downloads.wordpress.org/plugin/elementor.3.4.6.zip";s:5:"3.4.7";s:58:"https://downloads.wordpress.org/plugin/elementor.3.4.7.zip";s:5:"3.4.8";s:58:"https://downloads.wordpress.org/plugin/elementor.3.4.8.zip";s:5:"3.5.0";s:58:"https://downloads.wordpress.org/plugin/elementor.3.5.0.zip";s:11:"3.5.0-beta1";s:64:"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta1.zip";s:11:"3.5.0-beta2";s:64:"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta2.zip";s:11:"3.5.0-beta3";s:64:"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta3.zip";s:11:"3.5.0-beta4";s:64:"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta4.zip";s:11:"3.5.0-beta5";s:64:"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta5.zip";s:11:"3.5.0-beta7";s:64:"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta7.zip";s:11:"3.5.0-beta8";s:64:"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta8.zip";s:10:"3.5.0-dev8";s:63:"https://downloads.wordpress.org/plugin/elementor.3.5.0-dev8.zip";s:10:"3.5.0-dev9";s:63:"https://downloads.wordpress.org/plugin/elementor.3.5.0-dev9.zip";s:5:"3.5.1";s:58:"https://downloads.wordpress.org/plugin/elementor.3.5.1.zip";s:5:"3.5.2";s:58:"https://downloads.wordpress.org/plugin/elementor.3.5.2.zip";s:5:"3.5.3";s:58:"https://downloads.wordpress.org/plugin/elementor.3.5.3.zip";s:5:"3.5.4";s:58:"https://downloads.wordpress.org/plugin/elementor.3.5.4.zip";s:5:"3.5.5";s:58:"https://downloads.wordpress.org/plugin/elementor.3.5.5.zip";s:5:"3.5.6";s:58:"https://downloads.wordpress.org/plugin/elementor.3.5.6.zip";s:5:"3.6.0";s:58:"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip";s:11:"3.6.0-beta1";s:64:"https://downloads.wordpress.org/plugin/elementor.3.6.0-beta1.zip";s:11:"3.6.0-beta2";s:64:"https://downloads.wordpress.org/plugin/elementor.3.6.0-beta2.zip";s:11:"3.6.0-beta3";s:64:"https://downloads.wordpress.org/plugin/elementor.3.6.0-beta3.zip";s:11:"3.6.0-beta4";s:64:"https://downloads.wordpress.org/plugin/elementor.3.6.0-beta4.zip";s:11:"3.6.0-beta5";s:64:"https://downloads.wordpress.org/plugin/elementor.3.6.0-beta5.zip";s:10:"3.6.0-dev1";s:63:"https://downloads.wordpress.org/plugin/elementor.3.6.0-dev1.zip";s:11:"3.6.0-dev10";s:64:"https://downloads.wordpress.org/plugin/elementor.3.6.0-dev10.zip";s:5:"3.6.1";s:58:"https://downloads.wordpress.org/plugin/elementor.3.6.1.zip";s:5:"3.6.2";s:58:"https://downloads.wordpress.org/plugin/elementor.3.6.2.zip";s:5:"3.6.3";s:58:"https://downloads.wordpress.org/plugin/elementor.3.6.3.zip";s:5:"3.6.4";s:58:"https://downloads.wordpress.org/plugin/elementor.3.6.4.zip";s:5:"3.6.5";s:58:"https://downloads.wordpress.org/plugin/elementor.3.6.5.zip";s:5:"3.6.6";s:58:"https://downloads.wordpress.org/plugin/elementor.3.6.6.zip";s:5:"3.6.7";s:58:"https://downloads.wordpress.org/plugin/elementor.3.6.7.zip";s:5:"3.6.8";s:58:"https://downloads.wordpress.org/plugin/elementor.3.6.8.zip";s:5:"3.7.0";s:58:"https://downloads.wordpress.org/plugin/elementor.3.7.0.zip";s:11:"3.7.0-beta1";s:64:"https://downloads.wordpress.org/plugin/elementor.3.7.0-beta1.zip";s:11:"3.7.0-beta2";s:64:"https://downloads.wordpress.org/plugin/elementor.3.7.0-beta2.zip";s:11:"3.7.0-beta3";s:64:"https://downloads.wordpress.org/plugin/elementor.3.7.0-beta3.zip";s:11:"3.7.0-beta4";s:64:"https://downloads.wordpress.org/plugin/elementor.3.7.0-beta4.zip";s:10:"3.7.0-dev1";s:63:"https://downloads.wordpress.org/plugin/elementor.3.7.0-dev1.zip";s:5:"3.7.1";s:58:"https://downloads.wordpress.org/plugin/elementor.3.7.1.zip";s:5:"3.7.2";s:58:"https://downloads.wordpress.org/plugin/elementor.3.7.2.zip";s:5:"3.7.3";s:58:"https://downloads.wordpress.org/plugin/elementor.3.7.3.zip";s:5:"3.7.4";s:58:"https://downloads.wordpress.org/plugin/elementor.3.7.4.zip";s:5:"3.7.5";s:58:"https://downloads.wordpress.org/plugin/elementor.3.7.5.zip";s:5:"3.7.6";s:58:"https://downloads.wordpress.org/plugin/elementor.3.7.6.zip";s:5:"3.7.7";s:58:"https://downloads.wordpress.org/plugin/elementor.3.7.7.zip";s:5:"3.7.8";s:58:"https://downloads.wordpress.org/plugin/elementor.3.7.8.zip";s:5:"3.8.0";s:58:"https://downloads.wordpress.org/plugin/elementor.3.8.0.zip";s:11:"3.8.0-beta1";s:64:"https://downloads.wordpress.org/plugin/elementor.3.8.0-beta1.zip";s:11:"3.8.0-beta2";s:64:"https://downloads.wordpress.org/plugin/elementor.3.8.0-beta2.zip";s:11:"3.8.0-beta3";s:64:"https://downloads.wordpress.org/plugin/elementor.3.8.0-beta3.zip";s:5:"3.8.1";s:58:"https://downloads.wordpress.org/plugin/elementor.3.8.1.zip";s:5:"3.9.0";s:58:"https://downloads.wordpress.org/plugin/elementor.3.9.0.zip";s:5:"3.9.1";s:58:"https://downloads.wordpress.org/plugin/elementor.3.9.1.zip";s:5:"3.9.2";s:58:"https://downloads.wordpress.org/plugin/elementor.3.9.2.zip";s:5:"trunk";s:52:"https://downloads.wordpress.org/plugin/elementor.zip";}s:14:"business_model";s:10:"commercial";s:14:"repository_url";s:0:"";s:22:"commercial_support_url";s:94:"https://elementor.com/support/?utm_source=wp-repo&utm_medium=link&utm_campaign=premium-support";s:11:"donate_link";s:0:"";s:7:"banners";a:2:{s:3:"low";s:64:"https://ps.w.org/elementor/assets/banner-772x250.png?rev=3164133";s:4:"high";s:65:"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=3164133";}s:5:"icons";a:2:{s:2:"1x";s:62:"https://ps.w.org/elementor/assets/icon-128x128.gif?rev=3111597";s:2:"2x";s:62:"https://ps.w.org/elementor/assets/icon-256x256.gif?rev=3111597";}s:12:"preview_link";s:0:"";s:4:"Name";s:78:"Elementor Website Builder &#8211; Mais do que apenas um construtor de páginas";}}', 'off');
INSERT INTO `wpmr_options` VALUES
(173, 'recently_activated', 'a:1:{s:29:"pro-elements/pro-elements.php";i:1756478858;}', 'off'),
(181, 'current_theme', 'Hello Elementor', 'auto'),
(182, 'theme_mods_hello-elementor', 'a:3:{i:0;b:0;s:18:"nav_menu_locations";a:0:{}s:18:"custom_css_post_id";i:-1;}', 'on'),
(183, 'theme_switched', '', 'auto'),
(184, 'hello_theme_version', '3.4.4', 'auto'),
(187, 'elementor_connect_site_key', 'a58c0a6e6761a0eff77f022ba7fd3398', 'auto'),
(188, '_hello-elementor_notifications', 'a:2:{s:7:"timeout";i:1759732547;s:5:"value";s:7532:"[{"id":"hello-theme-3.4.4","title":"3.4.4 - 2025-06-08","description":"\\n            <ul>\\n\\t\\t\\t\\t<li>Tweak: Improve Header\\/Footer edit access from theme Home<\\/li>\\n            <\\/ul>"},{"id":"hello-theme-3.4.3","title":"3.4.3 - 2025-05-26","description":"\\n            <ul>\\n\\t\\t\\t\\t<li>Fix: Settings page empty after 3.4.0 in translated sites<\\/li>\\n\\t\\t\\t\\t<li>Fix: PHP 8.4 deprecation notice<\\/li>\\n            <\\/ul>"},{"id":"hello-theme-3.4.2","title":"3.4.2 - 2025-05-19","description":"\\n            <ul>\\n\\t\\t\\t\\t<li>Tweak: Set Home links font weight to regular<\\/li>\\n  \\t\\t        <li>Tweak: Dart SASS 3.0.0 - resolve scss deprecated warnings<\\/li>\\n    \\t\\t    <li>Fix: Settings page empty after 3.4.0<\\/li>\\n            <\\/ul>"},{"id":"hello-theme-3.4.0","title":"3.4.0 - 2025-05-05","description":"\\n            <ul>\\n                <li>New: Added Theme Home<\\/li>\\n\\t\\t\\t\\t<li>Tweak: Update theme settings page style<\\/li>\\n\\t\\t\\t\\t<li>Tweak: Update tested up to version 6.8<\\/li>\\n            <\\/ul>"},{"id":"hello-theme-3.3.0","title":"3.3.0 - 2025-01-21","description":"\\n            <ul>\\n                <li>Tweak: Added changelog link in theme settings<\\/li>\\n\\t\\t\\t\\t<li>Tweak: Updated minimum required Safari version to 15.5<\\/li>\\n  \\t\\t        <li>Tweak: Update autoprefixer to latest versions<\\/li>\\n            <\\/ul>"},{"id":"hello-theme-3.2.1","title":"3.2.1 - 2024-12-16","description":"\\n            <ul>\\n                <li>\\n                    Fix: Gutenberg editor expanded disproportionately after adding support for <code>theme.json<\\/code>\\n                    (<a href=\\"https:\\/\\/github.com\\/elementor\\/hello-theme\\/issues\\/430\\" target=\\"_blank\\">#430<\\/a>)\\n                <\\/li>\\n                <li>Fix: Use CSS logical properties in the theme<\\/li>\\n                <li>Fix: Add ARIA attributes to header nav menu<\\/li>\\n            <\\/ul>"},{"id":"hello-theme-3.2.0","title":"3.2.0 - 2024-12-15","description":"\\n            <ul>\\n                <li>Tweak: Convert classic to hybrid theme with block-editor support<\\/li>\\n                <li>Tweak: Added new design options to header\\/footer<\\/li>\\n                <li>Tweak: Update <code>Tested up to 6.7<\\/code><\\/li>\\n                <li>\\n                    Fix: Minify JS files\\n                    (<a href=\\"https:\\/\\/github.com\\/elementor\\/hello-theme\\/issues\\/419\\" target=\\"_blank\\">#419<\\/a>)\\n                <\\/li>\\n            <\\/ul>"},{"id":"hello-theme-3.1.1","title":"3.1.1 - 2024-07-30","description":"\\n            <ul>\\n                <li>Fix: Use consistent <code>&lt;h2&gt;<\\/code> for comments title and comment form<\\/li>\\n            <\\/ul>"},{"id":"hello-theme-3.1.0","title":"3.1.0 - 2024-06-19","description":"\\n            <ul>\\n                <li>Tweak: Update <code>Requires PHP 7.4<\\/code><\\/li>\\n                <li>Tweak: Update <code>Tested up to 6.5<\\/code><\\/li>\\n                <li>Tweak: Add the ability to style the brand layout<\\/li>\\n                <li>Tweak: Remove deprecated Elementor code<\\/li>\\n                <li>Tweak: Restore default focus styling inside the theme<\\/li>\\n                <li>Tweak: Add <code>aria-label<\\/code> attribute to various <code>&lt;nav&gt;<\\/code> elements<\\/li>\\n                <li>Tweak: Improve mobile menu keyboard accessibility<\\/li>\\n                <li>Tweak: Semantic mobile menu toggle button<\\/li>\\n                <li>Fix: The header renders redundant <code>&lt;p&gt;<\\/code> when tagline is empty<\\/li>\\n                <li>Fix: Single post renders redundant wrapping <code>&lt;div&gt;<\\/code> when it has no tags<\\/li>\\n                <li>Fix: Remove redundant wrapping <code>&lt;div&gt;<\\/code> from <code>wp_nav_menu()<\\/code> output<\\/li>\\n                <li>Fix: Wrap page <code>&lt;h1&gt;<\\/code> with <code>&lt;div&gt;<\\/code>, not <code>&lt;header&gt;<\\/code><\\/li>\\n                <li>Fix: Use consistent <code>&lt;h3&gt;<\\/code> for comments title and comment form<\\/li>\\n                <li>Fix: Remove heading tags from dynamic header\\/footer<\\/li>\\n                <li>\\n                    Fix: Mobile Menu hamburger is not visible for logged-out users in some cases\\n                    (<a href=\\"https:\\/\\/github.com\\/elementor\\/hello-theme\\/issues\\/369\\" target=\\"_blank\\">#369<\\/a>)\\n                <\\/li>\\n                <li>Fix: Remove duplicate ID attributes in the header mobile menu<\\/li>\\n                <li>\\n                    Fix: Remove redundant table styles\\n                    (<a href=\\"https:\\/\\/github.com\\/elementor\\/hello-theme\\/issues\\/311\\" target=\\"_blank\\">#311<\\/a>)\\n                <\\/li>\\n                <li>Fix: Remove redundant space below Site Logo in the header\\/footer<\\/li>\\n                <li>Fix: Remove redundant CSS from dynamic header\\/footer layout<\\/li>\\n                <li>\\n                    Fix: Separate post tags in single post\\n                    (<a href=\\"https:\\/\\/github.com\\/elementor\\/hello-theme\\/issues\\/304\\" target=\\"_blank\\">#304<\\/a>)\\n                <\\/li>\\n                <li>Fix: Display <code>the_tags()<\\/code> after <code>wp_link_pages()<\\/code><\\/li>\\n                <li>Fix: Remove page break navigation from archives when using <code>&lt;!--nextpage--&gt;<\\/code><\\/li>\\n                <li>Fix: Style posts pagination component layout<\\/li>\\n                <li>Fix: Add RTL support to pagination arrows in archive pages<\\/li>\\n                <li>\\n                    Fix: Update pagination prev\\/next labels and positions\\n                    (<a href=\\"https:\\/\\/github.com\\/elementor\\/hello-theme\\/issues\\/404\\" target=\\"_blank\\">#404<\\/a>)\\n                <\\/li>\\n                <li>Fix: Check if Elementor is loaded when using dynamic header & footer<\\/li>\\n            <\\/ul>"},{"id":"hello-theme-3.0.2","title":"3.0.2 - 2024-05-28","description":"\\n            <ul>\\n                <li>Internal: Version bump release to refresh WordPress repository<\\/li>\\n            <\\/ul>"},{"id":"hello-theme-3.0.1","title":"3.0.1 - 2024-01-24","description":"\\n            <ul>\\n                <li>Fix: Harden security for admin notice dismiss button<\\/li>\\n                <li>Fix: Add <code>alt<\\/code> attribute to all the images in the dashboard<\\/li>\\n            <\\/ul>"},{"id":"hello-theme-3.0.0","title":"3.0.0 - 2023-12-26","description":"\\n            <ul>\\n                <li>New: Option to disable cross-site header & footer<\\/li>\\n                <li>Tweak: Update <code>Requires PHP 7.3<\\/code><\\/li>\\n                <li>Tweak: Update <code>Tested up to 6.4<\\/code><\\/li>\\n                <li>Tweak: Move cross-site header & footer styles to a separate CSS file<\\/li>\\n                <li>Tweak: Don''t load <code>header-footer.min.css<\\/code> when disabling header & footer<\\/li>\\n                <li>Tweak: Don''t load <code>hello-frontend.min.js<\\/code> when disabling header & footer<\\/li>\\n                <li>Tweak: Replace jQuery code with vanilla JS in the frontend<\\/li>\\n                <li>Tweak: Replace jQuery code with vanilla JS in WordPress admin<\\/li>\\n                <li>Tweak: Remove unused JS code from the frontend<\\/li>\\n                <li>Tweak: Remove unused CSS code from the editor<\\/li>\\n                <li>Tweak: Remove unnecessary <code>role<\\/code> attributes from HTML landmark elements<\\/li>\\n                <li>Tweak: Link from Elementor Site Settings to Hello Theme Settings<\\/li>\\n                <li>Fix: Dynamic script version for better caching<\\/li>\\n            <\\/ul>"}]";}', 'off'),
(196, 'elementor_active_kit', '16', 'auto'),
(197, 'elementor_font_display', 'swap', 'auto'),
(200, 'elementor_landing_pages_activation', '0', 'auto'),
(201, 'elementor_checklist', '{"last_opened_timestamp":null,"first_closed_checklist_in_editor":false,"is_popup_minimized":false,"steps":{"add_logo":{"is_marked_completed":false,"is_immutable_completed":false},"set_fonts_and_colors":{"is_marked_completed":false,"is_immutable_completed":false},"create_pages":{"is_marked_completed":false,"is_immutable_completed":false},"setup_header":{"is_marked_completed":false,"is_immutable_completed":false},"assign_homepage":{"is_marked_completed":false,"is_immutable_completed":false},"setup_header_pro":{"is_marked_completed":false,"is_immutable_completed":false}},"should_open_in_editor":false}', 'auto'),
(202, 'elementor_version', '3.32.4', 'auto'),
(203, 'elementor_install_history', 'a:7:{s:6:"3.31.3";i:1756477765;s:6:"3.31.4";i:1757356578;s:6:"3.31.5";i:1757443133;s:6:"3.32.0";i:1757961518;s:6:"3.32.2";i:1758330245;s:6:"3.32.3";i:1759171018;s:6:"3.32.4";i:1759689347;}', 'auto'),
(204, 'elementor_events_db_version', '1.0.0', 'off'),
(206, 'elementor_onboarded', '1', 'auto'),
(207, '_elementor_installed_time', '1756477849', 'auto'),
(208, 'elementor_remote_info_library', 'a:3:{s:10:"types_data";a:4:{s:5:"block";a:2:{s:10:"categories";a:30:{i:0;s:8:"404 page";i:1;s:5:"about";i:2;s:7:"archive";i:3;s:8:"Benefits";i:4;s:14:"call to action";i:5;s:7:"clients";i:6;s:7:"contact";i:7;s:4:"Data";i:8;s:10:"ehp-footer";i:9;s:10:"ehp-header";i:10;s:3:"faq";i:11;s:8:"features";i:12;s:6:"footer";i:13;s:7:"Gallery";i:14;s:6:"header";i:15;s:4:"hero";i:16;s:11:"Link in Bio";i:17;s:9:"portfolio";i:18;s:7:"pricing";i:19;s:15:"product archive";i:20;s:5:"Quote";i:21;s:15:"Service Details";i:22;s:8:"services";i:23;s:11:"single page";i:24;s:11:"single post";i:25;s:14:"single product";i:26;s:5:"stats";i:27;s:9:"subscribe";i:28;s:4:"team";i:29;s:12:"testimonials";}s:4:"sets";a:5:{i:0;s:11:"Boxing Club";i:1;s:19:"Business Consultant";i:2;s:16:"Marketing Agency";i:3;s:9:"Wireframe";i:4;s:15:"Workshop Center";}}s:5:"popup";a:1:{s:10:"categories";a:6:{i:0;s:10:"bottom bar";i:1;s:7:"classic";i:2;s:6:"fly-in";i:3;s:11:"full screen";i:4;s:9:"hello bar";i:5;s:8:"slide-in";}}s:2:"lp";a:1:{s:10:"categories";a:15:{i:0;s:8:"Business";i:1;s:16:"Coming Soon Page";i:2;s:9:"eCommerce";i:3;s:9:"Education";i:4;s:6:"Events";i:5;s:18:"Health and Fitness";i:6;s:3:"NFT";i:7;s:14:"Online Service";i:8;s:7:"Product";i:9;s:11:"Real Estate";i:10;s:18:"Social Involvement";i:11;s:14:"Thank You Page";i:12;s:6:"Travel";i:13;s:18:"Under Construction";i:14;s:9:"Wireframe";}}s:2:"lb";a:1:{s:10:"categories";a:2:{i:0;s:4:"post";i:1;s:7:"product";}}}s:10:"categories";a:30:{i:0;s:8:"404 page";i:1;s:5:"about";i:2;s:7:"archive";i:3;s:8:"Benefits";i:4;s:14:"call to action";i:5;s:7:"clients";i:6;s:7:"contact";i:7;s:4:"Data";i:8;s:10:"ehp-footer";i:9;s:10:"ehp-header";i:10;s:3:"faq";i:11;s:8:"features";i:12;s:6:"footer";i:13;s:7:"Gallery";i:14;s:6:"header";i:15;s:4:"hero";i:16;s:11:"Link in Bio";i:17;s:9:"portfolio";i:18;s:7:"pricing";i:19;s:15:"product archive";i:20;s:5:"Quote";i:21;s:15:"Service Details";i:22;s:8:"services";i:23;s:11:"single page";i:24;s:11:"single post";i:25;s:14:"single product";i:26;s:5:"stats";i:27;s:9:"subscribe";i:28;s:4:"team";i:29;s:12:"testimonials";}s:9:"templates";a:4:{i:0;a:20:{s:4:"tmpl";i:1254;s:2:"id";i:20472;s:5:"title";s:10:"test ido f";s:9:"thumbnail";s:153:"https://library.stg.elementor.red/wp-content/uploads/2025/01/png-clipart-logo-harry-potter-literary-series-lord-voldemort-film-harry-potter-thumbnail.png";s:12:"tmpl_created";i:1751356263;s:6:"author";s:9:"Elementor";s:3:"url";s:120:"https://library.stg.elementor.red/blocks/test-ido-f/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:11:"access_tier";s:4:"free";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:-1;s:11:"trend_index";i:-1;s:18:"editor_layout_type";s:0:"";s:15:"minimum_version";s:5:"0.0.0";s:8:"products";s:7:"regular";s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:1;a:20:{s:4:"tmpl";i:1227;s:2:"id";i:19968;s:5:"title";s:12:"Zeyad Test 1";s:9:"thumbnail";s:83:"https://library.stg.elementor.red/wp-content/uploads/2022/09/boxking_hero_img_2.jpg";s:12:"tmpl_created";i:1670765723;s:6:"author";s:9:"Elementor";s:3:"url";s:122:"https://library.stg.elementor.red/blocks/zeyad-test-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:11:"access_tier";s:9:"essential";s:7:"subtype";s:5:"about";s:4:"tags";s:2:"[]";s:10:"menu_order";i:1;s:16:"popularity_index";i:-1;s:11:"trend_index";i:-1;s:18:"editor_layout_type";s:0:"";s:15:"minimum_version";s:5:"0.0.0";s:8:"products";s:7:"regular";s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:20;}i:2;a:20:{s:4:"tmpl";i:1231;s:2:"id";i:19494;s:5:"title";s:5:"test2";s:9:"thumbnail";s:83:"https://library.stg.elementor.red/wp-content/uploads/2022/09/boxking_hero_img_4.jpg";s:12:"tmpl_created";i:1672308146;s:6:"author";s:9:"Elementor";s:3:"url";s:115:"https://library.stg.elementor.red/blocks/test2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:11:"access_tier";s:9:"essential";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:2;s:16:"popularity_index";i:-1;s:11:"trend_index";i:-1;s:18:"editor_layout_type";s:0:"";s:15:"minimum_version";s:5:"0.0.0";s:8:"products";s:7:"regular";s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:20;}i:3;a:20:{s:4:"tmpl";i:1209;s:2:"id";i:9631;s:5:"title";s:38:"Slide-in | Sale | Register | Subscribe";s:9:"thumbnail";s:87:"https://library.stg.elementor.red/wp-content/uploads/2019/01/Slide-in_Sale_small_01.png";s:12:"tmpl_created";i:1660034300;s:6:"author";s:9:"Elementor";s:3:"url";s:126:"https://library.stg.elementor.red/popups/slide-in-sale-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:11:"access_tier";s:9:"essential";s:7:"subtype";s:8:"slide-in";s:4:"tags";s:2:"[]";s:10:"menu_order";i:142;s:16:"popularity_index";i:-1;s:11:"trend_index";i:-1;s:18:"editor_layout_type";s:0:"";s:15:"minimum_version";s:5:"0.0.0";s:8:"products";s:7:"regular";s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}}}', 'off'),
(209, 'elementor_remote_info_feed_data', 'a:3:{i:0;a:5:{s:5:"title";s:70:"Introducing Elementor 3.31: New Editor V4 Variables, Filters, and More";s:7:"excerpt";s:294:"Elementor 3.31 is here, pushing Editor V4 forward with powerful design system enhancements and modern visual styling tools. From Variables and Filters to smarter editing workflows and semantic markup, this version makes it easier than ever to design beautiful, performant, and accessible sites.";s:7:"created";i:1755094220;s:5:"badge";s:3:"NEW";s:3:"url";s:140:"https://elementor.com/blog/elementor-331-v4-alpha-variables-filters/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed";}i:1;a:5:{s:5:"title";s:67:"What Is an MCP? The AI Breakthrough Web Creators Shouldn’t Ignore";s:7:"excerpt";s:143:"Discover how Model Context Protocol (MCP) is shaping AI-tool interaction and redefining how pro web creators build, manage, and scale websites.";s:7:"created";i:1754310811;s:5:"badge";s:0:"";s:3:"url";s:130:"https://elementor.com/blog/mcp-explained-for-web-creators/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed";}i:2;a:5:{s:5:"title";s:100:"Introducing Elementor 3.30: new Editor V4 capabilities, full Website Templates in the cloud, & more!";s:7:"excerpt";s:361:"Elementor 3.30 is here and it includes upgrades that accelerate your workflow, bring you a step closer to the full power of Editor V4, and help you deliver beautiful, accessible websites faster than ever. From advanced styling tools and smarter editing to full Website Templates in the cloud, this release enhances both the way you design and the way you scale.";s:7:"created";i:1751974442;s:5:"badge";s:3:"NEW";s:3:"url";s:140:"https://elementor.com/blog/elementor-330-v4-alpha-website-templates/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed";}}', 'off'),
(216, 'jet-license-data', 'a:1:{s:12:"license-list";a:1:{s:32:"9959a556c5c82b6f266d55cb9cce6c99";a:3:{s:13:"licenseStatus";s:6:"active";s:10:"licenseKey";s:32:"9959a556c5c82b6f266d55cb9cce6c99";s:14:"licenseDetails";a:15:{s:7:"license";s:32:"9959a556c5c82b6f266d55cb9cce6c99";s:6:"status";s:6:"active";s:4:"type";s:10:"crocoblock";s:12:"product_name";s:63:"Crocoblock Membership All Inclusive Lifetime Unlimited Websites";s:12:"product_slug";s:63:"crocoblock-membership-all-inclusive-lifetime-unlimited-websites";s:16:"product_category";s:8:"lifetime";s:6:"expire";s:19:"0000-00-00 00:00:00";s:16:"activation_limit";i:0;s:7:"plugins";a:19:{s:29:"jet-elements/jet-elements.php";a:8:{s:4:"name";s:11:"JetElements";s:4:"slug";s:29:"jet-elements/jet-elements.php";s:7:"version";s:7:"2.7.9.1";s:5:"thumb";s:75:"https://account.crocoblock.com/free-download/images/jetlogo/jetelements.svg";s:9:"thumb_alt";s:79:"https://account.crocoblock.com/free-download/images/jetlogo-alt/jetelements.svg";s:4:"docs";s:68:"https://crocoblock.com/knowledge-base/article-category/jet-elements/";s:4:"demo";s:43:"https://crocoblock.com/plugins/jetelements/";s:4:"desc";s:24:"Must-have design widgets";}s:21:"jet-tabs/jet-tabs.php";a:8:{s:4:"name";s:7:"JetTabs";s:4:"slug";s:21:"jet-tabs/jet-tabs.php";s:7:"version";s:6:"2.2.10";s:5:"thumb";s:71:"https://account.crocoblock.com/free-download/images/jetlogo/jettabs.svg";s:9:"thumb_alt";s:75:"https://account.crocoblock.com/free-download/images/jetlogo-alt/jettabs.svg";s:4:"docs";s:64:"https://crocoblock.com/knowledge-base/article-category/jet-tabs/";s:4:"demo";s:39:"https://crocoblock.com/plugins/jettabs/";s:4:"desc";s:31:"A smart way to organize content";}s:27:"jet-reviews/jet-reviews.php";a:8:{s:4:"name";s:10:"JetReviews";s:4:"slug";s:27:"jet-reviews/jet-reviews.php";s:7:"version";s:7:"3.0.0.1";s:5:"thumb";s:74:"https://account.crocoblock.com/free-download/images/jetlogo/jetreviews.svg";s:9:"thumb_alt";s:78:"https://account.crocoblock.com/free-download/images/jetlogo-alt/jetreviews.svg";s:4:"docs";s:66:"https://crocoblock.com/knowledge-base/article-category/jetreviews/";s:4:"demo";s:42:"https://crocoblock.com/plugins/jetreviews/";s:4:"desc";s:32:"Add reviews, comments, and rates";}s:21:"jet-menu/jet-menu.php";a:8:{s:4:"name";s:7:"JetMenu";s:4:"slug";s:21:"jet-menu/jet-menu.php";s:7:"version";s:6:"2.4.14";s:5:"thumb";s:71:"https://account.crocoblock.com/free-download/images/jetlogo/jetmenu.svg";s:9:"thumb_alt";s:75:"https://account.crocoblock.com/free-download/images/jetlogo-alt/jetmenu.svg";s:4:"docs";s:64:"https://crocoblock.com/knowledge-base/article-category/jet-menu/";s:4:"demo";s:39:"https://crocoblock.com/plugins/jetmenu/";s:4:"desc";s:24:"Build a custom mega menu";}s:21:"jet-blog/jet-blog.php";a:8:{s:4:"name";s:7:"JetBlog";s:4:"slug";s:21:"jet-blog/jet-blog.php";s:7:"version";s:7:"2.4.5.1";s:5:"thumb";s:71:"https://account.crocoblock.com/free-download/images/jetlogo/jetblog.svg";s:9:"thumb_alt";s:75:"https://account.crocoblock.com/free-download/images/jetlogo-alt/jetblog.svg";s:4:"docs";s:64:"https://crocoblock.com/knowledge-base/article-category/jet-blog/";s:4:"demo";s:39:"https://crocoblock.com/plugins/jetblog/";s:4:"desc";s:26:"Create engaging blog pages";}s:25:"jet-blocks/jet-blocks.php";a:8:{s:4:"name";s:9:"JetBlocks";s:4:"slug";s:25:"jet-blocks/jet-blocks.php";s:7:"version";s:8:"1.3.19.1";s:5:"thumb";s:73:"https://account.crocoblock.com/free-download/images/jetlogo/jetblocks.svg";s:9:"thumb_alt";s:77:"https://account.crocoblock.com/free-download/images/jetlogo-alt/jetblocks.svg";s:4:"docs";s:65:"https://crocoblock.com/knowledge-base/article-category/jetblocks/";s:4:"demo";s:41:"https://crocoblock.com/plugins/jetblocks/";s:4:"desc";s:30:"Enrich header & footer content";}s:25:"jet-tricks/jet-tricks.php";a:8:{s:4:"name";s:9:"JetTricks";s:4:"slug";s:25:"jet-tricks/jet-tricks.php";s:7:"version";s:5:"1.5.6";s:5:"thumb";s:73:"https://account.crocoblock.com/free-download/images/jetlogo/jettricks.svg";s:9:"thumb_alt";s:77:"https://account.crocoblock.com/free-download/images/jetlogo-alt/jettricks.svg";s:4:"docs";s:65:"https://crocoblock.com/knowledge-base/article-category/jettricks/";s:4:"demo";s:41:"https://crocoblock.com/plugins/jettricks/";s:4:"desc";s:30:"Add interactive visual effects";}s:39:"jet-smart-filters/jet-smart-filters.php";a:8:{s:4:"name";s:15:"JetSmartFilters";s:4:"slug";s:39:"jet-smart-filters/jet-smart-filters.php";s:7:"version";s:5:"3.6.9";s:5:"thumb";s:79:"https://account.crocoblock.com/free-download/images/jetlogo/jetsmartfilters.svg";s:9:"thumb_alt";s:83:"https://account.crocoblock.com/free-download/images/jetlogo-alt/jetsmartfilters.svg";s:4:"docs";s:71:"https://crocoblock.com/knowledge-base/article-category/jetsmartfilters/";s:4:"demo";s:47:"https://crocoblock.com/plugins/jetsmartfilters/";s:4:"desc";s:34:"Advanced filters for any post type";}s:23:"jet-popup/jet-popup.php";a:8:{s:4:"name";s:8:"JetPopup";s:4:"slug";s:23:"jet-popup/jet-popup.php";s:7:"version";s:8:"2.0.17.1";s:5:"thumb";s:72:"https://account.crocoblock.com/free-download/images/jetlogo/jetpopup.svg";s:9:"thumb_alt";s:76:"https://account.crocoblock.com/free-download/images/jetlogo-alt/jetpopup.svg";s:4:"docs";s:65:"https://crocoblock.com/knowledge-base/article-category/jet-popup/";s:4:"demo";s:40:"https://crocoblock.com/plugins/jetpopup/";s:4:"desc";s:30:"Create popups that boost sales";}s:25:"jet-search/jet-search.php";a:8:{s:4:"name";s:9:"JetSearch";s:4:"slug";s:25:"jet-search/jet-search.php";s:7:"version";s:6:"3.5.12";s:5:"thumb";s:73:"https://account.crocoblock.com/free-download/images/jetlogo/jetsearch.svg";s:9:"thumb_alt";s:77:"https://account.crocoblock.com/free-download/images/jetlogo-alt/jetsearch.svg";s:4:"docs";s:66:"https://crocoblock.com/knowledge-base/article-category/jet-search/";s:4:"demo";s:41:"https://crocoblock.com/plugins/jetsearch/";s:4:"desc";s:27:"Try the fastest AJAX search";}s:35:"jet-woo-builder/jet-woo-builder.php";a:8:{s:4:"name";s:13:"JetWooBuilder";s:4:"slug";s:35:"jet-woo-builder/jet-woo-builder.php";s:7:"version";s:5:"2.2.0";s:5:"thumb";s:77:"https://account.crocoblock.com/free-download/images/jetlogo/jetwoobuilder.svg";s:9:"thumb_alt";s:81:"https://account.crocoblock.com/free-download/images/jetlogo-alt/jetwoobuilder.svg";s:4:"docs";s:69:"https://crocoblock.com/knowledge-base/article-category/jetwoobuilder/";s:4:"demo";s:45:"https://crocoblock.com/plugins/jetwoobuilder/";s:4:"desc";s:30:"Create custom e-commerce pages";}s:51:"jet-woo-product-gallery/jet-woo-product-gallery.php";a:8:{s:4:"name";s:17:"JetProductGallery";s:4:"slug";s:51:"jet-woo-product-gallery/jet-woo-product-gallery.php";s:7:"version";s:5:"2.2.1";s:5:"thumb";s:81:"https://account.crocoblock.com/free-download/images/jetlogo/jetproductgallery.svg";s:9:"thumb_alt";s:85:"https://account.crocoblock.com/free-download/images/jetlogo-alt/jetproductgallery.svg";s:4:"docs";s:73:"https://crocoblock.com/knowledge-base/article-category/jetproductgallery/";s:4:"demo";s:49:"https://crocoblock.com/plugins/jetproductgallery/";s:4:"desc";s:38:"Product gallery sliders and carousels ";}s:31:"jet-compare-wishlist/jet-cw.php";a:8:{s:4:"name";s:19:"JetCompare&Wishlist";s:4:"slug";s:31:"jet-compare-wishlist/jet-cw.php";s:7:"version";s:8:"1.5.12.1";s:5:"thumb";s:85:"https://account.crocoblock.com/free-download/images/jetlogo/jetwoocomparewishlist.svg";s:9:"thumb_alt";s:86:"https://account.crocoblock.com/free-download/images/jetlogo-alt/jetcomparewishlist.svg";s:4:"docs";s:74:"https://crocoblock.com/knowledge-base/article-category/jetcomparewishlist/";s:4:"demo";s:50:"https://crocoblock.com/plugins/jetcomparewishlist/";s:4:"desc";s:34:"Compare and wishlist functionality";}s:25:"jet-engine/jet-engine.php";a:8:{s:4:"name";s:9:"JetEngine";s:4:"slug";s:25:"jet-engine/jet-engine.php";s:7:"version";s:5:"3.7.4";s:5:"thumb";s:73:"https://account.crocoblock.com/free-download/images/jetlogo/jetengine.svg";s:9:"thumb_alt";s:77:"https://account.crocoblock.com/free-download/images/jetlogo-alt/jetengine.svg";s:4:"docs";s:66:"https://crocoblock.com/knowledge-base/article-category/jet-engine/";s:4:"demo";s:41:"https://crocoblock.com/plugins/jetengine/";s:4:"desc";s:36:"Top-notch plugin for dynamic content";}s:27:"jet-booking/jet-booking.php";a:8:{s:4:"name";s:10:"JetBooking";s:4:"slug";s:27:"jet-booking/jet-booking.php";s:7:"version";s:5:"3.8.3";s:5:"thumb";s:74:"https://account.crocoblock.com/free-download/images/jetlogo/jetbooking.svg";s:9:"thumb_alt";s:78:"https://account.crocoblock.com/free-download/images/jetlogo-alt/jetbooking.svg";s:4:"docs";s:57:"https://crocoblock.com/knowledge-base/plugins/jetbooking/";s:4:"demo";s:42:"https://crocoblock.com/plugins/jetbooking/";s:4:"desc";s:29:"Complex booking functionality";}s:39:"jet-style-manager/jet-style-manager.php";a:8:{s:4:"name";s:15:"JetStyleManager";s:4:"slug";s:39:"jet-style-manager/jet-style-manager.php";s:7:"version";s:5:"1.3.5";s:5:"thumb";s:79:"https://account.crocoblock.com/free-download/images/jetlogo/jetstylemanager.svg";s:9:"thumb_alt";s:83:"https://account.crocoblock.com/free-download/images/jetlogo-alt/jetstylemanager.svg";s:4:"docs";s:71:"https://crocoblock.com/knowledge-base/article-category/jetstylemanager/";s:4:"demo";s:47:"https://crocoblock.com/plugins/jetstylemanager/";s:4:"desc";s:36:"Manage Elementor page style settings";}s:53:"jet-appointments-booking/jet-appointments-booking.php";a:8:{s:4:"name";s:14:"JetAppointment";s:4:"slug";s:53:"jet-appointments-booking/jet-appointments-booking.php";s:7:"version";s:5:"2.2.2";s:5:"thumb";s:79:"https://account.crocoblock.com/free-download/images/jetlogo/jet-appointment.svg";s:9:"thumb_alt";s:83:"https://account.crocoblock.com/free-download/images/jetlogo-alt/jet-appointment.svg";s:4:"docs";s:70:"https://crocoblock.com/knowledge-base/article-category/jetappointment/";s:4:"demo";s:46:"https://crocoblock.com/plugins/jetappointment/";s:4:"desc";s:31:"Create custom appointment forms";}s:33:"jet-theme-core/jet-theme-core.php";a:8:{s:4:"name";s:12:"JetThemeCore";s:4:"slug";s:33:"jet-theme-core/jet-theme-core.php";s:7:"version";s:7:"2.3.0.3";s:5:"thumb";s:76:"https://account.crocoblock.com/free-download/images/jetlogo/jetthemecore.svg";s:9:"thumb_alt";s:80:"https://account.crocoblock.com/free-download/images/jetlogo-alt/jetthemecore.svg";s:4:"docs";s:67:"https://crocoblock.com/knowledge-base/article-category/theme-parts/";s:4:"demo";s:44:"https://crocoblock.com/plugins/jetthemecore/";s:4:"desc";s:65:"Most powerful plugin created to make building websites super easy";}s:41:"jet-product-tables/jet-product-tables.php";a:8:{s:4:"name";s:16:"JetProductTables";s:4:"slug";s:41:"jet-product-tables/jet-product-tables.php";s:7:"version";s:5:"1.2.2";s:5:"thumb";s:80:"https://account.crocoblock.com/free-download/images/jetlogo/jetproducttables.svg";s:9:"thumb_alt";s:84:"https://account.crocoblock.com/free-download/images/jetlogo-alt/jetproducttables.svg";s:4:"docs";s:63:"https://crocoblock.com/knowledge-base/plugins/jetproducttables/";s:4:"demo";s:48:"https://crocoblock.com/plugins/jetproducttables/";s:4:"desc";s:55:"Choose between different layouts and filtering options.";}}s:5:"sites";a:0:{}s:8:"site_url";s:25:"mod25.aeroclasses.com.br/";s:11:"permissions";a:2:{s:13:"update_plugin";b:1;s:14:"install_plugin";b:1;}s:20:"has_templates_access";b:1;s:27:"has_design_templates_access";b:0;s:13:"is_sublicense";b:1;}}}}', 'auto'),
(225, 'jet_is_modify_tm_license_data', 'true', 'auto'),
(256, 'elementor_pro_version', '3.31.2', 'auto'),
(257, 'elementor_pro_install_history', 'a:2:{s:6:"3.26.1";i:1756478248;s:6:"3.31.2";i:1756488849;}', 'auto'),
(258, 'widget_elementor-library', 'a:1:{s:12:"_multiwidget";i:1;}', 'auto'),
(259, 'elementor_submissions_db_version', '5', 'auto'),
(260, 'elementor_notes_db_version', '5', 'auto'),
(261, 'elementor_fonts_manager_font_types', 'a:0:{}', 'auto'),
(262, 'elementor_fonts_manager_fonts', 'a:0:{}', 'auto'),
(263, 'e_editor_counter', '15', 'auto'),
(264, '_elementor_notifications_data', 'a:2:{s:7:"timeout";i:1756492466;s:5:"value";s:18404:"[{"id":"variables-3.31","title":"Scalable design with Variables","description":"Define once, reuse everywhere. Color & Font Variables help you build consistent, scalable design systems that update globally and are perfect for large sites or teams.","topic":"Editor V4 Alpha","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.31-variables.png","chipTags":["New Feature"],"link":"https:\\/\\/go.elementor.com\\/go-pro-notification-3.31-v4-blog\\/","readMoreText":"Learn More"},{"id":"host-special-offer","title":"Host with Elementor, Get Unified Support for Building & Hosting","description":"Advance to Elementor''s Cloud Hosting powered by Google Cloud and Cloudflare. Use the coupon CLOUDPLUSSPECIAL2025 to get Host Cloud Plus at the price of Host Cloud.","topic":"Special offer: Elementor Host","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/host_coupon.png","chipTags":["Cloud Hosting"],"cta":"Get it Now","ctaLink":"https:\\/\\/go.elementor.com\\/host-whats-new-host-discount\\/"},{"id":"filters-3.31","title":"Visual effects with Filters and Backdrop Filters","description":"Apply multiple Filters like blur, brightness, and contrast. Stack, reorder, and preview in real time without writing a line of code.","topic":"Editor V4 Alpha","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.31-filters.png","chipTags":["New Feature"],"link":"https:\\/\\/go.elementor.com\\/go-pro-notification-3.31-v4-blog\\/","readMoreText":"Learn More"},{"id":"ally-assistant","title":"New! Fix accessibility issues with Ally Assistant","description":"Scan any page for accessibility issues and fix them in one click. From color contrast to missing alt text, Ally Assistant provides guided steps or AI-powered fixes to make your site more inclusive.","topic":"Ally by Elementor","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/ally-assistant.png","chipTags":["New Feature"],"cta":"Scan for free","ctaLink":"http:\\/\\/go.elementor.com\\/acc-assistant-launch-whats-new","conditions":[[{"type":"plugin","operator":"!=","plugin":"pojo-accessibility\\/pojo-accessibility.php"}]]},{"id":"classes-3.31","title":"Smarter Class Manager tools","description":"Quickly locate and manage Global Classes with usage counts, a new locator panel, and full class search. Perfect for scaling and refactoring complex design systems.","topic":"Editor V4 Alpha","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.31-classes.png","chipTags":["New Feature"],"link":"https:\\/\\/go.elementor.com\\/go-pro-notification-3.31-v4-blog\\/","readMoreText":"Learn More"},{"id":"send-notification-august","title":"All Your Assets, One Library","description":"Save time and skip the re-uploads - now you can pull images straight from your WordPress Media Library into Send. Faster, simpler, and built for WordPress.","topic":"Send: Email & SMS built for WooCommerce","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/aug_send.png","chipTags":["Cart abandonment"],"cta":"Upload Your Assets","ctaLink":"https:\\/\\/go.elementor.com\\/ML_WN","conditions":[[{"type":"plugin","operator":"!=","plugin":"send-app\\/send-app.php"}]]},{"id":"attributes-3.31","title":"Add semantic HTML with Attributes","description":"Add custom HTML attributes like aria-*, data-*, and role to any element. Structure your markup for better accessibility, performance, and compliance.","topic":"Elementor Pro 3.31","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.31-attributes.png","chipPlan":"Pro","chipTags":["New Feature"],"link":"https:\\/\\/go.elementor.com\\/go-pro-notification-3.31-v4-blog\\/","readMoreText":"Learn More","conditions":[[{"type":"plugin","plugin":"elementor-pro\\/elementor-pro.php"}]]},{"id":"attributes-3.31","title":"Add semantic HTML with Attributes","description":"Add custom HTML attributes like aria-*, data-*, and role to any element. Structure your markup for better accessibility, performance, and compliance.","topic":"Elementor Pro 3.31","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.31-attributes.png","chipTags":["New Feature"],"cta":"Upgrade now","ctaLink":"https:\\/\\/go.elementor.com\\/go-pro-notification-3.31-attributes\\/"},{"id":"classes-3.30","title":"Better class control","description":"Get popovers with your class name, breakpoint, state and possible conflicts. Plus, the exact class names you define are now reflected in the code, making debugging and working with external tools easier!","topic":"Editor V4 Alpha","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/classes-3.30.png","chipTags":["New Feature"],"link":"https:\\/\\/go.elementor.com\\/go-pro-notification-3.39-v4-blog\\/","readMoreText":"Learn More"},{"id":"cloud-websites-3.30","title":"Full Website Templates in the cloud","description":"Save and apply entire websites, including multiple pages, styles, site settings, media, and layout configurations - directly from the cloud.","topic":"Elementor Pro 3.30","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/cloud-3.30.png","chipPlan":"Pro","chipTags":["New Feature"],"link":"https:\\/\\/go.elementor.com\\/go-pro-notification-3.39-v4-blog\\/","readMoreText":"Learn More","conditions":[[{"type":"plugin","plugin":"elementor-pro\\/elementor-pro.php"}]]},{"id":"cloud-websites-3.30","title":"Full Website Templates in the cloud","description":"Save and apply entire websites, including multiple pages, styles, site settings, media, and layout configurations - directly from the cloud.","topic":"Elementor Pro 3.30","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/cloud-3.30.png","chipTags":["New Feature"],"cta":"Upgrade now","ctaLink":"https:\\/\\/go.elementor.com\\/go-pro-notification-3.30-cloud-websites\\/"},{"id":"tools-3.30","title":"Essential Editor tools","description":"V4 now includes a long list of essential V3 capabilities, re-engineered to fit the new framework - IDs, custom unit, anchor offset, display none, object fit, clear icons and more!","topic":"Editor V4 Alpha","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/tools-3.30.png","chipTags":["New Feature"],"link":"https:\\/\\/go.elementor.com\\/go-pro-notification-3.39-v4-blog\\/","readMoreText":"Learn More"},{"id":"youtube-3.30","title":"YouTube Element","description":"The new YouTube Element is purpose-built to support V4 capabilities with faster rendering, better performance, and familiar controls like autoplay, loop, mute, and aspect ratio.","topic":"Editor V4 Alpha","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/youtube-3.30.png","chipTags":["New Feature"],"link":"https:\\/\\/go.elementor.com\\/go-pro-notification-3.39-v4-blog\\/","readMoreText":"Learn More"},{"id":"host-google-cloud","title":"Deliver fast, secure websites at scale - free migration included!","description":"Host your site on Elementor\\u2019s infrastructure - built for speed, security, and scale. Powered by Google Cloud, with free migration and 24\\/7 expert support.","topic":"Host","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/host-google-cloud.png","chipTags":["Cloud Hosting"],"link":"https:\\/\\/go.elementor.com\\/elementor-host-google-cloud","readMoreText":"Read More"},{"id":"cloud-templates-3.29","title":"Your Templates, available everywhere","description":"Store sections, containers, and full pages in the cloud\\u2014making them accessible across all your Pro-connected sites. Style once, reuse anywhere!","topic":"Elementor Pro 3.29","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/cloud-templates.png","chipPlan":"Pro","chipTags":["New Feature"],"link":"https:\\/\\/go.elementor.com\\/go-pro-notification-3.29-cloud-templates-blog\\/","readMoreText":"Learn More","conditions":[[{"type":"plugin","plugin":"elementor-pro\\/elementor-pro.php"}]]},{"id":"cloud-templates-3.29","title":"Your Templates, available everywhere","description":"Store sections, containers, and full pages in the cloud\\u2014making them accessible across all your Pro-connected sites. Style once, reuse anywhere!","topic":"Elementor Pro 3.29","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/cloud-templates.png","chipTags":["New Feature"],"cta":"Upgrade","ctaLink":"https:\\/\\/go.elementor.com\\/go-pro-notification-3.29-cloud-templates\\/"},{"id":"classes-3.29","title":"Classes: Style Once, Apply Everywhere","description":"Create Classes to define styling patterns once and apply them across your entire site with a single click. Add States for stunning hover and focus effects\\u2014no coding needed!","topic":"Editor V4 Alpha","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/v4-classes.png","chipTags":["New Feature"],"link":"https:\\/\\/go.elementor.com\\/go-pro-notification-3.29-editor-v4\\/","readMoreText":"Learn More"},{"id":"style-tab-3.29","title":"Consistent Styling Everywhere","description":"Every V4 element shares the same styling capabilities in the same logical order and location. Plus, we''ve streamlined from 3 tabs to just 2\\u2014content in one, styling in the other!","topic":"Editor V4 Alpha","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/v4-style-tab.png","chipTags":["New Feature"],"link":"https:\\/\\/go.elementor.com\\/go-pro-notification-3.29-editor-v4\\/","readMoreText":"Learn More"},{"id":"responsive-3.29","title":"Fully Responsive Design","description":"With Editor V4, every single style property can be customized per device. Complete creative control for desktop, tablet, and mobile!","topic":"Editor V4 Alpha","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/v4-responsive.png","chipTags":["New Feature"],"link":"https:\\/\\/go.elementor.com\\/go-pro-notification-3.29-editor-v4\\/","readMoreText":"Learn More"},{"id":"performance-3.29","title":"Blazing fast performance","description":"In Editor V4, each element uses one clean div instead of multiple nested divs like in the current version\\u2014your sites will load lightning-fast with cleaner code!","topic":"Editor V4 Alpha","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/v4-performance.png","chipTags":["New Feature"],"link":"https:\\/\\/go.elementor.com\\/go-pro-notification-3.29-editor-v4\\/","readMoreText":"Learn More"},{"id":"migration-host","title":"Move to Better Cloud Hosting, Painlessly","description":"Migrate your Elementor website for free to a home that\\u2019s perfect for it, in minutes, with a combination of\\u2028advanced automation and free expert support","topic":"Host","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/migration-host.png","chipTags":["Cloud Hosting"],"link":"https:\\/\\/go.elementor.com\\/hosting-free-migration","readMoreText":"Learn More","cta":"Migrate for free","ctaLink":"https:\\/\\/go.elementor.com\\/hosting-free-migration"},{"id":"ai-isolate-object","title":"Sharper product images, instantly","description":"Remove distractions and reframe your shots with the new Isolate Object tool powered by Elementor AI \\u2014 perfect for a polished, uniform Woo storefront.","topic":"Elementor AI","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/isolate-object-ai.png","chipTags":["New Feature"],"link":"https:\\/\\/go.elementor.com\\/Isolateobjectblog","readMoreText":"Learn More","conditions":[[{"type":"introduction_meta","meta":"ai_get_started"}]],"cta":"Start Free Trial","ctaLink":"https:\\/\\/go.elementor.com\\/Isolateobjectblog"},{"id":"ai-isolate-object","title":"Sharper product images, instantly","description":"Remove distractions and reframe your shots with the new Isolate Object tool powered by Elementor AI \\u2014 perfect for a polished, uniform Woo storefront.","topic":"Elementor AI","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/isolate-object-ai.png","chipTags":["New Feature"],"cta":"Start Free Trial","link":"https:\\/\\/go.elementor.com\\/Isolateobjectblog","readMoreText":"Learn More","ctaLink":"https:\\/\\/go.elementor.com\\/Isolateobjectblog"},{"id":"hello-biz-contact","title":"New Contact Widget, Visual Layout Presets & more","description":"Hello Biz just got an update! Explore the new Contact Widget, Visual Layout Presets, Form Submissions integration, and fresh new kits.","topic":"Hello Biz","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/hello-biz-contact.png","chipTags":["New Features"],"link":"https:\\/\\/go.elementor.com\\/hello-biz-updates","readMoreText":"Learn More"},{"id":"ai-site-planner-colors","title":"Style Your Wireframe, Speed Up Your Store Build","description":"Site Planner now lets you style your wireframe with fonts and colors - instantly visualizing your site\\u2019s look and feel. Plus, it predesigns pages for WooCommerce like Cart and Checkout, so you can dive straight into customizations","topic":"Elementor AI","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/site-planner-colors.png","chipTags":["New Feature"],"link":"http:\\/\\/www.elementor.com\\/ai-site-planner","readMoreText":"Learn More"},{"id":"ally-notification","title":"Just released! Ally - a new plugin for web accessibility & usability","description":"Ally simplifies the complexities of making your website more accessible. With new regulations here and coming, making your website more usable and inclusive is no longer just an option, but a must.","topic":"Ally by Elementor","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/ally-notification.png","chipTags":["New plugin"],"cta":"Get it free","ctaLink":"https:\\/\\/wordpress.org\\/plugins\\/pojo-accessibility\\/","conditions":[[{"type":"plugin","operator":"!=","plugin":"pojo-accessibility\\/pojo-accessibility.php"}]]},{"id":"ai-site-planner","title":"Instant Sitemaps & Wireframes","description":"Get your website plan in minutes with AI Site Planner. Describe your desired site and AI will generate a sitemap, brief and wireframe populated with initial content, ready for you to customize.","topic":"Elementor AI","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/aI-site-planner.png","chipTags":["New Feature"],"link":"https:\\/\\/go.elementor.com\\/ai-notification-site-planner\\/","readMoreText":"Learn More"},{"id":"grid-span-3.27","title":"Design Grid layouts that fit your exact vision","description":"Advanced column and row span controls give you the power to design Grid Container layouts that fit your exact vision.","topic":"Elementor 3.27","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/grid-span-3.27.png","chipTags":["New Feature"],"link":"https:\\/\\/go.elementor.com\\/go-pro-notification-3.27-grid-span-blog\\/","readMoreText":"Learn More"},{"id":"local-fonts-3.27","title":"Load Google Fonts safer and faster","description":"Once enabled, Google Fonts are served directly from your server, streamlining the loading process and enhancing security.","topic":"Elementor 3.27","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/local-google-fonts-3.27.png","chipTags":["New Feature"],"link":"https:\\/\\/go.elementor.com\\/go-pro-notification-3.27-local-fonts-blog\\/","readMoreText":"Learn More"},{"id":"video-shorts-3.27","title":"Showcase short-form, vertical videos","description":"The Video widget now supports YouTube Shorts in a vertical 9:16 ratio, the go-to format for engaging audiences.","topic":"Elementor 3.27","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/video-shorts-3.27.png","chipTags":["New Feature"],"link":"https:\\/\\/go.elementor.com\\/go-pro-notification-3.27-video-shorts-blog\\/","readMoreText":"Learn More"},{"id":"dynamic-off-canvas-3.26","title":"Dynamic Off-Canvas for Loop Grids","description":"Create richer, more interactive designs by linking Dynamic Content to the Off Canvas widget, delivering seamless user experiences.","topic":"Elementor Pro 3.26","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/off-canvas-loop-grids.png","chipPlan":"Pro","chipTags":["New Feature"],"link":"https:\\/\\/go.elementor.com\\/go-pro-notification-3.26-blog\\/","readMoreText":"Learn More","conditions":[[{"type":"plugin","plugin":"elementor-pro\\/elementor-pro.php"}]]},{"id":"dynamic-off-canvas-3.26","title":"Dynamic Off-Canvas for Loop Grids","description":"Create richer, more interactive designs by linking Dynamic Content to the Off Canvas widget, delivering seamless user experiences.","topic":"Elementor Pro 3.26","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/off-canvas-loop-grids.png","chipTags":["New Feature"],"cta":"Upgrade","ctaLink":"https:\\/\\/go.elementor.com\\/go-pro-notification-3.26-loop-off-canvas\\/"},{"id":"image-optimizer-3.19","title":"Effortlessly optimize images for a stunning, high-speed website with the Image Optimizer plugin.","description":"Image Optimizer perfectly balances between image quality and performance to boost your website.  Resize, compress, and convert images to WebP, for faster loading times and and better user experience.","topic":"Image Optimizer Plugin by Elementor","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/image-optimizer-3.19.png","chipTags":["New plugin"],"cta":"Get the Image Optimizer","ctaLink":"https:\\/\\/go.elementor.com\\/io-notification-wp-dash-learn-more\\/","conditions":[[{"type":"plugin","operator":"!=","plugin":"image-optimization\\/image-optimization.php"}]]},{"id":"5-star-rating-prompt","title":"Love the New Features? Let Us Know with 5 Stars!","description":"Help spread the word by telling the world what you love about Elementor.","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/5-star-rating-prompt.png","cta":"Leave a Review","ctaLink":"https:\\/\\/go.elementor.com\\/wp-dash-notification-five-stars\\/"},{"id":"site-mailer-introducing","title":"Introducing Site Mailer","description":"Keep your WordPress emails out of the spam folder with improved deliverability and an easy setup\\u2014no need for an SMTP plugin or complicated configurations.","topic":"Site Mailer Plugin by Elementor","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/Site-mailer.png","chipTags":["New plugin"],"cta":"Start Free Trial","ctaLink":"https:\\/\\/go.elementor.com\\/sm-wp-dash-whatsnew\\/","conditions":[[{"type":"plugin","operator":"!=","plugin":"site-mailer\\/site-mailer.php"}]]}]";}', 'off'),
(267, 'elementor_custom_icon_sets_config', 'a:0:{}', 'auto'),
(268, 'recovery_mode_email_last_sent', '1756478462', 'auto'),
(269, 'elementor_log', 'a:41:{s:32:"9b731e7febc24661b56f286227de7d0d";O:31:"Elementor\\Core\\Logger\\Items\\PHP":9:{s:7:"\0*\0date";s:19:"2025-08-29 14:41:52";s:7:"\0*\0type";s:5:"error";s:10:"\0*\0message";s:2910:"Uncaught TypeError: Elementor\\Core\\Editor\\Loader\\Common\\Editor_Common_Scripts_Settings::ensure_numeric_keys(): Argument #1 ($array) must be of type array, null given, called in /home/aeroclas/mod25.aeroclasses.com.br/wp-content/plugins/elementor/core/editor/loader/common/editor-common-scripts-settings.php on line 165 and defined in /home/aeroclas/mod25.aeroclasses.com.br/wp-content/plugins/elementor/core/editor/loader/common/editor-common-scripts-settings.php:180\nStack trace:\n#0 /home/aeroclas/mod25.aeroclasses.com.br/wp-content/plugins/elementor/core/editor/loader/common/editor-common-scripts-settings.php(165): Elementor\\Core\\Editor\\Loader\\Common\\Editor_Common_Scripts_Settings::ensure_numeric_keys()\n#1 /home/aeroclas/mod25.aeroclasses.com.br/wp-content/plugins/elementor/core/editor/loader/v2/editor-v2-loader.php(167): Elementor\\Core\\Editor\\Loader\\Common\\Editor_Common_Scripts_Settings::get()\n#2 /home/aeroclas/mod25.aeroclasses.com.br/wp-content/plugins/elementor/core/editor/editor.php(355): Elementor\\Core\\Editor\\Loader\\V2\\Editor_V2_Loader-&gt;enqueue_scripts()\n#3 /home/aeroclas/mod25.aeroclasses.com.br/wp-includes/class-wp-hook.php(324): Elementor\\Core\\Editor\\Editor-&gt;enqueue_scripts()\n#4 /home/aeroclas/mod25.aeroclasses.com.br/wp-includes/class-wp-hook.php(348): WP_Hook-&gt;apply_filters()\n#5 /home/aeroclas/mod25.aeroclasses.com.br/wp-includes/plugin.php(517): WP_Hook-&gt;do_action()\n#6 /home/aeroclas/mod25.aeroclasses.com.br/wp-includes/script-loader.php(2299): do_action()\n#7 /home/aeroclas/mod25.aeroclasses.com.br/wp-includes/class-wp-hook.php(324): wp_enqueue_scripts()\n#8 /home/aeroclas/mod25.aeroclasses.com.br/wp-includes/class-wp-hook.php(348): WP_Hook-&gt;apply_filters()\n#9 /home/aeroclas/mod25.aeroclasses.com.br/wp-includes/plugin.php(517): WP_Hook-&gt;do_action()\n#10 /home/aeroclas/mod25.aeroclasses.com.br/wp-includes/general-template.php(3192): do_action()\n#11 /home/aeroclas/mod25.aeroclasses.com.br/wp-content/plugins/elementor/includes/editor-templates/editor-wrapper.php(31): wp_head()\n#12 /home/aeroclas/mod25.aeroclasses.com.br/wp-content/plugins/elementor/core/editor/loader/v2/editor-v2-loader.php(217): include(&#039;/home/aeroclas/...&#039;)\n#13 /home/aeroclas/mod25.aeroclasses.com.br/wp-content/plugins/elementor/core/editor/editor.php(160): Elementor\\Core\\Editor\\Loader\\V2\\Editor_V2_Loader-&gt;print_root_template()\n#14 /home/aeroclas/mod25.aeroclasses.com.br/wp-includes/class-wp-hook.php(324): Elementor\\Core\\Editor\\Editor-&gt;init()\n#15 /home/aeroclas/mod25.aeroclasses.com.br/wp-includes/class-wp-hook.php(348): WP_Hook-&gt;apply_filters()\n#16 /home/aeroclas/mod25.aeroclasses.com.br/wp-includes/plugin.php(517): WP_Hook-&gt;do_action()\n#17 /home/aeroclas/mod25.aeroclasses.com.br/wp-admin/admin.php(420): do_action()\n#18 /home/aeroclas/mod25.aeroclasses.com.br/wp-admin/post.php(12): require_once(&#039;/home/aeroclas/...&#039;)\n#19 {main}\n  thrown";s:7:"\0*\0meta";a:1:{s:5:"trace";a:1:{i:0;a:3:{s:8:"function";s:8:"shutdown";s:5:"class";s:29:"Elementor\\Core\\Logger\\Manager";s:4:"type";s:2:"->";}}}s:8:"\0*\0times";i:6;s:14:"\0*\0times_dates";a:6:{i:0;s:19:"2025-08-29 14:41:52";i:1;s:19:"2025-08-29 14:43:20";i:2;s:19:"2025-08-29 14:43:55";i:3;s:19:"2025-08-29 14:44:13";i:4;s:19:"2025-08-29 14:46:47";i:5;s:19:"2025-08-29 14:47:15";}s:7:"\0*\0args";a:5:{s:4:"type";s:5:"error";s:7:"message";s:2860:"Uncaught TypeError: Elementor\\Core\\Editor\\Loader\\Common\\Editor_Common_Scripts_Settings::ensure_numeric_keys(): Argument #1 ($array) must be of type array, null given, called in /home/aeroclas/mod25.aeroclasses.com.br/wp-content/plugins/elementor/core/editor/loader/common/editor-common-scripts-settings.php on line 165 and defined in /home/aeroclas/mod25.aeroclasses.com.br/wp-content/plugins/elementor/core/editor/loader/common/editor-common-scripts-settings.php:180\nStack trace:\n#0 /home/aeroclas/mod25.aeroclasses.com.br/wp-content/plugins/elementor/core/editor/loader/common/editor-common-scripts-settings.php(165): Elementor\\Core\\Editor\\Loader\\Common\\Editor_Common_Scripts_Settings::ensure_numeric_keys()\n#1 /home/aeroclas/mod25.aeroclasses.com.br/wp-content/plugins/elementor/core/editor/loader/v2/editor-v2-loader.php(167): Elementor\\Core\\Editor\\Loader\\Common\\Editor_Common_Scripts_Settings::get()\n#2 /home/aeroclas/mod25.aeroclasses.com.br/wp-content/plugins/elementor/core/editor/editor.php(355): Elementor\\Core\\Editor\\Loader\\V2\\Editor_V2_Loader->enqueue_scripts()\n#3 /home/aeroclas/mod25.aeroclasses.com.br/wp-includes/class-wp-hook.php(324): Elementor\\Core\\Editor\\Editor->enqueue_scripts()\n#4 /home/aeroclas/mod25.aeroclasses.com.br/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters()\n#5 /home/aeroclas/mod25.aeroclasses.com.br/wp-includes/plugin.php(517): WP_Hook->do_action()\n#6 /home/aeroclas/mod25.aeroclasses.com.br/wp-includes/script-loader.php(2299): do_action()\n#7 /home/aeroclas/mod25.aeroclasses.com.br/wp-includes/class-wp-hook.php(324): wp_enqueue_scripts()\n#8 /home/aeroclas/mod25.aeroclasses.com.br/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters()\n#9 /home/aeroclas/mod25.aeroclasses.com.br/wp-includes/plugin.php(517): WP_Hook->do_action()\n#10 /home/aeroclas/mod25.aeroclasses.com.br/wp-includes/general-template.php(3192): do_action()\n#11 /home/aeroclas/mod25.aeroclasses.com.br/wp-content/plugins/elementor/includes/editor-templates/editor-wrapper.php(31): wp_head()\n#12 /home/aeroclas/mod25.aeroclasses.com.br/wp-content/plugins/elementor/core/editor/loader/v2/editor-v2-loader.php(217): include(''/home/aeroclas/...'')\n#13 /home/aeroclas/mod25.aeroclasses.com.br/wp-content/plugins/elementor/core/editor/editor.php(160): Elementor\\Core\\Editor\\Loader\\V2\\Editor_V2_Loader->print_root_template()\n#14 /home/aeroclas/mod25.aeroclasses.com.br/wp-includes/class-wp-hook.php(324): Elementor\\Core\\Editor\\Editor->init()\n#15 /home/aeroclas/mod25.aeroclasses.com.br/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters()\n#16 /home/aeroclas/mod25.aeroclasses.com.br/wp-includes/plugin.php(517): WP_Hook->do_action()\n#17 /home/aeroclas/mod25.aeroclasses.com.br/wp-admin/admin.php(420): do_action()\n#18 /home/aeroclas/mod25.aeroclasses.com.br/wp-admin/post.php(12): require_once(''/home/aeroclas/...'')\n#19 {main}\n  thrown";s:4:"file";s:129:"/home/aeroclas/mod25.aeroclasses.com.br/wp-content/plugins/elementor/core/editor/loader/common/editor-common-scripts-settings.php";s:4:"line";i:180;s:5:"trace";b:1;}s:7:"\0*\0file";s:129:"/home/aeroclas/mod25.aeroclasses.com.br/wp-content/plugins/elementor/core/editor/loader/common/editor-common-scripts-settings.php";s:7:"\0*\0line";i:180;}s:32:"0daf534454652636876c55c1f2bd28d2";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2025-08-29 17:34:09";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:44:"elementor-pro::elementor_pro_updater Started";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2025-08-29 17:34:09";}s:7:"\0*\0args";a:2:{s:7:"message";s:44:"elementor-pro::elementor_pro_updater Started";s:4:"type";s:4:"info";}}s:32:"222c18217cf1bf8f50923d537ceac12a";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2025-08-29 17:34:09";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:48:"Elementor Pro/Upgrades - _on_each_version Start ";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2025-08-29 17:34:09";}s:7:"\0*\0args";a:2:{s:7:"message";s:48:"Elementor Pro/Upgrades - _on_each_version Start ";s:4:"type";s:4:"info";}}s:32:"b4fcc335dcf9ba923ce1072acf366911";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2025-08-29 17:34:09";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:50:"Elementor Pro/Upgrades - _on_each_version Finished";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2025-08-29 17:34:09";}s:7:"\0*\0args";a:2:{s:7:"message";s:50:"Elementor Pro/Upgrades - _on_each_version Finished";s:4:"type";s:4:"info";}}s:32:"fb29e0380c80c3dfb767e16e0a904ac2";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2025-08-29 17:34:09";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:70:"Elementor Pro/Upgrades - _v_3_30_0_post_navigation_inline_icons Start ";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2025-08-29 17:34:09";}s:7:"\0*\0args";a:2:{s:7:"message";s:70:"Elementor Pro/Upgrades - _v_3_30_0_post_navigation_inline_icons Start ";s:4:"type";s:4:"info";}}s:32:"baf161e5c4d302a4092018c7314df806";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2025-08-29 17:34:09";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:72:"Elementor Pro/Upgrades - _v_3_30_0_post_navigation_inline_icons Finished";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2025-08-29 17:34:09";}s:7:"\0*\0args";a:2:{s:7:"message";s:72:"Elementor Pro/Upgrades - _v_3_30_0_post_navigation_inline_icons Finished";s:4:"type";s:4:"info";}}s:32:"679621f2436b4fa88b393ed5bc3ee00b";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2025-08-29 17:34:09";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:50:"Elementor data updater process has been completed.";s:7:"\0*\0meta";a:3:{s:6:"plugin";s:13:"Elementor Pro";s:4:"from";s:6:"3.26.1";s:2:"to";s:6:"3.31.2";}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2025-08-29 17:34:09";}s:7:"\0*\0args";a:3:{s:4:"meta";a:3:{s:6:"plugin";s:13:"Elementor Pro";s:4:"from";s:6:"3.26.1";s:2:"to";s:6:"3.31.2";}s:7:"message";s:50:"Elementor data updater process has been completed.";s:4:"type";s:4:"info";}}s:32:"b9a4032551dd7a0b3125bf604402433a";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2025-08-29 17:34:09";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:47:"Elementor data updater process has been queued.";s:7:"\0*\0meta";a:3:{s:6:"plugin";s:13:"Elementor Pro";s:4:"from";s:6:"3.26.1";s:2:"to";s:6:"3.31.2";}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2025-08-29 17:34:09";}s:7:"\0*\0args";a:3:{s:4:"meta";a:3:{s:6:"plugin";s:13:"Elementor Pro";s:4:"from";s:6:"3.26.1";s:2:"to";s:6:"3.31.2";}s:7:"message";s:47:"Elementor data updater process has been queued.";s:4:"type";s:4:"info";}}s:32:"62a008db21ceb2eae4447678b545942b";O:31:"Elementor\\Core\\Logger\\Items\\PHP":9:{s:7:"\0*\0date";s:19:"2025-08-29 17:34:27";s:7:"\0*\0type";s:6:"notice";s:10:"\0*\0message";s:81:"hexdec(): Passing null to parameter #1 ($hex_string) of type string is deprecated";s:7:"\0*\0meta";a:1:{s:5:"trace";a:1:{i:0;a:3:{s:8:"function";s:8:"shutdown";s:5:"class";s:29:"Elementor\\Core\\Logger\\Manager";s:4:"type";s:2:"->";}}}s:8:"\0*\0times";i:3;s:14:"\0*\0times_dates";a:3:{i:0;s:19:"2025-08-29 17:34:27";i:1;s:19:"2025-08-29 17:55:02";i:2;s:19:"2025-08-29 17:57:24";}s:7:"\0*\0args";a:5:{s:4:"type";s:6:"notice";s:7:"message";s:81:"hexdec(): Passing null to parameter #1 ($hex_string) of type string is deprecated";s:4:"file";s:101:"/home/aeroclas/mod25.aeroclasses.com.br/wp-content/plugins/elementor/includes/base/controls-stack.php";s:4:"line";i:230;s:5:"trace";b:1;}s:7:"\0*\0file";s:101:"/home/aeroclas/mod25.aeroclasses.com.br/wp-content/plugins/elementor/includes/base/controls-stack.php";s:7:"\0*\0line";i:230;}s:32:"f99eb5ed417492ef28b6b3000203a316";O:30:"Elementor\\Core\\Logger\\Items\\JS":10:{s:7:"\0*\0date";s:19:"2025-08-29 17:39:47";s:7:"\0*\0type";s:5:"error";s:10:"\0*\0message";s:61:"Cannot read properties of undefined (reading &#039;get&#039;)";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2025-08-29 17:39:47";}s:7:"\0*\0args";a:6:{s:4:"type";s:5:"error";s:9:"timestamp";s:10:"1756489187";s:7:"message";s:51:"Cannot read properties of undefined (reading ''get'')";s:3:"url";s:96:"https://mod25.aeroclasses.com.br/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.31.3";s:4:"line";s:1:"3";s:6:"column";s:5:"22587";}s:7:"\0*\0file";s:96:"https://mod25.aeroclasses.com.br/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.31.3";s:7:"\0*\0line";s:1:"3";s:9:"\0*\0column";s:5:"22587";}s:32:"2f8b22503014336f8315fad251903af4";O:30:"Elementor\\Core\\Logger\\Items\\JS":10:{s:7:"\0*\0date";s:19:"2025-08-29 17:57:26";s:7:"\0*\0type";s:5:"error";s:10:"\0*\0message";s:32:"elementorFrontend is not defined";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2025-08-29 17:57:26";}s:7:"\0*\0args";a:6:{s:4:"type";s:5:"error";s:9:"timestamp";s:10:"1756490246";s:7:"message";s:32:"elementorFrontend is not defined";s:3:"url";s:96:"https://mod25.aeroclasses.com.br/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.31.3";s:4:"line";s:1:"3";s:6:"column";s:6:"499123";}s:7:"\0*\0file";s:96:"https://mod25.aeroclasses.com.br/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.31.3";s:7:"\0*\0line";s:1:"3";s:9:"\0*\0column";s:6:"499123";}s:32:"48277f0d90a84cb1baef4a895b890b4e";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2025-09-08 18:36:17";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:47:"Elementor data updater process has been queued.";s:7:"\0*\0meta";a:3:{s:6:"plugin";s:9:"Elementor";s:4:"from";s:6:"3.31.3";s:2:"to";s:6:"3.31.4";}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2025-09-08 18:36:17";}s:7:"\0*\0args";a:3:{s:4:"meta";a:3:{s:6:"plugin";s:9:"Elementor";s:4:"from";s:6:"3.31.3";s:2:"to";s:6:"3.31.4";}s:7:"message";s:47:"Elementor data updater process has been queued.";s:4:"type";s:4:"info";}}s:32:"2e88f46193d2590b463ca73596b6efa3";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2025-09-08 18:36:18";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:36:"elementor::elementor_updater Started";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2025-09-08 18:36:18";}s:7:"\0*\0args";a:2:{s:7:"message";s:36:"elementor::elementor_updater Started";s:4:"type";s:4:"info";}}s:32:"e95e45bdb7c6844f647eaf37307962be";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2025-09-08 18:36:18";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:44:"Elementor/Upgrades - _on_each_version Start ";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2025-09-08 18:36:18";}s:7:"\0*\0args";a:2:{s:7:"message";s:44:"Elementor/Upgrades - _on_each_version Start ";s:4:"type";s:4:"info";}}s:32:"b0658e63b238e43710f740729312ba0a";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2025-09-08 18:36:18";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:46:"Elementor/Upgrades - _on_each_version Finished";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2025-09-08 18:36:18";}s:7:"\0*\0args";a:2:{s:7:"message";s:46:"Elementor/Upgrades - _on_each_version Finished";s:4:"type";s:4:"info";}}s:32:"95439b67dbdadecc5995ce2da3008b31";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2025-09-08 18:36:18";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:50:"Elementor data updater process has been completed.";s:7:"\0*\0meta";a:3:{s:6:"plugin";s:9:"Elementor";s:4:"from";s:6:"3.31.3";s:2:"to";s:6:"3.31.4";}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2025-09-08 18:36:18";}s:7:"\0*\0args";a:3:{s:4:"meta";a:3:{s:6:"plugin";s:9:"Elementor";s:4:"from";s:6:"3.31.3";s:2:"to";s:6:"3.31.4";}s:7:"message";s:50:"Elementor data updater process has been completed.";s:4:"type";s:4:"info";}}s:32:"da8872af99bf7401b0cc6a2220dddfb9";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2025-09-09 18:36:40";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:47:"Elementor data updater process has been queued.";s:7:"\0*\0meta";a:3:{s:6:"plugin";s:9:"Elementor";s:4:"from";s:6:"3.31.4";s:2:"to";s:6:"3.31.5";}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2025-09-09 18:36:40";}s:7:"\0*\0args";a:3:{s:4:"meta";a:3:{s:6:"plugin";s:9:"Elementor";s:4:"from";s:6:"3.31.4";s:2:"to";s:6:"3.31.5";}s:7:"message";s:47:"Elementor data updater process has been queued.";s:4:"type";s:4:"info";}}s:32:"ad6a54d1b1c86c93aae117a7c4e540a3";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2025-09-09 18:38:53";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:36:"elementor::elementor_updater Started";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2025-09-09 18:38:53";}s:7:"\0*\0args";a:2:{s:7:"message";s:36:"elementor::elementor_updater Started";s:4:"type";s:4:"info";}}s:32:"af9f6088ffb5ebf3f189e6c5bd9d67a3";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2025-09-09 18:38:53";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:44:"Elementor/Upgrades - _on_each_version Start ";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2025-09-09 18:38:53";}s:7:"\0*\0args";a:2:{s:7:"message";s:44:"Elementor/Upgrades - _on_each_version Start ";s:4:"type";s:4:"info";}}s:32:"608e273584cb44693a8803a60315ad8c";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2025-09-09 18:38:53";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:46:"Elementor/Upgrades - _on_each_version Finished";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2025-09-09 18:38:53";}s:7:"\0*\0args";a:2:{s:7:"message";s:46:"Elementor/Upgrades - _on_each_version Finished";s:4:"type";s:4:"info";}}s:32:"0f735fea48c0fe980c93baa47e49f615";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2025-09-09 18:38:53";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:50:"Elementor data updater process has been completed.";s:7:"\0*\0meta";a:3:{s:6:"plugin";s:9:"Elementor";s:4:"from";s:6:"3.31.4";s:2:"to";s:6:"3.31.5";}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2025-09-09 18:38:53";}s:7:"\0*\0args";a:3:{s:4:"meta";a:3:{s:6:"plugin";s:9:"Elementor";s:4:"from";s:6:"3.31.4";s:2:"to";s:6:"3.31.5";}s:7:"message";s:50:"Elementor data updater process has been completed.";s:4:"type";s:4:"info";}}s:32:"f4b18ebec673f555f3727ce577f10ef7";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2025-09-15 18:38:35";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:47:"Elementor data updater process has been queued.";s:7:"\0*\0meta";a:3:{s:6:"plugin";s:9:"Elementor";s:4:"from";s:6:"3.31.5";s:2:"to";s:6:"3.32.0";}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2025-09-15 18:38:35";}s:7:"\0*\0args";a:3:{s:4:"meta";a:3:{s:6:"plugin";s:9:"Elementor";s:4:"from";s:6:"3.31.5";s:2:"to";s:6:"3.32.0";}s:7:"message";s:47:"Elementor data updater process has been queued.";s:4:"type";s:4:"info";}}s:32:"92d1fd461328f927e95186e032456df6";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2025-09-15 18:38:38";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:36:"elementor::elementor_updater Started";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2025-09-15 18:38:38";}s:7:"\0*\0args";a:2:{s:7:"message";s:36:"elementor::elementor_updater Started";s:4:"type";s:4:"info";}}s:32:"8c5b1d610f20eb2198f8ef76981b266d";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2025-09-15 18:38:38";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:44:"Elementor/Upgrades - _on_each_version Start ";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2025-09-15 18:38:38";}s:7:"\0*\0args";a:2:{s:7:"message";s:44:"Elementor/Upgrades - _on_each_version Start ";s:4:"type";s:4:"info";}}s:32:"bdaac86a946149141f1e4f3a3d6be7c4";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2025-09-15 18:38:38";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:46:"Elementor/Upgrades - _on_each_version Finished";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2025-09-15 18:38:38";}s:7:"\0*\0args";a:2:{s:7:"message";s:46:"Elementor/Upgrades - _on_each_version Finished";s:4:"type";s:4:"info";}}s:32:"8777f248f3ea6c646a4cd2bae20195c5";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2025-09-15 18:38:38";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:50:"Elementor data updater process has been completed.";s:7:"\0*\0meta";a:3:{s:6:"plugin";s:9:"Elementor";s:4:"from";s:6:"3.31.5";s:2:"to";s:6:"3.32.0";}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2025-09-15 18:38:38";}s:7:"\0*\0args";a:3:{s:4:"meta";a:3:{s:6:"plugin";s:9:"Elementor";s:4:"from";s:6:"3.31.5";s:2:"to";s:6:"3.32.0";}s:7:"message";s:50:"Elementor data updater process has been completed.";s:4:"type";s:4:"info";}}s:32:"97dafdb5bf4ea00a438f4f668511c6a0";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2025-09-19 18:36:16";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:47:"Elementor data updater process has been queued.";s:7:"\0*\0meta";a:3:{s:6:"plugin";s:9:"Elementor";s:4:"from";s:6:"3.32.0";s:2:"to";s:6:"3.32.2";}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2025-09-19 18:36:16";}s:7:"\0*\0args";a:3:{s:4:"meta";a:3:{s:6:"plugin";s:9:"Elementor";s:4:"from";s:6:"3.32.0";s:2:"to";s:6:"3.32.2";}s:7:"message";s:47:"Elementor data updater process has been queued.";s:4:"type";s:4:"info";}}s:32:"5639ba1fd240f1bdb38913c7612d1031";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2025-09-20 01:04:05";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:36:"elementor::elementor_updater Started";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2025-09-20 01:04:05";}s:7:"\0*\0args";a:2:{s:7:"message";s:36:"elementor::elementor_updater Started";s:4:"type";s:4:"info";}}s:32:"938e1397b95ff4cf1c598959b3ebf806";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2025-09-20 01:04:05";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:44:"Elementor/Upgrades - _on_each_version Start ";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2025-09-20 01:04:05";}s:7:"\0*\0args";a:2:{s:7:"message";s:44:"Elementor/Upgrades - _on_each_version Start ";s:4:"type";s:4:"info";}}s:32:"6864773f1d7689bc6b7a955dd6dcbe46";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2025-09-20 01:04:05";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:46:"Elementor/Upgrades - _on_each_version Finished";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2025-09-20 01:04:05";}s:7:"\0*\0args";a:2:{s:7:"message";s:46:"Elementor/Upgrades - _on_each_version Finished";s:4:"type";s:4:"info";}}s:32:"d1f3eb1a5380a80da5e0ab7baaa82a38";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2025-09-20 01:04:05";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:50:"Elementor data updater process has been completed.";s:7:"\0*\0meta";a:3:{s:6:"plugin";s:9:"Elementor";s:4:"from";s:6:"3.32.0";s:2:"to";s:6:"3.32.2";}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2025-09-20 01:04:05";}s:7:"\0*\0args";a:3:{s:4:"meta";a:3:{s:6:"plugin";s:9:"Elementor";s:4:"from";s:6:"3.32.0";s:2:"to";s:6:"3.32.2";}s:7:"message";s:50:"Elementor data updater process has been completed.";s:4:"type";s:4:"info";}}s:32:"639a10decf524febba0e4b82f37624de";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2025-09-29 18:36:55";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:47:"Elementor data updater process has been queued.";s:7:"\0*\0meta";a:3:{s:6:"plugin";s:9:"Elementor";s:4:"from";s:6:"3.32.2";s:2:"to";s:6:"3.32.3";}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2025-09-29 18:36:55";}s:7:"\0*\0args";a:3:{s:4:"meta";a:3:{s:6:"plugin";s:9:"Elementor";s:4:"from";s:6:"3.32.2";s:2:"to";s:6:"3.32.3";}s:7:"message";s:47:"Elementor data updater process has been queued.";s:4:"type";s:4:"info";}}s:32:"6599c41109d04f59cba8d185449c8f8c";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2025-09-29 18:36:57";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:36:"elementor::elementor_updater Started";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2025-09-29 18:36:57";}s:7:"\0*\0args";a:2:{s:7:"message";s:36:"elementor::elementor_updater Started";s:4:"type";s:4:"info";}}s:32:"8620017c2cb8d0127591a1ba28d3ccda";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2025-09-29 18:36:58";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:44:"Elementor/Upgrades - _on_each_version Start ";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2025-09-29 18:36:58";}s:7:"\0*\0args";a:2:{s:7:"message";s:44:"Elementor/Upgrades - _on_each_version Start ";s:4:"type";s:4:"info";}}s:32:"e62a1b995aa8ab00263cd3b2b243b227";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2025-09-29 18:36:58";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:46:"Elementor/Upgrades - _on_each_version Finished";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2025-09-29 18:36:58";}s:7:"\0*\0args";a:2:{s:7:"message";s:46:"Elementor/Upgrades - _on_each_version Finished";s:4:"type";s:4:"info";}}s:32:"c7f9900fc77159b8731b56d9c3c549ab";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2025-09-29 18:36:58";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:50:"Elementor data updater process has been completed.";s:7:"\0*\0meta";a:3:{s:6:"plugin";s:9:"Elementor";s:4:"from";s:6:"3.32.2";s:2:"to";s:6:"3.32.3";}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2025-09-29 18:36:58";}s:7:"\0*\0args";a:3:{s:4:"meta";a:3:{s:6:"plugin";s:9:"Elementor";s:4:"from";s:6:"3.32.2";s:2:"to";s:6:"3.32.3";}s:7:"message";s:50:"Elementor data updater process has been completed.";s:4:"type";s:4:"info";}}s:32:"24867658e07bcb431a2f063ca3d185ed";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2025-10-05 18:35:47";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:36:"elementor::elementor_updater Started";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2025-10-05 18:35:47";}s:7:"\0*\0args";a:2:{s:7:"message";s:36:"elementor::elementor_updater Started";s:4:"type";s:4:"info";}}s:32:"81a10972829fac907fb491ede159eac4";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2025-10-05 18:35:47";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:44:"Elementor/Upgrades - _on_each_version Start ";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2025-10-05 18:35:47";}s:7:"\0*\0args";a:2:{s:7:"message";s:44:"Elementor/Upgrades - _on_each_version Start ";s:4:"type";s:4:"info";}}s:32:"c646b577ea713450ce2befbbf692e018";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2025-10-05 18:35:47";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:46:"Elementor/Upgrades - _on_each_version Finished";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2025-10-05 18:35:47";}s:7:"\0*\0args";a:2:{s:7:"message";s:46:"Elementor/Upgrades - _on_each_version Finished";s:4:"type";s:4:"info";}}s:32:"1f64b30de7ec9b9043414da616924d4a";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2025-10-05 18:35:47";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:50:"Elementor data updater process has been completed.";s:7:"\0*\0meta";a:3:{s:6:"plugin";s:9:"Elementor";s:4:"from";s:6:"3.32.3";s:2:"to";s:6:"3.32.4";}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2025-10-05 18:35:47";}s:7:"\0*\0args";a:3:{s:4:"meta";a:3:{s:6:"plugin";s:9:"Elementor";s:4:"from";s:6:"3.32.3";s:2:"to";s:6:"3.32.4";}s:7:"message";s:50:"Elementor data updater process has been completed.";s:4:"type";s:4:"info";}}s:32:"d4fde0f92b2154b377689e80cc4582e4";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2025-10-05 18:35:47";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:47:"Elementor data updater process has been queued.";s:7:"\0*\0meta";a:3:{s:6:"plugin";s:9:"Elementor";s:4:"from";s:6:"3.32.3";s:2:"to";s:6:"3.32.4";}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2025-10-05 18:35:47";}s:7:"\0*\0args";a:3:{s:4:"meta";a:3:{s:6:"plugin";s:9:"Elementor";s:4:"from";s:6:"3.32.3";s:2:"to";s:6:"3.32.4";}s:7:"message";s:47:"Elementor data updater process has been queued.";s:4:"type";s:4:"info";}}}', 'off');
INSERT INTO `wpmr_options` VALUES
(271, 'jet-blocks-version', '1.3.19.1', 'on'),
(272, '_elementor_local_google_fonts', 'a:2:{s:6:"roboto";a:2:{s:3:"url";s:89:"https://mod25.aeroclasses.com.br/wp-content/uploads/elementor/google-fonts/css/roboto.css";s:7:"version";i:1756478555;}s:10:"robotoslab";a:2:{s:3:"url";s:93:"https://mod25.aeroclasses.com.br/wp-content/uploads/elementor/google-fonts/css/robotoslab.css";s:7:"version";i:1756478559;}}', 'auto'),
(274, '_elementor_element_cache_unique_id', '56a50649e353a357f08968961b12622f', 'auto'),
(275, 'elementor_pro_theme_builder_conditions', 'a:1:{s:6:"single";a:1:{i:60;a:1:{i:0;s:16:"include/singular";}}}', 'auto'),
(311, 'elementor_pro_license_key', 'ep-**********', 'auto'),
(312, '_elementor_pro_license_v2_data', 'a:2:{s:7:"timeout";i:1761201341;s:5:"value";s:71:"{"success":true,"license":"valid","expires":"01.01.2030","features":[]}";}', 'auto'),
(314, '_elementor_pro_installed_time', '1756488849', 'auto'),
(320, '_elementor_pro_api_requests_lock', 'a:1:{s:11:"get_version";i:1759775958;}', 'auto'),
(329, '_transient_timeout__elementor_ab_test_plg_site_mailer_submission', '1764264871', 'off'),
(330, '_transient__elementor_ab_test_plg_site_mailer_submission', '1', 'off'),
(333, 'elementor_unfiltered_files_upload', '1', 'auto'),
(334, '_elementor_settings_update_time', '1756491057', 'auto'),
(335, 'elementor_cpt_support', 'a:2:{i:0;s:4:"post";i:1;s:4:"page";}', 'auto'),
(336, 'elementor_disable_color_schemes', '', 'auto'),
(337, 'elementor_disable_typography_schemes', '', 'auto'),
(338, 'elementor_allow_tracking_last_update', '1756491057', 'auto'),
(339, 'elementor_allow_tracking', 'no', 'auto'),
(340, 'elementor_google_maps_api_key', '', 'auto'),
(341, 'elementor_pro_recaptcha_site_key', '', 'auto'),
(342, 'elementor_pro_recaptcha_secret_key', '', 'auto'),
(343, 'elementor_pro_recaptcha_v3_site_key', '', 'auto'),
(344, 'elementor_pro_recaptcha_v3_secret_key', '', 'auto'),
(345, 'elementor_pro_recaptcha_v3_threshold', '0.5', 'auto'),
(346, 'elementor_pro_facebook_app_id', '', 'auto'),
(347, 'elementor_pro_mailchimp_api_key', '', 'auto'),
(348, 'elementor_validate_api_data', '', 'auto'),
(349, 'elementor_pro_drip_api_token', '', 'auto'),
(350, 'elementor_pro_activecampaign_api_key', '', 'auto'),
(351, 'elementor_pro_activecampaign_api_url', '', 'auto'),
(352, 'elementor_pro_getresponse_api_key', '', 'auto'),
(353, 'elementor_pro_convertkit_api_key', '', 'auto'),
(354, 'elementor_pro_mailerlite_api_key', '', 'auto'),
(355, 'elementor_typekit-kit-id', '', 'auto'),
(356, 'elementor_font_awesome_pro_kit_id', '', 'auto'),
(357, 'elementor_pro_stripe_test_secret_key', '', 'auto'),
(358, 'elementor_validate_stripe_api_test_secret_key_button', '', 'auto'),
(359, 'elementor_pro_stripe_live_secret_key', '', 'auto'),
(360, 'elementor_validate_stripe_api_live_secret_key_button', '', 'auto'),
(361, 'elementor_stripe_legal_disclaimer', '', 'auto'),
(362, 'elementor_editor_break_lines', '', 'auto'),
(363, 'elementor_google_font', '1', 'auto'),
(364, 'elementor_form-submissions', '', 'auto'),
(365, 'elementor_load_fa4_shim', '', 'auto'),
(366, 'elementor_meta_generator_tag', '', 'auto'),
(367, 'elementor_css_print_method', 'external', 'auto'),
(368, 'elementor_optimized_image_loading', '1', 'auto'),
(369, 'elementor_optimized_gutenberg_loading', '1', 'auto'),
(370, 'elementor_lazy_load_background_images', '1', 'auto'),
(371, 'elementor_element_cache_ttl', '24', 'auto'),
(372, 'elementor_experiment-cloud-library', 'inactive', 'auto'),
(373, 'elementor_experiment-container', 'default', 'auto'),
(374, 'elementor_experiment-nested-elements', 'default', 'auto'),
(375, 'elementor_experiment-mega-menu', 'inactive', 'auto'),
(376, 'elementor_experiment-e_font_icon_svg', 'active', 'auto'),
(377, 'elementor_experiment-additional_custom_breakpoints', 'active', 'auto'),
(378, 'elementor_experiment-e_optimized_markup', 'default', 'auto'),
(379, 'elementor_experiment-theme_builder_v2', 'default', 'auto'),
(380, 'elementor_experiment-hello-theme-header-footer', 'default', 'auto'),
(381, 'elementor_experiment-e_element_cache', 'default', 'auto'),
(433, '_transient_health-check-site-status-result', '{"good":18,"recommended":4,"critical":1}', 'on'),
(629, 'elementor_elementor_updater_completed', '1', 'auto'),
(922, 'auto_core_update_notified', 'a:4:{s:4:"type";s:7:"success";s:5:"email";s:20:"apefia1998@gmail.com";s:7:"version";s:5:"6.8.3";s:9:"timestamp";i:1759343950;}', 'off'),
(986, '_site_transient_update_core', 'O:8:"stdClass":4:{s:7:"updates";a:1:{i:0;O:8:"stdClass":10:{s:8:"response";s:6:"latest";s:8:"download";s:65:"https://downloads.wordpress.org/release/pt_BR/wordpress-6.8.3.zip";s:6:"locale";s:5:"pt_BR";s:8:"packages";O:8:"stdClass":5:{s:4:"full";s:65:"https://downloads.wordpress.org/release/pt_BR/wordpress-6.8.3.zip";s:10:"no_content";s:0:"";s:11:"new_bundled";s:0:"";s:7:"partial";s:0:"";s:8:"rollback";s:0:"";}s:7:"current";s:5:"6.8.3";s:7:"version";s:5:"6.8.3";s:11:"php_version";s:6:"7.2.24";s:13:"mysql_version";s:5:"5.5.5";s:11:"new_bundled";s:3:"6.7";s:15:"partial_version";s:0:"";}}s:12:"last_checked";i:1761060919;s:15:"version_checked";s:5:"6.8.3";s:12:"translations";a:0:{}}', 'off'),
(987, '_site_transient_update_themes', 'O:8:"stdClass":5:{s:12:"last_checked";i:1761158142;s:7:"checked";a:1:{s:15:"hello-elementor";s:5:"3.4.4";}s:8:"response";a:0:{}s:9:"no_update";a:1:{s:15:"hello-elementor";a:6:{s:5:"theme";s:15:"hello-elementor";s:11:"new_version";s:5:"3.4.4";s:3:"url";s:45:"https://wordpress.org/themes/hello-elementor/";s:7:"package";s:63:"https://downloads.wordpress.org/theme/hello-elementor.3.4.4.zip";s:8:"requires";s:3:"6.0";s:12:"requires_php";s:3:"7.4";}}s:12:"translations";a:0:{}}', 'off'),
(988, 'elementor_pro_remote_info_api_data_3.31.2', 'a:2:{s:7:"timeout";i:1759819159;s:5:"value";s:247816:"{"stable_version":"3.32.2","last_updated":"2025-09-29 12:32:45","sections":"a:2:{s:11:\\"description\\";s:161:\\"Elementor Pro adds new features to the Elementor Page Builder plugin. Control your conversions, your user engagement, your entire website, from one page builder.\\";s:9:\\"changelog\\";s:231955:\\"<h2>Elementor Pro - by Elementor.com<\\/h2>\\n<h4>3.32.2 - 2025-09-29<\\/h4>\\n<ul>\\n<li>Fix: Exported taxonomies are not displayed correctly on the summary page in Website Templates export<\\/li>\\n<li>Fix: Certain taxonomies are not exported as expected in Website Templates export<\\/li>\\n<\\/ul>\\n<h4>3.32.1 - 2025-09-16<\\/h4>\\n<ul>\\n<li>Fix: Theme Builder fails to load when containers are disabled<\\/li>\\n<li>Fix: Popup and single product templates not imported or exported as expected<\\/li>\\n<\\/ul>\\n<h4>3.32.0 - 2025-09-15<\\/h4>\\n<ul>\\n<li>New: Introducing Size Variables to store and reuse numeric values across spacing, typography, layout, and borders - Editor V4<\\/li>\\n<li>New: Introducing granular Transitions with property-level control for advanced micro-animations - Editor V4<\\/li>\\n<li>New: Added granular content selection for Website Templates import and export, including pages, menus, post types, and taxonomies<\\/li>\\n<li>Tweak: Enhanced accessibility of background images in Slides widget with proper aria attributes (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23543\\">#23543<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/31063\\">#31063<\\/a>)<\\/li>\\n<li>Tweak: Added REST API support for the Custom Code feature<\\/li>\\n<li>Tweak: Moved Background control from Content tab to Style tab in Flip Box widget<\\/li>\\n<li>Tweak: Removed SVG icons from the accessibility tree in Share Buttons widget<\\/li>\\n<li>Tweak: Removed dropdown indicator icons from the accessibility tree in WordPress Menu widget<\\/li>\\n<li>Fix: PHP 8.4 deprecation notices when running with <code>WP_DEBUG<\\/code> enabled<\\/li>\\n<li>Fix: Reduced-motion preferences are not applied to Animated Headline widget<\\/li>\\n<li>Fix: Reduced-motion preferences are not applied in Motion Effects<\\/li>\\n<li>Fix: Added required PHP and WordPress versions to the plugin header<\\/li>\\n<\\/ul>\\n<h4>3.31.3 - 2025-09-08<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in WordPress Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.31.2 - 2025-08-10<\\/h4>\\n<ul>\\n<li>Tweak: Improved release version functionality<\\/li>\\n<\\/ul>\\n<h4>3.31.1 - 2025-08-06<\\/h4>\\n<ul>\\n<li>Tweak: Updated <code>form-data<\\/code> package version<\\/li>\\n<\\/ul>\\n<h4>3.31.0 - 2025-08-05<\\/h4>\\n<ul>\\n<li>New: Introducing Attributes - add custom HTML attributes to elements for advanced control - Editor V4<\\/li>\\n<li>Tweak: Optimized Custom Code styles by removing redundant RTL file<\\/li>\\n<li>Tweak: Improved performance by loading ribbon styles only when used in Call to Action and Price Table widgets<\\/li>\\n<li>Tweak: Improved semantic markup structure for header and footer documents<\\/li>\\n<li>Tweak: Reorganized design controls in Animated Headline widget<\\/li>\\n<li>Tweak: Reorganized design controls in Blockquote widget<\\/li>\\n<li>Tweak: Reorganized design controls in Countdown widget<\\/li>\\n<li>Tweak: Replaced SASS mixins and functions with native CSS logical properties<\\/li>\\n<li>Fix: Empty headers are rendered in Table of Contents widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28167\\">#28167<\\/a>)<\\/li>\\n<li>Fix: <code>TypeError<\\/code> bug in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.30.1 - 2025-07-22<\\/h4>\\n<ul>\\n<li>Security Fix: Improved content sanitization in multiple widgets<\\/li>\\n<li>Fix: UI issue in Hotspot widget when Optimized Markup experiment is enabled<\\/li>\\n<li>Fix: Taxonomy filter not working in the Editor when Optimized Markup experiment is enabled<\\/li>\\n<\\/ul>\\n<h4>3.30.0 - 2025-07-01<\\/h4>\\n<ul>\\n<li>New: Introduced Full Website Templates in the Cloud - export, manage, and reuse full site kits across all your websites from one place<\\/li>\\n<li>Tweak: Activated &quot;Optimized Markup&quot; feature on new sites<\\/li>\\n<li>Tweak: Activated &quot;Menu&quot; feature on new sites<\\/li>\\n<li>Tweak: Improved error handling for Theme Builder display conditions<\\/li>\\n<li>Tweak: Added styling controls to Post Excerpt widget<\\/li>\\n<li>Tweak: Improved accessibility with <code>role<\\/code> and <code>aria-label<\\/code> attributes Post Navigation widget<\\/li>\\n<li>Tweak: Added <code>aria-label<\\/code> in Form widget<\\/li>\\n<li>Tweak: Added <code>aria-label<\\/code> in Login widget<\\/li>\\n<li>Tweak: Arranged content as lists in Portfolio and Posts widgets<\\/li>\\n<li>Tweak: Added Box Shadow and Text Shadow controls in Countdown widget<\\/li>\\n<li>Tweak: Moved image resolution control to content tab in Price List widget<\\/li>\\n<li>Tweak: Renamed and reorganized style sections in Price List widget<\\/li>\\n<li>Tweak: Added conditional logic to controls in Price Table widget<\\/li>\\n<li>Tweak: Grouped layout controls under list section in Price List widget<\\/li>\\n<li>Tweak: Updated minimum required WordPress version to 6.6<\\/li>\\n<li>Fix: Inline font icons support doesn''t work in Post Navigation widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24367\\">#24367<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18343\\">#18343<\\/a>)<\\/li>\\n<li>Fix: Page Title condition doesn''t work on child pages in Widget Display Conditions<\\/li>\\n<li>Fix: Editor users with &quot;Access to edit content only&quot; are able to delete elements<\\/li>\\n<li>Fix: Links are not crawlable in Video Playlist widget<\\/li>\\n<li>Fix: Uses hardcoded admin fonts in Video Playlist widget<\\/li>\\n<li>Fix: Editor freezes when the Form widget is used with a high PHP upload size limit<\\/li>\\n<li>Fix: Errors occur when Debug mode is enabled in Slides widget<\\/li>\\n<li>Fix: Plugin dependency not enforced in Elementor Pro<\\/li>\\n<li>Fix: Console shows deprecation warning in Global Widgets<\\/li>\\n<\\/ul>\\n<h4>3.29.2 - 2025-06-04<\\/h4>\\n<ul>\\n<li>Tweak: Added selectors to Menu widget for compatibility with Optimized Markup experiment<\\/li>\\n<\\/ul>\\n<h4>3.29.1 - 2025-05-28<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Animated Headline widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Price Table widget<\\/li>\\n<\\/ul>\\n<h4>3.29.0 - 2025-05-19<\\/h4>\\n<ul>\\n<li>New: Introduced Cloud Templates - save, manage, and reuse your templates across all your sites from a single cloud library<\\/li>\\n<li>Tweak: Improved accessibility with <code>role<\\/code> attributes in Share Buttons widget<\\/li>\\n<li>Tweak: Improved accessibility by grouping content with <code>role=region<\\/code> in the Video Playlist widget<\\/li>\\n<li>Fix: Focus color is not applied correctly for accessibility in WordPress Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24239\\">#24239<\\/a>)<\\/li>\\n<li>Fix: Common scripts loaded late when using the Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.28.4 - 2025-05-05<\\/h4>\\n<ul>\\n<li>Fix: Empty results appeared on the frontend when using the Taxonomy Filter with the ''Avoid Duplicates'' option in Loop Grid widget<\\/li>\\n<li>Fix: Errors occur when Debug mode is enabled and the Optimized Markup experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.28.3 - 2025-04-16<\\/h4>\\n<ul>\\n<li>Tweak: Improved sidebar navigation flow on the Elementor Home screen<\\/li>\\n<\\/ul>\\n<h4>3.28.2 - 2025-03-30<\\/h4>\\n<ul>\\n<li>Fix: Default Elementor animation shown for logged-out users when using an &quot;External URL&quot; source in Lottie widget<\\/li>\\n<\\/ul>\\n<h4>3.28.1 - 2025-03-23<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Animated Headline and Form widgets<\\/li>\\n<\\/ul>\\n<h4>3.28.0 - 2025-03-17<\\/h4>\\n<ul>\\n<li>Tweak: Ensured File Upload field styles are overridden by global styles in Form widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11651\\">#11651<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17223\\">#17223<\\/a>)<\\/li>\\n<li>Tweak: Updated Scroll Snap description to clarify incompatibility with animations and motion effects<\\/li>\\n<li>Tweak: Prevented special characters from being encoded in the email subject field in Form widget<\\/li>\\n<li>Tweak: Loaded module styles within the module instead of registering them in <code>plugin.php<\\/code><\\/li>\\n<li>Tweak: Updated minimum required WordPress version to 6.5<\\/li>\\n<li>Tweak: Improved keyboard accessibility for menus in Editor Top Bar<\\/li>\\n<li>Tweak: Made the edit button accessible in the Template widget<\\/li>\\n<li>Tweak: Optimized Form widget performance by caching field assets <code>using get_style_depends()<\\/code> and <code>get_script_depends()<\\/code> methods<\\/li>\\n<li>Tweak: Added Text Shadow control in Testimonial Carousel, Call to Action and Animated Headline widgets<\\/li>\\n<li>Fix: Button icon alignment breaks when Inline Font Icons feature is activated (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16077\\">#16077<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16511\\">#16511<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17692\\">#17692<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17922\\">#17922<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19253\\">#19253<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19370\\">#19370<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21236\\">#21236<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21844\\">#21844<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28080\\">#28080<\\/a>)<\\/li>\\n<li>Fix: Dropdown caret color did not follow menu item color when Inline Font Icons feature is activated (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17500\\">#17500<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18466\\">#18466<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21664\\">#21664<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24929\\">#24929<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28064\\">#28064<\\/a>)<\\/li>\\n<li>Fix: Page doesn''t scroll up when a coupon error notice appears in Checkout widget<\\/li>\\n<\\/ul>\\n<h4>3.27.7 - 2025-03-13<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Lottie widget<\\/li>\\n<\\/ul>\\n<h4>3.27.6 - 2025-03-10<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Template Condition<\\/li>\\n<\\/ul>\\n<h4>3.27.5 - 2025-03-03<\\/h4>\\n<ul>\\n<li>Fix: The <code>wp_trigger_error<\\/code> function causes the site to crash instead of triggering a warning when used with ACF text<\\/li>\\n<\\/ul>\\n<h4>3.27.4 - 2025-02-16<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Screenshots module<\\/li>\\n<li>Security Fix: Improved code security enforcement in Query control<\\/li>\\n<li>Fix: ACF <code>true_false<\\/code> field causing a fatal error when used as a dynamic tag with third-party plugins (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/30170\\">#30170<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.27.3 - 2025-02-06<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Stripe Button widget<\\/li>\\n<\\/ul>\\n<h4>3.27.2 - 2025-02-03<\\/h4>\\n<ul>\\n<li>Fix: Value type configuration issue causing errors when using ACF<\\/li>\\n<li>Fix: Hide content on responsive breakpoint option is not working on WordPress Menu widget when Optimized Markup experiment is activated<\\/li>\\n<\\/ul>\\n<h4>3.27.1 - 2025-01-27<\\/h4>\\n<ul>\\n<li>Tweak: Increased the number of items allowed in Dynamic Tags options in Display Conditions for Elements<\\/li>\\n<li>Security Fix: Improved code security enforcement in Global widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Lottie widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Admin settings<\\/li>\\n<li>Fix: Accessible navigation in popups caused unintended scrolling of the page when triggered (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29175\\">#29175<\\/a>)<\\/li>\\n<li>Fix: Empty custom fields are missing in the Dynamic Tags options in Display Conditions for Elements<\\/li>\\n<\\/ul>\\n<h4>3.27.0 - 2025-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Removed the <code>elementor-widget-container<\\/code> div from the Menu, Loop, Table of Contents, Form, and Hotspot widgets as part of the Optimized Markup experiment to improve HTML structure<\\/li>\\n<li>Tweak: Reduced DOM size by optimizing the submit button markup in Search widget<\\/li>\\n<li>Tweak: Moved style loading to the head instead of the footer to improve CLS<\\/li>\\n<li>Tweak: Enabled conditional loading of Swiper.js based on widget dependencies to reduce unnecessary assets and improve page load times<\\/li>\\n<li>Tweak: Standardized navigation elements like arrows and bullets across all carousel and slider widgets for improved accessibility<\\/li>\\n<li>Tweak: Improved accessibility when the submit button has only an icon and no text in Search widget<\\/li>\\n<li>Tweak: Removed <code>load_plugin_textdomain()<\\/code> function from Elementor Pro<\\/li>\\n<\\/ul>\\n<h4>3.26.3 - 2025-01-07<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Search widget<\\/li>\\n<li>Fix: Height issues cause slideshow thumbnails to display incorrectly in Media Carousel (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29663\\">#29663<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.26.2 - 2024-12-22<\\/h4>\\n<ul>\\n<li>Fix: Menu items are not clickable in various scenarios in Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29191\\">#29191<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.26.1 - 2024-12-17<\\/h4>\\n<ul>\\n<li>Fix: Restore deprecated <code>Plugin::enqueue_styles()<\\/code> function to avoid errors with 3rd party plugins<\\/li>\\n<\\/ul>\\n<h4>3.26.0 - 2024-12-16<\\/h4>\\n<ul>\\n<li>New: Introducing dynamic content support for Off-canvas in Loop Grid widget templates - enabling seamless display of additional content dynamically (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29049\\">#29049<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28935\\">#28935<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7106\\">#7106<\\/a>)<\\/li>\\n<li>New: AdBlock Detection trigger for Popups - display targeted popups for visitors using ad blockers<\\/li>\\n<li>New: Added Reload Page link action for Dynamic Tags<\\/li>\\n<li>Tweak: Added &quot;Space Between Dots&quot; control to Carousel widgets (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2526\\">#2526<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3277\\">#3277<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21697\\">#21697<\\/a>)<\\/li>\\n<li>Tweak: Replaced hidden <code>elementor-screen-only<\\/code> div with <code>aria-label<\\/code> attributes<\\/li>\\n<li>Tweak: Removed <code>elementor-widget-container<\\/code> div from Elementor widgets as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Optimize popup styling by loading it only when necessary<\\/li>\\n<li>Tweak: Updated Gap between slides control to support only PX units in Carousel widget<\\/li>\\n<li>Tweak: Removed the dependency between the Tabs handler and the Menu handler<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> in Carousel widgets<\\/li>\\n<li>Tweak: Added <code>aria-roledescription=carousel<\\/code> to carousel wrapper<\\/li>\\n<li>Tweak: Added <code>aria-roledescription=slide<\\/code> to slide wrapper<\\/li>\\n<li>Tweak: Optimized carousel widgets markup as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Updated minimum required Safari version to 15.5<\\/li>\\n<li>Tweak: Facebook widgets are no longer supported on mobile due to Facebook functionality changes<\\/li>\\n<li>Fix: Motion Effects sticky feature is not working when Scroll Snap is enabled<\\/li>\\n<li>Fix: Custom Image Resolution option is not working in Gallery widget<\\/li>\\n<li>Fix: ''Reading Settings'' unexpectedly reduces the number of posts displayed when using the Archive with Pagination setting<\\/li>\\n<li>Fix: Step Form does not scroll to the top when the first field is not an input field in Form widget<\\/li>\\n<li>Fix: Display Condition feature is available without an active Elementor license in Floating Elements<\\/li>\\n<li>Fix: Background options of Flip Box in Loop Grid widget are not working when images are added using ACF Dynamic Tags<\\/li>\\n<li>Fix: Dropdown icon in the Select field of the Form widget is cut off when the Inline Font Icons feature is activated<\\/li>\\n<li>Fix: Incompatibility between Form widget and WPML when using Nested Elements<\\/li>\\n<li>Fix: Performance issues when changing the title name in the Menu widget<\\/li>\\n<li>Fix: Warnings appear when Element Caching is set to Inactive in Carousel widgets<\\/li>\\n<li>Fix: Swiper styling missing from Lightbox inside Gallery widgets<\\/li>\\n<\\/ul>\\n<h4>3.25.5 - 2024-12-10<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Fix: Accessible navigation in popups caused unintended scrolling of the page when triggered (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29175\\">#29175<\\/a>)<\\/li>\\n<li>Fix: Popup overlay shown for non-logged users even when disabled<\\/li>\\n<\\/ul>\\n<h4>3.25.4 - 2024-11-20<\\/h4>\\n<ul>\\n<li>Tweak: Improved Global Widget loading method to enhance performance<\\/li>\\n<\\/ul>\\n<h4>3.25.3 - 2024-11-13<\\/h4>\\n<ul>\\n<li>Fix: Nested Elements are activated even when the Container experiment is inactive<\\/li>\\n<\\/ul>\\n<h4>3.25.2 - 2024-11-03<\\/h4>\\n<ul>\\n<li>Fix: Styling issues affecting popup layout when using a Dynamic Tag to open the popup<\\/li>\\n<li>Fix: Image captions are not displaying for non-logged-in users in Media Carousel widget<\\/li>\\n<li>Fix: Custom Add to Cart widget with Quantity enabled causes critical error (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29159\\">#29159<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.25.1 - 2024-10-31<\\/h4>\\n<ul>\\n<li>Fix: Multiple Custom Add to Cart widgets on the same page are adding the same product<\\/li>\\n<\\/ul>\\n<h4>3.25.0 - 2024-10-28<\\/h4>\\n<ul>\\n<li>Tweak: Added pagination functionality to the Live Results in Search widget<\\/li>\\n<li>Tweak: Added Anchor Offset control to allow precise positioning when scrolling to anchor links on the page<\\/li>\\n<li>Tweak: Load motion effects styles only when they are in use<\\/li>\\n<li>Tweak: Load sticky styles only when they are in use<\\/li>\\n<li>Tweak: Load popup styles only when they are in use<\\/li>\\n<li>Tweak: Load theme builder styles only when they are in use<\\/li>\\n<li>Tweak: Load transition styles for Call to Action and Gallery widgets only when they are in use<\\/li>\\n<li>Tweak: Load styles for Form widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for WooCommerce widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Theme Elements widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Carousel widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Pricing widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Floating Elements separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Link in Bio widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load minified CSS in the Loop Builder''s Call to Action button in the Editor<\\/li>\\n<li>Tweak: Removed &quot;Payments&quot; module styles<\\/li>\\n<li>Tweak: Removed <code>elementor-button-wrapper<\\/code> div from Payapl widget as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Removed <code>elementor-button-wrapper<\\/code> div from Stripe widget as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Merged &quot;Form Submissions&quot; feature into the version and moved it to the Advanced tab<\\/li>\\n<li>Tweak: Merged &quot;Display Conditions&quot; into the version<\\/li>\\n<li>Fix: Missing translation string for the empty message in the Table of Contents widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27580\\">#27580<\\/a>)<\\/li>\\n<li>Fix: Local Storage and Session Storage were being used even when popups were not in use (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7151\\">#7151<\\/a>)<\\/li>\\n<li>Fix: Masonry layout is not working when pagination is set to &quot;Load More&quot; or &quot;Infinite Scroll&quot; in Loop Grid widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23684\\">#23684<\\/a>)<\\/li>\\n<li>Fix: Extra gap between widgets on the frontend when using Off-canvas widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27706\\">#27706<\\/a>)<\\/li>\\n<li>Fix: Pagination and custom queries did not work when the Posts Widget was saved as a Global Widget or used via shortcode<\\/li>\\n<li>Fix: Lightbox videos are missing controls and displayed at the wrong size in Media Carousel widget<\\/li>\\n<li>Fix: Pagination options with Individual Pagination not working as expected in Posts and Loop Grid widgets<\\/li>\\n<li>Fix: Justified or Masonry layouts for the Pro Gallery would not display images on the frontend when inserted via nested tabs<\\/li>\\n<li>Fix: Error issue in the Loop Grid widget when used in theme parts with the Taxonomy Filter<\\/li>\\n<li>Fix: Removed the focus ring after clicking to open the Off Canvas inside the Editor<\\/li>\\n<li>Fix: Background gradient colors from the dynamic color tag values are not rendering on the frontend<\\/li>\\n<li>Fix: Excessive database requests generated by the Loop Grid widget<\\/li>\\n<li>Fix: Colors from Dynamic Tags were not rendered on the frontend<\\/li>\\n<li>Fix: Display issue in the Menu widget caused by the ''Native Intersection Observer API<\\/li>\\n<li>Fix: Dropdown area not working in certain scenarios in Menu widget<\\/li>\\n<li>Fix: Content Width control inside the Mega Menu is displaying an empty value<\\/li>\\n<\\/ul>\\n<h4>3.24.4 - 2024-10-09<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Media Carousel widget<\\/li>\\n<\\/ul>\\n<h4>3.24.3 - 2024-10-01<\\/h4>\\n<ul>\\n<li>Fix: Floating Elements template not loading when Single Page template is set with All Singular condition<\\/li>\\n<li>Fix: Form field styles not loading properly in various scenarios<\\/li>\\n<\\/ul>\\n<h4>3.24.2 - 2024-09-18<\\/h4>\\n<ul>\\n<li>Fix: Icons not displaying when Inline SVG Icons experiment is active in Link In Bio widgets and Floating Elements<\\/li>\\n<\\/ul>\\n<h4>3.24.1 - 2024-09-12<\\/h4>\\n<ul>\\n<li>Fix: Widget styles not loading correctly on front causing alignment inconsistencies (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28676\\">#28676<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.24.0 - 2024-09-10<\\/h4>\\n<ul>\\n<li>New: Introducing support for Variable Fonts - allowing for more dynamic and flexible text styling (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6703\\">#6703<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11333\\">#11333<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19277\\">#19277<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25485\\">#25485<\\/a>)<\\/li>\\n<li>Tweak: Added ''Structure'' indication for widgets with Display Conditions applied (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28027\\">#28027<\\/a>)<\\/li>\\n<li>Tweak: Added a new option for setting the live search results width (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28280\\">#28280<\\/a>)<\\/li>\\n<li>Tweak: Improved Honeypot field functionality in Form widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28480\\">#28480<\\/a>)<\\/li>\\n<li>Tweak: Added options to ''Copy'', ''Paste'', and ''Clear'' Display Conditions in Context Menu<\\/li>\\n<li>Tweak: Improved performance of the Menu widget when using Dynamic Tags in the URL field<\\/li>\\n<li>Tweak: Improved performance when using Dynamic Tags in Nested Elements<\\/li>\\n<li>Tweak: Added the option for users to disable Akismet for specific Elementor forms<\\/li>\\n<li>Tweak: Adjusted URL structure when presenting the Search Archive page in Search widget<\\/li>\\n<li>Tweak: Added the ''Create Template'' button in Search widget<\\/li>\\n<li>Tweak: Added an option to enable the ''Loader'' animation while live results are loading in Search widget<\\/li>\\n<li>Tweak: Load share buttons compatibility styles only when they are in use<\\/li>\\n<li>Tweak: Load dialog styles only when they are in use<\\/li>\\n<li>Tweak: Load global widget styles only during Editor preview<\\/li>\\n<li>Tweak: Conditionally load widget styles only when the widgets are used<\\/li>\\n<li>Tweak: Load styles for CTA hover animations only when they are in use<\\/li>\\n<li>Tweak: Load notes styles only when the WordPress Toolbar is displayed<\\/li>\\n<li>Tweak: Split <code>animations.min.css<\\/code> into multiple CSS files and load them conditionally<\\/li>\\n<li>Tweak: Promoted Display Conditions feature to Stable status<\\/li>\\n<li>Tweak: Merged Taxonomy Filter feature into the version<\\/li>\\n<li>Tweak: Merged Search feature into the version<\\/li>\\n<li>Tweak: Added a note to ''Current Query'' explaining the impact of WordPress settings on pagination within Archives<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for the Off-Canvas widget<\\/li>\\n<li>Fix: Manual Selection option is not excluding sticky posts in Posts and Loop Grid widgets (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18689\\">#18689<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23331\\">#23331<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28179\\">#28179<\\/a>)<\\/li>\\n<li>Fix: Template ID does not change according to the imported Loop Item (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21404\\">#21404<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22202\\">#22202<\\/a>)<\\/li>\\n<li>Fix: ''Editing Mode'' for the Off-canvas was not functioning correctly in certain scenarios<\\/li>\\n<li>Fix: Added definition to <code>clear_custom_image_sizes<\\/code> hook to prevent edge case issues<\\/li>\\n<li>Fix: Flickering issue with search result buttons when closing results using the keyboard escape key in Search widget<\\/li>\\n<li>Fix: Theme Style settings for buttons were overriding the text styling in Search widget<\\/li>\\n<li>Fix: Nesting menu inside another menu causes functionality issues in Menu widget<\\/li>\\n<li>Fix: Error when using array as custom fields value in Dynamic Tags<\\/li>\\n<\\/ul>\\n<h4>3.23.3 - 2024-08-05<\\/h4>\\n<ul>\\n<li>Fix: Dropdown area not working in certain scenarios in Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28194\\">#28194<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.23.2 - 2024-07-29<\\/h4>\\n<ul>\\n<li>Fix: Horizontal scroll bar appearing on the page when using Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28087\\">#28087<\\/a>)<\\/li>\\n<li>Fix: Dropdown area disappearing in certain scenarios in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.23.1 - 2024-07-23<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in link URL<\\/li>\\n<\\/ul>\\n<h4>3.23.0 - 2024-07-15<\\/h4>\\n<ul>\\n<li>New: Search Widget with Live Results - Display live search results as visitors type into the search box, enhancing user experience and engagement (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27664\\">#27664<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24931\\">#24931<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21459\\">#21459<\\/a>)<\\/li>\\n<li>Tweak: Renamed <code>width<\\/code> to <code>Min width<\\/code> and added <code>Max width<\\/code> control to Hotspot tooltips (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18930\\">#18930<\\/a>)<\\/li>\\n<li>Tweak: Applied a logical DOM order to the Mega Menu widget to improve accessibility<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for WordPress Menu widget<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for Menu widget<\\/li>\\n<li>Tweak: Added a bottom option to the Image Position control in Call to Action widget<\\/li>\\n<li>Fix: Missing version string in included CSS query string when Improved CSS Loading is enabled (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21879\\">#21879<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23821\\">#23821<\\/a>)<\\/li>\\n<li>Fix: Form submission icon message does not display correctly when Inline Font Icons feature is activated<\\/li>\\n<li>Fix: Save and Close button position issues in the conditions screen in Theme Builder.<\\/li>\\n<li>Fix: Focus appears on the first element when using the mouse to open Off-Canvas <\\/li>\\n<li>Fix: Links to Elementor Settings are broken in various locations<\\/li>\\n<li>Fix: Conditions field not showing all relevant conditions in Theme Builder<\\/li>\\n<li>Fix: Off-Canvas flickering in sticky containers with exit animations triggered by sticky effects<\\/li>\\n<\\/ul>\\n<h4>3.22.1 - 2024-06-24<\\/h4>\\n<ul>\\n<li>Fix: Styling of Global widgets not loading when Element Caching experiment is activated (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27704\\">#27704<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.22.0 - 2024-06-16<\\/h4>\\n<ul>\\n<li>New: Introducing Off-Canvas widget - create engaging and creative layers triggered by a link (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6225\\">#6225<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21769\\">#21769<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25770\\">#25770<\\/a>)<\\/li>\\n<li>Tweak: Added option to remove ''User IP'' and ''User Agent'' from the form submissions metadata (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14285\\">#14285<\\/a>)<\\/li>\\n<li>Tweak: Replaced <code>waypoints.js<\\/code> library with the native Intersection Observer API<\\/li>\\n<li>Tweak: Extended Alignment and Position capabilities in Form widget<\\/li>\\n<li>Tweak: Moved icon View control to style tab in Flip Box widget<\\/li>\\n<li>Tweak: Moved icon View control to style tab in Call to Action widget<\\/li>\\n<li>Tweak: Optimized Form widget to eliminate unnecessary markup when the button icon is empty<\\/li>\\n<li>Tweak: Optimized Posts widget to eliminate unnecessary markup when Load More button text is empty<\\/li>\\n<li>Tweak: Remove <code>placeholder<\\/code> arguments from URL controls<\\/li>\\n<li>Tweak: Implemented CSS logical properties to Icon Position in Form, Posts and Menu Cart widgets<\\/li>\\n<li>Tweak: Activated Display Conditions feature for existing sites<\\/li>\\n<li>Tweak: Activated Taxonomy Filter feature for existing sites<\\/li>\\n<li>Tweak: Added functionality to delay the running of the ready triggers on inner elements<\\/li>\\n<li>Fix: Icons are now part of the link in the Menu Widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24298\\">#24298<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25112\\">#25112<\\/a>)<\\/li>\\n<li>Fix: <code>all: unset<\\/code> assigned to buttons cause focus issues (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24322\\">#24322<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25448\\">#25448<\\/a>)<\\/li>\\n<li>Fix: Menu cart SVG icon disappears on front when Optimized Control Loading experiment is activated (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27342\\">#27342<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro auto-updates are not working on multisite networks (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12615\\">#12615<\\/a>)<\\/li>\\n<li>Fix: PHP error appears in the editor when using Loop Grid in an archive template<\\/li>\\n<li>Fix: UI glitch on Icon Position control in Paypal and Stripe Buttons widgets<\\/li>\\n<li>Fix: Icon Position control RTL issue in Hotspot widget<\\/li>\\n<li>Fix: Manual Selection &quot;Include By&quot; Query doesn''t work with product categories<\\/li>\\n<\\/ul>\\n<h4>3.21.3 - 2024-05-20<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Loop Grid widget<\\/li>\\n<li>Fix: License expired affects the Display Conditions functionality in the front end<\\/li>\\n<\\/ul>\\n<h4>3.21.2 - 2024-04-30<\\/h4>\\n<ul>\\n<li>Fix: Special characters are not displayed correctly when using the Excerpt widget in Loop template (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25860\\">#25860<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.21.1 - 2024-04-24<\\/h4>\\n<ul>\\n<li>Fix: Excerpt Length setting doesn''t function correctly for languages with non-English characters in Post Excerpt widget<\\/li>\\n<\\/ul>\\n<h4>3.21.0 - 2024-04-15<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Taxonomy Query - Enabling the display of post and product categories and tags within Loop Grid and Loop Carousel widgets (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21372\\">#21372<\\/a>)<\\/li>\\n<li>Tweak: Optimized Hotspot widget to prevent rendering when no image is provided<\\/li>\\n<li>Tweak: Optimized Blockquote widget to eliminate unnecessary markup when devoid of content<\\/li>\\n<li>Tweak: Optimized Template widget to eliminate unnecessary markup when no template is selected<\\/li>\\n<li>Tweak: Optimized Code Highlight widget to eliminate unnecessary markup when there is no content<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Portfolio widget<\\/li>\\n<li>Tweak: Implemented accessibility improvements of Author Avatar image alt text in Post Info widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25440\\">#25440<\\/a>)<\\/li>\\n<li>Tweak: Notes feature merged to version<\\/li>\\n<li>Tweak: Implemented accessibility improvements of Profile Picture alt text in Author widget<\\/li>\\n<li>Fix: Display issue on hover state in WooCommerce Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.20.3 - 2024-04-10<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issue between the My Account widget and other third-party plugins (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20986\\">#20986<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.20.2 - 2024-03-26<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Media Carousel widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Post Navigation widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Gallery widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.20.1 - 2024-03-20<\\/h4>\\n<ul>\\n<li>Fix: Strengthened code integrity in deprecated Woo Single Element widget<\\/li>\\n<li>Fix: PHP error notice appears when using Loop Grid with the Taxonomy Filter widgets<\\/li>\\n<\\/ul>\\n<h4>3.20.0 - 2024-03-11<\\/h4>\\n<ul>\\n<li>Tweak: Implemented OR logic in the Display Conditions feature<\\/li>\\n<li>Tweak: Added X and Threads social networks to Share Buttons widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25299\\">#25299<\\/a>)<\\/li>\\n<li>Tweak: Added Archive Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Alt dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Caption dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Bio dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Email dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Website dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Page Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Post Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Comments Number rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Archive Author rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added support for WordPress Custom Fields in Display Conditions feature<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23875\\">#23875<\\/a>)<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Login widget<\\/li>\\n<li>Tweak: Added additional style controls in the Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration option in Blockquote widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21295\\">#21295<\\/a>)<\\/li>\\n<li>Tweak: Added Transition Duration to button in Flip Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Author Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to List in Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Login widget<\\/li>\\n<li>Tweak: Added Transition Duration in Post Navigation widget<\\/li>\\n<li>Tweak: Added Transition Duration Show More in Video Playlist widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Form widget<\\/li>\\n<li>Tweak: Removed separator-none argument from all Editor controls<\\/li>\\n<li>Tweak: Add <code>&lt;time&gt;<\\/code> wrapper for Date and Time items in Post Info widget<\\/li>\\n<li>Tweak: Page Transitions feature merged to version<\\/li>\\n<li>Tweak: Scroll Snap feature merged to version<\\/li>\\n<li>Tweak: Promoted Display Conditions feature to Beta status and activated for new sites<\\/li>\\n<li>Tweak: Promoted Taxonomy Filter feature to beta status and activated for new sites<\\/li>\\n<li>Fix: Page Transitions feature and Load Font Awesome 4 Support cause a console error (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18885\\">#18885<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19334\\">#19334<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21082\\">#21082<\\/a>)<\\/li>\\n<li>Fix: Added better output escaping in Taxonomy Filter widget<\\/li>\\n<\\/ul>\\n<h4>3.19.3 - 2024-02-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved Loop CSS loading structure in Loop Grid item<\\/li>\\n<li>Security Fix: Addressed security weaknesses in Dynamic Tags<\\/li>\\n<\\/ul>\\n<h4>3.19.2 - 2024-02-07<\\/h4>\\n<ul>\\n<li>Fix: Export data inconsistencies when using form actions in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.19.1 - 2024-02-05<\\/h4>\\n<ul>\\n<li>Fix: Enqueuing non-existing Loop Template CSS file in Loop Item template (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24959\\">#24959<\\/a>)<\\/li>\\n<li>Fix: Improved code security enforcement in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>3.19.0 - 2024-01-29<\\/h4>\\n<ul>\\n<li>New: Introducing Display Conditions for Elements - allowing users to customize content visibility based on specified criteria (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4246\\">#4246<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21152\\">#21152<\\/a>)<\\/li>\\n<li>New: Implemented Akismet Integration for enhanced spam protection and security in Form widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11401\\">#11401<\\/a>)<\\/li>\\n<li>New: Introducing Permissions functionality to Element Manager - providing users with enhanced control over access and management capabilities<\\/li>\\n<li>Tweak: Added styling option for dropdown indicator in Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21907\\">#21907<\\/a>)<\\/li>\\n<li>Tweak: Added additional size units and custom units in all elements<\\/li>\\n<li>Tweak: Implemented CSS logical properties in WordPress Menu widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Reviews widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Countdown widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor Editor<\\/li>\\n<li>Tweak: Updated <code>jquery.smartmenus.js<\\/code> version from 1.1.1 to 1.2.0<\\/li>\\n<li>Fix: Dynamic Background Image does not load on the first Loop Item in a Loop Grid (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21489\\">#21489<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22368\\">#22368<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23085\\">#23085<\\/a>)<\\/li>\\n<li>Fix: History panel deprecation notices in console log<\\/li>\\n<li>Fix: Second Pro rollback installed the latest version instead of the specifically selected older version<\\/li>\\n<li>Fix: Incorrect position of the dropdown content when applying entrance animation in Menu Widget<\\/li>\\n<li>Fix: UX issues when using in-place editing in Menu widget<\\/li>\\n<li>Fix: Pagination with page reload is not working when used with the Taxonomy filter and Loop Grid widget in Archive template<\\/li>\\n<\\/ul>\\n<h4>3.18.2 - 2023-12-20<\\/h4>\\n<ul>\\n<li>Fix: Modified controls sanitization to enforce better security policies in Price List widget<\\/li>\\n<li>Fix: Error messages related to loop filter appear on front when using PHP 8.X and <code>WP_DEBUG<\\/code> is true<\\/li>\\n<\\/ul>\\n<h4>3.18.1 - 2023-12-06<\\/h4>\\n<ul>\\n<li>Fix: No results appeared when reloading the page with deep link and de-selecting terms in Taxonomy Filter widget<\\/li>\\n<li>Fix: No results appeared when filtering the Uncategorized category in Filter Taxonomy widget<\\/li>\\n<li>Fix: Notes still available when the Notes feature is deactivated<\\/li>\\n<\\/ul>\\n<h4>3.18.0 - 2023-12-04<\\/h4>\\n<ul>\\n<li>Tweak: Added the ability to upload files as attachments to emails in the File Upload field in Form widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4868\\">#4868<\\/a>)<\\/li>\\n<li>Tweak: Introduced the capability to design and edit the empty state in the Loop Grid widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24261\\">#24261<\\/a>)<\\/li>\\n<li>Tweak: Implemented the option to close the menu content area with a click anywhere on the screen in Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22686\\">#22686<\\/a>)<\\/li>\\n<li>Tweak: Improve scrolling behavior inside the content area when there is not enough space in Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22712\\">#22712<\\/a>)<\\/li>\\n<li>Tweak: Expanded breakpoint options in Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22488\\">#22488<\\/a>)<\\/li>\\n<li>Tweak: Added Logical Combination control in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added additional units to Horizontal and Vertical padding for Dropdown in WordPress Menu widget<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in Loop Carousel and Carousel widgets<\\/li>\\n<li>Tweak: Added various HTML Tag controls in Video Playlist widget<\\/li>\\n<li>Tweak: Added responsive control to navigation size in Slides, Reviews, Media Carousel and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Search Form widget<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added Multiple Selection control in Taxonomy Filter widget<\\/li>\\n<li>Fix: Deprecated notice when using ${var} in strings instead of {$var} with PHP 8.2 (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23927\\">#23927<\\/a>)<\\/li>\\n<li>Fix: Dropdown indicator position issue in Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23947\\">#23947<\\/a>)<\\/li>\\n<li>Fix: Dynamic Tags are not available when choosing ''self-hosted'' source in Video widget<\\/li>\\n<li>Fix: Telephone field placeholder is aligned to the left in RTL websites in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.17.1 - 2023-11-01<\\/h4>\\n<ul>\\n<li>Fix: Modified controls sanitization to enforce better security policies in Code Highlight, Form, Lottie, Price List, and Video Playlist widgets<\\/li>\\n<\\/ul>\\n<h4>3.17.0 - 2023-10-25<\\/h4>\\n<ul>\\n<li>Tweak: Added AJAX pagination option or seamless page navigation between content in Loop Grid widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\">#1284<\\/a>)<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Post widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Loop Grid widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Added a None option to the breakpoint options in Menu widget<\\/li>\\n<li>Tweak: Added a horizontal scrolling option in Menu widget<\\/li>\\n<li>Tweak: Upgraded minimum required PHP version to 7.3<\\/li>\\n<li>Tweak: Improved accessibility when minimize button is disabled in Table of Content widget<\\/li>\\n<li>Fix: Table of Content widget without icons displays <code>undefined<\\/code> error (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17523\\">#17523<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17768\\">#17768<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18463\\">#18463<\\/a>)<\\/li>\\n<li>Fix: Hover behavior issues on menu items in Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23430\\">#23430<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22431\\">#22431<\\/a>)<\\/li>\\n<li>Fix: Links inside Loop Carousel are not working on initial load in Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23705\\">#23705<\\/a>)<\\/li>\\n<li>Fix: Popups accessible navigation adds outlines to the wrong first focusable element<\\/li>\\n<li>Fix: Dropdown area aligned to the left side of the screen if contains Tabs widget in Menu widget<\\/li>\\n<li>Fix: Content horizontal position not aligning correctly when used with carousel widgets in Menu widget<\\/li>\\n<li>Fix: Accessibility errors in PageSpeed Insights in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.16.2 - 2023-09-20<\\/h4>\\n<ul>\\n<li>Fix: Fit to Content dropdown position calculation is incorrect in Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23808\\">#23808<\\/a>)<\\/li>\\n<li>Fix: Reverted hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23804\\">#23804<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.16.1 - 2023-09-14<\\/h4>\\n<ul>\\n<li>Fix: Dynamic tag for ACF image field is not working as expected (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23757\\">#23757<\\/a>)<\\/li>\\n<li>Fix: Sticky functionality affects padding values in Container (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23758\\">#23758<\\/a>)<\\/li>\\n<li>Fix: HTML list issues for padding and margin in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.16.0 - 2023-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23607\\">#23607<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22554\\">#22554<\\/a>)<\\/li>\\n<li>Fix: ''Fallback: Recent Posts'' option malfunctions in the Query control (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21436\\">#21436<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23259\\">#23259<\\/a>)<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22056\\">#22056<\\/a>)<\\/li>\\n<li>Tweak: Used appropriate image <code>alt<\\/code> in Testimonial Carousel widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17680\\">#17680<\\/a>)<\\/li>\\n<li>Tweak: Optimized Scroll Snap functionality when using Container widget<\\/li>\\n<li>Tweak: Enhanced Elementor Role Manager functionality when using Containers<\\/li>\\n<li>Tweak: Added Notes feature to the Editor Top Bar<\\/li>\\n<li>Tweak: Replace CSS <code>float<\\/code> with other layouts in the Editor<\\/li>\\n<li>Tweak: Upgraded HTML Structure for the Menu widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Carousel and Menu widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to a link in Posts widget<\\/li>\\n<li>Tweak: Loop Builder feature merged to version<\\/li>\\n<li>Fix: Addressed inconsistency in hover effect durations between icon, dropdown indicator colors, and text colors in the Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22376\\">#22376<\\/a>)<\\/li>\\n<li>Fix: Slides break if the parent container is set to HTML A tag in Loop Carousel and Carousel widgets (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22678\\">#22678<\\/a>)<\\/li>\\n<li>Fix: The icon size setting is not affecting uploaded SVG icons in the Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22372\\">#22372<\\/a>)<\\/li>\\n<li>Fix: Taxonomy filter does not work with slug in foreign characters (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23315\\">#23315<\\/a>)<\\/li>\\n<li>Fix: Improved code security enforcement in Dynamic Tags<\\/li>\\n<li>Fix: Sticky container incorrectly adjusts its width when transitioning from a smaller breakpoint to a larger one within the Editor<\\/li>\\n<\\/ul>\\n<h4>3.15.1 - 2023-08-09<\\/h4>\\n<ul>\\n<li>Fix: Improved code security enforcement in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.15.0 - 2023-07-31<\\/h4>\\n<ul>\\n<li>New: Introducing Taxonomy Filter widget - Empower visitors to seamlessly filter listings in Loop Grids based on taxonomies (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3140\\">#3140<\\/a>)<\\/li>\\n<li>Tweak: Added an &quot;Offset Sides&quot; functionality in Carousel and Loop Carousel widgets (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21114\\">#21114<\\/a>)<\\/li>\\n<li>Tweak: Modified the size of the Publish button in the Editor Top Bar feature (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22472\\">#22472<\\/a>)<\\/li>\\n<li>Tweak: Improved Ajax permissions functionality for better security enforcement<\\/li>\\n<li>Tweak: Added option for pagination custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added option for navigation custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added additional styling options for navigation in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added labels to shortcode column in WordPress admin<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in Menu widget<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in My Account widget<\\/li>\\n<li>Tweak: Improved panel UI in Video Playlist widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor Editor<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Price List widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Slides widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Flip Box widget<\\/li>\\n<li>Tweak: Added &quot;Description HTML Tag&quot; in Call To Action widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Share Buttons widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Fix: WooCommerce Status page failed to recognize Elementor WooCommerce widgets<\\/li>\\n<li>Fix: Pagination does not work inside single templates when using Posts and Loop Grid widgets<\\/li>\\n<li>Fix: Incorrect saving of WooCommerce page settings in Elementor site settings under certain scenarios<\\/li>\\n<\\/ul>\\n<h4>3.14.1 - 2023-06-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved navigation on touch devices in Carousel widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22827\\">#22827<\\/a>)<\\/li>\\n<li>Fix: Missing navigation arrows on lightbox in Gallery widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22870\\">#22870<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.14.0 - 2023-06-19<\\/h4>\\n<ul>\\n<li>New: Introducing Carousel widget - Infinite design possibilities, and nesting capabilities (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2587\\">#2587<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\">#219<\\/a>)<\\/li>\\n<li>Tweak: Added Static Item Position functionality to Alternate template in Loop Grid widget<\\/li>\\n<li>Tweak: Added visual indication of Page Parts<\\/li>\\n<li>Tweak: Added dividers option between menu items in Menu widget<\\/li>\\n<li>Tweak: Changed the HTML structure of Pagination and Navigation in Loop Carousel and Nested Carousel widgets<\\/li>\\n<li>Tweak: Added shop page in WooCommerce Pages section in Site Settings<\\/li>\\n<li>Tweak: Added Text Shadow, Box Shadow and Padding control to button in Call to Action widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Video Playlist widget<\\/li>\\n<li>Tweak: Added <code>alt<\\/code> attribute to images in Video Playlist widget<\\/li>\\n<li>Tweak: Replaced select control with choose control for Flip Direction control in Flip Box widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Use <code>media_types<\\/code> array in Media controls<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Gallery widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11193\\">#11193<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19871\\">#19871<\\/a>)<\\/li>\\n<li>Fix: Responsive settings for templates don''t work as expected when Additional Custom Breakpoints feature is active (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16819\\">#16819<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19394\\">#19394<\\/a>)<\\/li>\\n<li>Fix: Inner containers are not presented as expected in Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21813\\">#21813<\\/a>)<\\/li>\\n<li>Fix: Popup width does not support percentages (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22413\\">#22413<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x throws errors when using WooCommerce Ajax response (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22199\\">#22199<\\/a>)<\\/li>\\n<li>Fix: Mini cart template appears as empty in various scenarios in Menu Cart widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22789\\">#22789<\\/a>)<\\/li>\\n<li>Fix: Order by Price doesn''t work for the Latest products or Manual Selection in Products widget<\\/li>\\n<li>Fix: Dropdown indicator icon is not vertically aligned to the text when using icon in Menu Widget<\\/li>\\n<li>Fix: Mixed content warning in the console for Video Playlist widget<\\/li>\\n<li>Fix: Preview settings are not presented as expected after first save in Loop Template<\\/li>\\n<li>Fix: Not-crawlable link error in Video Playlist widget<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Logo widget<\\/li>\\n<li>Fix: Focus state issue on page load when using Table of Content widget<\\/li>\\n<\\/ul>\\n<h4>3.13.2 - 2023-05-22<\\/h4>\\n<ul>\\n<li>Fix: Hover settings not working as expected on Touch-Enabled devices in Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22258\\">#22258<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.1 - 2023-05-11<\\/h4>\\n<ul>\\n<li>Security Fix: Addressed security weaknesses in access management related functions<\\/li>\\n<li>Fix: Excerpt content pulled from post content is showing with HTML tags in Loop Grid widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22367\\">#22367<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.0 - 2023-05-08<\\/h4>\\n<ul>\\n<li>Tweak: Provided an option to assign excerpt automatically from post content in Post Excerpt dynamic tag (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20256\\">#20256<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21715\\">#21715<\\/a>)<\\/li>\\n<li>Tweak: Added Display Conditions functionality in Editor Top bar (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21675\\">#21675<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22050\\">#22050<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor_page_id<\\/code> from request URLs in the WC AJAX calls (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18675\\">#18675<\\/a>)<\\/li>\\n<li>Tweak: Added icons to menu items in Mega Menu widget (<a href=\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/21602\\">#21602<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility to Toggle Button in WordPress Menu widget (<a href=\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/2348\\">#2348<\\/a>)<\\/li>\\n<li>Tweak: Added ''Active item state'' to top-level menu items for anchor links in the Menu widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Loop Carousel widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Slides widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Media, Testimonial and Reviews Carousel widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to Table of Content widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Search Form widget<\\/li>\\n<li>Tweak: Added accessibility to images in Slides widget<\\/li>\\n<li>Tweak: Added accessibility to images in Call To Action widget<\\/li>\\n<li>Tweak: Added accessibility to images in Media Carousel widget<\\/li>\\n<li>Tweak: Added accessibility to images in Gallery widget<\\/li>\\n<li>Tweak: Added Lazy Load support for avatar image in Post Info widget<\\/li>\\n<li>Tweak: Added Lazy Load support to various Elementor Editor and Admin images<\\/li>\\n<li>Tweak: Added Lazy Load support for author image in Author Box widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Price List widget<\\/li>\\n<li>Fix: Content width is affected by the widget''s width when Content Width is set to Fit to Content in Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21842\\">#21842<\\/a>)<\\/li>\\n<li>Fix: Empty value on Rows field causes an error in Products widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21451\\">#21451<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.2 - 2023-04-09<\\/h4>\\n<ul>\\n<li>Fix: Mini cart template appears as empty in various WordPress themes (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21836\\">#21836<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.1 - 2023-04-02<\\/h4>\\n<ul>\\n<li>Fix: Default background colors are presented as transparent in Popup (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21824\\">#21824<\\/a>)<\\/li>\\n<li>Fix: Reverted the tweak of Form Submissions feature merged to the version (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21821\\">#21821<\\/a>)<\\/li>\\n<li>Fix: Dropdown area is not closing when hovering outside of the content area in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.12.0 - 2023-03-29<\\/h4>\\n<ul>\\n<li>New: Introducing the Mega Menu with the new Menu widget - empowers you to achieve a much higher level of menu design, customization, and creativity<\\/li>\\n<li>New: Diversify your design with a Loop Alternate template - apply another template within your Loop Grid for design creativity<\\/li>\\n<li>New: Kickstart your workflow with predesigned Loop container-based templates<\\/li>\\n<li>Tweak: Added custom icon controls to various locations in Menu Cart widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13678\\">#13678<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17941\\">#17941<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19295\\">#19295<\\/a>)<\\/li>\\n<li>Tweak: Added a spacing control between navigation and slides in the Loop Carousel<\\/li>\\n<li>Tweak: Added responsive control to the ''Gap between slides'' control in the Loop Carousel<\\/li>\\n<li>Tweak: Added Custom CSS section in Loop Item template<\\/li>\\n<li>Tweak: Added an Article class metadata in Loop Item template<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in CTA widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in Flipbox widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added additional size units and custom units in all elements<\\/li>\\n<li>Tweak: Changed Nav Menu widget name to WordPress Menu widget<\\/li>\\n<li>Tweak: Added &quot;Form Validation&quot; control to Form widget<\\/li>\\n<li>Tweak: Updated custom messages in the Form widget<\\/li>\\n<li>Tweak: Improved accessibility in various elements in Gallery widget<\\/li>\\n<li>Tweak: Form Submissions feature merged to version<\\/li>\\n<li>Tweak: Loop feature promoted to Stable status<\\/li>\\n<li>Tweak: Page Transitions feature promoted to Stable status<\\/li>\\n<li>Tweak: Improved accessibility in filter bar in Gallery widget<\\/li>\\n<li>Tweak: Remove unused <code>aspect-ratio-*<\\/code> CSS classes<\\/li>\\n<li>Fix: Not all active breakpoints appear under &quot;Advanced Rules&quot; in popup publish settings (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17020\\">#17020<\\/a>)<\\/li>\\n<li>Fix: Dynamic background image and video is not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.11.7 - 2023-03-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in WooCommerce components<\\/li>\\n<\\/ul>\\n<h4>3.11.6 - 2023-03-14<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in Author Box and Countdown widgets<\\/li>\\n<\\/ul>\\n<h4>3.11.5 - 2023-03-12<\\/h4>\\n<ul>\\n<li>Fix: Hamburger Menu Toggle not showing if breakpoint is set to Tablet Extra in Nav Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21003\\">#21003<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.4 - 2023-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Prevented SVG file upload for better security enforcement in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.11.3 - 2023-02-26<\\/h4>\\n<ul>\\n<li>Fix: Error message appears when submitting a form placed below Loop Grid and Loop Carousel widgets (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21432\\">#21432<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x compatibility issues in various places<\\/li>\\n<\\/ul>\\n<h4>3.11.2 - 2023-02-22<\\/h4>\\n<ul>\\n<li>Fix: Save &amp; Back handle becomes inaccessible in various scenarios cases in Loop Carousel widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21316\\">#21316<\\/a>)<\\/li>\\n<li>Fix: Can''t edit page when using ''Content Tabs'' and ''Section'' options in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.11.1 - 2023-02-15<\\/h4>\\n<ul>\\n<li>Fix: Featured Image dynamic tag is not working in Background images (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21313\\">#21313<\\/a>)<\\/li>\\n<li>Fix: Time zone is not correct in Countdown widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17485\\">#17485<\\/a>)<\\/li>\\n<li>Fix: File upload field is not working in Form widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21341\\">#21341<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working in various widgets (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21314\\">#21314<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.0 - 2023-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Carousel widget - Create powerful &amp; repeating loop templates and populate each one with dynamic content (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\">#219<\\/a>)<\\/li>\\n<li>New: Added Date and Time Range option to Advanced Rules in Popup<\\/li>\\n<li>Tweak: Improved accessibility when opening and closing a popup (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9788\\">#9788<\\/a>)<\\/li>\\n<li>Tweak: Improved accessibility of full-screen mode in Search Form widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19907\\">#19907<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility support to Flip Box widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5861\\">#5861<\\/a>)<\\/li>\\n<li>Tweak: Add <code>aria-label<\\/code> to read more link in Posts widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13784\\">#13784<\\/a>)<\\/li>\\n<li>Tweak: Use <code>aspect-ratio<\\/code> property instead of CSS trick in Media Carousel widget<\\/li>\\n<li>Tweak: Updated translation string in Stripe widget<\\/li>\\n<li>Fix: Masonry and Columns controls are not working as expected with responsive in Posts and Loop Grid widgets (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20670\\">#20670<\\/a>)<\\/li>\\n<li>Fix: Invalid attributes names in Nav Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17400\\">#17400<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working as expected in various widgets<\\/li>\\n<li>Fix: Form fields order is not presented correctly when exported to CSV in Form Submissions<\\/li>\\n<li>Fix: Dynamic background image and video are not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.10.3 - 2023-01-29<\\/h4>\\n<ul>\\n<li>Tweak: Added introduction video to loop item information modal in Theme Builder<\\/li>\\n<li>Fix: PHP 8.x throws errors and notices in some cases (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21087\\">#21087<\\/a>)<\\/li>\\n<li>Fix: Infinite Scroll and Load on click pagination are not working as expected in Archive template<\\/li>\\n<li>Fix: Show row even when values do not exist in Form Submissions<\\/li>\\n<\\/ul>\\n<h4>3.10.2 - 2023-01-17<\\/h4>\\n<ul>\\n<li>Fix: Updated compatibility tag for Elementor v3.10<\\/li>\\n<\\/ul>\\n<h4>3.10.1 - 2023-01-09<\\/h4>\\n<p>Fix: Preview Could not be loaded error message appears on pages containing the Loop Grid in a header or footer templates<\\/p>\\n<h4>3.10.0 - 2023-01-09<\\/h4>\\n<ul>\\n<li>New: Added new dynamic tag for due date in Countdown widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7737\\">#7737<\\/a>)<\\/li>\\n<li>Tweak: Added <code>modified<\\/code> and <code>comment_count<\\/code> to Order By in posts query control (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11159\\">#11159<\\/a>)<\\/li>\\n<li>Tweak: Replaced <code>footer<\\/code> tag in Blockquote and Comments widgets for better semantics<\\/li>\\n<li>Fix: Compatibility issue in Imagify Media Library filters due to <code>_elementor_is_screenshot<\\/code> meta filter (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19988\\">#19988<\\/a>)<\\/li>\\n<li>Fix: Hotspot Widget label icon height issues when Inline Font Icons experiment is active<\\/li>\\n<li>Fix: Editing glitch when using two loop grid widgets on the same page with the same loop item template<\\/li>\\n<li>Fix: Equal height is not working when using sections in Loop Grid widget<\\/li>\\n<li>Fix: Large amount of menu items are not appearing correctly on a mobile device in Nav Menu widget<\\/li>\\n<li>Fix: Featured Image does not change dynamically when using infinite\\/click pagination in Loop Grid widget<\\/li>\\n<li>Fix: Removed action call of non-existent <code>display_empty_cart_template()<\\/code> method in Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.9.2 - 2022-12-21<\\/h4>\\n<ul>\\n<li>Fix: JS events do not trigger in Popups (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20708\\">#20708<\\/a>)<\\/li>\\n<li>Fix: PHP Errors appear when not using the toggle menu in Nav Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18636\\">#18636<\\/a>)<\\/li>\\n<li>Fix: Popups'' backgrounds disappear when using Lazy Load Background Images experiment<\\/li>\\n<\\/ul>\\n<h4>3.9.1 - 2022-12-14<\\/h4>\\n<ul>\\n<li>Fix: WooCommerce Product Gallery dynamic tag is not working in Basic Gallery, Gallery and Image Carousel widgets (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20678\\">#20678<\\/a>)<\\/li>\\n<li>Fix: Hide Empty option is not working in Menu Cart widget<\\/li>\\n<li>Fix: The Stripe Button widget doesn''t work in Templates<\\/li>\\n<\\/ul>\\n<h4>3.9.0 - 2022-12-06<\\/h4>\\n<ul>\\n<li>New: Added support for WooCommerce to Loop Builder (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20020\\">#20020<\\/a>)<\\/li>\\n<li>Tweak: Added more options to ''Show up to X times'' advanced rule in Popups (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8187\\">#8187<\\/a>)<\\/li>\\n<li>Tweak: Allow saving and reloading a page while editing in-place loop item template (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19882\\">#19882<\\/a>)<\\/li>\\n<li>Tweak: Added <code>$location param<\\/code> to <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> hook (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18453\\">#18453<\\/a>)<\\/li>\\n<li>Tweak: Removed redundant labels from group controls (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11666\\">#11666<\\/a>)<\\/li>\\n<li>Tweak: Added support to use sections and columns as the layout structure of a Loop item template<\\/li>\\n<li>Tweak: Disabled movement when a repeater item is in focus in edit mode<\\/li>\\n<li>Tweak: Upgrade the autoprefixer package to better minify CSS files<\\/li>\\n<li>Tweak: Removed duplicate SQL queries on every page for better performance<\\/li>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Added more units options to Border Width control in various elements<\\/li>\\n<li>Tweak: Added <code>em<\\/code> units to Border Radius control in various elements<\\/li>\\n<li>Tweak: Added ''Equal height'' functionality to Loop Grid widget<\\/li>\\n<li>Fix: Issue with Related Products widget and WooCommerce Pixel Manager plugin (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16934\\">#16934<\\/a>)<\\/li>\\n<li>Fix: My Account widget gets hidden when using a single page template with post content (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19627\\">#19627<\\/a>)<\\/li>\\n<li>Fix: Cart is not updated when cache enabled in Menu Cart widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19312\\">#19312<\\/a>)<\\/li>\\n<li>Fix: Entrance animations are not working as expected with Infinite Loop and Load on CLick pagination in Loop Grid widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20293\\">#20293<\\/a>)<\\/li>\\n<li>Fix: Loading page issues in Form Submissions screen (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19973\\">#19973<\\/a>)<\\/li>\\n<li>Fix: Recently Edited date and time not working as expected in Elementor Overview plugin in WordPress dashboard (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17966\\">#17966<\\/a>)<\\/li>\\n<li>Fix: Recurring license mismatch error message when using translators plugins<\\/li>\\n<li>Fix: Submenu items triggers page transition instead of opening in Nav Menu widget<\\/li>\\n<li>Fix: Query values of Posts widget are not imported correctly when importing a Kit<\\/li>\\n<li>Fix: Loop items are exceeding the widget boundaries in Loop Grid widget<\\/li>\\n<li>Fix: Order by option is not working as expected when choosing Upsells, Cross-Sells and Related Products query in Products widget<\\/li>\\n<li>Fix: Various widgets disappear in certain scenarios when choosing direction Row or Column in Container<\\/li>\\n<\\/ul>\\n<h4>3.8.2 - 2022-11-20<\\/h4>\\n<ul>\\n<li>Fix: Z-index issues when applying sticky to Container<\\/li>\\n<li>Fix: Error message appears on front with Editor and Shop Manager roles when using the Loop Builder widget<\\/li>\\n<\\/ul>\\n<h4>3.8.1 - 2022-11-06<\\/h4>\\n<ul>\\n<li>Fix: Sticky inner section is not staying in the column when applying sticky option in Sections (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20203\\">#20203<\\/a>)<\\/li>\\n<li>Fix: Post Title widget located in a loop item template disappears when enabling the hide title option inside page settings (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20207\\">#20207<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20255\\">#20255<\\/a>)<\\/li>\\n<li>Fix: ACF Dynamic data not rendering correctly in various scenarios (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20235\\">#20235<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20258\\">#20258<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20277\\">#20277<\\/a>)<\\/li>\\n<li>Fix: Z-index issues when applying sticky to Container (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20227\\">#20227<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.8.0 - 2022-10-30<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Builder as a beta status experiment - Create powerful &amp; repeating loop templates and populate each one with dynamic content and design flexibility (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4440\\">#4440<\\/a>)<\\/li>\\n<li>Tweak: Add <code>wp_body_open()<\\/code> to header in Header template (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11562\\">#11562<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15828\\">#15828<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13089\\">#13089<\\/a>)<\\/li>\\n<li>Tweak: Added support border-radius option to the Code Highlight widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14316\\">#14316<\\/a>)<\\/li>\\n<li>Tweak: Import\\/Export CLI and UI mechanisms were merged into a unified service<\\/li>\\n<li>Tweak: User with no permission to Notes cannot be mentioned in a note<\\/li>\\n<li>Tweak: User with no permission to view a post cannot be mentioned in a note<\\/li>\\n<li>Tweak: Notes was added to the right click context-menu<\\/li>\\n<li>Tweak: Notes panel can be resizable<\\/li>\\n<li>Tweak: Notes panel can be dragged outside of the canvas in responsive mode in the editor<\\/li>\\n<li>Tweak: Updated form validation messages translation strings in Form widget<\\/li>\\n<li>Tweak: Updated translators comments<\\/li>\\n<li>Tweak: Theme Builder logo and Title should be clickable<\\/li>\\n<li>Tweak: Reduced API requests and DB calls on non-write setup<\\/li>\\n<li>Tweak: Added media queries to the Table of Contents widget<\\/li>\\n<li>Fix: Sticky option is not working as expected in various scenarios in Container (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\">#18357<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19540\\">#19540<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19618\\">#19618<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19777\\">#19777<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19827\\">#19827<\\/a>)<\\/li>\\n<li>Fix: Mixed Content errors on HTTPS in Video Playlist Widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18895\\">#18895<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18945\\">#18945<\\/a>)<\\/li>\\n<li>Fix: Note''s timestamp is being updated according to the last activity in Notes (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19123\\">#19123<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in Nav Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17582\\">#17582<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in pagination in Posts widget<\\/li>\\n<li>Fix: Share buttons is accessible with keyboard but not clickable<\\/li>\\n<li>Fix: Sub-items icons style is missing in preview with Inline Font Icons experiment in Nav Menu widget<\\/li>\\n<li>Fix: Quotes are appearing as HTML when editing a note in Notes<\\/li>\\n<li>Fix: Label''s Icon height increases when Inline Font Icons experiment is active in Hotspot Widget<\\/li>\\n<li>Fix: Sub conditions of templates are not overridden when importing a Kit<\\/li>\\n<li>Fix: X\\/Y Anchor Point controls were not visible for Scale and Rotate effects<\\/li>\\n<li>Fix: PHP warning notice appears in some situations when using motion effects<\\/li>\\n<\\/ul>\\n<h4>3.7.7 - 2022-09-20<\\/h4>\\n<ul>\\n<li>Fix: Default Flex Grow affects the layout when the container is set to direction Column in various widgets<\\/li>\\n<\\/ul>\\n<h4>3.7.6 - 2022-09-14<\\/h4>\\n<ul>\\n<li>Fix: Submissions menu item appears at the bottom of Elementor section in WordPress dashboard<\\/li>\\n<\\/ul>\\n<h4>3.7.5 - 2022-08-31<\\/h4>\\n<ul>\\n<li>Fix: Error message appears on front if WooCommerce is activated (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19553\\">#19553<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.7.4 - 2022-08-29<\\/h4>\\n<ul>\\n<li>Tweak: PHP 5.6 Is deprecated<\\/li>\\n<li>Fix: Triangle icon is not being displayed in the Select field when Inline Font Icons Experiment is active in Form widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18598\\">#18598<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19495\\">#19495<\\/a>)<\\/li>\\n<li>Fix: The page jumps or flickers to the video playlist on page reload in Video Playlist Widget<\\/li>\\n<\\/ul>\\n<h4>3.7.3 - 2022-07-31<\\/h4>\\n<ul>\\n<li>Tweak: Improved license mechanism for correct validation<\\/li>\\n<li>Fix: Sticky option causes unexpected results when using the Container (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\">#18357<\\/a>)<\\/li>\\n<li>Fix: Price list, Portfolio, Flip Box and Gallery widgets disappear when the direction is set to column in Container (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18880\\">#18880<\\/a>)<\\/li>\\n<li>Fix: Quotes character is showing up as <code>&amp;quot;<\\/code> when editing a note in Notes<\\/li>\\n<\\/ul>\\n<h4>3.7.2 - 2022-06-15<\\/h4>\\n<ul>\\n<li>Tweak: Applied optimized file handling in various modules<\\/li>\\n<li>Fix: Related posts query options are missing in Posts widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18633\\">#18633<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18641\\">#18641<\\/a>)<\\/li>\\n<li>Fix: Menu Cart Icon is not being displayed on all browsers when Inline Font Icons Experiment is active (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17705\\">#17705<\\/a>)<\\/li>\\n<li>Fix: Gallery widget is not working as expected in Container element (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18408\\">#18408<\\/a>)<\\/li>\\n<li>Fix: Flip box is not visible when the direction is set to Row in Container element (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18413\\">#18413<\\/a>)<\\/li>\\n<li>Fix: Portfolio widget is not visible when dragged into &quot;Row&quot; direction Container element (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17653\\">#17653<\\/a>)<\\/li>\\n<li>Fix: Menu cart is open automatically in Cart widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18629\\">#18629<\\/a>)<\\/li>\\n<li>Fix: PHP error is being shown the license is expired in License screen<\\/li>\\n<\\/ul>\\n<h4>3.7.1 - 2022-05-16<\\/h4>\\n<ul>\\n<li>Fix: Notes icon appears as an empty square in admin top bar for users with permissions lower than Editor<\\/li>\\n<li>Fix: Notes experiment causes a PHP fatal error on some cases<\\/li>\\n<li>Fix: UI glitches in Notes feature<\\/li>\\n<\\/ul>\\n<h4>3.7.0 - 2022-05-10<\\/h4>\\n<ul>\\n<li>New: Introducing Notes - Work collaboratively directly within Elementor<\\/li>\\n<li>New: Stripe Button widget - Collect Stripe payments directly from your site (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14748\\">#14748<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Add to Cart dynamic tag - add products to cart from every widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10607\\">#10607<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11801\\">#11801<\\/a>)<\\/li>\\n<li>New: Added WooCommerce Product Content dynamic tag (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16367\\">#16367<\\/a>)<\\/li>\\n<li>Tweak: Added Related, Upsells and Cross-Sells query sources to Products widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8071\\">#8071<\\/a>)<\\/li>\\n<li>Tweak: Added custom icon control to Nav Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18007\\">#18007<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14357\\">#14357<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13151\\">#13151<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11361\\">#11361<\\/a>)<\\/li>\\n<li>Tweak: Added an option to minimize on Desktop device in Table of Contents widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9933\\">#9933<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Share Buttons widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10729\\">#10729<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Media Carousel widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10314\\">#10314<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Form widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\">#6327<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6691\\">#6691<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11774\\">#11774<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9051\\">#9051<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Posts widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\">#6327<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Slides widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5760\\">#5760<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9774\\">#9774<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom option in various Product widgets (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10263\\">#10263<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom control in Posts and Archive Posts widgets<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added percentage unit to padding control in Additional Information customize section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added quick link to create new theme parts directly from the Finder<\\/li>\\n<li>Tweak: Added the option to add a custom template to Dashboard screen in My Account widget<\\/li>\\n<li>Tweak: Added spacing control to view cart button in various product widgets<\\/li>\\n<li>Tweak: Added the option to add a custom template to empty cart state in Cart widget<\\/li>\\n<li>Tweak: Adjusted the layout of the Payment Methods screen in the My Account widget<\\/li>\\n<li>Tweak: Added lazy load option to Media Carousel, Reviews and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added Site Identity quick link to Logo widget<\\/li>\\n<li>Tweak: Added Site Identity quick link to Site Title widget<\\/li>\\n<li>Tweak: Created an attribute that allows disabling page transition for specific links<\\/li>\\n<li>Tweak: Added dynamic tag controls to Gallery widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Countdown widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Portfolio widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Price Table widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Login widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Blockquote widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Facebook Comments widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post Navigation widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Search Form widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Author Box widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post info widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Posts widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Product Meta widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Products widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Sitemap widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Reviews widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Code Highlight widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to PayPal Button widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added missing PHP documentation to hooks<\\/li>\\n<li>Fix: Scrolling glitches on mobile devices when Sticky Effect is enabled (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17767\\">#17767<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18330\\">#18330<\\/a>)<\\/li>\\n<li>Fix: Only 1st honypot field is validated when using multiple honeypot fields in Forms widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18136\\">#18136<\\/a>)<\\/li>\\n<li>Fix: Checkout button background color is not working as expected in Cart widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18289\\">#18289<\\/a>)<\\/li>\\n<li>Fix: Button labels are not accessible for screen readers in Share buttons widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\">#8615<\\/a>)<\\/li>\\n<li>Fix: Downloads titles controls are not working in responsive in WooCommerce Purchase Summary widget<\\/li>\\n<li>Fix: Excerpt length is not working as expected in Posts and Archive Posts widgets<\\/li>\\n<li>Fix: Titles &amp; Totals weight is not working in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Product image is not appearing on Single Product Page on template load<\\/li>\\n<li>Fix: Additional Information title not editable in some scenarios in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in Cart widget<\\/li>\\n<li>Fix: UI Glitch in Masonry control in Portfolio widget<\\/li>\\n<li>Fix: Custom breakpoints experiment didn''t work on Single post and page templates<\\/li>\\n<li>Fix: Testimonial carousel &amp; Reviews widgets disregards the <code>alt<\\/code> attribute<\\/li>\\n<li>Fix: Playlist widget deeplink didn''t send user directly to the widget in the page<\\/li>\\n<li>Fix: Masonry option causes the images to disappear in the Editor in Posts widget<\\/li>\\n<li>Fix: Scrollbar appears after clicking on the dropdown toggle in Nav Menu widget<\\/li>\\n<li>Fix: Custom icons disappear on frontend if the pack name contains numbers<\\/li>\\n<li>Fix: Custom Font disappears if the name contains only numbers<\\/li>\\n<li>Fix: <code>end-section()<\\/code> is missing from Progress Tracker and Facebook Embed widgets<\\/li>\\n<li>Tweak: Added a filter for conditions cache query in Theme Builder<\\/li>\\n<li>Fix: Customizations lost on Ajax refresh in WooCommerce Cart widget<\\/li>\\n<li>Fix: Hello theme Header and Footer experiment is not working when WooCommerce plugin is active<\\/li>\\n<li>Fix: Color controls are not working as expected in Checkout widget<\\/li>\\n<li>Fix: Color controls are not working as expected in My Account widget<\\/li>\\n<li>Fix: Empty state widget preview in the editor is disappearing in various widgets<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in WooCommerce Cart widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\"https:\\/\\/developers.elementor.com\\/v3-7-planned-deprecations\\/\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.6.5 - 2022-04-12<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issues for several widgets in iOS 14 and macOS 13 devices (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18090\\">#18090<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15910\\">#15910<\\/a>)<\\/li>\\n<li>Fix: Button Alignment doesn''t work in Custom Add To Cart widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17810\\">#17810<\\/a>)<\\/li>\\n<li>Fix: PHP warning is thrown in some cases in PayPal button widget<\\/li>\\n<li>Fix: PHP 8.1 throws errors and notices in some cases<\\/li>\\n<li>Fix: PHP notice was thrown when Kit Import process initiated without display conditions<\\/li>\\n<li>Fix: Create Account button always opens on the Sign Up screen even if the user has an account in Onboarding process<\\/li>\\n<\\/ul>\\n<h4>3.6.4 - 2022-03-15<\\/h4>\\n<ul>\\n<li>Tweak: Kit import dynamic reference support for templates and dynamic tags<\\/li>\\n<li>Tweak: Updated tested up to version tag to <code>3.6.0<\\/code><\\/li>\\n<li>Fix: Sticky caused scrolling issues after clicking an element that expands the page height (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17821\\">#17821<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17839\\">#17839<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18069\\">#18069<\\/a>)<\\/li>\\n<li>Fix: When saving Global widget JS error is being thrown and editor fails to load (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17954\\">#17954<\\/a>)<\\/li>\\n<li>Fix: Motion effects are missing from Background section under Style tab in Container element (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18063\\">#18063<\\/a>)<\\/li>\\n<li>Fix: Imported Kit doesn''t appear in the theme builder after successful import in some cases<\\/li>\\n<li>Fix: Added future Pro support to fix the Cart icon that shifted aside in Menu cart widget<\\/li>\\n<\\/ul>\\n<h4>3.6.3 - 2022-02-28<\\/h4>\\n<ul>\\n<li>Fix: Custom Code display conditions modal is not working (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17865\\">#17865<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17942\\">#17942<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17994\\">#17994<\\/a>)<\\/li>\\n<li>Fix: Share buttons are not accessible for keyboard navigation (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\">#8615<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.6.2 - 2022-02-14<\\/h4>\\n<ul>\\n<li>Fix: Auto updates mechanism is not working as expected (this version might be also installed automatically)<\\/li>\\n<\\/ul>\\n<h4>3.6.1 - 2022-02-09<\\/h4>\\n<ul>\\n<li>Tweak: Allow connecting via generic source for future feature support<\\/li>\\n<li>Fix: Custom Code doesn''t work when WooCommerce is active (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17675\\">#17675<\\/a>)<\\/li>\\n<li>Fix: Content animation didn''t work when Improved asset loading experiment is active Slides widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17055\\">#17055<\\/a>)<\\/li>\\n<li>Fix: PHP warning appears some times when trying to force-check for available updates<\\/li>\\n<li>Fix: Page transitions are being triggered when not needed<\\/li>\\n<li>Fix: Text alignment on Tablet responsive device affects base device in Testimonial Carousel widget<\\/li>\\n<li>Fix: Harden Submissions feature to prevent potential security issues<\\/li>\\n<li>Fix: Page Transitions Icon option Preloader doesn''t work on frontend<\\/li>\\n<\\/ul>\\n<h4>3.6.0 - 2022-01-31<\\/h4>\\n<ul>\\n<li>New: WooCommerce Purchase Summary widget - Fully customize the content and style of your order summary page (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5756\\">#5756<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15862\\">#15862<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices styling on Site Settings - Customize the appearance of WooCommerce notices (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14570\\">#14570<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15896\\">#15896<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices widget - Set the position of WooCommerce notices on your shop pages (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8124\\">#8124<\\/a>)<\\/li>\\n<li>Experiment: Page Transitions - Customize the page loading experience, and increase brand recognition (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10576\\">#10576<\\/a>)<\\/li>\\n<li>Tweak: Added WooCommerce &amp; Theme Elements widgets to Improved CSS Loading experiment to save up 126KB per page load (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17412\\">#17412<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17337\\">#17337<\\/a>)<\\/li>\\n<li>Tweak: Added new layout options in WooCommerce Add To Cart and WooCommerce Custom Add To Cart widgets (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5437\\">#5437<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10617\\">#10617<\\/a>)<\\/li>\\n<li>Tweak: Added Stroke functionality for typography control in various widgets (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11158\\">#11158<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor-section-wrap<\\/code> by adding it to the Optimized DOM Output experiment (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16950\\">#16950<\\/a>)<\\/li>\\n<li>Tweak: Added style controls for variations in WooCommerce Menu Cart widget<\\/li>\\n<li>Tweak: Added color control to navigation dots in Media Carousel, Reviews, and Slides widgets<\\/li>\\n<li>Tweak: Disabled Vimeo autoplay on edit mode when getting video data in Video Playlist widget<\\/li>\\n<li>Tweak: Added notice about Facebook''s new EU consent policy in Facebook Button, Facebook Comments, Facebook Embed, and Facebook Page widgets<\\/li>\\n<li>Tweak: Refactor string translation calls to use native WP translation methods<\\/li>\\n<li>Tweak: Convert <code>home_url<\\/code> license API call to <code>get_site_url<\\/code> for better compatibility<\\/li>\\n<li>Tweak: Promoted Default to New Theme Builder and Scroll Snap experiments to Stable status in Experiments screen<\\/li>\\n<li>Tweak: Scroll Snap experiment set to active by default for all websites in Experiments screen<\\/li>\\n<li>Tweak: Scrolling Effects in Header and Section backgrounds are not working as expected when effects are relative to the entire page<\\/li>\\n<li>Tweak: Added &quot;Auto Updates&quot; capability to Pro versions<\\/li>\\n<li>Tweak: Removed sequenced animation hover effect option from Classic skin in Call to Action widget<\\/li>\\n<li>Tweak: Added &quot;Excerpt Length&quot; control in Post Excerpt widget<\\/li>\\n<li>Tweak: Deleted deprecated methods from Query Control module<\\/li>\\n<li>Tweak: Adjusted Inline-CSS Experiment to work with Additional Custom Breakpoints experiment<\\/li>\\n<li>Fix: Automatically open cart functionality didn''t work in product page in WooCommerce Menu Cart widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5921\\">#5921<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16276\\">#16276<\\/a>,<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16879\\">#16879<\\/a>)<\\/li>\\n<li>Fix: Buttons are not visible when there are too many products in the cart in WooCommerce Menu Cart widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\">#16221<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17283\\">#17283<\\/a>,<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\">#16333<\\/a>,<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13005\\">#13005<\\/a>)<\\/li>\\n<li>Fix: Mini cart modal z-index is too low in WooCommerce Menu Cart widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\">#16333<\\/a>)<\\/li>\\n<li>Fix: Side cart buttons are not visible at first glance on mobile in WooCommerce Menu Cart widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\">#16221<\\/a>)<\\/li>\\n<li>Fix: Read More field recognizes inline HTML elements as plain text in Posts and Archive Posts widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16985\\">#16985<\\/a>)<\\/li>\\n<li>Fix: Load More functionality caused JS error console in Posts widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17036\\">#17036<\\/a>)<\\/li>\\n<li>Fix: Autoplay is not working as expected when the lazy load is active in Video Playlist widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15304\\">#15304<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16274\\">#16274<\\/a>)<\\/li>\\n<li>Fix: Right navigation area wasn''t 100% clickable in Post Navigation widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14252\\">#14252<\\/a>)<\\/li>\\n<li>Fix: Posts duplicate when there are two Posts widgets inside a page using pagination functionality (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17056\\">#17056<\\/a>)<\\/li>\\n<li>Fix: Global widget changes are not reflected on frontend (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16820\\">#16820<\\/a>)<\\/li>\\n<li>Fix: JS Error console message when using the Load More functionality and Post Per Page option in Posts widget<\\/li>\\n<li>Fix: Heading styling is not being loaded when Inline CSS experiment is active in Post and Page Title widgets<\\/li>\\n<li>Fix: Sticky offset not working as expected when changing device mode on the browser<\\/li>\\n<li>Fix: Scroll Snap functionality wasn''t applied on Templates and Archives<\\/li>\\n<li>Fix: Toggle icon color didn''t work on hover state when Inline Font Icons experiment is activated in Nav Menu widget<\\/li>\\n<li>Fix: Variations style controls are not working as expected in WooCommerce Add to Cart widget<\\/li>\\n<li>Fix: Display conditions module is not working as expected when using the new Theme Builder UI<\\/li>\\n<li>Fix: Edit header handles <code>z-index<\\/code> issues in Header document<\\/li>\\n<li>Fix: Panel icons UI glitch in Call To Action widget<\\/li>\\n<li>Fix: WordPress 5.9 <code>WP_User_query<\\/code> <code>who<\\/code> argument deprecation adjustments<\\/li>\\n<\\/ul>\\n<h4>3.5.2 - 2021-11-28<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted license mechanism to support trial period<\\/li>\\n<li>Fix: Updates made to Global Widgets do not reflect accordingly to linked widgets (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815\\">#16815<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle button doesn''t change to \\u201cclose\\u201d when menu is collapsed in Nav Menu widget when Inline Font Awesome experiment is active<\\/li>\\n<li>Fix: Global Widget cannot be unlinked<\\/li>\\n<\\/ul>\\n<h4>3.5.1 - 2021-11-10<\\/h4>\\n<ul>\\n<li>Fix: Inline HTML elements appear as plain text in Animated Headline widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16816\\">#16816<\\/a>)<\\/li>\\n<li>Fix: Dropdown items inherited values from Main Menu space between control in Nav Menu widget (<a href=\\"(https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815)\\">#16815<\\/a><\\/li>\\n<li>Fix: Order Summary titles style controls not applying on various devices in Cart widget<\\/li>\\n<li>Fix: Panel &quot;Need Help&quot; link is not correct in WooCommerce section in Site Settings<\\/li>\\n<\\/ul>\\n<h4>3.5.0 - 2021-11-01<\\/h4>\\n<ul>\\n<li>New: WooCommerce Checkout widget - Fully customize the content and style of your checkout page (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\">#15282<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15990\\">#15990<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\">#11014<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\">#13218<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce Cart widget - Style your cart page the way you want with design flexibility (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\">#15282<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\">#11014<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\">#13218<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce My Account widget - Create a custom design for your my account pages (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\">#11014<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\">#5383<\\/a>)<\\/li>\\n<li>New: Progress Tracker widget - Motivate your customers to keep reading your site content (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16576\\">#16576<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Site Settings - Set your store pages within Elementor<\\/li>\\n<li>Experiment: Scroll Snap - Set the scene of every scroll (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10752\\">#10752<\\/a>)<\\/li>\\n<li>Tweak: Changed infrastructure to prevent rendering bugs in Global Widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16354\\">#16354<\\/a>)<\\/li>\\n<li>Tweak: Added the option to open submission in a new tab in Form Submissions (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14967\\">#14967<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive controls in Posts widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1851\\">#1851<\\/a>)<\\/li>\\n<li>Tweak: Split Title and Price styling controls in Price List widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7688\\">#7688<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive capabilities to controls in Posts Archive widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Changed admin notice content when Pro installed without Core installed<\\/li>\\n<li>Tweak: Cleanup in <code>wp_options<\\/code> table<\\/li>\\n<li>Tweak: Changed Connect logic in Elementor top bar to simplify the connect process<\\/li>\\n<li>Tweak: Marked new Theme Builder as an Experiment and set to default for new sites<\\/li>\\n<li>Tweak: Enforced better security policies in various widgets and modules<\\/li>\\n<li>Tweak: Added load more button functionality to the Posts Archive widget<\\/li>\\n<li>Tweak: Renamed Elementor''s responsive SCSS variables<\\/li>\\n<li>Tweak: Added dividers to horizontal layout in Nav Menu widget<\\/li>\\n<li>Tweak: Removed Google+ social network from Share Buttons widget<\\/li>\\n<li>Tweak: Convert usage of old Responsive class to use the new Breakpoints Manager<\\/li>\\n<li>Fix: jQuery in Heading doesn''t work for not logged in users in Custom Code (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14515\\">#14515<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14266\\">#14266<\\/a>)<\\/li>\\n<li>Fix: Menu animation causing page horizontal scroll in Nav Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15184\\">#15184<\\/a>)<\\/li>\\n<li>Fix: Wrong function call in Table of Content &amp; Post Excerpt widgets (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16547\\">#16547<\\/a>)<\\/li>\\n<li>Fix: Slides to Scroll control can''t be set to Default if Widescreen mode has a value in Testimonial Carousel widget<\\/li>\\n<li>Fix: Sticky offset not working properly when changing device mode<\\/li>\\n<li>Fix: UTF character issues when exporting CSV file in Form Submissions<\\/li>\\n<li>Fix: Load More functionality doesn''t work when the Posts widget placed inside an Archive template<\\/li>\\n<li>Fix: UI glitches and editing issues in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.4.2 - 2021-10-12<\\/h4>\\n<ul>\\n<li>Fix: Icons color style conflicts when Font-Awesome Inline experiment is active in Share Buttons widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16435\\">#16435<\\/a>)<\\/li>\\n<li>Fix: Mini Cart hides page content when closed in Menu Cart widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16305\\">#16305<\\/a>)<\\/li>\\n<li>Fix: UI glitches in the Editor edit mode when inserting Post Content widget and Font-Awesome Inline experiment is active in Single Post template (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16358\\">#16358<\\/a>)<\\/li>\\n<li>Fix: Slides per view controls disappeared from multiple breakpoints in Testimonial Carousel<\\/li>\\n<li>Fix: Product variations UI glitch in Menu Cart widget<\\/li>\\n<li>Fix: Buttons UI glitch on Safari browser in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.1 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Fix: Sticky functionality is not working if the Additional Custom Breakpoints experiment is active (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16186\\">#16186<\\/a>)<\\/li>\\n<li>Fix: Slideshow skin UI glitch in Media Carousel widget<\\/li>\\n<li>Fix: Product price typography weight control is not working as expected in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.0 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Tweak: Added new Mini Cart layout type in Menu Cart widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11312\\">#11312<\\/a>)<\\/li>\\n<li>Tweak: Added styling options for Cart, Products, and Cart buttons in Menu Cart widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14952\\">#14952<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to open cart automatically when an item is added in Menu Cart widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14119\\">#14119<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to remove an item from cart without reloading the page with an AJAX request (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9531\\">#9531<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10875\\">#10875<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11309\\">#11309<\\/a>)<\\/li>\\n<li>Tweak: Added Load More AJAX functionality to Posts widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\">#12126<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\">#1284<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14557\\">#14557<\\/a>)<\\/li>\\n<li>Tweak: Added Vimeo support to the Video Playlist widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15319\\">#15319<\\/a>)<\\/li>\\n<li>Tweak: Improved asset loading performance by serving lighter JS files (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\">#8572<\\/a>)<\\/li>\\n<li>Tweak: Added query string to the URL only after the first video is played in Video Playlist widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15348\\">#15348<\\/a>)<\\/li>\\n<li>Tweak: Added various layout options with more responsive controls and cart structure options in Menu Cart widget<\\/li>\\n<li>Tweak: Added the option to open the menu cart by click or hover in Menu Cart widget<\\/li>\\n<li>Tweak: Added the ability to choose a specific product to draw data from in WooCommerce Dynamic tags<\\/li>\\n<li>Tweak: Removed auto-scroll to the widget location when arriving from external URL in Video Playlist widget<\\/li>\\n<li>Tweak: Removed the Video Playlist widget from the Experiments list<\\/li>\\n<li>Tweak: Added descriptive error messages for MailChimp action after submit and on form submit in Forms widget<\\/li>\\n<li>Tweak: Added tooltip trigger None and Hover for link in Hotspot widget<\\/li>\\n<li>Tweak: Added responsive controls to Offset and Effects Offset in Sticky options<\\/li>\\n<li>Tweak: Added responsive control to Alignment in Testimonial Carousel widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Added future compatibility to support better loading of <code>eicons<\\/code> font<\\/li>\\n<li>Tweak: Changed Rename Part title and button color in Theme Builder<\\/li>\\n<li>Fix: Products don''t appear on the cart while editing in Menu Cart widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15451\\">#15451<\\/a>)<\\/li>\\n<li>Fix: Videos always start muted in the Video Playlist widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15292\\">#15292<\\/a>)<\\/li>\\n<li>Fix: Unnecessary spacing if submenu indicator is set to None in Nav Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15365\\">#15365<\\/a>)<\\/li>\\n<li>Fix: MailChimp double opt-in feature doesn''t work in Forms widget<\\/li>\\n<li>Fix: Fetching MailChimp groups field blocks the loading of the rest of the fields in the Form widget<\\/li>\\n<li>Fix: Missing field IDs causes forms not to be sent in Forms widget<\\/li>\\n<li>Fix: Full Content Skin is not working properly when inserted twice on the same page in Posts widget<\\/li>\\n<li>Fix: Avoid Duplicates option doesn''t exclude manual selections in Posts widget<\\/li>\\n<li>Fix: Submenu indicator alignment issue in Nav menu widget<\\/li>\\n<li>Fix: Query control deprecated message appears when debug mode is defined<\\/li>\\n<li>Fix: Tweet Button icon incorrect color and size when the icon is rendered as SVG in Blockquote widget<\\/li>\\n<li>Fix: Video icon size is not changing on Active state in Video Playlist widget<\\/li>\\n<li>Fix: Header icon color is not working in Table Of Content widget<\\/li>\\n<li>Fix: Icons style glitches when Font Awesome Inline experiment is active in Video Playlist widget<\\/li>\\n<li>Fix: Bullet markers are not visible on preview mode when Font Awesome Inline experiment is active in Table of Content widget<\\/li>\\n<li>Fix: UI Glitch when Font-Awesome Inline experiment is active in Price Table widget<\\/li>\\n<li>Fix: Submenu Indicator appears larger when Font Awesome Inline experiment is active in Nav Menu widget<\\/li>\\n<li>Fix: Part name is deleted when clicking on the &quot;Change&quot; Button without changing the name in Theme Builder<\\/li>\\n<li>Fix: Redundant pagination queries in the Editor<\\/li>\\n<li>Deprecated: Remove all usages of <code>ElementorUtils::get_create_new_post_url()<\\/code><\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\"https:\\/\\/developers.elementor.com\\/v3-4-planned-deprecations\\/\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.3.8 - 2021-08-23<\\/h4>\\n<ul>\\n<li>Fix: Products grid width issue when adjusting columns and rows in Products widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16001\\">#16001<\\/a>)<\\/li>\\n<li>Fix: Font Awesome Inline experiment causes icons glitch in Price Table widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16045\\">#16045<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA v3 <code>z-index<\\/code> is lower than the Section''s background color<\\/li>\\n<li>Fix: Style missing when Font Awesome inline experiment is active in Post Info widget<\\/li>\\n<li>Fix: Font Awesome icons were not loaded in Post Info widget<\\/li>\\n<li>Fix: Zero character can''t be used as a placeholder in Number field in Form widget<\\/li>\\n<li>Fix: Carousels are not working properly in the Editor when Additional Custom Breakpoints experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.7 - 2021-08-15<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Additional Custom Breakpoints in Nav Menu widget<\\/li>\\n<li>Tweak: Added support for Additional Custom breakpoints in Motion Effects<\\/li>\\n<li>Fix: Columns didn''t respond to changes in Gallery widget if Additional Custom Breakpoints Experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.6 - 2021-08-10<\\/h4>\\n<ul>\\n<li>Tweak: Added support for future feature in Nav Menu widget<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Related widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Upsells widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Categories widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\">#15857<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.5 - 2021-08-01<\\/h4>\\n<ul>\\n<li>Fix: Responsive layout glitches in Products and Products Archive widgets (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15773\\">#15773<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA V3 integration conflict with required fields validation in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.3.4 - 2021-07-21<\\/h4>\\n<ul>\\n<li>Fix: Grid layout glitch in WooCommerce Products Archive widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15718\\">#15718<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.3 - 2021-07-20<\\/h4>\\n<ul>\\n<li>Tweak: Added a descriptive message in Collect Submissions action after submit<\\/li>\\n<li>Tweak: Added future compatibility for Additional Custom Breakpoints for Pro widgets<\\/li>\\n<li>Fix: Some widget style breaks when Improved CSS Loading Experiment is active in certain cases (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15632\\">#15632<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15683\\">#15683<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15660\\">#15660<\\/a>)<\\/li>\\n<li>Fix: Translation update keep appearing as available after install (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14297\\">#14297<\\/a>)<\\/li>\\n<li>Fix: Wrong default icon color when using Font Awesome icons as inline SVG in Call to Action widget<\\/li>\\n<\\/ul>\\n<h4>3.3.2 - 2021-07-13<\\/h4>\\n<ul>\\n<li>Tweak: Updated plugin description<\\/li>\\n<li>Fix: MailChimp tags in form widget replaced existing tags (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\">#11111<\\/a>)<\\/li>\\n<li>Fix: Clicking videos from the items list in edit mode doesn\\u2019t initiate videos properly<\\/li>\\n<li>Fix: User unauthorized message when activated but not connected in Kit Library<\\/li>\\n<li>Fix: Carousel widgets did not support additional custom breakpoint responsive values<\\/li>\\n<li>Fix: Tab border is overridden by the Section background color in Video Playlist widget<\\/li>\\n<li>Fix: Widgets style breaks when Improved CSS Load experiment is active in a Single Page template and Post Content widget<\\/li>\\n<\\/ul>\\n<h4>3.3.1 - 2021-06-20<\\/h4>\\n<ul>\\n<li>Tweak: Added support for more Theme Builder display conditions in Export \\/ Import experiment<\\/li>\\n<li>Tweak: Adjusted License page heading structure for future feature<\\/li>\\n<li>Tweak: Adjusted Font Awesome icon for allowing support for future feature<\\/li>\\n<li>Fix: <code>frontend.min.js<\\/code> file size increased in Elementor Pro 3.3.0 (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15278\\">#15278<\\/a>)<\\/li>\\n<li>Fix: Prevent conditions from being reset when object cache is enabled in site (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13299\\">#13299<\\/a>)<\\/li>\\n<li>Fix: Custom Code publish modal responsiveness issues (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14519\\">#14519<\\/a>)<\\/li>\\n<li>Fix: Populating fields with options programmatically doesn''t appear in Submissions screen (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10671\\">#10671<\\/a>)<\\/li>\\n<li>Fix: Large images are not shown on the Image Carousel widget when set via Toolset dynamic tag<\\/li>\\n<li>Fix: Enable inline editing to the inner content tabs in Video Playlist widget<\\/li>\\n<li>Fix: Clicking on the video list doesn''t play videos properly in Video Playlist widget<\\/li>\\n<li>Fix: Hide Play Icon control when Image overlay is toggled off in Video Playlist widget<\\/li>\\n<li>Fix: Removed extra space below the player when viewing from mobile view in Video Playlist widget<\\/li>\\n<li>Fix: Import button is not working properly in Theme Builder interface<\\/li>\\n<li>Fix: Preview Dynamic Content as control is not updating preview and throws an error in Popup Builder<\\/li>\\n<\\/ul>\\n<h4>3.3.0 - 2021-06-08<\\/h4>\\n<ul>\\n<li>New: Video Playlist widget - Add Engaging Video Content to Your Website (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11859\\">#11859<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7803\\">#7803<\\/a>)<\\/li>\\n<li>New: Hotspot widget - Create Interactive Images With Contextually Relevant Information (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7282\\">#7282<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2768\\">#2768<\\/a>)<\\/li>\\n<li>Tweak: Accessibility improvements for sub-menus in Nav Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13859\\">#13859<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13810\\">#13810<\\/a>)<\\/li>\\n<li>Tweak: MailChimp action after submit can now add new tags to existing subscribers in Forms widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\">#11111<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/forms\\/record\\/actions_before<\\/code> to filter the record before it sent to Actions After Submit in Forms widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14261\\">#14261<\\/a>)<\\/li>\\n<li>Tweak: Yoast SEO breadcrumbs widget can be used in Elementor without the need of enabling them in Yoast setting<\\/li>\\n<li>Tweak: Added future support for widgets CSS conditional loading (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10329\\">#10329<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14229\\">#14229<\\/a>)<\\/li>\\n<li>Tweak: Added future support for Sticky JS library conditional loading<\\/li>\\n<li>Tweak: Added future support for Import \\/ Export experiment<\\/li>\\n<li>Tweak: Preparations and fixes for Import Export Experiment in Pro version<\\/li>\\n<li>Tweak: Added gradient button capabilities to Login widget buttons<\\/li>\\n<li>Tweak: Added gradient button capabilities to Slides widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Price Table widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Flip Box widget button<\\/li>\\n<li>Tweak: Added Code Highlight widget Developers Documentation<\\/li>\\n<li>Tweak: Adjusted Submissions page for future updates<\\/li>\\n<li>Tweak: Added <code>em<\\/code> and <code>%<\\/code> units for padding control in Carousel widgets<\\/li>\\n<li>Tweak: Shorten currency name to currency symbol in PayPal button widget<\\/li>\\n<li>Fix: Custom Fonts URLs should be replaced when replace URL is triggered (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7376\\">#7376<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10382\\">#10382<\\/a>)<\\/li>\\n<li>Fix: The currency symbol size changed in the Price Table widget if enabling sale (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13519\\">#13519<\\/a>)<\\/li>\\n<li>Fix: Nav Menu widget is not loading Font Awesome submenu icons (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9907\\">#9907<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle is not working in Nav menu widget<\\/li>\\n<li>Fix: Activation bug for IDN domains<\\/li>\\n<li>Fix: Conditions modal responsive glitches in Custom Code<\\/li>\\n<li>Fix: Duplicated strings in Custom Code module<\\/li>\\n<li>Fix: Enable resize option for code input field in Custom Code<\\/li>\\n<li>Fix: \\u201cSave &amp; Close \\u201cbutton in Custom Code''s Conditions modal was not visible on small screen sizes<\\/li>\\n<li>Fix: Removing a column from a section in the navigator resulted in an empty section<\\/li>\\n<li>Fix: Recommend option is cut If the layout is not &quot;Standard&quot; in the Facebook Button widget<\\/li>\\n<li>Fix: Video item does not play without adding an image in Media Carousel widget<\\/li>\\n<li>Fix: <code>search-plus<\\/code> icon missing from panel in Media Carousel widget<\\/li>\\n<li>Fix: UI hover state glitch in Media Carousel widget<\\/li>\\n<li>Fix: PHP notice was thrown when trying to import a kit without overrideConditions parameter in Kit Import flow<\\/li>\\n<li>Fix: Templates conditions not imported if there are no conflicts in Import Export Experiment<\\/li>\\n<li>Fix: Non english values are not encoded properly on Submissions export<\\/li>\\n<li>Fix: Theme Builder import is not working properly<\\/li>\\n<li>Fix: UI glitch when no global widgets were found in Editor Panel<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\"https:\\/\\/developers.elementor.com\\/v3-3-planned-deprecations\\/\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.2.2 - 2021-05-05<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Expert tier templates in Templates Library<\\/li>\\n<li>Tweak: Updated compatibility tag to support Elementor v3.2.x<\\/li>\\n<li>Tweak: Added compatibility for future Library improvements<\\/li>\\n<li>Fix: Toolset image dynamic field is not working with Gallery widget<\\/li>\\n<\\/ul>\\n<h4>3.2.1 - 2021-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added strings context in PayPal button and Price Table widgets<\\/li>\\n<li>Tweak: Added support for future Import \\/ Export Kit feature<\\/li>\\n<li>Fix: Submissions with over than 191 characters weren''t indexed properly<\\/li>\\n<\\/ul>\\n<h4>3.2.0 - 2021-03-14<\\/h4>\\n<ul>\\n<li>New: PayPal Button widget - Collect PayPal payments directly from your site<\\/li>\\n<li>Experiment: Submissions - Save all of your form submissions in one place (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1686\\">#1686<\\/a>)<\\/li>\\n<li>Tweak: Added Stay In Column option to Inner Section element (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7956\\">#7956<\\/a>)<\\/li>\\n<li>Tweak: Adjusted ''Max Height'' control range in Table of Contents widget<\\/li>\\n<li>Tweak: Changed descriptive text in Create Custom Code screen<\\/li>\\n<li>Tweak: Added support for dynamic capabilities in Code Highlight widget<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>share-link<\\/code> library<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>dialog<\\/code> library in Popup<\\/li>\\n<li>Tweak: Allow overwriting the assets URL when using a mirror domain<\\/li>\\n<li>Fix: Animation was triggered multiple times when accessing the viewport in certain cases in Animated Headline widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13951\\">#13951<\\/a>)<\\/li>\\n<li>Fix: Location is not being updated after a Custom Code snippet is published (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13971\\">#13971<\\/a>)<\\/li>\\n<li>Fix: Custom Fonts CSS files were not updated after regenerating CSS files<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: Empty order buttons are displayed in Custom Fonts screen<\\/li>\\n<li>Fix: Typo in ''Reply To'' Email action after submit placeholder in Forms widget<\\/li>\\n<li>Fix: Unnecessary Save Draft button in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Custom Code<\\/li>\\n<li>Fix: Sanitized options in the editor to enforce better security policies<\\/li>\\n<li>Deprecated: See all deprecations to this version in our (<a href=\\"https:\\/\\/developers.elementor.com\\/v3-2-planned-deprecations\\/\\">Developers Deprecations Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.1.1 - 2021-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted ''Max Height'' control range in Table of Contents widget<\\/li>\\n<li>Fix: Popup event handler is undefined (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475]\\">#11475<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690\\">#10690<\\/a>)<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Code Highlight widget<\\/li>\\n<li>Fix: Minor UI glitches in Code Highlight widget<\\/li>\\n<li>Fix: Users can''t get Pro Developer Edition version updates<\\/li>\\n<\\/ul>\\n<h4>3.1.0 - 2021-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Code - Add custom code snippets to your site, including <code>head<\\/code>, <code>body<\\/code> start and <code>body<\\/code> end<\\/li>\\n<li>New: Meet Code Highlight widget - showcase any syntax with highlighted UI (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5815\\">#5815<\\/a>)<\\/li>\\n<li>Experiment: Improved Pro widgets performance by loading JS and Swiper assets conditionally in frontend (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\">#8572<\\/a>, <a href=\\"https:\\/\\/developers.elementor.com\\/experiment-optimized-asset-loading\\/\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Compatibility Tag support in Elementor Pro (<a href=\\"https:\\/\\/developers.elementor.com\\/compatibility-tag\\/\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Rotating Text animation in Animated Headline widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4625\\">#4625<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added an option to set Selected color for Typing effect in Animated Headline widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5403\\">#5403<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7826\\">#7826<\\/a>)<\\/li>\\n<li>Tweak: Added animation Loop option for Animated Headline (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9749\\">#9749<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2457\\">#2457<\\/a>)<\\/li>\\n<li>Tweak: Added timing options for Animated Headline widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4392\\">#4392<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Testimonial Carousel widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Price Table widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\">#4242<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added Word Wrap control to Code Highlight widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13577\\">#13577<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.15.1<\\/li>\\n<li>Tweak: Improved method of loading field mapping repeater in Form widget (<a href=\\"https:\\/\\/developers.elementor.com\\/how-to-add-a-repeater-control-to-elementor-add-on\\/\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Show on Browsers&quot; Popup Advanced Rule<\\/li>\\n<li>Tweak: Added real-time JS handling to prevent redundant renders in Slides widget and all Carousel widgets<\\/li>\\n<li>Tweak: Import scroll utility from core and remove it from Pro<\\/li>\\n<li>Tweak: Added alignment options for Post Excerpt widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9757\\">#9757<\\/a>)<\\/li>\\n<li>Tweak: Changed alignment control to work with selectors in Share Buttons<\\/li>\\n<li>Tweak: Upgraded to Webpack 5, Grunt-Webpack 4 and TerserPlugin instead of UglifyJsPlugin<\\/li>\\n<li>Fix: Steps Divider is not vertically aligned in Multi Step Form widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12569\\">#12569<\\/a>)<\\/li>\\n<li>Fix: Slides are playing in an infinite loop mode even when the option is disabled in Slides Widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Redundant spacing is added to Share Buttons widget<\\/li>\\n<li>Fix: Step buttons text is not updated without a page reload in Forms widget<\\/li>\\n<li>Fix: Overflow issue in certain animations in Animated Headline widget<\\/li>\\n<li>Fix: When dragging a new Testimonial Carousel there is a console error thrown<\\/li>\\n<li>Fix: Step Buttons are cut in mobile view in Multi Step Form<\\/li>\\n<li>Fix: Submit and Step buttons size differences when using Twenty Twenty theme<\\/li>\\n<li>Fix: Duplicate button Text Color control in Slides widget<\\/li>\\n<li>Fix: JS error is thrown when editing and saving global widgets<\\/li>\\n<li>Fix: <code>get_version<\\/code> API function may fail with Redis \\/ DB cache<\\/li>\\n<li>Fix: Multiple license check requests are created in certain cases<\\/li>\\n<li>Deprecated: Deprecate methods prefixed with an underscore and replace them with unprefixed methods<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\"https:\\/\\/developers.elementor.com\\/v3-1-planned-deprecations\\/\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.0.10 - 2021-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Added Editing Handles string translation compatibility with Elementor v3.1.0<\\/li>\\n<\\/ul>\\n<h4>3.0.9 - 2020-12-29<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility to support Elementor 3.1.0<\\/li>\\n<li>Fix: Wrong phrasing of Import template success message in Theme Builder<\\/li>\\n<li>Fix: Border color glitch in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.8 - 2020-11-26<\\/h4>\\n<ul>\\n<li>Fix: Navigation arrows UI glitch in Media Carousel widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13172\\">#13172<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.0.7 - 2020-11-25<\\/h4>\\n<ul>\\n<li>Fix: Console Error when dragging  Testimonials Carousel widget<\\/li>\\n<li>Fix: Arrows of Testimonial and Reviews Carousel widgets navigate to the wrong direction in RTL websites<\\/li>\\n<li>Fix: Removed the conditional loading of Webpack<\\/li>\\n<li>Fix: Fatal error is thrown after deleting an associated custom taxonomy when Posts widget with Cards skin has a badge<\\/li>\\n<li>Fix: Upload JSON files only when the user allowed to prevent security issues<\\/li>\\n<li>Fix: Gallery not displayed in Theme Builder templates preview<\\/li>\\n<\\/ul>\\n<h4>3.0.6 - 2020-11-04<\\/h4>\\n<ul>\\n<li>Tweak: Updated the embedded post in Facebook Embed widget<\\/li>\\n<li>Fix: Minor UI glitches in Theme Builder''s conditions screen footer<\\/li>\\n<li>Fix: Template type changes into Single Page after conditions change in Theme Builder<\\/li>\\n<li>Fix: Redundant Custom Caption option in Site Logo widget<\\/li>\\n<li>Fix: Removed unused code in Drip integration<\\/li>\\n<li>Fix: Removed Weibo and WeChat social networks due to website and links inactivity from Share Buttons widget<\\/li>\\n<li>Fix: Removed redundant code from Portfolio and Post Navigation widgets<\\/li>\\n<\\/ul>\\n<h4>3.0.5 - 2020-09-23<\\/h4>\\n<ul>\\n<li>Fix: If the default page layout is set to &quot;Canvas&quot; Headers and Footers cannot be edited<\\/li>\\n<li>Fix: Product Image Dynamic Tag throws an error when no image is set<\\/li>\\n<li>Fix: Missing Single document placeholder in Theme Builder<\\/li>\\n<li>Fix: Document editing handles inherit the <code>font-family<\\/code> from 3rd party source<\\/li>\\n<li>Fix: Can''t add linebreaks to Textarea input when used as Multi Step Form<\\/li>\\n<li>Fix: Incorrect width in Facebook Page widget<\\/li>\\n<li>Fix: Added compatibility to allow the use of ''get_create_url'' in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.4 - 2020-09-09<\\/h4>\\n<ul>\\n<li>Fix: Autogenerated screenshots appear in WP Media Library modal (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12304\\">#12304<\\/a>)<\\/li>\\n<li>Fix: Make sure Elementor Posts widget Pagination doesn''t interfere with 3rd party plugins (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\">#12126<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Shrinking conditions indicator in Theme Builder<\\/li>\\n<li>Fix: Column can''t be dragged and dropped if it populates a Global widget<\\/li>\\n<li>Fix: Styles are missing from Single templates in some edge cases<\\/li>\\n<\\/ul>\\n<h4>3.0.3 - 2020-09-02<\\/h4>\\n<ul>\\n<li>Fix: Pagination doesn''t work in WordPress 5.5 (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\">#12126<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Change delete template action to &quot;Move to Trash&quot; in the new Theme Builder view<\\/li>\\n<\\/ul>\\n<h4>3.0.2 - 2020-08-31<\\/h4>\\n<ul>\\n<li>Tweak: Replaced WordPress &quot;Learn More&quot; links with dynamic links for better control over time (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12312\\">#12312<\\/a>)<\\/li>\\n<li>Tweak: UI tweaks to the Conditions screen In the new Theme Builder<\\/li>\\n<li>Fix: Motion Effects not working when assigned to a column and throws JS error when DOM optimization is disabled (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12299\\">#12299<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12275\\">#12275<\\/a>)<\\/li>\\n<li>Fix: Multiple Galleries display all the images in the Lightbox slideshow (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11809\\">#11809<\\/a>)<\\/li>\\n<li>Fix: Old Theme Builder is being opened when accessing through the Finder<\\/li>\\n<li>Fix: Mixed templates import glitch in Theme Builder<\\/li>\\n<li>Fix: Card icon sizes in Theme Builder<\\/li>\\n<li>Fix: Preview button leads to <code>render_mode<\\/code> instead of preview when importing a template from the new Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.1 - 2020-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Keep previous Theme Builder when accessing from the WP Dashboard for legacy support<\\/li>\\n<li>Tweak: Updated video tutorials in Theme Builder<\\/li>\\n<li>Tweak: Don''t show auto-screenshots in the Media Library (Props <a href=\\"https:\\/\\/github.com\\/black-eye\\">@black-eye<\\/a>)<\\/li>\\n<li>Fix: Repeater items throws <code>childView<\\/code> is undefined message in Forms widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12239\\">#12239<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12221\\">#12221<\\/a>)<\\/li>\\n<li>Fix: Misspelling of the word &quot;occurred&quot; in Form widget default error message (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12137\\">#12137<\\/a>)<\\/li>\\n<li>Fix: Facebook comments not showing up (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12157\\">#12157<\\/a>)<\\/li>\\n<li>Fix: Check for conflicts in Theme Builder doesn''t work properly<\\/li>\\n<li>Fix: Minor UI fixes in Theme Builder<\\/li>\\n<li>Fix: Dark mode glitches in Theme Builder<\\/li>\\n<li>Fix: Global Site Part toaster appears when you publish a Popup<\\/li>\\n<li>Fix: Site Parts aren''t in the correct order in Theme Builder<\\/li>\\n<li>Fix: Date field caused forms to get corrupted in Forms widget<\\/li>\\n<li>Fix: Theme Builder application page is forbidden<\\/li>\\n<\\/ul>\\n<h4>3.0.0 - 2020-08-23<\\/h4>\\n<ul>\\n<li>New: Introducing the new and improved Theme Builder<\\/li>\\n<li>Tweak: Removed <code>.elementor-inner<\\/code> and <code>.elementor-column-wrap<\\/code> from DOM output to improve performance (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7351\\">#7351<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7817\\">#7817<\\/a>, <a href=\\"https:\\/\\/developers.elementor.com\\/dom-improvements-ahead-html-wrappers-removal-from-v3-0\\/\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added contextual anchors ID support to Table of Contents widgets (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10052\\">#10052<\\/a>)<\\/li>\\n<li>Tweak: Added WeChat and Weibo social networks to Share Buttons widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11554\\">#11554<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Redirect after Login\\/Logout in Login widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11343\\">#11343<\\/a>)<\\/li>\\n<li>Tweak: Added Blend Mode and CSS Filters controls to adjust the Background Overlay in Flipbox widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11653\\">#11653<\\/a>)<\\/li>\\n<li>Tweak: Added responsive capabilities to Toggle Button styling in Nav Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8269\\">#8269<\\/a>)<\\/li>\\n<li>Tweak: Added responsive Text Alignment control in Call to Action widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11968\\">#11968<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic content to Ribbon element in Call to Action widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10364\\">#10364<\\/a>)<\\/li>\\n<li>Tweak: Converted uses of Color and Typography Schemes to Global Colors and Fonts<\\/li>\\n<li>Tweak: Separated Title and Description control fields labels in Call to Action widget<\\/li>\\n<li>Tweak: Removed unnecessary style in WC Product with variations<\\/li>\\n<li>Tweak: Converted Portfolio, Posts and Share Buttons widgets to use CSS Variable-based Elementor Grid (<a href=\\"https:\\/\\/developers.elementor.com\\/elementor-dropping-support-ie\\/\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Date Modified option to Posts widget metadata<\\/li>\\n<li>Fix: PHP 7.4 compatibility to Media Carousel widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11355\\">#11355<\\/a>)<\\/li>\\n<li>Fix: Divider alignment issue in Post Info widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11628\\">#11628<\\/a>)<\\/li>\\n<li>Fix: Color doesn\\u2019t change in Products Archive Description widget<\\/li>\\n<li>Fix: WC Product variations layout breaks when using Variation Swatches plugin<\\/li>\\n<li>Fix: WC Product variations layout issue<\\/li>\\n<li>Fix: WC Product variations mobile zoom-in glitch<\\/li>\\n<li>Fix: Can''t edit a Popup after accessing Theme Style<\\/li>\\n<li>Fix: Twitter icon missing in Blockquote widget<\\/li>\\n<li>Fix: Removed redundant default text color from Share Buttons minimal skin<\\/li>\\n<li>Fix: UI glitch in Display Conditions modal<\\/li>\\n<li>Fix: Insert template button UI glitch in Templates Library<\\/li>\\n<li>Fix: Added sanitization to post titles in WordPress dashboard for better security<\\/li>\\n<li>Fix: Show when arriving from search engines rule doesn''t work in Popup<\\/li>\\n<li>Fix: Child categories are shown with a different parent category in Query control<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\"https:\\/\\/developers.elementor.com\\/v3-0-planned-deprecations\\/\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.10.3 - 2020-06-29<\\/h4>\\n<ul>\\n<li>Fix: Form not being submitted when using &quot;Progress Bar&quot; and &quot;None&quot; view types in Multi Step Form (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11596\\">#11596<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11610\\">#11610<\\/a>)<\\/li>\\n<li>Fix: Missing &quot;for&quot; attribute in Password field label in Login widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8646\\">#8646<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.2 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Fix: Run step events only when in Multi Step Form mode (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11644\\">#11644<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.1 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Changed control labels and ordering in Price Table, Lottie and Form widgets<\\/li>\\n<li>Fix: Popup close button vertical position glitch (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10921\\">#10921<\\/a>)<\\/li>\\n<li>Fix: Radio field placement glitch when in Multi Step mode in Form widget<\\/li>\\n<li>Fix: Clicking <code>Enter<\\/code> key submits the form in Multi Step Form<\\/li>\\n<li>Fix: Hardened sanitization in Custom Attributes to avoid security issues<\\/li>\\n<\\/ul>\\n<h4>2.10.0 - 2020-06-07<\\/h4>\\n<ul>\\n<li>New: Introducing Multi-Step Forms - Breakdown long forms into simple steps (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5975\\">#5975<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3911\\">#3911<\\/a>)<\\/li>\\n<li>New: Introducing Lottie widget - easily add Lottie animations to your site, no coding needed (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11026\\">#11026<\\/a>)<\\/li>\\n<li>Tweak: Added spacing option to Posts widget pagination (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5682\\">#5682<\\/a>)<\\/li>\\n<li>Tweak: Changed texts and logic for administrator plugin renewal notices<\\/li>\\n<li>Tweak: Added new Scroll Util for improved scrolling handling<\\/li>\\n<li>Tweak: Improved Motion Effects animation performance<\\/li>\\n<\\/ul>\\n<h4>2.9.5 - 2020-05-24<\\/h4>\\n<ul>\\n<li>Fix: Added sanitization to Custom Attributes control to avoid security issue<\\/li>\\n<\\/ul>\\n<h4>2.9.4 - 2020-05-07<\\/h4>\\n<ul>\\n<li>Fix: Hardened user role that is allowed to upload icon sets and unzip only allowed files in Custom Icons to prevent security vulnerability<\\/li>\\n<\\/ul>\\n<h4>2.9.3 - 2020-04-19<\\/h4>\\n<ul>\\n<li>Fix: Form shortcode IDs are not wrapped in double-quotes (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11023\\">#11023<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10932\\">#10932<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10967\\">#10967<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11000\\">#11000<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11049\\">#11049<\\/a>)<\\/li>\\n<li>Fix: Escaped Form records metadata to prevent security vulnerability<\\/li>\\n<li>Fix: Closing &quot;Save Changes&quot; document confirmation modal causes Panel infinite loading<\\/li>\\n<li>Fix: Ken Burns effect not working when there is only one slide in Slides widget<\\/li>\\n<li>Fix: Document handles UI glitch<\\/li>\\n<\\/ul>\\n<h4>2.9.2 - 2020-03-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility with WordPress v5.4 (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10745\\">#10745<\\/a>)<\\/li>\\n<li>Fix: Image ratio number is displayed under the Archive Posts widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10874\\">#10874<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color setting overrides the Table of Content list style<\\/li>\\n<li>Fix: PHP notice when using dynamic user info <code>id<\\/code><\\/li>\\n<li>Fix: Navigation arrows direction is crossed on first drag in Slides Widget<\\/li>\\n<li>Fix: &quot;No headings were found on this page&quot; message was not displayed in the frontend in Table of Contents widget<\\/li>\\n<li>Fix: Container includes Popup tags by default in Table of Contents widget<\\/li>\\n<li>Fix: Twitter icon display issue when Font Awesome 4 support is disabled in Blockquote widget<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<\\/ul>\\n<h4>2.9.1 - 2020-03-16<\\/h4>\\n<ul>\\n<li>Fix: Can''t access Elementor Editor when there is Page Title widget in the page<\\/li>\\n<li>Fix: Applying styling to Post Content widget affects the Page and Post editing handles<\\/li>\\n<\\/ul>\\n<h4>2.9.0 - 2020-03-15<\\/h4>\\n<ul>\\n<li>New: Introducing Full Site Editing: Design header, footer, and content all in one place! (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4985\\">#4985<\\/a>)<\\/li>\\n<li>New: Added Global Custom CSS for Your Entire Site in Theme Style (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3345\\">#3345<\\/a>)<\\/li>\\n<li>New: Added Dynamic Colors tag (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6485\\">#6485<\\/a>)<\\/li>\\n<li>Tweak: Added option to set the Site Part HTML Wrapper Tags (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9293\\">#9293<\\/a>)<\\/li>\\n<li>Tweak: Added Link Attributes support to Pro widgets (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5716\\">#5716<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3642\\">#3642<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9225\\">#9225<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9079\\">#9079<\\/a>)<\\/li>\\n<li>Tweak: Added Theme Style support in Theme Builder parts (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10564\\">#10564<\\/a>)<\\/li>\\n<li>Tweak: Avoid creating empty Custom Font<\\/li>\\n<li>Tweak: Added <code>aria-expanded<\\/code> attribute to Menu Cart widget<\\/li>\\n<li>Tweak: Moved Link Actions module to Core plugin<\\/li>\\n<li>Tweak: Changed the name of \\u201cTypeKit Web Fonts by Adobe\\u201d to \\u201cAdobe Fonts\\u201d<\\/li>\\n<li>Tweak: Removed redundant display conditions from Blockquote, Flipbox, Price Table, and Search Form widgets<\\/li>\\n<li>Tweak: Pro widgets are not draggable unless Elementor license has been activated<\\/li>\\n<li>Tweak: Remove redundant <code>label_block<\\/code> parameters from several controls<\\/li>\\n<li>Tweak: Converted controls selectors to CSS variables in Gallery widget<\\/li>\\n<li>Tweak: Replaced Stumbleupon with Mix in Reviews widget recommended icons (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added Mix to the Share Buttons network list (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Open in new tab&quot; option to Posts widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7924\\">#7924<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.12.0<\\/li>\\n<li>Tweak: Added new Lightbox compatibility for Gallery and Media Carousel widgets<\\/li>\\n<li>Tweak: Expose external API for Swiper instances<\\/li>\\n<li>Tweak: Added compatibility to JS API in Theme Builder, Popups, Form widget and Global widget<\\/li>\\n<li>Tweak: Replaced nerd icons with new Elementor emojis<\\/li>\\n<li>Tweak: Added specific <code>color<\\/code> attribute to header title in Table of Contents widget<\\/li>\\n<li>Fix: Line break issues in Animated Headline widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10585\\">#10585<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color overrides the Table of Content list style<\\/li>\\n<li>Fix: Active state glitches when using Table of contents widget with Sticky mode<\\/li>\\n<li>Fix: &quot;Graphic Element&quot; section appears as empty in case of unmarked Graphic Element in Call to Action widget<\\/li>\\n<li>Fix: Page Title widget render glitches in the Editor<\\/li>\\n<li>Fix: Image ratio parameter visible in some edge cases in Posts widget<\\/li>\\n<li>Fix: Image missing when sharing to Pinterest using Share Buttons widget<\\/li>\\n<li>Fix: Theme Style Link color setting override the list style in Table of Contents widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\"https:\\/\\/developers.elementor.com\\/v2-9-0-planned-deprecations\\/\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.8.5 - 2020-03-08<\\/h4>\\n<ul>\\n<li>Tweak: Added new Swiper parameter to all Pro carousels to allow 3rd party integration<\\/li>\\n<li>Fix: Missing closing bracket in Animated Headline widget<\\/li>\\n<li>Fix: Share buttons widgets show Font Awesome 4 icons on first drag in Editor<\\/li>\\n<\\/ul>\\n<h4>2.8.4 - 2020-02-16<\\/h4>\\n<ul>\\n<li>Tweak: Added Lightbox Title &amp; Description support to Gallery widget<\\/li>\\n<li>Tweak: Added RTL support for Slides widget<\\/li>\\n<li>Tweak: Display Lightbox images in Full size in Gallery widget<\\/li>\\n<li>Fix: Template with Slides widget not working properly when placed inside Tabs, Accordion and Toggle widget<\\/li>\\n<li>Fix: Dropdown menu lost styling after Elementor Pro v2.8 upgrade in Nav Menu widget<\\/li>\\n<li>Fix: Indent doesn''t work on RTL websites in Table of Contents widget<\\/li>\\n<li>Fix: Query Control throws <code>Undefined index: q<\\/code> error<\\/li>\\n<li>Fix: Typography control not affecting dropdown menu in Nav Menu widget<\\/li>\\n<li>Fix: Discord forms integration fails to send submissions in some server configurations<\\/li>\\n<li>Fix: Rotating headlines don''t align center in Animated Headline widget<\\/li>\\n<li>Fix: Custom secondary color displayed when not needed in Share buttons widget<\\/li>\\n<li>Fix: Motion Effects of certain objects are not functioning properly on Safari browser<\\/li>\\n<li>Fix: Missing eye icon in Single template footer preview button<\\/li>\\n<\\/ul>\\n<h4>2.8.3 - 2020-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Updated Table of Contents widget panel location<\\/li>\\n<li>Fix: ACF URL Dynamic field throws <code>undefined index<\\/code> PHP notice (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9929\\">#9929<\\/a>)<\\/li>\\n<li>Fix: Gallery lightbox pagination shows images from all tabs<\\/li>\\n<li>Fix: &quot;Reply To&quot; option not working in Form widget &quot;Email 2&quot; Action<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<li>Fix: Underline option not working in Table of Contents widget Normal state<\\/li>\\n<li>Fix: Query Control <code>Undefined index: autocomplete<\\/code> notice in some cases<\\/li>\\n<li>Fix: Missing display condition to Read More Spacing control in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.8.2 - 2019-12-19<\\/h4>\\n<ul>\\n<li>Tweak: Improved scroll-spy and collapsing functionality in Table of Contents widget<\\/li>\\n<li>Fix: &quot;No products were found&quot; message not being displayed in an empty Products Archive<\\/li>\\n<li>Fix: Redundant <code>&lt;br&gt;<\\/code> tags in Single theme template (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9927\\">#9927<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9928\\">#9928<\\/a>)<\\/li>\\n<li>Fix: Draft Popup shows up in Dynamic tag dropdown<\\/li>\\n<\\/ul>\\n<h4>2.8.1 - 2019-12-18<\\/h4>\\n<ul>\\n<li>Fix: Share Buttons widget not working (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9920\\">#9920<\\/a>)<\\/li>\\n<li>Fix: Redundant <code>&lt;p&gt;<\\/code> tags added to Single Template posts<\\/li>\\n<\\/ul>\\n<h4>2.8.0 - 2019-12-18<\\/h4>\\n<ul>\\n<li>New: Table of Contents Widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5171\\">#5171<\\/a>)<\\/li>\\n<li>New: Added Font Awesome Pro Duotone font family support (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added Lazy Load option to Gallery widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9763\\">#9763<\\/a>)<\\/li>\\n<li>Tweak: Added Random order option to Gallery widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9269\\">#9269<\\/a>)<\\/li>\\n<li>Tweak: Updated Font Awesome Pro to v5.11.2 (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added preselect support for multiple default select values in Forms Widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9324\\">#9324<\\/a>)<\\/li>\\n<li>Tweak: Avoid duplicate queries for Custom Icons (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9579\\">#9579<\\/a>)<\\/li>\\n<li>Tweak: Major performance improvements to Gallery widget<\\/li>\\n<li>Tweak: Avoid non-existing images in Gallery widget<\\/li>\\n<li>Tweak: Added <code>tabindex<\\/code>, <code>aria-expanded<\\/code>, <code>aria-hidden<\\/code> and <code>role=\\"navigation\\"<\\/code> accessibility attributes to Nav Menu widget<\\/li>\\n<li>Tweak: Changed button HTML tag from <code>button<\\/code> to <code>span<\\/code> in Call to Action and Flip Box widgets for better W3C compliance and accessibility<\\/li>\\n<li>Tweak: Removed Google+ from default networks in Share Buttons widget<\\/li>\\n<li>Tweak: Added compatibility for Library Connect<\\/li>\\n<li>Tweak: Added i18n to Toolset date dynamic tag<\\/li>\\n<li>Tweak: Added external link support to Gallery widget<\\/li>\\n<li>Tweak: Changed the link external attributes implementation to use <code>add_link_attributes()<\\/code> in Gallery widget<\\/li>\\n<li>Tweak: Updated references to the new Schemes system location<\\/li>\\n<li>Tweak: Avoid running Gallery handler when the gallery is empty<\\/li>\\n<li>Tweak: UI Tweaks in Editor Panel<\\/li>\\n<li>Tweak: Added responsive capabilities to Pointer Width control in Nav Menu widget<\\/li>\\n<li>Tweak: Added mobile support for responsive controls in Nav Menu widget<\\/li>\\n<li>Tweak: Refactor <code>register_controls()<\\/code> method in Posts widget skin trait<\\/li>\\n<li>Fix: ACF URL &quot;undefined Index&quot; notice (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7646\\">#7646<\\/a>)<\\/li>\\n<li>Fix: WooCommerce Mini-Cart widget causes fatal error in edge cases (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9304\\">#9304<\\/a>)<\\/li>\\n<li>Fix: <code>PHP Notice: Undefined index<\\/code> display for Author query (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9864\\">#9864<\\/a>)<\\/li>\\n<li>Fix: Added compatibility for Button widget placed inside Swiper carousel (<a href=\\"https:\\/\\/wordpress.org\\/support\\/topic\\/broken-buttons-since-elementor-2-8\\/\\">Topic<\\/a>)<\\/li>\\n<li>Fix: Avoid empty spaces in Post info widget<\\/li>\\n<li>Tweak: Always show &quot;Custom label&quot; control in Login widget<\\/li>\\n<li>Fix: Nav Menu item typography selector in Nav Menu widget<\\/li>\\n<li>Fix: Facebook Like Button widget causes flickering<\\/li>\\n<li>Fix: WooCommerce mini-cart behaviour when using <code>plain<\\/code> permalinks format<\\/li>\\n<li>Fix: Avoid running Popup triggers when set without conditions<\\/li>\\n<li>Fix: Removed &quot;Date&quot; query from Products widget<\\/li>\\n<li>Fix: Slides widget when used as a Shortcode and is hidden<\\/li>\\n<li>Fix: Custom URL being accessed on swipe in Media Carousel<\\/li>\\n<li>Fix: Media Carousel widget Cube effect glitch<\\/li>\\n<li>Fix: Lightbox shows images from multiple Gallery widgets in the same page<\\/li>\\n<li>Fix: Image <code>alt<\\/code> Text not displayed on overlay in Gallery widget<\\/li>\\n<li>Fix: Gallery widget not visible in Posts widget Full Content skin<\\/li>\\n<li>Fix: WooCommerce mini-cart remove unnecessary hooks registration when WooCommerce integration set to <code>Disable<\\/code><\\/li>\\n<li>Fix: Slides widget button wrapping breaks in mobile view<\\/li>\\n<li>Fix: Dynamic capabilities with the Reviews widget<\\/li>\\n<li>Fix: Disabling autoplay doesn''t work in Slides widget<\\/li>\\n<li>Fix: Posts widget Full Content skin not working on Single template<\\/li>\\n<li>Fix: Autocomplete not working for &quot;By Author&quot; condition in Display Conditions screen<\\/li>\\n<li>Fix: Posts widget alignment issue<\\/li>\\n<li>Fix: Product Variations Clear button not working in edge cases<\\/li>\\n<li>Fix: Styling issues in Form widget submit button<\\/li>\\n<\\/ul>\\n<h4>2.7.3 - 2019-10-28<\\/h4>\\n<ul>\\n<li>Tweak: Added RTL support to Galleries widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9213\\">#9213<\\/a>)<\\/li>\\n<li>Tweak: Added Custom Icons compatibility for WordPress 5.3<\\/li>\\n<li>Fix: Missing template function declaration causes fatal error in WC mini-cart widget<\\/li>\\n<li>Fix: Pause on hover doesn''t work in Carousel widgets<\\/li>\\n<li>Fix: Link-actions conflict with <code>?action=<\\/code> parameter in the URL<\\/li>\\n<li>Fix: Lightbox navigation not working in Gallery widget Single mode<\\/li>\\n<li>Fix: Ken burns effect not working on the 1st slide if Infinite Loop option is turned off in Carousel widgets<\\/li>\\n<li>Fix: Popup Advanced Rules detects internal links as external if current URL starts with <code>www<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.7.2 - 2019-10-06<\\/h4>\\n<ul>\\n<li>Fix: Slide Overlay not working when applying Ken burns effect in Slides widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9209\\">#9209<\\/a>)<\\/li>\\n<li>Fix: Content width glitch in Slides widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Horizontal Alignment not working when applying custom style per slide in Slides widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Missing semicolon in Custom Fonts <code>font-display<\\/code> CSS<\\/li>\\n<\\/ul>\\n<h4>2.7.1 - 2019-09-26<\\/h4>\\n<ul>\\n<li>Fix: Background Overlay layer is over the slide content in Slides widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Duplicate images under &quot;All&quot; filter in Multiple Gallery<\\/li>\\n<\\/ul>\\n<h4>2.7.0 - 2019-09-24<\\/h4>\\n<ul>\\n<li>New: Enhanced Galleries widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1898\\">#1898<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3103\\">#3103<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4279\\">#4279<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7631\\">#7631<\\/a>)<\\/li>\\n<li>New: Dynamic Number (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5952\\">#5952<\\/a>)<\\/li>\\n<li>New: Full content skin for Posts and Archive-posts widgets (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4617\\">#4617<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic number capability to Price List, Price Table, Counter, Star Rating, Progress Bar widgets<\\/li>\\n<li>Tweak: Added tags support to forms Mailchimp action (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5418\\">#5418<\\/a>)<\\/li>\\n<li>Tweak: User Profile Picture Dynamic Tag (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7947\\">#7947<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8740\\">#8740<\\/a>)<\\/li>\\n<li>Tweak: Added <code>font-display<\\/code> support to custom fonts (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5993\\">#5993<\\/a>, <a href=\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-custom-fonts-font-display-support\\/\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Text Shadow control to Slides widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8800\\">#8800<\\/a>)<\\/li>\\n<li>Tweak: Added Re-subscribe support to MailerLite (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8799\\">#8799<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Facebook Embed widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9030\\">#9030<\\/a>)<\\/li>\\n<li>Tweak: Use <code>swiper.js<\\/code> instead of <code>slick.js<\\/code> in Slides widget (<a href=\\"https:\\/\\/developers.elementor.com\\/elementor-2-7-moving-sliders-from-slick-to-swiper\\/\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/before_input<\\/code> action hook to Search Form widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/after_input<\\/code> action hook to Search Form widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic support for Custom field key (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7789\\">#7789<\\/a>)<\\/li>\\n<li>Tweak: Increased expired license notice bar frequency<\\/li>\\n<li>Tweak: Changed the icon name of Slides widget<\\/li>\\n<li>Tweak: Added designated Finder''s Icons for Custom icons &amp; Custom fonts<\\/li>\\n<li>Tweak: Use Ken Burns Effect as an external module<\\/li>\\n<li>Tweak: Remove Fontello conflicting CSS on import to Custom Icons sets<\\/li>\\n<li>Tweak: Editor Panel UI tweaks<\\/li>\\n<li>Tweak: Added DOM events on Popup show\\/hide (<a href=\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-popup-events\\/\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added option to change the variations field width in Add to Cart widget<\\/li>\\n<li>Tweak: Use select control instead of select2 in Menu Cart widget<\\/li>\\n<li>Tweak: Added conditions to the tabs instead of to each control in Share Buttons widget<\\/li>\\n<li>Tweak: Added Typography controls to HTML field in Forms widget<\\/li>\\n<li>Tweak: Allow edit selected Font file in Custom Font<\\/li>\\n<li>Tweak: Changed reCAPTCHA v3 error message<\\/li>\\n<li>Tweak: Remove the &quot;Save as Global&quot; option on Global widget context menu<\\/li>\\n<li>Fix: Corrected selector for <code>removeControlSpinner()<\\/code> (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8790\\">#8790<\\/a>)<\\/li>\\n<li>Fix: Slides widget navigation icons misplacement (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8533\\">#8533<\\/a>)<\\/li>\\n<li>Fix: Horizontal Scrollbar when Slider widget is set to Full Width (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8527\\">#8527<\\/a>)<\\/li>\\n<li>Fix: Inconsistent behavior when &quot;Infinite Loop&quot; enabled with &quot;Autoplay&quot; in Slides widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Ken Burns effect on Chrome transition glitches (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1671\\">#1671<\\/a>)<\\/li>\\n<li>Fix: Nothing found message shows up inside the columns set in Posts Archive widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7347\\">#7347<\\/a>)<\\/li>\\n<li>Fix: Responsive UI glitch in Popup Conditions modal tabs<\\/li>\\n<li>Fix: Removed unnecessary divider in Call to Action widget<\\/li>\\n<li>Fix: Custom Add To Cart * button style (size, position and background color) when <code>quantity<\\/code> is enabled.<\\/li>\\n<li>Fix: Add support for Document\\/PageBase in Theme Builder (Core &gt;=2.7.0)<\\/li>\\n<li>Fix: Ampersand character breaks email link in Share Buttons widget<\\/li>\\n<li>Fix: Correct custom font attachment <code>mime-type<\\/code> to show uploaded Custom Fonts<\\/li>\\n<li>Fix: Mini-Cart not refreshing in Menu Cart widget<\\/li>\\n<li>Fix: Cart drawer not working when WC Subscriptions plugin is activated<\\/li>\\n<li>Fix:  Querying CPT with custom taxonomies does not show the taxonomies before saving<\\/li>\\n<li>Fix: Double rendering on change caused console error in Theme Builder''s conditions screen<\\/li>\\n<li>Fix: Translations and Strings in Share Buttons widget<\\/li>\\n<li>Fix: Avoid using offset if the source is Manual selection in Query Control<\\/li>\\n<li>Fix: Form being submitted although reCAPTCHA v3 validation failed in Forms widget<\\/li>\\n<\\/ul>\\n<h4>2.6.5 - 2019-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Button style not working when <code>quantity<\\/code> is enabled in Custom Add To Cart widget<\\/li>\\n<li>Fix: Updated minified JS file fixed WhatsApp base URL in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>2.6.4 - 2019-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Changed WhatsApp base URL in Share Buttons widget for cross-device compatibility<\\/li>\\n<li>Fix: Random slides order after several clicks on pagination in Testimonial Carousel widget<\\/li>\\n<\\/ul>\\n<h4>2.6.3 - 2019-08-18<\\/h4>\\n<ul>\\n<li>Fix: Core version rollback to <code>&gt;2.6.0<\\/code> causes a fatal error<\\/li>\\n<li>Fix: Duplicate images when slideshow skin is selected in Media Carousel lightbox<\\/li>\\n<li>Fix: Default bottom margin added to reCAPTCHA V3 badge<\\/li>\\n<li>Fix: Input glitch in reCAPTCHA V3 threshold settings<\\/li>\\n<\\/ul>\\n<h4>2.6.2 - 2019-07-30<\\/h4>\\n<ul>\\n<li>Tweak: Better accessibility support in Search Form widget<\\/li>\\n<li>Fix: UI glitched in Popup publish screen (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8616\\">#8616<\\/a>)<\\/li>\\n<li>Fix: &quot;Child of Term&quot; and &quot;Any child of term&quot; conditions (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8695\\">#8695<\\/a>)<\\/li>\\n<li>Fix: Restored <code>library_widget_templates<\\/code> action hook for 3rd party compatibility (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8687\\">#8687<\\/a>)<\\/li>\\n<li>Fix: Twitter Icon missing in Blockquote widget<\\/li>\\n<li>Fix: Form reCAPTCHA v3 badge position not working<\\/li>\\n<li>Fix: Renewal notice bar appears in wrong situations<\\/li>\\n<li>Fix: Draft Icon Set loads empty Icon Library<\\/li>\\n<\\/ul>\\n<h4>2.6.1 - 2019-07-24<\\/h4>\\n<ul>\\n<li>Fix: Query Control autocomplete not retrieving results (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8672\\">#8672<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8661\\">#8661<\\/a>)<\\/li>\\n<li>Fix: Price Table features section not working (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8660\\">#8660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.6.0 - 2019-07-23<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Icon sets - including Fontello, IcoMoon and Fontastic support (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/110\\">#110<\\/a>)<\\/li>\\n<li>New: Added Font Awesome 5 Pro integration including 5,300+ icons (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4430\\">#4430<\\/a>)<\\/li>\\n<li>New: Added reCAPTCHA v3 integration to Form widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8213\\">#8213<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6039\\">#6039<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7165\\">#7165<\\/a>)<\\/li>\\n<li>Tweak: Added Exit Animation for Popups (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7063\\">#7063<\\/a>)<\\/li>\\n<li>Tweak: Added ACF Dynamic tag support for archive pages (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5147\\">#5147<\\/a>)<\\/li>\\n<li>Tweak: Added Navigator Indicators for Custom CSS &amp; Motion Effects (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2180\\">#2180<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Form Redirect action (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7552\\">#7552<\\/a>)<\\/li>\\n<li>Tweak: Added Logged In Message styling options for Login widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7928\\">#7928<\\/a>)<\\/li>\\n<li>Tweak: Added <code>none<\\/code> breakpoint option to Nav Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7916\\">#7916<\\/a>)<\\/li>\\n<li>Tweak: Added option to place Post Terms dynamic tag without links (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8366\\">#8366<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor\\/query\\/query_results<\\/code> hook to Query Control to allow full control over results (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7912\\">#7912<\\/a>)<\\/li>\\n<li>Tweak: Allow choosing Heading HTML tag in Price Table widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8090\\">#8090<\\/a>)<\\/li>\\n<li>Tweak: Show popup on dynamic click even when <code>Avoid Multiple Popups<\\/code> option is selected (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8189\\">#8189<\\/a>)<\\/li>\\n<li>Tweak: Added condition option to all of archive child pages (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8256\\">#8256<\\/a>)<\\/li>\\n<li>Tweak: Added <code>Effects Relative To<\\/code> control to Scrolling Effects<\\/li>\\n<li>Tweak: Allow shortcodes in HTML Form field<\\/li>\\n<li>Tweak: Removed donReach integration from Share Buttons widget due to service inconsistent stability<\\/li>\\n<li>Tweak: Changed MailChimp <code>List<\\/code> label to <code>Audience<\\/code><\\/li>\\n<li>Tweak: Improved Entrance and Exit animation behavior in Popup<\\/li>\\n<li>Tweak: Added <code>Deprecated Notice<\\/code> control to <code>Archive Products<\\/code> and <code>Woo Products<\\/code> widgets<\\/li>\\n<li>Tweak: Added default dynamic title for archives in Theme Builder<\\/li>\\n<li>Tweak: Added condition to show <code>Centered Slides<\\/code> control in Media Carousel widget<\\/li>\\n<li>Tweak: Added notice bar in the Editor when the license is expired or not activated<\\/li>\\n<li>Tweak: Replaced <code>select<\\/code> control with <code>choose<\\/code> control in Price List widget<\\/li>\\n<li>Tweak: Removed Font Awesome 4 dependencies from the Editor<\\/li>\\n<li>Tweak: Minor styling tweaks in the Popup publish modal<\\/li>\\n<li>Tweak: Hide ordering form in Products widget on front page<\\/li>\\n<li>Tweak: Removed page title markup when ''Hide Title'' is active<\\/li>\\n<li>Tweak: Added style controls for HTML field in Form widget<\\/li>\\n<li>Fix: Form widget Date picker makes the Popup builder disappear (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7240\\">#7240<\\/a>)<\\/li>\\n<li>Fix: Sticky element stop point stops working on viewport resize (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7884\\">#7884<\\/a>)<\\/li>\\n<li>Fix: Copy-Paste style not pasting the Pointer option in Nav Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8497\\">#8497<\\/a>)<\\/li>\\n<li>Fix: Missing Print icon in Share Buttons (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8506\\">#8506<\\/a>)<\\/li>\\n<li>Fix: UI style glitch in Blockquote widget when viewing from iPad<\\/li>\\n<li>Deprecated: <code>DB::save_editor()<\\/code> - Remove usage of this method (<a href=\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\">Deprecation Post<\\/a>)<\\/li>\\n<li>Deprecated: <code>DB::get_plain_editor()<\\/code> - Remove usage of this method (<a href=\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\">Deprecation Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.14 - 2019-07-14<\\/h4>\\n<ul>\\n<li>Fix: Better WC Related Product grid support to various themes (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8555\\">#8555<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.13 - 2019-07-11<\\/h4>\\n<ul>\\n<li>Fix: Better WC grid support to various themes<\\/li>\\n<\\/ul>\\n<h4>2.5.12 - 2019-07-10<\\/h4>\\n<ul>\\n<li>Fix: Grid for WooCommerce Archive Product widget<\\/li>\\n<li>Fix: Remove redundant <code>whitespace<\\/code> CSS property causes style glitch in iPad<\\/li>\\n<li>Tweak: Added more compatibility for Elementor v2.6<\\/li>\\n<\\/ul>\\n<h4>2.5.11 - 2019-07-02<\\/h4>\\n<ul>\\n<li>Fix: Close icon missing from Nav Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8460\\">#8460<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro v2.5.10 shows PHP notice regarding notice bar (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8461\\">#8461<\\/a>)<\\/li>\\n<li>Fix: Fatal error when deleting used Pods fields (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8396\\">#8396<\\/a>)<\\/li>\\n<li>Fix: Missing dropdown icon in conditions screen<\\/li>\\n<\\/ul>\\n<h4>2.5.10 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.6<\\/li>\\n<li>Tweak: Error caused by empty Rows &amp; Columns values in Products widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8261\\">#8261<\\/a>)<\\/li>\\n<li>Fix: Do not unset <code>product<\\/code> CPT if it''s not from WooCommerce (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8160\\">#8160<\\/a>)<\\/li>\\n<li>Fix: Column Spacing not working in WooCommerce Archive Products widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8285\\">#8285<\\/a>)<\\/li>\\n<li>Fix: Title styling not working in Products Categories widget<\\/li>\\n<li>Fix: Empty value in Dynamic Pods Gallery dropdown using Safari browser<\\/li>\\n<li>Fix: WooCommerce archives included in &quot;All Archives&quot; condition<\\/li>\\n<\\/ul>\\n<h4>2.5.9 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>auto-confirm<\\/code> control from MailPoet to support new version of MailPoet<\\/li>\\n<li>Fix: Multiple Custom Fonts not rendered in the editor<\\/li>\\n<li>Fix: Products <code>sale<\\/code> query - handle exclude by manual selection.<\\/li>\\n<li>Fix: Product Categories grid row &amp; column style<\\/li>\\n<li>Fix: Form integration AJAX cache override<\\/li>\\n<li>Fix: Removed redundant CSS on Canvas &amp; Header-Footer page templates<\\/li>\\n<\\/ul>\\n<h4>2.5.8 - 2019-05-06<\\/h4>\\n<ul>\\n<li>Fix: Popup entrance animation not working in frontend<\\/li>\\n<li>Fix: Popup Exit Intent trigger activated multiple times<\\/li>\\n<\\/ul>\\n<h4>2.5.7 - 2019-05-05<\\/h4>\\n<ul>\\n<li>Fix: Embedded video keeps playing after a Popup is closed (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7875\\">#7875<\\/a>)<\\/li>\\n<li>Fix: Maximum call stack size exceeded error in Safari (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7824\\">#7824<\\/a>)<\\/li>\\n<li>Fix: Entrance animations not appearing on Popup reopen (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7395\\">#7395<\\/a>)<\\/li>\\n<li>Fix: WC variations select style glitch in several themes (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8008\\">#8008<\\/a>)<\\/li>\\n<li>Fix: Theme Builder taxonomy conditions not retrieving proper results in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.5.6 - 2019-04-29<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>Shortcode<\\/code> dynamic from Image, Gallery and Media control<\\/li>\\n<li>Fix: Popup not inheriting entrance animation in responsive mode (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7809\\">#7809<\\/a>)<\\/li>\\n<li>Fix: Terms autocomplete retrieves wrong results in Query Control<\\/li>\\n<li>Fix: Query Control Related by author glitches in edge cases<\\/li>\\n<li>Fix: Query Control using terms for Products widget<\\/li>\\n<li>Fix: Posts cards style glitch in small screens<\\/li>\\n<li>Fix: Display conditions delete icon missing in small screens<\\/li>\\n<li>Fix: Avoid rendering Menu Cart widget in WordPress native editor<\\/li>\\n<\\/ul>\\n<h4>2.5.5 - 2019-04-08<\\/h4>\\n<ul>\\n<li>Tweak: Allow text selection inside a Popup<\\/li>\\n<li>Fix: Added backwards compatibility for <code>tax_query<\\/code> in Query Control (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7751\\">#7751<\\/a>)<\\/li>\\n<li>Fix: Missing arguments for <code>widget_title<\\/code> filter (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7745\\">#7745<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.4 - 2019-04-03<\\/h4>\\n<ul>\\n<li>Fix: Move Query from using <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\">#7653<\\/a>)<\\/li>\\n<li>Fix: Offset manipulation hook removal in Query control<\\/li>\\n<li>Fix: Missing form field <code>ID<\\/code> in some edge cases (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7711\\">#7711<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7660\\">#7660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.3 - 2019-03-31<\\/h4>\\n<ul>\\n<li>Tweak: Updated Google Calendar dynamic tag URL (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7673\\">#7673<\\/a>)<\\/li>\\n<li>Fix: Missing form field names (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7651\\">#7651<\\/a>)<\\/li>\\n<li>Fix: PHP 5.4 backward compatibility in Query Control (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7633\\">#7633<\\/a>)<\\/li>\\n<li>Fix: <code>products_deprecated<\\/code> Query Control module compatibility (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7654\\">#7654<\\/a>)<\\/li>\\n<li>Fix: Changed query method from <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\">#7653<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.2 - 2019-03-27<\\/h4>\\n<ul>\\n<li>Fix: Overwrite parent widget type in Global Widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7632\\">#7632<\\/a>)<\\/li>\\n<li>Fix: Avoid Duplicates option not working in Query Control (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7635\\">#7635<\\/a>)<\\/li>\\n<li>Fix: Manual Selection option not working in Query Control (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7634\\">#7634<\\/a>)<\\/li>\\n<li>Fix: Incorrect condition caused handlers issues inside popup<\\/li>\\n<\\/ul>\\n<h4>2.5.1 - 2019-03-26<\\/h4>\\n<ul>\\n<li>Fix: Query Control invalid call to deprecated action (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7619\\">#7619<\\/a>)<\\/li>\\n<li>Tweak: Renamed action hook from <code>elementor_pro\\/{$widget_name}\\/query\\/{$query_id}<\\/code> to <code>elementor\\/query\\/{$query_id}<\\/code><\\/li>\\n<li>Tweak: Renamed filter hook from <code>elementor_pro\\/query_control\\/get_query_args\\/current_query<\\/code> to <code>elementor\\/query\\/get_query_args\\/current_query<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.5.0 - 2019-03-26<\\/h4>\\n<ul>\\n<li>New: Introducing Motion Effects including Scrolling &amp; Mouse effects (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/72\\">#72<\\/a>)<\\/li>\\n<li>New: Introducing Related Posts for Query Control (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7306\\">#7306<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7490\\">#7490<\\/a>)<\\/li>\\n<li>New: Introducing Date query for Query Control<\\/li>\\n<li>New: Introducing Sticky Posts support for Query Control (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2501\\">#2501<\\/a>)<\\/li>\\n<li>Tweak: Added option to open a Popup by a custom selector (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6871\\">#6871<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6876\\">#6876<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Option to count when Popup is closed in &quot;Show up to X times&quot; Advanced Rule<\\/li>\\n<li>Tweak: Added full border radius control options inside Popup<\\/li>\\n<li>Tweak: Changed exit intent icon in Popups<\\/li>\\n<li>Tweak: Show only one popup in its own preview<\\/li>\\n<li>Tweak: Added responsive support to Popup entrance animation control<\\/li>\\n<li>Tweak: Conditions - Singular <code>All Pages<\\/code> string changed to <code>Pages<\\/code><\\/li>\\n<li>Tweak: Added form field shortcode support for Drip tags (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7000\\">#7000<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Price List widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Custom Attributes (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6779\\">#6779<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Flip Box widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6986\\">#6986<\\/a>)<\\/li>\\n<li>Tweak: Decrease <code>z-index<\\/code> for Nav Menu (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6869\\">#6869<\\/a>)<\\/li>\\n<li>Tweak: Changed &quot;Scrolling Effects&quot; section label to &quot;Motion Effects&quot;<\\/li>\\n<li>Tweak: Use filter <code>get_meta_viewport<\\/code> for header templates (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7043\\">#7043<\\/a>)<\\/li>\\n<li>Tweak: use filterable <code>Util::get_public_post_types()<\\/code> in Theme Builder (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7172\\">#7172<\\/a>)<\\/li>\\n<li>Tweak: Added Cloudflare rocket-loader support (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7443\\">#7443<\\/a>)<\\/li>\\n<li>Tweak: Added responsive support to WC Products Columns &amp; Rows Gap controls (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6913\\">#6913<\\/a>)<\\/li>\\n<li>Tweak: WC Menu cart &quot;View Cart&quot; &amp; &quot;Checkout&quot; buttons styling<\\/li>\\n<li>Fix: Custom ID reset to default when dragging repeater<\\/li>\\n<li>Fix: Conflict between archive-products widget and WC customizer<\\/li>\\n<li>Fix: Add to Cart widget <code>spacing<\\/code> and <code>space-between<\\/code><\\/li>\\n<li>Fix: Library view when creating a new Header or Footer<\\/li>\\n<li>Fix: Post types labels missing on Add New Template modal<\\/li>\\n<\\/ul>\\n<h4>2.4.8 - 2019-03-11<\\/h4>\\n<ul>\\n<li>Fix: Missing query section in Products widget<\\/li>\\n<li>Fix: Missing Taxonomy controls in Products widget in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.7 - 2019-03-06<\\/h4>\\n<ul>\\n<li>Fix: Compatibility Global Widget with Elementor v2.5.0+<\\/li>\\n<\\/ul>\\n<h4>2.4.6 - 2019-03-04<\\/h4>\\n<ul>\\n<li>Fix: Pods gallery dynamic when empty (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7127\\">#7127<\\/a>)<\\/li>\\n<li>Fix: Duplicate call for conditions screen issue<\\/li>\\n<li>Fix: Compatibility with Elementor v2.5.0<\\/li>\\n<\\/ul>\\n<h4>2.4.5 - 2019-02-18<\\/h4>\\n<ul>\\n<li>Fix: Image size issue in Testimonial Carousel (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7058\\">#7058<\\/a>)<\\/li>\\n<li>Fix: MailChimp groups not saved in a form integration (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7083\\">#7083<\\/a>)<\\/li>\\n<li>Fix: Show popup preview only on it''s own preview<\\/li>\\n<li>Fix: Elementor dashboard templates URL corrupted links in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.4 - 2019-02-11<\\/h4>\\n<ul>\\n<li>Tweak: Added ACF Date Time Picker field support (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6690\\">#6690<\\/a>)<\\/li>\\n<li>Tweak: Changed the term of <code>All Posts<\\/code> condition to <code>Posts<\\/code><\\/li>\\n<li>Fix: Added <code>&lt;IfModule&gt;<\\/code> to avoid 500 error when <code>mod-headers<\\/code> is missing (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7034\\">#7034<\\/a>)<\\/li>\\n<li>Fix: Include post CSS deletion in Global Widget update (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6856\\">#6856<\\/a>)<\\/li>\\n<li>Fix: <code>Textarea<\\/code> default value in Forms Widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6934\\">#6934<\\/a>)<\\/li>\\n<li>Fix: MailPoet latest version caused fatal error (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6996\\">#6996<\\/a>)<\\/li>\\n<li>Fix: Fatal Error caused by calling MailPoet deleted method<\\/li>\\n<li>Notice: MailPoet <code>Auto Confirm<\\/code> option will now default to &quot;On&quot;<\\/li>\\n<\\/ul>\\n<h4>2.4.3 - 2019-01-30<\\/h4>\\n<ul>\\n<li>Fix: Custom Add to Cart widget responsive alignment settings<\\/li>\\n<li>Fix: Links in Post Info widget<\\/li>\\n<li>Fix: WooCommerce <code>View Cart<\\/code> string translate<\\/li>\\n<li>Fix: Wrapper classes for header\\/footer templates (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6884\\">#6884<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.4.2 - 2019-01-25<\\/h4>\\n<ul>\\n<li>Tweak: Added pixel units to Close Button position control in Popups<\\/li>\\n<li>Fix: Exclude error in WC Products widget<\\/li>\\n<\\/ul>\\n<h4>2.4.1 - 2019-01-24<\\/h4>\\n<ul>\\n<li>Tweak: Added CSS classes control to Popup (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6826\\">#6826<\\/a>)<\\/li>\\n<li>Tweak: Added responsive image size to Testimonial Carousel widget<\\/li>\\n<li>Fix: PHP warning when Toolset Date dynamic is empty (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6842\\">#6842<\\/a>)<\\/li>\\n<li>Fix: Support of exclude-ids in WC Products widget<\\/li>\\n<li>Fix: Popup close button not clickable<\\/li>\\n<li>Fix: Alignment justify issue of Add to Cart widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6749\\">#6749<\\/a>)<\\/li>\\n<li>Fix: Bad anchors breaks the page JS<\\/li>\\n<li>Fix: Popup overlay shown when turned off<\\/li>\\n<\\/ul>\\n<h4>2.4.0 - 2019-01-21<\\/h4>\\n<ul>\\n<li>New: Introducing Popup Builder (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/628\\">#628<\\/a>)<\\/li>\\n<li>New: Added <code>Popup<\\/code> Dynamic Tag<\\/li>\\n<li>New: Added <code>Popup<\\/code> forms action after submit<\\/li>\\n<li>New: Added User Info dynamic tag (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6322\\">#6322<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for &quot;Nothing Found&quot; message<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/theme_builder\\/archive\\/escape_nothing_found_message<\\/code> Filter to avoid HTML escaping in &quot;Nothing Found&quot; message (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6053\\">#6053<\\/a>)<\\/li>\\n<li>Tweak: Added <code>add_doc_to_location<\\/code> method to Allow insertion of a document to a location<\\/li>\\n<li>Fix: <code>z-index<\\/code> issue with CTA widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6486\\">#6486<\\/a>)<\\/li>\\n<li>Fix: Hide the Post Content widget and show it only in a Single document<\\/li>\\n<li>Fix: <code>selector<\\/code> replacement in Custom CSS<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> on the real content only<\\/li>\\n<li>Fix: CSS for WC products selector (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6559\\">#6559<\\/a>)<\\/li>\\n<li>Fix: Odnoklassniki share URL (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6638\\">#6638<\\/a>)<\\/li>\\n<li>Fix: Custom link new tab in Post Info widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5766\\">#5766<\\/a>)<\\/li>\\n<li>Fix: <code>nofollow<\\/code> link in Flip Box &amp; CTA widgets<\\/li>\\n<li>Fix: Post Terms in Post Info widget<\\/li>\\n<li>Fix: Added screen reader to some icons &amp; buttons for better accessibility (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5386\\">#5386<\\/a>)<\\/li>\\n<li>Fix: Accessibility labels in Reviews widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6630\\">#6630<\\/a>)<\\/li>\\n<li>Fix: Link to cart page not working when WooCommerce Subscriptions is active<\\/li>\\n<li>Fix: MailChimp Selected list not showing on reloading in Form widget<\\/li>\\n<li>Fix: Sub-menu arrow position in Nav Menu widget<\\/li>\\n<li>Fix: Conflict with WP Security Audit Log plugin (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6648\\">#6648<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.3.1 - 2018-12-19<\\/h4>\\n<ul>\\n<li>Fix: Template widget search functionality (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6473\\">#6473<\\/a>)<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> filter to post content in theme builder<\\/li>\\n<\\/ul>\\n<h4>2.3.0 - 2018-12-17<\\/h4>\\n<ul>\\n<li>New: Introducing Discord Integration for Forms (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4218\\">#4218<\\/a>)<\\/li>\\n<li>New: Introducing Slack Integration for Forms<\\/li>\\n<li>New: Introducing MailerLite Integration for Forms (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4462\\">#4462<\\/a>)<\\/li>\\n<li>New: Activate Elementor Pro plugin by connecting to Elementor account<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/utils\\/get_public_post_types<\\/code> filter hook (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5900\\">#5900<\\/a>)<\\/li>\\n<li>Tweak: Added <code>loop_start<\\/code> &amp; <code>the_content<\\/code> hooks for Post Content (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6173\\">#6173<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from Page Settings<\\/li>\\n<li>Tweak: Always add the Custom CSS control to the Advanced tab<\\/li>\\n<li>Fix: In sub Term condition false positive in edge cases<\\/li>\\n<li>Fix: ToolSet Dynamic Image fallback<\\/li>\\n<li>Fix: Style glitch with the dropdown color in Nav Menu widget<\\/li>\\n<li>Fix: Style glitch in the Conditions screen in Safari browser<\\/li>\\n<li>Fix: Ribbon in the CTA widget obscures drop down menu (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6080\\">#6080<\\/a>)<\\/li>\\n<li>Fix: The color of label won''t change color in Widget login<\\/li>\\n<\\/ul>\\n<h4>2.2.5 - 2018-12-11<\\/h4>\\n<ul>\\n<li>New: Add Style Tab &amp; Custom CSS for Header &amp; Footer Templates.<\\/li>\\n<li>Tweak: Added a better identifier for subpages (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6362\\">#6362<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from page settings<\\/li>\\n<li>Fix: Yahoo event URL date issue (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Allow timezone settings in Google event URL (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Avoid <code>z-index<\\/code> changes by <code>nanocss<\\/code> in build process<\\/li>\\n<li>Fix: Added missing WC upsells products CSS<\\/li>\\n<li>Fix: Nav Menu dropdown losing color on hover<\\/li>\\n<li>Fix: WC Product Add-ons CSS compatibility<\\/li>\\n<\\/ul>\\n<h4>2.2.4 - 2018-12-04<\\/h4>\\n<ul>\\n<li>Fix: Global widget not saving changes (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6340\\">#6340<\\/a>)<\\/li>\\n<li>Fix: Dynamic tags support in Blockquote widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6334\\">#6334<\\/a>)<\\/li>\\n<li>Fix: Forms Redirect URL action when using form field values with spaces<\\/li>\\n<\\/ul>\\n<h4>2.2.3 - 2018-11-29<\\/h4>\\n<ul>\\n<li>Fix: Missing &quot;Edit Template&quot; in Template widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Follow menu anchors with UTF8 characters in Nav Menu<\\/li>\\n<li>Fix: Show only supported templates in Template widget<\\/li>\\n<li>Fix: Revert conflicting fix for a default order for WC archive<\\/li>\\n<\\/ul>\\n<h4>2.2.2 - 2018-11-28<\\/h4>\\n<ul>\\n<li>Fix: Lightbox dynamic tag crashes the editor<\\/li>\\n<\\/ul>\\n<h4>2.2.1 - 2018-11-28<\\/h4>\\n<ul>\\n<li>New: Added <code>ACF File<\\/code> Dynamic tag to support text controls.<\\/li>\\n<li>Tweak: Added option to hide item count bubble when cart is empty in Menu Cart widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6223\\">#6223<\\/a>)<\\/li>\\n<li>Tweak: Added Actions group for Lightbox and Contact URL tags<\\/li>\\n<li>Tweak: Added filter <code>elementor_pro\\/dynamic_tags\\/shortcode\\/should_escape<\\/code> to avoid escaping in Shortcode dynamic tag<\\/li>\\n<li>Tweak: MailPoet3 integration allow Subscriber to to subscribe to multiple lists<\\/li>\\n<li>Tweak: Added front-end max file size validation for upload fields<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> per Post-Type condition for theme builder<\\/li>\\n<li>Fix: Template widget panel not showing the selected template (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Conflict between ACF with Safari browser on Select option in Dynamic tag<\\/li>\\n<li>Fix: Add post classes only for the Single template<\\/li>\\n<li>Fix: Set document type as not editable for unsupported document like Global widget<\\/li>\\n<li>Fix: Avoid duplicate query for current WC product query<\\/li>\\n<li>Fix: Product Archive showing oldest products instead of latest<\\/li>\\n<li>Fix: CSS reset in Posts widget using cards skin<\\/li>\\n<\\/ul>\\n<h4>2.2.0 - 2018-11-19<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Attributes (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/290\\">#290<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3990\\">#3990<\\/a>)<\\/li>\\n<li>New: Added evergreen option for Countdown widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4459\\">#4459<\\/a>)<\\/li>\\n<li>New: Added expire actions option for Countdown widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5242\\">#5242<\\/a>)<\\/li>\\n<li>New: Introducing Reviews widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3854\\">#3854<\\/a>)<\\/li>\\n<li>New: Introducing Sitemap widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5594\\">#5594<\\/a>)<\\/li>\\n<li>New: Added Request Parameter dynamic tag (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4934\\">#4934<\\/a>)<\\/li>\\n<li>New: Added Shortcode dynamic tag<\\/li>\\n<li>New: Added Image and Video Lightbox dynamic tag<\\/li>\\n<li>New: Added Contact URL dynamic tag<\\/li>\\n<li>New: Added Featured Image Data dynamic tag<\\/li>\\n<li>New: Added default value to each field in the Form widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4268\\">#4268<\\/a>)<\\/li>\\n<li>New: Added &quot;Any Child Of&quot; condition to template conditions (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5321\\">#5321<\\/a>)<\\/li>\\n<li>New: Added &quot;In Child&quot; condition to template conditions (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5587\\">#5587<\\/a>)<\\/li>\\n<li>Tweak: Added Form Redirect URL with form values (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2564\\">#2564<\\/a>)<\\/li>\\n<li>Tweak: Added default post classes to template wrapper (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5959\\">#5959<\\/a>)<\\/li>\\n<li>Tweak: Better labels for terms in Query control (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6092\\">#6092<\\/a>)<\\/li>\\n<li>Tweak: Renamed &quot;Child Of&quot; templates condition to &quot;Direct Child Of&quot;<\\/li>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/condition_sub_id<\\/code> filter hook to allow template condition translations<\\/li>\\n<li>Tweak: Load the Template Library widget via Ajax for better performance<\\/li>\\n<li>Tweak: Added 404 page title for Page Title dynamic tag<\\/li>\\n<li>Fix: Menu Cart Toggle has # URL link (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6141\\">#6141<\\/a>)<\\/li>\\n<li>Fix: Alignment issue in Nav Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5790\\">#5790<\\/a>)<\\/li>\\n<li>Fix: Avoid potential security risk in forms<\\/li>\\n<li>Fix: Template By Author condition conflicts with 404 page<\\/li>\\n<li>Fix: Restored WC Product Content widget in Single Product template<\\/li>\\n<li>Fix: Theme Builder Preview URLs for date archives and 404 pages<\\/li>\\n<li>Fix: Highlight active menu anchor items only when scrolled into view<\\/li>\\n<li>Fix: Carousel Pagination Progress style to support new Swiper version<\\/li>\\n<\\/ul>\\n<h4>2.1.13 - 2018-11-12<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for new brand Finder in v2.3.0<\\/li>\\n<li>Fix: Settings conflict when there are multiple carousels in the page<\\/li>\\n<\\/ul>\\n<h4>2.1.12 - 2018-11-05<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.3<\\/li>\\n<li>Tweak: Better performance for Template Library widget<\\/li>\\n<li>Fix: Fatal error if a taxonomy used in a dynamic field is removed (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6029\\">#6029<\\/a>)<\\/li>\\n<li>Fix: Date Time dynamic tag now respect site language (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6001\\">#6001<\\/a>)<\\/li>\\n<li>Fix: Custom CSS printed twice in the front-end<\\/li>\\n<li>Fix: ACF Image field PHP warning (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6051\\">#6051<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.1.11 - 2018-10-22<\\/h4>\\n<ul>\\n<li>New: Added ACF local fields compatibility<\\/li>\\n<li>Tweak: Re-brand TypeKit by Adobe Fonts integration<\\/li>\\n<li>Fix: Exclude <code>is_embed<\\/code> from Singular condition (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5915\\">#5915<\\/a>)<\\/li>\\n<li>Fix: Avoid conflict with Ad Blockers and Share Buttons<\\/li>\\n<li>Fix: Current date time dynamic tag now shows local time<\\/li>\\n<li>Fix: Avoid conflict with 3rd party plugins that filter the permalink<\\/li>\\n<li>Fix: Avoid PHP warning when no groups are selected for MailChimp integration<\\/li>\\n<li>Fix: Avoid PHP warning if checkbox field is empty for ACF<\\/li>\\n<li>Fix: Respect password protected for a WC single product template<\\/li>\\n<li>Fix: Respect <code>order<\\/code> settings for WC archive also without pagination<\\/li>\\n<\\/ul>\\n<h4>2.1.10 - 2018-10-09<\\/h4>\\n<ul>\\n<li>Tweak: Added responsive alignment control for Share Buttons widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5821\\">#5821<\\/a>)<\\/li>\\n<li>Tweak: Added link control to Animated Headline widget<\\/li>\\n<li>Fix: Mobile nav menu jump on RTL (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5711\\">#5711<\\/a>)<\\/li>\\n<li>Fix: Responsive alignment control in Add to Cart widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5830\\">#5830<\\/a>)<\\/li>\\n<li>Fix: Added IE compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Post Content widget is now shown only on <code>Single<\\/code> templates<\\/li>\\n<li>Fix: Query Control Pagination with offset<\\/li>\\n<\\/ul>\\n<h4>2.1.9 - 2018-09-17<\\/h4>\\n<ul>\\n<li>Tweak: Added Centered Slides option for Slideshow carousel<\\/li>\\n<li>Fix: Allow only public CPT for Manual Selection in Query Control (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5091\\">#5091<\\/a>)<\\/li>\\n<li>Fix: ACF Gallery option support (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\">#5344<\\/a>)<\\/li>\\n<li>Fix: Page scrolling on resize when sticky is active (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5740\\">#5740<\\/a>)<\\/li>\\n<li>Fix: Edit custom name for Global Widget in the Navigator (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5689\\">#5689<\\/a>)<\\/li>\\n<li>Fix: Coverflow transition effect in Carousel<\\/li>\\n<li>Fix: Weird mobile behavior with Cube effect in Carousel<\\/li>\\n<li>Fix: Show the first thumbnail in the Slideshow carousel correctly<\\/li>\\n<\\/ul>\\n<h4>2.1.8 - 2018-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Added styling options for WC Additional Information widget<\\/li>\\n<li>Tweak: Added styling options for ''View Cart'' link in Products widget<\\/li>\\n<li>Fix: 3rd party plugin support for WC single product template (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5338\\">#5338<\\/a>)<\\/li>\\n<li>Fix: Layout of Related Product widget with WC native style<\\/li>\\n<\\/ul>\\n<h4>2.1.7 - 2018-09-03<\\/h4>\\n<ul>\\n<li>New: WC Archive Description widget<\\/li>\\n<li>Tweak: Added blend mode to Slides widget background overlay (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5555\\">#5555<\\/a>)<\\/li>\\n<li>Tweak: Added ''Current Subcategories'' option to Product Categories widget<\\/li>\\n<li>Fix: Added default vertical alignment in Author Box widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5589\\">#5589<\\/a>)<\\/li>\\n<li>Tweak: Added more blend mode options for CTA widget<\\/li>\\n<li>Tweak: Improved plugin updater method based on WordPress version<\\/li>\\n<li>Fix: Improved IE compatibility for Posts and Portfolio widgets<\\/li>\\n<li>Fix: Added default gap for products pagination<\\/li>\\n<li>Fix: Post thumbnail flickering in Safari browser<\\/li>\\n<li>Fix: Close mobile nav menu on click only in full-width mode<\\/li>\\n<li>Fix: Added trailing slash to pagination links in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.1.6 - 2018-08-28<\\/h4>\\n<ul>\\n<li>New: WC Product Category Image widget and Dynamic tag (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5117\\">#5117<\\/a>)<\\/li>\\n<li>Tweak: Allow HTML in Excerpt widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5491\\">#5491<\\/a>)<\\/li>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Tweak: Deprecated Follow option in the Facebook Button widget<\\/li>\\n<li>Fix: Posts widget grid in Safari &amp; IE11 (Depended on Elementor v2.2)<\\/li>\\n<li>Fix: Posts widget CSS when using cards skin in masonry mode<\\/li>\\n<li>Fix: ACF Image &amp; ACF URL option support (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\">#5344<\\/a>)<\\/li>\\n<li>Fix: WC product gallery links in RTL<\\/li>\\n<li>Fix: Dynamic tags in Call To Action widget<\\/li>\\n<\\/ul>\\n<h4>2.1.5 - 2018-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Fix: Posts Widget layout theme compatibility<\\/li>\\n<li>Fix: Added compatibility for WooCommerce native style<\\/li>\\n<\\/ul>\\n<h4>2.1.4 - 2018-08-19<\\/h4>\\n<ul>\\n<li>Fix: Layout issue compatibility with themes caused by v2.1 (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5442\\">#5442<\\/a>)<\\/li>\\n<li>Fix: Dynamic setting in Pricing Table widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5460\\">#5460<\\/a>)<\\/li>\\n<li>Fix: Hide Target URL control if is not necessary in Blockquote widget<\\/li>\\n<li>Fix: Selector specificity for WooCommerce Products widget<\\/li>\\n<li>Fix: WooCommerce conflicts in the editor in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.3 - 2018-08-15<\\/h4>\\n<ul>\\n<li>Fix: Thumbnails in the Posts widget jumping (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5350\\">#5350<\\/a>)<\\/li>\\n<li>Fix: Responsive grid in the Share Buttons widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5375\\">#5375<\\/a>)<\\/li>\\n<li>Fix: Added missing <code>setup_postdata<\\/code> for Product Data Tabs widget<\\/li>\\n<li>Fix: Rollback to older version of Flip Box widget to resolve 3D depth issue (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5399\\">#5399<\\/a>)<\\/li>\\n<li>Fix: Allowed types in the Upload File field are now case-insensitive (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5254\\">#5254<\\/a>)<\\/li>\\n<li>Fix: Carousel behavior when using a single slide<\\/li>\\n<\\/ul>\\n<h4>2.1.2 - 2018-08-12<\\/h4>\\n<ul>\\n<li>Fix: Error when ACF Pro is not installed (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5367\\">#5367<\\/a>)<\\/li>\\n<li>Fix: Edge cases in Inspector where document is a boolean<\\/li>\\n<li>Fix: Edge cases for incorrect file fields in PODS<\\/li>\\n<\\/ul>\\n<h4>2.1.1 - 2018-08-09<\\/h4>\\n<ul>\\n<li>Fix: Highlighted text in Animated Headline widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5345\\">#5345<\\/a>)<\\/li>\\n<li>Fix: Flip Box effect issues<\\/li>\\n<li>Fix: ACF Options page fields support (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5329\\">#5329<\\/a>)<\\/li>\\n<li>Fix: Import Pro templates in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.0 - 2018-08-07<\\/h4>\\n<ul>\\n<li>New: Introducing WooCommerce Builder (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1690\\">#1690<\\/a>)<\\/li>\\n<li>New: Introducing 12 new dynamic tags &amp; widgets for WooCommerce: Gallery, Image, Price, Rating, Description, Breadcrumbs, Data Tabs, Stock, Related, Upsell, Title &amp; Archive<\\/li>\\n<li>New: Introducing Cart Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4220\\">#4220<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4600\\">#4600<\\/a>)<\\/li>\\n<li>New: Added integration with Toolset (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\">#2949<\\/a>)<\\/li>\\n<li>New: Added integration with Pods (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4129\\">#4129<\\/a>)<\\/li>\\n<li>New: Added stick to bottom in scrolling effects (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4799\\">#4799<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect to Widgets under advanced tab<\\/li>\\n<li>New: Introducing Internal URL Dynamic Tag<\\/li>\\n<li>Tweak: Added a Last Updated Date in the Post Info widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4597\\">#4597<\\/a>)<\\/li>\\n<li>Tweak: Added Redirect after Logout option for Login widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4447\\">#4447<\\/a>)<\\/li>\\n<li>Tweak: Avoid repeating posts when using more than one in the Posts widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1878\\">#1878<\\/a>)<\\/li>\\n<li>Tweak: Add Custom Query hook for Query control (<a href=\\"https:\\/\\/developers.elementor.com\\/custom-query-filter\\/\\">More Info<\\/a>) (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1748\\">#1748<\\/a>)<\\/li>\\n<li>Tweak: Added form-message style (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\">#1180<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for button on the Price Table widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\">#4242<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for Call to action widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4767\\">#4767<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic Tags support for Google Map field (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4602\\">#4602<\\/a>)<\\/li>\\n<li>Tweak: Added an support for <code>label|value<\\/code> in options field (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4594\\">#4594<\\/a>)<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> condition for theme builder (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4681\\">#4681<\\/a>)<\\/li>\\n<li>Tweak: Added Activate\\/Deactivate license key via WP-CLI command (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4149\\">#4149<\\/a>)<\\/li>\\n<li>Tweak: Added <code>is_scroll<\\/code> trigger to scrolling effect (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4340\\">#4340<\\/a>)<\\/li>\\n<li>Tweak: Added In Same Term support for Post Navigation widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4177\\">#4177<\\/a>)<\\/li>\\n<li>Tweak: Added responsive control for Slides To Scroll control in all carousel widgets (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3697\\">#3697<\\/a>)<\\/li>\\n<li>Tweak: Added style options for Posts widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1335\\">#1335<\\/a>)<\\/li>\\n<li>Tweak: Added button CSS ID for Forms widget<\\/li>\\n<li>Tweak: Added pixel units to Post-Info divider height control<\\/li>\\n<li>Tweak: Rewrite sticky library to handle with stretch section, auto scroller &amp; more bugs<\\/li>\\n<li>Tweak: Re-organize the panel categories per document type<\\/li>\\n<li>Tweak: Added ACF support for <code>options-page<\\/code> fields<\\/li>\\n<li>Tweak: Added dynamic tag for Animated headlines<\\/li>\\n<li>Tweak: Added dynamic tag for BlockQuote widget<\\/li>\\n<li>Fix: Elementor Full Width template in GeneratePress theme (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4817\\">#4817<\\/a>)<\\/li>\\n<li>Fix: Checkbox fields can accidentally be set to required (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4324\\">#4324<\\/a>)<\\/li>\\n<li>Fix: Initial slide in Carousel widget<\\/li>\\n<li>Fix: Stay on current slide while editing in Carousel widget<\\/li>\\n<li>Fix: Default slides per device in Carousel widget<\\/li>\\n<li>Deprecated: Woo Products, Woo Elements &amp; Single elements widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.18 - 2018-07-27<\\/h4>\\n<ul>\\n<li>Fix: Global widget error on saving page<\\/li>\\n<\\/ul>\\n<h4>2.0.17 - 2018-07-26<\\/h4>\\n<ul>\\n<li>Fix: Sub menu indicator direction in Nav Menu widget<\\/li>\\n<li>Fix: Change the title and icon for Global Widget when is moving<\\/li>\\n<li>Fix: CSS wrapper selector for Page Document<\\/li>\\n<\\/ul>\\n<h4>2.0.16 - 2018-07-16<\\/h4>\\n<ul>\\n<li>Tweak: CSS Filter Control module is now included in Elementor<\\/li>\\n<li>Fix: Border gap in Portfolio widget when item gap set as <code>0<\\/code> (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5077\\">#5077<\\/a>)<\\/li>\\n<li>Fix: Restore current query after get Global Widget data<\\/li>\\n<li>Fix: Add action item in History on unlink Global widget<\\/li>\\n<\\/ul>\\n<h4>2.0.15 - 2018-07-10<\\/h4>\\n<ul>\\n<li>Fix: Dropdown menu items collapsing when activated (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4996\\">#4996<\\/a>)<\\/li>\\n<li>Fix: GMT offset in Countdown widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4997\\">#4997<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.0.14 - 2018-07-08<\\/h4>\\n<ul>\\n<li>Tweak: Added set method to form record for developers (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4983\\">#4983<\\/a>)<\\/li>\\n<li>Fix: Autoplay option for Carousels<\\/li>\\n<li>Fix: Close mobile menu on item click in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.13 - 2018-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for Elementor v2.1<\\/li>\\n<\\/ul>\\n<h4>2.0.12 - 2018-07-02<\\/h4>\\n<ul>\\n<li>Fix: Global widget PHP notices<\\/li>\\n<li>Fix: Slides widget active slide lost focus when clicking Editor tabs<\\/li>\\n<li>Fix: Form select field send all selected values on multiple selection<\\/li>\\n<li>Fix: Validate time field only if it''s not empty<\\/li>\\n<li>Fix: ConvertKit API not saving name field<\\/li>\\n<\\/ul>\\n<h4>2.0.11 - 2018-06-12<\\/h4>\\n<ul>\\n<li>Fix: Theme Builder <code>author<\\/code> archive condition (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4593\\">#4593<\\/a>)<\\/li>\\n<li>Fix: Respect password protected posts in Post Content widget<\\/li>\\n<li>Fix: Custom Fonts redirect to post edit screen in edge cases.<\\/li>\\n<\\/ul>\\n<h4>2.0.10 - 2018-06-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> filter hook for multi-language plugins<\\/li>\\n<li>Fix: Dynamic Post Terms missing taxonomies if the taxonomy is registered to more then one post types (#4386)<\\/li>\\n<li>Fix: Fields shortcode missing after removing a field in Form widget<\\/li>\\n<li>Deprecated: <code>get_theme_templates_by_location<\\/code> is replaced by <code>get_location_templates<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.0.9 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Fix: Compatibility for PHP version 5.4<\\/li>\\n<\\/ul>\\n<h4>2.0.8 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added Active state for Nav Menu dropdown<\\/li>\\n<li>Tweak: Added style for &quot;Nothing Found&quot; Message for Archive Posts widget<\\/li>\\n<li>Tweak: Removed caption control in Site Logo widget<\\/li>\\n<li>Tweak: Added option to position currency symbol before\\/after In Price Table widget<\\/li>\\n<li>Fix: Query control manual selection does not show more than 10 items (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4479\\">#4479<\\/a>)<\\/li>\\n<li>Fix: Styling glitch with terms list in Post Info widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4342\\">#4342<\\/a>)<\\/li>\\n<li>Fix: Sub terms missing in Query control in edge cases (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4527\\">#4527<\\/a>)<\\/li>\\n<li>Fix: Avoid rendering a template if it''s not published<\\/li>\\n<li>Fix: 404 Page style not working<\\/li>\\n<li>Fix: Price Table button with hover animation not working in editor<\\/li>\\n<li>Fix: Styling conflict in Call to Action widget<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Adding parent wrapper class to Site Title widget<\\/li>\\n<\\/ul>\\n<h4>2.0.7 - 2018-05-16<\\/h4>\\n<ul>\\n<li>Fix: Content not found on section when single is set to &quot;All Singular&quot;<\\/li>\\n<li>Fix: Open 404 template library for 404 page<\\/li>\\n<li>Tweak: Added CSS prefix for dev files<\\/li>\\n<li>Tweak: Removed product post type from display conditions<\\/li>\\n<\\/ul>\\n<h4>2.0.6 - 2018-05-15<\\/h4>\\n<ul>\\n<li>Tweak: Set type on create new single template<\\/li>\\n<li>Tweak: Always show the conditions dialog in the Draft status<\\/li>\\n<li>Tweak: Added document type <code>widget<\\/code><\\/li>\\n<li>Tweak: Added Post Custom Field tag to URL category<\\/li>\\n<li>Fix: When ACF Field Groups are Empty (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4428\\">#4428<\\/a>)<\\/li>\\n<li>Fix: Links inside carousel in edge cases<\\/li>\\n<li>Fix: Responsive issue in My Templates area<\\/li>\\n<li>Fix: Image alignment for post content with text alignment<\\/li>\\n<li>Fix: Post Content widget when preview post is missing<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Style settings for Post \\/ Archive Title widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.5 - 2018-05-08<\\/h4>\\n<ul>\\n<li>Fix: Creating a CPT with name like document-type breaks the editor (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4203\\">#4203<\\/a>)<\\/li>\\n<li>Fix: Added support for new version of reCAPTCHA<\\/li>\\n<li>Fix: Added fallback for controls after <code>post_status<\\/code><\\/li>\\n<li>Fix: Required field in forms widget<\\/li>\\n<li>Fix: Media Carousel in the Coverflow skin<\\/li>\\n<li>Fix: 404 Page show wrong template in edge cases<\\/li>\\n<li>Fix: Save the default menu in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.4 - 2018-05-02<\\/h4>\\n<ul>\\n<li>Tweak: Added parent''s class for extended widgets<\\/li>\\n<li>Tweak: Set entire-site as default to avoid conflict with save without conditions<\\/li>\\n<li>Tweak: Initialize global model when it''s needed<\\/li>\\n<li>Tweak: Removed some duplicate strings<\\/li>\\n<li>Tweak: Query control now includes empty terms<\\/li>\\n<li>Tweak: Design polish for conditions dialog<\\/li>\\n<li>Tweak: Decreasing <code>minimumInputLength<\\/code> to 1 of select2<\\/li>\\n<li>Fix: Editor not loading for single templates in edge cases<\\/li>\\n<li>Fix: Select2 in Safari takes it''s time to get the original select width (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4310\\">#4310<\\/a>)<\\/li>\\n<li>Fix: Slides per view not working for some effects<\\/li>\\n<li>Fix: New slides not showing in the editor<\\/li>\\n<li>Fix: Editor for section without a defined location, defaults to content area<\\/li>\\n<\\/ul>\\n<h4>2.0.3 - 2018-04-24<\\/h4>\\n<ul>\\n<li>Tweak: Optimize CSS for Post Info widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4214\\">#4214<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4216\\">#4216<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4225\\">#4225<\\/a>)<\\/li>\\n<li>Fix: Double render on frontend view in core locations<\\/li>\\n<li>Fix: Masonry not working in edge cases<\\/li>\\n<li>Fix: Added default setting for Author Info tag<\\/li>\\n<\\/ul>\\n<h4>2.0.2 - 2018-04-18<\\/h4>\\n<ul>\\n<li>Fix: Regenerate conditions to include all templates<\\/li>\\n<\\/ul>\\n<h4>2.0.1 - 2018-04-17<\\/h4>\\n<ul>\\n<li>Tweak: Added div wrapper for Nothing Found massage (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4136\\">#4136<\\/a>)<\\/li>\\n<li>Tweak: Show empty categories in Query Control &amp; Display Conditions (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4127\\">#4127<\\/a>)<\\/li>\\n<li>Tweak: Added Divider control for Post Info widget<\\/li>\\n<li>Fix: Update admin links in Yoast Breadcrumbs widget<\\/li>\\n<li>Fix: Sticky element conflict with clearfix CSS<\\/li>\\n<li>Fix: Compatibility for PHP version 5.4.32 &amp; 5.5.16 and below<\\/li>\\n<li>Fix: Avoid running <code>wp_head<\\/code> hooks twice<\\/li>\\n<\\/ul>\\n<h4>2.0.0 - 2018-04-16<\\/h4>\\n<ul>\\n<li>New: Introducing Theme Builder - <a href=\\"https:\\/\\/elementor.com\\/introducing-theme-builder\\/\\">Release Post<\\/a> (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/417\\">#417<\\/a>)<\\/li>\\n<li>New: Introducing Locations API to inject custom location templates<\\/li>\\n<li>New: Introducing Display Conditions for all dynamic templates<\\/li>\\n<li>New: Introducing Dynamic Tag feature - a new way to add dynamic content to your design<\\/li>\\n<li>New: Introducing Role manager to allow &quot;Content Only mode&quot; (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/483\\">#483<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/653\\">#653<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/885\\">#885<\\/a>)<\\/li>\\n<li>New: Introducing 9 new dynamic widgets: Archive Posts, Archive Title, Post Content, Post Info, Post Title, Post Excerpt, Featured Image, Site Logo &amp; Site Name (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\">#543<\\/a>)<\\/li>\\n<li>New: Introducing Developers area with guides and API documentation - <a href=\\"https:\\/\\/elementor.com\\/introducing-elementor-developer-api\\/\\">Release Post<\\/a> (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/451\\">#451<\\/a>)<\\/li>\\n<li>New: Introducing <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor-hello-theme\\">Elementor Hello Theme<\\/a> - A demonstration theme for developers<\\/li>\\n<li>New: Added new type of templates: Header, Footer, Single and Archive (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2761\\">#2761<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2623\\">#2623<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2109\\">#2109<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2061\\">#2061<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2439\\">#2439<\\/a>)<\\/li>\\n<li>New: Design 404 page with Single template (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1558\\">#1558<\\/a>)<\\/li>\\n<li>New: Design Search Results with Archive template (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3196\\">#3196<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2590\\">#2590<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect for sections including <em>Sticky Element<\\/em> per device (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2412\\">#2412<\\/a>)<\\/li>\\n<li>New: Integration with Custom Fields (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2054\\">#2054<\\/a>)<\\/li>\\n<li>New: Partial support for Toolset integration (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\">#2949<\\/a>)<\\/li>\\n<li>New: Partial support for Pods integration (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2169\\">#2169<\\/a>)<\\/li>\\n<li>New: Partial support for ACF integration (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2041\\">#2041<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2059\\">#2059<\\/a>)<\\/li>\\n<li>Tweak: Add custom fields support for ActiveCampaign (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3531\\">#3531<\\/a>)<\\/li>\\n<li>Tweak: Allow brackets in Forms Tel field<\\/li>\\n<li>Tweak: Added currency format control for Price Table widget<\\/li>\\n<li>Tweak: Reduced API request for some servers<\\/li>\\n<li>Fix: Dropdown <code>border-radius<\\/code> in Nav Menu widget<\\/li>\\n<li>Fix: Price List widget layout breaks in edge cases<\\/li>\\n<li>Note: This version requires Elementor v2.0.6<\\/li>\\n<\\/ul>\\n<h4>1.15.6 - 2018-03-28<\\/h4>\\n<ul>\\n<li>Fix: Removed duplicate Custom CSS section (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3938\\">#3938<\\/a>)<\\/li>\\n<li>Fix: <code>box-shadow<\\/code> issue with cards skin (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3940\\">#3940<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.5 - 2018-03-27<\\/h4>\\n<ul>\\n<li>Fix: Added global widget compatibility for Elementor v2.0<\\/li>\\n<li>Fix: Reduced API request for some servers<\\/li>\\n<\\/ul>\\n<h4>1.15.4 - 2018-03-26<\\/h4>\\n<ul>\\n<li>Tweak: Allow brackets in phone field<\\/li>\\n<li>Tweak: Added compatibility with Yoast 7.0.+<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Support for multiple carousel setting in editor<\\/li>\\n<li>Fix: <code>on_export<\\/code> issue in forms widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3890\\">#3890<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.3 - 2018-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Added unique class to field group div (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3595\\">#3595<\\/a>)<\\/li>\\n<li>Fix: Screen Options missing when Pro is active (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3622\\">#3622<\\/a>)<\\/li>\\n<li>Fix: Allow label styling even when <code>show labels<\\/code> is set hide (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3544\\">#3544<\\/a>)<\\/li>\\n<li>Fix: Typography control not working in edge cases<\\/li>\\n<li>Fix: Safari compatibility for Search widget<\\/li>\\n<\\/ul>\\n<h4>1.15.2 - 2018-02-27<\\/h4>\\n<ul>\\n<li>Fix: Only add support mine-type if needed (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3543\\">#3543<\\/a>)<\\/li>\\n<li>Fix: Better support for Old Typekit kits<\\/li>\\n<\\/ul>\\n<h4>1.15.1 - 2018-02-21<\\/h4>\\n<ul>\\n<li>Tweak: Custom font title placeholder is not <code>enter font family<\\/code><\\/li>\\n<li>Tweak: Custom font title set as required<\\/li>\\n<li>Fix: Custom font, <code>font-face<\\/code> enqueued only once if used in global (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3513\\">#3513<\\/a>)<\\/li>\\n<li>Fix: Added workaround for upload validation which relies on a PHP extension (fileinfo) with inconsistent reporting behavior.<\\/li>\\n<\\/ul>\\n<h4>1.15.0 - 2018-02-19<\\/h4>\\n<ul>\\n<li>New: Added custom fonts manager for self hosted fonts (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/852\\">#852<\\/a>)<\\/li>\\n<li>New: Integration with Adobe TypeKit fonts (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/631\\">#631<\\/a>)<\\/li>\\n<li>Tweak: Clear menu from Nav Menu widget on template export<\\/li>\\n<li>Tweak: Allow zero for GetResponse integration as <code>day of cycle<\\/code><\\/li>\\n<\\/ul>\\n<h4>1.14.2 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Fix: Global widget content that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.14.1 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>none<\\/code> option to content animation in CTA widget<\\/li>\\n<li>Tweak: Added <code>form_id<\\/code> to ActiveCampaign integration (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3422\\">#3422<\\/a>)<\\/li>\\n<li>Fix: Page crashed when Global widget not found.<\\/li>\\n<\\/ul>\\n<h4>1.14.0 - 2018-02-12<\\/h4>\\n<ul>\\n<li>New: Added Call to Action widget<\\/li>\\n<li>Tweak: MailPoet pull field mapping from MailPoet instead of hardcoded<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Allow zero (0) to be accepted as a field value<\\/li>\\n<li>Fix: Login form when custom login URL is set<\\/li>\\n<li>Fix: Added Day of cycle control to GetResponse integration<\\/li>\\n<\\/ul>\\n<h4>1.13.2 - 2018-01-23<\\/h4>\\n<ul>\\n<li>Tweak: Added placeholder to Password field<\\/li>\\n<li>Tweak: Removed <code>subscriber_already_exists_message<\\/code> control to prevent potential data leakage<\\/li>\\n<li>Fix: MailPoet Subscriber Already Exists error validation against translated string directly from MailPoet<\\/li>\\n<li>Fix: Changed <code>imagesLoaded()<\\/code> to Vanilla JS to avoid compatibility issues with some themes<\\/li>\\n<li>Fix: Only validate Tel field if not empty<\\/li>\\n<li>Fix: Stop slider while editing<\\/li>\\n<\\/ul>\\n<h4>1.13.1 - 2018-01-16<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with old PHP versions<\\/li>\\n<\\/ul>\\n<h4>1.13.0 - 2018-01-16<\\/h4>\\n<ul>\\n<li>New: Added File Upload field for Forms widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1482\\">#1482<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Acceptance field for Forms widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1693\\">#1693<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Date field for Forms widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1868\\">#1868<\\/a>)<\\/li>\\n<li>New: Added Time field for Forms widget<\\/li>\\n<li>New: Added Password field for Forms widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2164\\">#2164<\\/a>)<\\/li>\\n<li>New: Added HTML field for Forms widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1500\\">#1500<\\/a>)<\\/li>\\n<li>Tweak: Added characters validation for Tel field<\\/li>\\n<li>Tweak: Added min &amp; max validation for Number field<\\/li>\\n<li>Tweak: Added multiple selection for Select field<\\/li>\\n<li>Tweak: Added donReach integration for Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.12.3 - 2018-01-09<\\/h4>\\n<ul>\\n<li>Fix: Render element plain content instead of parsed content when not needed in global widget<\\/li>\\n<li>Fix: Apply <code>url-encoding<\\/code> to &quot;Tweet&quot; button text in Blockquote widget to prevent unexpected corruption of the tweet text<\\/li>\\n<li>Fix: Removed My Account link from dashboard widget<\\/li>\\n<\\/ul>\\n<h4>1.12.2 - 2018-01-03<\\/h4>\\n<ul>\\n<li>Tweak: Added animation none for Nav Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2964\\">#2964<\\/a>)<\\/li>\\n<li>Fix: Active license button style<\\/li>\\n<\\/ul>\\n<h4>1.12.1 - 2018-01-02<\\/h4>\\n<ul>\\n<li>Tweak: Removed theme-element widgets from plain content<\\/li>\\n<li>Tweak: Set all theme-element widgets to extend same widget Base<\\/li>\\n<li>Tweak: Removed credit URL in forms meta data<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.9<\\/li>\\n<li>Fix: Validate Get response Error as real error<\\/li>\\n<li>Fix: Removed responsive height control from Facebook Page widget<\\/li>\\n<\\/ul>\\n<h4>1.12.0 - 2017-12-20<\\/h4>\\n<ul>\\n<li>New: Added Drip integration to Forms<\\/li>\\n<li>New: Added ActiveCampaign integration to Forms<\\/li>\\n<li>New: Added ConverKit integration to Forms<\\/li>\\n<li>New: Added GetResponse integration to Forms<\\/li>\\n<li>New: Added form <code>id<\\/code>, <code>name<\\/code> attributes to handle integration with auto collectors like HubSpot<\\/li>\\n<li>New: Added Global API key for MailChimp to improve the workflow<\\/li>\\n<li>Tweak: Better error handling and message display for Forms<\\/li>\\n<li>Fix: PHP notice Undefined variable <code>$cc_header<\\/code> (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2934\\">#2934<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.11.0 - 2017-12-11<\\/h4>\\n<ul>\\n<li>New: Added a native Comments widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\">#543<\\/a>)<\\/li>\\n<li>New: Added an Author Box widget<\\/li>\\n<li>New: Added a Post Navigation widget<\\/li>\\n<li>New: Added a Yoast Breadcrumbs widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2749\\">#2749<\\/a>)<\\/li>\\n<li>Tweak: Added a close button to search widget under Full Screen skin (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2762\\">#2762<\\/a>)<\\/li>\\n<li>Fix: Allow currency symbol to appear even if price isn''t numeric<\\/li>\\n<li>Fix: Edge cases when the nav menu is empty in a stretched section<\\/li>\\n<li>Fix: Added fallback when you remove the <code>space-between<\\/code> on Swiper carousel<\\/li>\\n<\\/ul>\\n<h4>1.10.2 - 2017-12-03<\\/h4>\\n<ul>\\n<li>Fix: Missing save widget icon (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2878\\">#2878<\\/a>)<\\/li>\\n<li>Fix: Global widgets not saving edits (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2874\\">#2874<\\/a>)<\\/li>\\n<li>Fix: Removed <code>white-space: nowrap;<\\/code> property from vertical menu in Nav Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2815\\">#2815<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.10.1 - 2017-11-30<\\/h4>\\n<ul>\\n<li>Tweak: Added default value for search form<\\/li>\\n<li>Tweak: Order template list A-Z in the library widget<\\/li>\\n<li>Tweak: get_users\\/authors query is now done using AJAX only, for better performance in Query Control (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2865\\">#2865<\\/a>)<\\/li>\\n<li>Fix: When adding <code>.00<\\/code> it is not displayed on the front<\\/li>\\n<li>Fix: Make sure space between is numeric for carousel control<\\/li>\\n<li>Fix: Added space for radio &amp; checkbox fields in form widget<\\/li>\\n<\\/ul>\\n<h4>1.10.0 - 2017-11-15<\\/h4>\\n<ul>\\n<li>New: Added native Search form widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2576\\">#2576<\\/a>)<\\/li>\\n<li>Tweak: Added Slides To Scroll &amp; Loop controls to Media Carousel and Testimonials widgets<\\/li>\\n<li>Tweak: Added Inline editing to Blockquote widget<\\/li>\\n<li>Fix: Animated Headline color bug (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2516\\">#2516<\\/a>)<\\/li>\\n<li>Fix: Animated Headline with Rotating skin<\\/li>\\n<li>Fix: RTL fix for Animated Headline widget in ''typing'' and ''clip'' animations<\\/li>\\n<li>Fix: Empty menu cause jQuery to crash in Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2662\\">#2662<\\/a>)<\\/li>\\n<li>Fix: Custom CSS gone after reloading the editor<\\/li>\\n<\\/ul>\\n<h4>1.9.5 - 2017-10-27<\\/h4>\\n<ul>\\n<li>Fix: Broken Global widget with JS (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2639\\">#2639<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.9.4 - 2017-10-24<\\/h4>\\n<ul>\\n<li>Tweak: Improved UI for notices and license page<\\/li>\\n<li>Fix: Update system conflict with other EDD plugins<\\/li>\\n<li>Fix: WooCommerce frontend hooks on Elementor editor (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2577\\">#2577<\\/a>)<\\/li>\\n<li>Fix: Removed default border left in Nav Menu dropdown CSS (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2496\\">#2496<\\/a>)<\\/li>\\n<li>Fix: Increased submenu max-width (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2558\\">#2558<\\/a>)<\\/li>\\n<li>Fix: Save global templates without their defaults<\\/li>\\n<li>Fix: Horizontal scrolling issue with posts grid<\\/li>\\n<\\/ul>\\n<h4>1.9.3 - 2017-10-03<\\/h4>\\n<ul>\\n<li>Fix: Condition slide style that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.9.2 - 2017-10-02<\\/h4>\\n<ul>\\n<li>New: Added integration with MailPoet 3 for Forms actions<\\/li>\\n<li>Fix: Removed height control from Testimonial carousel in mobile editing mode<\\/li>\\n<li>Fix: Removed bottom padding when there''s no pagination in Testimonial carousel<\\/li>\\n<li>Fix: Added condition for slides style section in skin bubble mode<\\/li>\\n<li>Fix: Slides per view control for mobile editing in Testimonial carousel<\\/li>\\n<li>Fix: Navigation Arrows icons matched with common Elementor Navigation Arrows<\\/li>\\n<\\/ul>\\n<h4>1.9.1 - 2017-09-28<\\/h4>\\n<ul>\\n<li>Fix: Slides per view for slideshow carousel<\\/li>\\n<li>Fix: Final polish for the new Testimonial Carousel widget<\\/li>\\n<li>Fix: Don''t play video if slide type is not video<\\/li>\\n<li>Fix: Removed slides style section condition (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2497\\">#2497<\\/a>)<\\/li>\\n<li>Fix: Set cursor as pointer for slideshow thumbnails<\\/li>\\n<\\/ul>\\n<h4>1.9.0 - 2017-09-26<\\/h4>\\n<ul>\\n<li>New: Added Media Carousel widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/216\\">#216<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/347\\">#347<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2209\\">#2209<\\/a>)<\\/li>\\n<li>New: Added Testimonial Carousel widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/715\\">#715<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.3 - 2017-09-24<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility for WordPress 4.8.2 &amp; 4.7.6<\\/li>\\n<li>Fix: Remove slashes from Form sent data<\\/li>\\n<\\/ul>\\n<h4>1.8.2 - 2017-09-19<\\/h4>\\n<ul>\\n<li>Tweak: Added target URL for the tweet message in Blockquote widget<\\/li>\\n<li>Tweak: Render the slide height before the slider is finished loading<\\/li>\\n<li>Fix: Space between words for Animated Headline widget<\\/li>\\n<li>Fix: RTL compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Italic font style for Animated Headline widget<\\/li>\\n<li>Fix: Excluded Menu widget from the WP Editor text rendering<\\/li>\\n<\\/ul>\\n<h4>1.8.1 - 2017-09-18<\\/h4>\\n<ul>\\n<li>Fix: WCAG Compatible &quot;required&quot; field attribute for W3C validation (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2391\\">#2391<\\/a>)<\\/li>\\n<li>Fix: Print the main menu only when is necessary in Menu widget<\\/li>\\n<li>Fix: Use CSS media query instead of JS to hide items in Menu widget to avoid flickering on page load (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2381\\">#2381<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.0 - 2017-09-12<\\/h4>\\n<ul>\\n<li>New: Added Nav Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1406\\">#1406<\\/a>)<\\/li>\\n<li>Fix: Field ID for checkbox control in Form widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2279\\">#2279<\\/a>)<\\/li>\\n<li>Fix: Style for Blockquote widget included<\\/li>\\n<\\/ul>\\n<h4>1.7.2 - 2017-09-07<\\/h4>\\n<ul>\\n<li>Tweak: Loading Facebook SDK via JS for better compatibility with caching plugins<\\/li>\\n<li>Fix: Responsive Embed Facebook post widget for Safari iOS (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2340\\">#2340<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.7.1 - 2017-09-05<\\/h4>\\n<ul>\\n<li>Fix: Facebook SDK version<\\/li>\\n<\\/ul>\\n<h4>1.7.0 - 2017-09-05<\\/h4>\\n<ul>\\n<li>New: Added Facebook Button widget for Like, Recommend, Share and Follow<\\/li>\\n<li>New: Added Facebook Embed widget for Post, Video and Comment<\\/li>\\n<li>New: Added Facebook Comments widget<\\/li>\\n<li>New: Added Facebook Page widget (Previously known as Like Box)<\\/li>\\n<li>New: Added Blockquote widget with Tweet button<\\/li>\\n<li>Tweak: Added Facebook SDK integration for all Facebook widgets<\\/li>\\n<li>Fix: Animated headline rotating with long words<\\/li>\\n<\\/ul>\\n<h4>1.6.1 - 2017-08-28<\\/h4>\\n<ul>\\n<li>Fix: Animated Headline marker gets in front of neighboring spans even when &quot;Bring to Front&quot; is not set<\\/li>\\n<li>Fix: Stroke animation in Animated Headline for MS Edge browser<\\/li>\\n<li>Fix: Animated headline with more than 1-word per rotation<\\/li>\\n<li>Fix: Animated Headline in two lines<\\/li>\\n<li>Fix: Some errors in Global widget<\\/li>\\n<\\/ul>\\n<h4>1.6.0 - 2017-08-22<\\/h4>\\n<ul>\\n<li>New: Added Animated Headline widget<\\/li>\\n<li>New: Added Hidden field for Forms widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2038\\">#2038<\\/a>)<\\/li>\\n<li>Tweak: Added notice to update Elementor to v1.6.5 or higher<\\/li>\\n<li>Fix: CSS Animations names no longer minified, in order to prevent unexpected conflicts<\\/li>\\n<\\/ul>\\n<h4>1.5.9 - 2017-08-16<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.7<\\/li>\\n<li>Fix: Portfolio compatibility for GeneratePress theme<\\/li>\\n<li>Fix: Portfolio filter compatibility for RTL<\\/li>\\n<li>Fix: Pagination apply for all posts widget in the page<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.8 - 2017-07-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.6<\\/li>\\n<li>Fix: Improved backward compatibility for query control rename<\\/li>\\n<\\/ul>\\n<h4>1.5.7 - 2017-07-24<\\/h4>\\n<ul>\\n<li>Tweak: Moved JS render of reCAPTCHA to a separate file<\\/li>\\n<li>Tweak: Display the label in the reCAPTCHA field for better experience<\\/li>\\n<li>Tweak: Rename <code>panel-posts-control<\\/code> to <code>query-control<\\/code> and added fallback support<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor with history feature<\\/li>\\n<li>Fix: reCAPTCHA preview on the editor<\\/li>\\n<li>Fix: Manual selection (query control) has stopped working after saving (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2000\\">#2000<\\/a>)<\\/li>\\n<li>Fix: Added condition for icon size control in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.5.6 - 2017-07-12<\\/h4>\\n<ul>\\n<li>Fix: Query Control correction for taxonomies (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1963\\">#1963<\\/a>)<\\/li>\\n<li>Fix: Custom CSS override scheme color in the editor<\\/li>\\n<li>Fix: Added order by Menu Order for Query Control in WC widget<\\/li>\\n<li>Fix: Glitch with Flip Box background overlay<\\/li>\\n<\\/ul>\\n<h4>1.5.5 - 2017-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Moved reCAPTCHA render to handler &amp; load only if a form is exist<\\/li>\\n<li>Fix: MailChimp integration: Default number of items returned by API increased to 999<\\/li>\\n<li>Fix: MailChimp integration: Refresh the groups list if API is changed<\\/li>\\n<li>Fix: Sorted items in filter bar by A-Z<\\/li>\\n<li>Fix: Editor glitch with Elementor v1.5 (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1927\\">#1927<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.5.4 - 2017-06-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved compatibility for Elementor v1.5<\\/li>\\n<li>Fix: URL default for Add To Cart widget<\\/li>\\n<li>Fix: Allowed <code>date<\\/code> and <code>birthday<\\/code> fields as text for MailChimp integration<\\/li>\\n<\\/ul>\\n<h4>1.5.3 - 2017-06-19<\\/h4>\\n<ul>\\n<li>Tweak: Make flip-box height responsive control<\\/li>\\n<li>Fix: Facebook share count now gets retrieved by Elementor (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1829\\">#1829<\\/a>)<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.2 - 2017-06-13<\\/h4>\\n<ul>\\n<li>Fix: Custom CSS panel location compatibility for the old versions<\\/li>\\n<\\/ul>\\n<h4>1.5.1 - 2017-06-12<\\/h4>\\n<ul>\\n<li>Fix: MailChimp update existing user registration<\\/li>\\n<li>Fix: Global widget with JS in the editor mode<\\/li>\\n<li>Fix: Label section condition in Login widget<\\/li>\\n<li>Fix: Changes to unlinked global widget do not appear in the editor<\\/li>\\n<\\/ul>\\n<h4>1.5.0 - 2017-05-23<\\/h4>\\n<ul>\\n<li>New: Added Cards, a new skin for Posts widget<\\/li>\\n<li>New: Added Exclude option to post query control group<\\/li>\\n<li>Tweak: Added <code>post_class()<\\/code> for each post in the loop<\\/li>\\n<li>Tweak: Added <code>.elementor-posts-masonry<\\/code> class when Masonry layout is enabled<\\/li>\\n<li>Tweak: Added compatibility for the next release of Elementor v1.5.0<\\/li>\\n<li>Tweak: CSS <code>autoprefixer<\\/code> now supports last 5 versions of browsers<\\/li>\\n<li>Tweak: Added <code>imageLoaded<\\/code> library for Posts &amp; Portfolio widgets<\\/li>\\n<\\/ul>\\n<h4>1.4.4 - 2017-05-18<\\/h4>\\n<ul>\\n<li>Fix: Force Mailchimp API to return all lists and not just 10 (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1683\\">#1683<\\/a>)<\\/li>\\n<li>Fix: Added <code>.elementor-form<\\/code> class to Login form to fix style glitch<\\/li>\\n<\\/ul>\\n<h4>1.4.3 - 2017-05-14<\\/h4>\\n<ul>\\n<li>Tweak: Added Redirect After Login option to Login widget<\\/li>\\n<li>Tweak: Stay in the current page after logout in Login widget<\\/li>\\n<li>Tweak: Preparation for Elementor settings tabs in future version<\\/li>\\n<li>Fix: Pinterest in Share Buttons widget now sharing the URL alone<\\/li>\\n<li>Fix: Bug with <code>active<\\/code> class in portfolio filter item<\\/li>\\n<li>Fix: Higher specific list-style-type <code>none<\\/code> for filter items to override some theme style<\\/li>\\n<\\/ul>\\n<h4>1.4.2 - 2017-05-06<\\/h4>\\n<ul>\\n<li>Fix: Temporary patch for form field shortcode in some servers<\\/li>\\n<\\/ul>\\n<h4>1.4.1 - 2017-05-03<\\/h4>\\n<ul>\\n<li>Fix: Bug with custom success message in form widget<\\/li>\\n<li>Fix: Bug with meta data in email action<\\/li>\\n<\\/ul>\\n<h4>1.4.0 - 2017-05-03<\\/h4>\\n<ul>\\n<li>New: Forms: integration with MailChimp<\\/li>\\n<li>New: Forms: integration with MailPoet<\\/li>\\n<li>New: Forms: Added Email 2 action for email confirmation<\\/li>\\n<li>New: Forms: Added shortcodes for fields<\\/li>\\n<li>New: Forms: Added custom ID for fields<\\/li>\\n<li>New: Forms: Added option to edit email HTML template (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\">#1180<\\/a>)<\\/li>\\n<li>New: Added Login widget<\\/li>\\n<li>Tweak: Move <code>send_html<\\/code> control to <code>email_content_type<\\/code><\\/li>\\n<li>Fix: Email still sent even if validation failed in form widget<\\/li>\\n<\\/ul>\\n<h4>1.3.2 - 2017-05-01<\\/h4>\\n<ul>\\n<li>New: Added action <code>elementor_pro\\/init<\\/code> for better integration with Elementor Pro<\\/li>\\n<li>Fix: Posts without featured image in Posts widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1234\\">#1234<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1382\\">#1382<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA &amp; Honeypot fields with new method<\\/li>\\n<li>Fix: Added border width control in Share Buttons to avoid a glitch on Chrome browser<\\/li>\\n<li>Fix: Border radius glitch on hover in Share Buttons<\\/li>\\n<\\/ul>\\n<h4>1.3.1 - 2017-04-25<\\/h4>\\n<ul>\\n<li>Fix: Conflict update with revision history module<\\/li>\\n<\\/ul>\\n<h4>1.3.0 - 2017-04-25<\\/h4>\\n<ul>\\n<li>New: Added Share Buttons widget (<a href=\\"https:\\/\\/wordpress.org\\/support\\/topic\\/social-sharing-buttons-is-it-possible\\/\\">Topic<\\/a>)<\\/li>\\n<li>New: Added Custom CSS for Page Settings<\\/li>\\n<li>New: Added Masonry layout for Portfolio widget<\\/li>\\n<li>New: Added Cc &amp; Bcc options to email action (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1181\\">#1181<\\/a>)<\\/li>\\n<li>New: Introduced <code>ElementorProModulesFormsClassesAction_Base<\\/code> class for better 3rd party integration for forms<\\/li>\\n<li>Tweak: Debugger module now also shows errors from Pro<\\/li>\\n<li>Tweak: Added options for Elementor Library<\\/li>\\n<li>Tweak: New base posts module for optimized performance<\\/li>\\n<li>Tweak: Adjusting Posts \\/ Portfolio to the new structure<\\/li>\\n<li>Fix: Export for posts \\/ portfolio<\\/li>\\n<li>Fix: Duplicate repeater field with switcher control (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1442\\">#1442<\\/a>)<\\/li>\\n<li>Fix: Post per Page in the query control<\\/li>\\n<li>Fix: Metadata does not come through on form emails (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1566\\">#1566<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.2.6 - 2017-04-19<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with WooCommerce 3.0 - Products &amp; Add to Cart widgets<\\/li>\\n<\\/ul>\\n<h4>1.2.5 - 2017-04-18<\\/h4>\\n<ul>\\n<li>Fix: Offset query for posts widgets (Posts, Portfolio and Products)<\\/li>\\n<\\/ul>\\n<h4>1.2.4 - 2017-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added Indian Rupee sign to Price Table widget<\\/li>\\n<li>Fix: Portfolio grid for IE11<\\/li>\\n<li>Fix: Link target blank in Price List widget<\\/li>\\n<li>Fix: Active item for filter bar in Portfolio widget<\\/li>\\n<\\/ul>\\n<h4>1.2.3 - 2017-03-06<\\/h4>\\n<ul>\\n<li>Tweak: Fully compatible with Elementor v1.3.0<\\/li>\\n<li>Tweak: Added trigger for after form submission in Forms widget<\\/li>\\n<li>Tweak: Changed handle name in reCAPTCHA field to avoid conflict with other contact forms<\\/li>\\n<li>Fix: Portfolio filter syntax in Non-Latin languages<\\/li>\\n<li>Fix: Added <code>no-repeat<\\/code> property for slide with <code>background-size:contain<\\/code><\\/li>\\n<li>Fix: Condition control &amp; Import value in Posts widgets<\\/li>\\n<li>Fix: Offset and Pagination in WordPress (<a href=\\"https:\\/\\/codex.wordpress.org\\/Making_Custom_Queries_using_Offset_and_Pagination\\">More Info<\\/a>)<\\/li>\\n<li>Fix: Submit handler bubbling for custom events in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.2.2 - 2017-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Change name from Side A\\/B to Front and Back in Flip Box widget<\\/li>\\n<li>Fix: Error when saving third party widgets in the global widget<\\/li>\\n<li>Fix: Image position &quot;none&quot; remains visible in editor preview (Posts)<\\/li>\\n<li>Fix: Hide the pagination when there are no links<\\/li>\\n<\\/ul>\\n<h4>1.2.1 - 2017-02-21<\\/h4>\\n<ul>\\n<li>Fix: Firefox Flip Box 3D compatibility<\\/li>\\n<\\/ul>\\n<h4>1.2.0 - 2017-02-21<\\/h4>\\n<ul>\\n<li>New: Added Flip Box widget<\\/li>\\n<li>New: Added Ken Burns effect for slides<\\/li>\\n<li>New: Added Masonry layout for Posts widget<\\/li>\\n<li>New: Added Pagination option for Posts widget<\\/li>\\n<li>Tweak: Added background size contain to slides<\\/li>\\n<li>Tweak: Improve Query control by preload items<\\/li>\\n<li>Fix: Text color for Checkbox and Radio fields<\\/li>\\n<\\/ul>\\n<h4>1.1.2 - 2017-02-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>aria-required<\\/code> for better accessibility in forms widget<\\/li>\\n<li>Fix: Conflict Call to <code>undefined<\\/code> method in Posts &amp; Portfolio widgets (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1271\\">#1271<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1266\\">#1266<\\/a>)<\\/li>\\n<li>Fix: Submit button HTML after error sending<\\/li>\\n<li>Fix: Success message for <code>skip_email<\\/code> function<\\/li>\\n<li>Notice: Elementor 1.2.0 or later now required<\\/li>\\n<\\/ul>\\n<h4>1.1.1 - 2017-01-24<\\/h4>\\n<ul>\\n<li>Fix: Can''t save global widgets when <code>WP_DEBUG<\\/code> is <code>true<\\/code><\\/li>\\n<li>Fix: Undefined variable in WC widgets<\\/li>\\n<li>Fix: Removed duplicate strings<\\/li>\\n<\\/ul>\\n<h4>1.1.0 - 2017-01-24<\\/h4>\\n<ul>\\n<li>New: Price Table widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/102\\">#102<\\/a>)<\\/li>\\n<li>New: WooCommerce Add to Cart widget<\\/li>\\n<li>New: WooCommerce Categories widget<\\/li>\\n<li>New: WooCommerce Elements widget<\\/li>\\n<li>New: Honeypot field for Forms widgets<\\/li>\\n<li>Tweak: Added inline options for taxonomies &amp; authors if is less than 15 items<\\/li>\\n<li>Tweak: Added Required Mark for fields in Forms widget<\\/li>\\n<li>Fix: CSS selectors priority in Slides widget<\\/li>\\n<li>Fix: CSS bug in Price List widget<\\/li>\\n<li>Fix: Update all Post CSS files that includes specific Global Widget<\\/li>\\n<\\/ul>\\n<h4>1.0.9 - 2017-01-18<\\/h4>\\n<ul>\\n<li>Fix: Auto complete bug in query controls<\\/li>\\n<li>Fix: Render template with escaping slashes<\\/li>\\n<li>Fix: Reply-to field in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.0.8 - 2017-01-11<\\/h4>\\n<ul>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Removed go pro link from plugins page in admin<\\/li>\\n<\\/ul>\\n<h4>1.0.7 - 2017-01-05<\\/h4>\\n<ul>\\n<li>Tweak: Added filter by featured \\/ sale for WC Products widget<\\/li>\\n<li>Tweak: Added author control in Portfolio widget<\\/li>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Added support for empty image ratio<\\/li>\\n<li>Fix: Avoid nesting a sidebar within a template that will appear in the sidebar itself<\\/li>\\n<\\/ul>\\n<h4>1.0.6 - 2017-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Added Auto-updates for local translation files<\\/li>\\n<li>Fix: Custom CSS for Global widgets<\\/li>\\n<li>Fix: Remove <code>nonce<\\/code> field (Fix some cache plugins)<\\/li>\\n<\\/ul>\\n<h4>1.0.5 - 2016-12-27<\\/h4>\\n<ul>\\n<li>Fix: Slide element bug fix - ''Link apply on'' logic<\\/li>\\n<li>Fix: Removed unique wrapper for Custom CSS in order to allow media queries (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1086\\">#1086<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.0.4 - 2016-12-21<\\/h4>\\n<ul>\\n<li>Tweak: Mobile Editing for fields in the form widget<\\/li>\\n<li>Tweak: Mobile Editing for posts<\\/li>\\n<li>Tweak: Allow send form as HTML<\\/li>\\n<li>Tweak: Improved auto upgrades for Multisite installation<\\/li>\\n<li>Tweak: Improve editor rendering experience for Portfolio widget<\\/li>\\n<li>Fix: Posts widget check if image exist<\\/li>\\n<li>Fix: Changed the clone method for global widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1042\\">#1042<\\/a>)<\\/li>\\n<li>Fix: Bug slides in RTL (removed direction control)<\\/li>\\n<li>Fix: Slides with no height jumps when changing slides<\\/li>\\n<\\/ul>\\n<h4>1.0.3 - 2016-12-13<\\/h4>\\n<ul>\\n<li>Fix: Added escape placeholder for HTML Entities in form widget<\\/li>\\n<li>Fix: Countdown widget RTL bug<\\/li>\\n<li>Fix: Remove redundant #elementor selector for control style<\\/li>\\n<li>Fix: Added prefixing with ''0'' for one digit number in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>1.0.2 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: Page layout collapses when inserting reCAPTCHA field in Form<\\/li>\\n<\\/ul>\\n<h4>1.0.1 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: WordPress widgets disappear from Editor when Elementor Pro active<\\/li>\\n<\\/ul>\\n<h4>1.0.0 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Initial release<\\/li>\\n<\\/ul>\\";}","new_version":"3.32.2","name":"Elementor Pro","slug":"elementor-pro","url":"https:\\/\\/elementor.com\\/pro\\/changelog\\/","homepage":"https:\\/\\/elementor.com\\/pro\\/","requires":"5.0","tested":"6.8.3","elementor_requires":"3.0.1","package":"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtKioqKioqKioqKiIsInVybCI6Imh0dHBzOi8vbW9kMjUuYWVyb2NsYXNzZXMuY29tLmJyIiwiZG93bmxvYWRfYmV0YSI6ZmFsc2UsImZpbGVfa2V5IjoiMSIsImlhdCI6MTc1OTc3NTk1OCwiZXhwIjoxNzU5ODYyMzU4fQ.kRWxrWFiH-DJa6LRe2VIcbS8iXk_Yt6pwFr641w2PSM\\/package_download","download_link":"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtKioqKioqKioqKiIsInVybCI6Imh0dHBzOi8vbW9kMjUuYWVyb2NsYXNzZXMuY29tLmJyIiwiZG93bmxvYWRfYmV0YSI6ZmFsc2UsImZpbGVfa2V5IjoiMSIsImlhdCI6MTc1OTc3NTk1OCwiZXhwIjoxNzU5ODYyMzU4fQ.kRWxrWFiH-DJa6LRe2VIcbS8iXk_Yt6pwFr641w2PSM\\/package_download","banners":{"2x":"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479","1x":"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479"},"icons":{"svg":"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg"},"canary_deployment":{"plugin_info":{"new_version":"3.7.0","name":"Elementor Pro","slug":"elementor-pro","url":"https:\\/\\/elementor.com\\/pro\\/changelog\\/","homepage":"https:\\/\\/elementor.com\\/pro\\/","requires":"5.0","tested":"6.8.3","elementor_requires":"3.0.1","package":"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtKioqKioqKioqKiIsInZlcnNpb24iOiIzLjcuMCIsInVybCI6Imh0dHBzOi8vbW9kMjUuYWVyb2NsYXNzZXMuY29tLmJyIiwiaWF0IjoxNzU5Nzc1OTU4LCJleHAiOjE3NTk4NjIzNTh9.lYc6Yl2EiTAtVpPscUjNwPtvAto4PeOhwgk_C_96tSE\\/previous_download","download_link":"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtKioqKioqKioqKiIsInZlcnNpb24iOiIzLjcuMCIsInVybCI6Imh0dHBzOi8vbW9kMjUuYWVyb2NsYXNzZXMuY29tLmJyIiwiaWF0IjoxNzU5Nzc1OTU4LCJleHAiOjE3NTk4NjIzNTh9.lYc6Yl2EiTAtVpPscUjNwPtvAto4PeOhwgk_C_96tSE\\/previous_download","banners":{"2x":"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479","1x":"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479"},"icons":{"svg":"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg"}},"conditions":[[{"type":"language","languages":["he_IL","nl_NL","en_GB","en_NZ","en_ZA","en_AU","en_CA","sv_SE","da_DK","fr_FR","nl_NL","nb_NO","de_AT","fi","it_IT","nn_NO","de_CH","en_GB","is_IS","ga","fr_BE","nl_BE","ast","lb_LU","es_ES","pt_PT","mlt"],"operator":"in"}]]},"translations":[],"cloud":false}";}', 'off');
INSERT INTO `wpmr_options` VALUES
(1216, '_site_transient_timeout_php_check_84bab1ffd8c4f8f9d81d62c8afdcab8a', '1761417440', 'off'),
(1217, '_site_transient_php_check_84bab1ffd8c4f8f9d81d62c8afdcab8a', 'a:5:{s:19:"recommended_version";s:3:"8.3";s:15:"minimum_version";s:6:"7.2.24";s:12:"is_supported";b:1;s:9:"is_secure";b:1;s:13:"is_acceptable";b:1;}', 'off'),
(1248, '_site_transient_update_plugins', 'O:8:"stdClass":5:{s:12:"last_checked";i:1761158142;s:8:"response";a:2:{s:23:"elementor/elementor.php";O:8:"stdClass":13:{s:2:"id";s:23:"w.org/plugins/elementor";s:4:"slug";s:9:"elementor";s:6:"plugin";s:23:"elementor/elementor.php";s:11:"new_version";s:6:"3.32.5";s:3:"url";s:40:"https://wordpress.org/plugins/elementor/";s:7:"package";s:59:"https://downloads.wordpress.org/plugin/elementor.3.32.5.zip";s:5:"icons";a:2:{s:2:"2x";s:62:"https://ps.w.org/elementor/assets/icon-256x256.gif?rev=3111597";s:2:"1x";s:62:"https://ps.w.org/elementor/assets/icon-128x128.gif?rev=3111597";}s:7:"banners";a:2:{s:2:"2x";s:65:"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=3164133";s:2:"1x";s:64:"https://ps.w.org/elementor/assets/banner-772x250.png?rev=3164133";}s:11:"banners_rtl";a:0:{}s:8:"requires";s:3:"6.6";s:6:"tested";s:5:"6.8.3";s:12:"requires_php";s:3:"7.4";s:16:"requires_plugins";a:0:{}}s:31:"elementor-pro/elementor-pro.php";O:8:"stdClass":18:{s:14:"stable_version";s:6:"3.32.2";s:12:"last_updated";s:19:"2025-09-29 12:32:45";s:11:"new_version";s:6:"3.32.2";s:4:"name";s:13:"Elementor Pro";s:4:"slug";s:13:"elementor-pro";s:3:"url";s:36:"https://elementor.com/pro/changelog/";s:8:"homepage";s:26:"https://elementor.com/pro/";s:8:"requires";s:3:"5.0";s:6:"tested";s:5:"6.8.3";s:18:"elementor_requires";s:5:"3.0.1";s:7:"package";s:343:"https://plugin-downloads.elementor.com/v2/package_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtKioqKioqKioqKiIsInVybCI6Imh0dHBzOi8vbW9kMjUuYWVyb2NsYXNzZXMuY29tLmJyIiwiZG93bmxvYWRfYmV0YSI6ZmFsc2UsImZpbGVfa2V5IjoiMSIsImlhdCI6MTc1OTc3NTk1OCwiZXhwIjoxNzU5ODYyMzU4fQ.kRWxrWFiH-DJa6LRe2VIcbS8iXk_Yt6pwFr641w2PSM/package_download";s:13:"download_link";s:343:"https://plugin-downloads.elementor.com/v2/package_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtKioqKioqKioqKiIsInVybCI6Imh0dHBzOi8vbW9kMjUuYWVyb2NsYXNzZXMuY29tLmJyIiwiZG93bmxvYWRfYmV0YSI6ZmFsc2UsImZpbGVfa2V5IjoiMSIsImlhdCI6MTc1OTc3NTk1OCwiZXhwIjoxNzU5ODYyMzU4fQ.kRWxrWFiH-DJa6LRe2VIcbS8iXk_Yt6pwFr641w2PSM/package_download";s:7:"banners";a:2:{s:2:"2x";s:65:"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479";s:2:"1x";s:64:"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479";}s:5:"icons";a:1:{s:3:"svg";s:75:"https://storage.googleapis.com/web-public-files/Web%20Assets/icons/icon.svg";}s:17:"canary_deployment";a:2:{s:11:"plugin_info";a:12:{s:11:"new_version";s:5:"3.7.0";s:4:"name";s:13:"Elementor Pro";s:4:"slug";s:13:"elementor-pro";s:3:"url";s:36:"https://elementor.com/pro/changelog/";s:8:"homepage";s:26:"https://elementor.com/pro/";s:8:"requires";s:3:"5.0";s:6:"tested";s:5:"6.8.3";s:18:"elementor_requires";s:5:"3.0.1";s:7:"package";s:319:"https://plugin-downloads.elementor.com/v2/previous_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtKioqKioqKioqKiIsInZlcnNpb24iOiIzLjcuMCIsInVybCI6Imh0dHBzOi8vbW9kMjUuYWVyb2NsYXNzZXMuY29tLmJyIiwiaWF0IjoxNzU5Nzc1OTU4LCJleHAiOjE3NTk4NjIzNTh9.lYc6Yl2EiTAtVpPscUjNwPtvAto4PeOhwgk_C_96tSE/previous_download";s:13:"download_link";s:319:"https://plugin-downloads.elementor.com/v2/previous_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtKioqKioqKioqKiIsInZlcnNpb24iOiIzLjcuMCIsInVybCI6Imh0dHBzOi8vbW9kMjUuYWVyb2NsYXNzZXMuY29tLmJyIiwiaWF0IjoxNzU5Nzc1OTU4LCJleHAiOjE3NTk4NjIzNTh9.lYc6Yl2EiTAtVpPscUjNwPtvAto4PeOhwgk_C_96tSE/previous_download";s:7:"banners";a:2:{s:2:"2x";s:65:"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479";s:2:"1x";s:64:"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479";}s:5:"icons";a:1:{s:3:"svg";s:75:"https://storage.googleapis.com/web-public-files/Web%20Assets/icons/icon.svg";}}s:10:"conditions";a:1:{i:0;a:1:{i:0;a:3:{s:4:"type";s:8:"language";s:9:"languages";a:27:{i:0;s:5:"he_IL";i:1;s:5:"nl_NL";i:2;s:5:"en_GB";i:3;s:5:"en_NZ";i:4;s:5:"en_ZA";i:5;s:5:"en_AU";i:6;s:5:"en_CA";i:7;s:5:"sv_SE";i:8;s:5:"da_DK";i:9;s:5:"fr_FR";i:10;s:5:"nl_NL";i:11;s:5:"nb_NO";i:12;s:5:"de_AT";i:13;s:2:"fi";i:14;s:5:"it_IT";i:15;s:5:"nn_NO";i:16;s:5:"de_CH";i:17;s:5:"en_GB";i:18;s:5:"is_IS";i:19;s:2:"ga";i:20;s:5:"fr_BE";i:21;s:5:"nl_BE";i:22;s:3:"ast";i:23;s:5:"lb_LU";i:24;s:5:"es_ES";i:25;s:5:"pt_PT";i:26;s:3:"mlt";}s:8:"operator";s:2:"in";}}}}s:12:"translations";a:0:{}s:5:"cloud";b:0;s:6:"plugin";s:31:"elementor-pro/elementor-pro.php";}}s:12:"translations";a:0:{}s:9:"no_update";a:0:{}s:7:"checked";a:5:{s:23:"elementor/elementor.php";s:6:"3.32.4";s:31:"elementor-pro/elementor-pro.php";s:6:"3.32.2";s:37:"imunify-security/imunify-security.php";s:5:"2.0.0";s:25:"jet-blocks/jet-blocks.php";s:8:"1.3.19.1";s:25:"jet-engine/jet-engine.php";s:5:"3.7.4";}}', 'off'),
(1251, '_site_transient_timeout_wp_theme_files_patterns-df7a55a9b96b195a0febd3730eaf14dc', '1761159940', 'off'),
(1252, '_site_transient_wp_theme_files_patterns-df7a55a9b96b195a0febd3730eaf14dc', 'a:2:{s:7:"version";s:5:"3.4.4";s:8:"patterns";a:0:{}}', 'off'),
(1253, '_transient_doing_cron', '1761158140.6450250148773193359375', 'on'),
(1254, '_site_transient_timeout_theme_roots', '1761159941', 'off'),
(1255, '_site_transient_theme_roots', 'a:1:{s:15:"hello-elementor";s:7:"/themes";}', 'off');

-- --------------------------------------------------------

--
-- Table structure for table `wpmr_postmeta`
--

CREATE TABLE `wpmr_postmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpmr_postmeta`
--

INSERT INTO `wpmr_postmeta` VALUES
(1, 2, '_wp_page_template', 'default'),
(2, 3, '_wp_page_template', 'default'),
(3, 6, '_wp_attached_file', '2025/08/Favicon-300.png'),
(4, 6, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:300;s:6:"height";i:300;s:4:"file";s:23:"2025/08/Favicon-300.png";s:8:"filesize";i:86548;s:5:"sizes";a:1:{s:9:"thumbnail";a:5:{s:4:"file";s:23:"Favicon-300-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";s:8:"filesize";i:21439;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(5, 7, '_wp_attached_file', '2025/08/Favicon.png'),
(6, 7, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:200;s:6:"height";i:167;s:4:"file";s:19:"2025/08/Favicon.png";s:8:"filesize";i:38989;s:5:"sizes";a:1:{s:9:"thumbnail";a:5:{s:4:"file";s:19:"Favicon-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";s:8:"filesize";i:22748;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(7, 8, '_wp_attached_file', '2025/08/logo.8367db9c.png.png'),
(8, 8, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:500;s:6:"height";i:248;s:4:"file";s:29:"2025/08/logo.8367db9c.png.png";s:8:"filesize";i:43488;s:5:"sizes";a:2:{s:6:"medium";a:5:{s:4:"file";s:29:"logo.8367db9c.png-300x149.png";s:5:"width";i:300;s:6:"height";i:149;s:9:"mime-type";s:9:"image/png";s:8:"filesize";i:27900;}s:9:"thumbnail";a:5:{s:4:"file";s:29:"logo.8367db9c.png-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";s:8:"filesize";i:15457;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(9, 9, '_wp_attached_file', '2025/08/Logo.png'),
(10, 9, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:500;s:6:"height";i:248;s:4:"file";s:16:"2025/08/Logo.png";s:8:"filesize";i:43488;s:5:"sizes";a:2:{s:6:"medium";a:5:{s:4:"file";s:16:"Logo-300x149.png";s:5:"width";i:300;s:6:"height";i:149;s:9:"mime-type";s:9:"image/png";s:8:"filesize";i:27900;}s:9:"thumbnail";a:5:{s:4:"file";s:16:"Logo-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";s:8:"filesize";i:15457;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(11, 10, '_wp_attached_file', '2025/08/logo_branco.png'),
(12, 10, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:500;s:6:"height";i:248;s:4:"file";s:23:"2025/08/logo_branco.png";s:8:"filesize";i:26028;s:5:"sizes";a:2:{s:6:"medium";a:5:{s:4:"file";s:23:"logo_branco-300x149.png";s:5:"width";i:300;s:6:"height";i:149;s:9:"mime-type";s:9:"image/png";s:8:"filesize";i:16411;}s:9:"thumbnail";a:5:{s:4:"file";s:23:"logo_branco-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";s:8:"filesize";i:9303;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(13, 11, '_wp_attached_file', '2025/08/Logo_icone_branco.png'),
(14, 11, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:250;s:6:"height";i:214;s:4:"file";s:29:"2025/08/Logo_icone_branco.png";s:8:"filesize";i:10002;s:5:"sizes";a:1:{s:9:"thumbnail";a:5:{s:4:"file";s:29:"Logo_icone_branco-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";s:8:"filesize";i:6101;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(15, 12, '_wp_attached_file', '2025/08/Logo-mini-1-1.png'),
(16, 12, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:300;s:6:"height";i:235;s:4:"file";s:25:"2025/08/Logo-mini-1-1.png";s:8:"filesize";i:67586;s:5:"sizes";a:1:{s:9:"thumbnail";a:5:{s:4:"file";s:25:"Logo-mini-1-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";s:8:"filesize";i:22042;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(17, 13, '_wp_attached_file', '2025/08/Logo-mini-2.png'),
(18, 13, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:188;s:6:"height";i:187;s:4:"file";s:23:"2025/08/Logo-mini-2.png";s:8:"filesize";i:54929;s:5:"sizes";a:1:{s:9:"thumbnail";a:5:{s:4:"file";s:23:"Logo-mini-2-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";s:8:"filesize";i:41245;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(19, 14, '_wp_attached_file', '2025/08/Logo-mini-3-1.png'),
(20, 14, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:300;s:6:"height";i:192;s:4:"file";s:25:"2025/08/Logo-mini-3-1.png";s:8:"filesize";i:29123;s:5:"sizes";a:1:{s:9:"thumbnail";a:5:{s:4:"file";s:25:"Logo-mini-3-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";s:8:"filesize";i:19204;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(21, 15, '_wp_attached_file', '2025/08/cropped-Favicon.png'),
(22, 15, '_wp_attachment_context', 'site-icon'),
(23, 15, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:512;s:6:"height";i:512;s:4:"file";s:27:"2025/08/cropped-Favicon.png";s:8:"filesize";i:76481;s:5:"sizes";a:6:{s:6:"medium";a:5:{s:4:"file";s:27:"cropped-Favicon-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";s:8:"filesize";i:61948;}s:9:"thumbnail";a:5:{s:4:"file";s:27:"cropped-Favicon-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";s:8:"filesize";i:23050;}s:13:"site_icon-270";a:5:{s:4:"file";s:27:"cropped-Favicon-270x270.png";s:5:"width";i:270;s:6:"height";i:270;s:9:"mime-type";s:9:"image/png";s:8:"filesize";i:54436;}s:13:"site_icon-192";a:5:{s:4:"file";s:27:"cropped-Favicon-192x192.png";s:5:"width";i:192;s:6:"height";i:192;s:9:"mime-type";s:9:"image/png";s:8:"filesize";i:33806;}s:13:"site_icon-180";a:5:{s:4:"file";s:27:"cropped-Favicon-180x180.png";s:5:"width";i:180;s:6:"height";i:180;s:9:"mime-type";s:9:"image/png";s:8:"filesize";i:30484;}s:12:"site_icon-32";a:5:{s:4:"file";s:25:"cropped-Favicon-32x32.png";s:5:"width";i:32;s:6:"height";i:32;s:9:"mime-type";s:9:"image/png";s:8:"filesize";i:2086;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(24, 16, '_elementor_edit_mode', 'builder'),
(25, 16, '_elementor_template_type', 'kit'),
(39, 21, '_elementor_edit_mode', 'builder'),
(40, 21, '_elementor_template_type', 'header'),
(41, 21, '_elementor_version', '3.31.3'),
(42, 21, '_elementor_pro_version', '3.26.1'),
(43, 21, '_elementor_data', '[{"id":"1d5e15f4","elType":"container","settings":{"flex_direction":"row","background_background":"classic","border_border":"solid","border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"padding":{"unit":"px","top":"15","right":"0","bottom":"15","left":"0","isLinked":false},"jedv_conditions":[{"_id":"de39f61"}],"__globals__":{"border_color":"globals\\/colors?id=da65b50"},"flex_gap_tablet":{"unit":"px","size":0,"sizes":[],"column":"0","row":"0","isLinked":true},"flex_direction_tablet":"column","flex_direction_mobile":"row","flex_gap_mobile":{"unit":"px","size":0,"sizes":[],"column":"0","row":"0","isLinked":true},"padding_tablet":{"unit":"px","top":"15","right":"0","bottom":"15","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"0","bottom":"15","left":"0","isLinked":false},"jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"726b2a3f","elType":"container","settings":{"content_width":"full","width":{"unit":"%","size":25},"flex_direction":"column","flex_justify_content":"center","flex_align_items":"flex-start","padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_flex_size":"none","jedv_conditions":[{"_id":"5f01c10"}],"_element_width":"initial","width_tablet":{"unit":"%","size":100,"sizes":[]},"width_mobile":{"unit":"%","size":100,"sizes":[]},"flex_align_items_mobile":"center","padding_tablet":{"unit":"%","top":"0","right":"3","bottom":"0","left":"3","isLinked":false},"padding_mobile":{"unit":"%","top":"1","right":"5","bottom":"0","left":"5","isLinked":false},"flex_direction_tablet":"row","flex_direction_mobile":"row","flex_justify_content_tablet":"space-between","flex_justify_content_mobile":"space-between","flex_align_items_tablet":"center","flex_gap_mobile":{"unit":"px","size":30,"sizes":[],"column":"30","row":"30","isLinked":true},"jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"2f838d8","elType":"widget","settings":{"image":{"id":"","url":"https:\\/\\/mod25.aeroclasses.com.br\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png"},"image_size":"medium","align":"left","width":{"unit":"px","size":150,"sizes":[]},"width_tablet":{"unit":"px","size":160,"sizes":[]},"width_mobile":{"unit":"px","size":130,"sizes":[]},"jedv_conditions":[{"_id":"2bcab82"}],"__dynamic__":{"image":"[elementor-tag id=\\"fed7186\\" name=\\"jet-options-image\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_logo%22%7D\\"]","link":"[elementor-tag id=\\"154dab0\\" name=\\"site-url\\" settings=\\"%7B%7D\\"]"},"link_to":"custom","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_background_image":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[]},"elements":[],"widgetType":"image"},{"id":"41081391","elType":"widget","settings":{"panel_toggle_label":"Menu","panel_toggle_label_alignment":"flex-end","panel_template_id":"75","position":"left","panel_width":{"unit":"px","size":300,"sizes":[]},"toggle_background_background":"classic","toggle_background_color":"#6EC1E400","toggle_background_gradient_angle":{"unit":"deg","size":270,"sizes":[]},"toggle_padding":{"unit":"px","top":"10","right":"30","bottom":"10","left":"30","isLinked":false},"toggle_border_border":"solid","toggle_border_width":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"toggle_border_radius":{"unit":"px","top":"100","right":"100","bottom":"100","left":"100","isLinked":true},"toggle_icon_box_popover_toggle":"custom","toggle_control_label_color":"#DD1919","_z_index":5,"jedv_conditions":[{"_id":"5980c2e"}],"hide_desktop":"hidden-desktop","__dynamic__":{"toggle_icon_box_box_font_color":"[elementor-tag id=\\"da12f57\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]","toggle_control_label_color":"[elementor-tag id=\\"385c716\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"selected_panel_toggle_icon":{"value":"fas fa-align-justify","library":"fa-solid"},"selected_panel_toggle_active_icon":{"value":"fas fa-times","library":"fa-solid"},"selected_panel_close_icon":{"value":"fas fa-times","library":"fa-solid"},"panel_background_image":{"url":"","id":"","size":""},"panel_background_slideshow_gallery":[],"toggle_background_image":{"url":"","id":"","size":""},"toggle_background_slideshow_gallery":[],"toggle_background_hover_image":{"url":"","id":"","size":""},"toggle_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[]},"elements":[],"widgetType":"jet-hamburger-panel"}],"isInner":true},{"id":"461f868","elType":"container","settings":{"flex_direction":"row","flex_justify_content":"flex-end","flex_align_items":"center","padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"_id":"24cb170"}],"flex_gap":{"unit":"px","size":30,"sizes":[],"column":"30","row":"30","isLinked":true},"boxed_width_tablet":{"unit":"%","size":100,"sizes":[]},"boxed_width_mobile":{"unit":"%","size":70,"sizes":[]},"flex_justify_content_mobile":"center","padding_tablet":{"unit":"%","top":"0","right":"3","bottom":"0","left":"0","isLinked":false},"padding_mobile":{"unit":"%","top":"3","right":"3","bottom":"3","left":"3","isLinked":false},"z_index":5,"hide_tablet":"hidden-tablet","hide_mobile":"hidden-mobile","content_width":"full","width_mobile":{"unit":"%","size":100,"sizes":[]},"jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"7b752b1b","elType":"widget","settings":{"menu":"menu","pointer":"none","menu_typography_typography":"custom","menu_typography_font_family":"Roboto","menu_typography_font_size":{"unit":"rem","size":1,"sizes":[]},"menu_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"menu_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"menu_typography_font_weight":"400","color_menu_item":"#7A7A7A","color_menu_item_hover":"#61CE70","jedv_conditions":[{"_id":"71e58bc"}],"__dynamic__":{"color_menu_item":"[elementor-tag id=\\"fe3ce78\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]","color_menu_item_hover":"[elementor-tag id=\\"24511d2\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"menu_name":"Menu","menu_id":5,"submenu_icon":{"value":"fas fa-caret-down","library":"fa-solid"},"toggle_icon_normal":{"value":"","library":""},"toggle_icon_active":{"value":"","library":""},"_background_image":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[]},"elements":[],"widgetType":"nav-menu"},{"id":"1ab31803","elType":"widget","settings":{"login_link_text":"Login","login_prefix":"","logout_link_text":"Logout","logout_prefix":"","register_link_text":"Criar Conta","register_prefix":"","registered_link_text":"Dashboard","registered_prefix":"","jedv_conditions":[{"_id":"a24d82a"}],"login_link_url":"\\/dashboard","logout_redirect":"home","logout_redirect_url":"\\/dashboard","register_link_url":"\\/registro","registered_link_url":"\\/dashboard","order":"register_login","login_link_typography_typography":"custom","login_link_typography_font_family":"Roboto","login_link_typography_font_size":{"unit":"rem","size":0.9,"sizes":[]},"login_link_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"login_link_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"login_link_typography_font_weight":"400","login_link_text_color":"#61CE70","logout_link_typography_typography":"custom","logout_link_typography_font_family":"Roboto","logout_link_typography_font_size":{"unit":"rem","size":0.9,"sizes":[]},"logout_link_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"logout_link_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"logout_link_typography_font_weight":"400","logout_link_text_color":"#61CE70","register_link_typography_typography":"custom","register_link_typography_font_family":"Roboto","register_link_typography_font_size":{"unit":"rem","size":0.9,"sizes":[]},"register_link_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"register_link_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"register_link_typography_font_weight":"400","register_link_text_color":"#61CE70","register_link_margin":{"unit":"px","top":"0","right":"30","bottom":"0","left":"0","isLinked":false},"registered_link_typography_typography":"custom","registered_link_typography_font_family":"Roboto","registered_link_typography_font_size":{"unit":"rem","size":0.9,"sizes":[]},"registered_link_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"registered_link_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"registered_link_typography_font_weight":"400","registered_link_text_color":"#61CE70","registered_link_margin":{"unit":"px","top":"0","right":"30","bottom":"0","left":"0","isLinked":false},"__dynamic__":{"login_link_text_color":"[elementor-tag id=\\"8945fb3\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor1%22%7D\\"]","logout_link_text_color":"[elementor-tag id=\\"7b5d641\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor2%22%7D\\"]","register_link_text_color":"[elementor-tag id=\\"e4f5fe2\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor1%22%7D\\"]","registered_link_text_color":"[elementor-tag id=\\"ee99f8e\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor1%22%7D\\"]"},"show_register_link":"","selected_login_link_icon":{"value":"fas fa-sign-in-alt","library":"fa-solid"},"selected_logout_link_icon":{"value":"fas fa-sign-out-alt","library":"fa-solid"},"selected_register_link_icon":{"value":"fas fa-user-plus","library":"fa-solid"},"selected_registered_link_icon":{"value":"fas fa-user","library":"fa-solid"},"_background_image":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[]},"elements":[],"widgetType":"jet-auth-links"}],"isInner":true}],"isInner":false}]'),
(44, 22, '_elementor_edit_mode', 'builder'),
(45, 22, '_elementor_template_type', 'header'),
(46, 22, '_elementor_version', '3.31.3'),
(47, 22, '_elementor_pro_version', '3.26.1'),
(48, 22, '_elementor_data', '[{"id":"1d5e15f4","elType":"container","settings":{"flex_direction":"row","background_background":"classic","border_border":"solid","border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"padding":{"unit":"px","top":"15","right":"0","bottom":"15","left":"0","isLinked":false},"jedv_conditions":[{"_id":"de39f61"}],"__globals__":{"border_color":"globals\\/colors?id=da65b50"},"flex_gap_tablet":{"unit":"px","size":0,"sizes":[],"column":"0","row":"0","isLinked":true},"flex_direction_tablet":"column","flex_direction_mobile":"row","flex_gap_mobile":{"unit":"px","size":0,"sizes":[],"column":"0","row":"0","isLinked":true},"padding_tablet":{"unit":"px","top":"15","right":"0","bottom":"15","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"0","bottom":"15","left":"0","isLinked":false},"jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"726b2a3f","elType":"container","settings":{"content_width":"full","width":{"unit":"%","size":25},"flex_direction":"column","flex_justify_content":"center","flex_align_items":"flex-start","padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_flex_size":"none","jedv_conditions":[{"_id":"5f01c10"}],"_element_width":"initial","width_tablet":{"unit":"%","size":100,"sizes":[]},"width_mobile":{"unit":"%","size":100,"sizes":[]},"flex_align_items_mobile":"center","padding_tablet":{"unit":"%","top":"0","right":"3","bottom":"0","left":"3","isLinked":false},"padding_mobile":{"unit":"%","top":"1","right":"5","bottom":"0","left":"5","isLinked":false},"flex_direction_tablet":"row","flex_direction_mobile":"row","flex_justify_content_tablet":"space-between","flex_justify_content_mobile":"space-between","flex_align_items_tablet":"center","flex_gap_mobile":{"unit":"px","size":30,"sizes":[],"column":"30","row":"30","isLinked":true},"jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"2f838d8","elType":"widget","settings":{"image":{"id":"","url":"https:\\/\\/mod25.aeroclasses.com.br\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png"},"image_size":"medium","align":"left","width":{"unit":"px","size":150,"sizes":[]},"width_tablet":{"unit":"px","size":160,"sizes":[]},"width_mobile":{"unit":"px","size":130,"sizes":[]},"jedv_conditions":[{"_id":"2bcab82"}],"__dynamic__":{"image":"[elementor-tag id=\\"fed7186\\" name=\\"jet-options-image\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_logo%22%7D\\"]","link":"[elementor-tag id=\\"154dab0\\" name=\\"site-url\\" settings=\\"%7B%7D\\"]"},"link_to":"custom","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_background_image":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[]},"elements":[],"widgetType":"image"},{"id":"41081391","elType":"widget","settings":{"panel_toggle_label":"Menu","panel_toggle_label_alignment":"flex-end","panel_template_id":"75","position":"left","panel_width":{"unit":"px","size":300,"sizes":[]},"toggle_background_background":"classic","toggle_background_color":"#6EC1E400","toggle_background_gradient_angle":{"unit":"deg","size":270,"sizes":[]},"toggle_padding":{"unit":"px","top":"10","right":"30","bottom":"10","left":"30","isLinked":false},"toggle_border_border":"solid","toggle_border_width":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"toggle_border_radius":{"unit":"px","top":"100","right":"100","bottom":"100","left":"100","isLinked":true},"toggle_icon_box_popover_toggle":"custom","toggle_control_label_color":"#DD1919","_z_index":5,"jedv_conditions":[{"_id":"5980c2e"}],"hide_desktop":"hidden-desktop","__dynamic__":{"toggle_icon_box_box_font_color":"[elementor-tag id=\\"da12f57\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]","toggle_control_label_color":"[elementor-tag id=\\"385c716\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"selected_panel_toggle_icon":{"value":"fas fa-align-justify","library":"fa-solid"},"selected_panel_toggle_active_icon":{"value":"fas fa-times","library":"fa-solid"},"selected_panel_close_icon":{"value":"fas fa-times","library":"fa-solid"},"panel_background_image":{"url":"","id":"","size":""},"panel_background_slideshow_gallery":[],"toggle_background_image":{"url":"","id":"","size":""},"toggle_background_slideshow_gallery":[],"toggle_background_hover_image":{"url":"","id":"","size":""},"toggle_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[]},"elements":[],"widgetType":"jet-hamburger-panel"}],"isInner":true},{"id":"461f868","elType":"container","settings":{"flex_direction":"row","flex_justify_content":"flex-end","flex_align_items":"center","padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"_id":"24cb170"}],"flex_gap":{"unit":"px","size":30,"sizes":[],"column":"30","row":"30","isLinked":true},"boxed_width_tablet":{"unit":"%","size":100,"sizes":[]},"boxed_width_mobile":{"unit":"%","size":70,"sizes":[]},"flex_justify_content_mobile":"center","padding_tablet":{"unit":"%","top":"0","right":"3","bottom":"0","left":"0","isLinked":false},"padding_mobile":{"unit":"%","top":"3","right":"3","bottom":"3","left":"3","isLinked":false},"z_index":5,"hide_tablet":"hidden-tablet","hide_mobile":"hidden-mobile","content_width":"full","width_mobile":{"unit":"%","size":100,"sizes":[]},"jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"7b752b1b","elType":"widget","settings":{"menu":"menu","pointer":"none","menu_typography_typography":"custom","menu_typography_font_family":"Roboto","menu_typography_font_size":{"unit":"rem","size":1,"sizes":[]},"menu_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"menu_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"menu_typography_font_weight":"400","color_menu_item":"#7A7A7A","color_menu_item_hover":"#61CE70","jedv_conditions":[{"_id":"71e58bc"}],"__dynamic__":{"color_menu_item":"[elementor-tag id=\\"fe3ce78\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]","color_menu_item_hover":"[elementor-tag id=\\"24511d2\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"menu_name":"Menu","menu_id":5,"submenu_icon":{"value":"fas fa-caret-down","library":"fa-solid"},"toggle_icon_normal":{"value":"","library":""},"toggle_icon_active":{"value":"","library":""},"_background_image":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[]},"elements":[],"widgetType":"nav-menu"},{"id":"1ab31803","elType":"widget","settings":{"login_link_text":"Login","login_prefix":"","logout_link_text":"Logout","logout_prefix":"","register_link_text":"Criar Conta","register_prefix":"","registered_link_text":"Dashboard","registered_prefix":"","jedv_conditions":[{"_id":"a24d82a"}],"login_link_url":"\\/dashboard","logout_redirect":"home","logout_redirect_url":"\\/dashboard","register_link_url":"\\/registro","registered_link_url":"\\/dashboard","order":"register_login","login_link_typography_typography":"custom","login_link_typography_font_family":"Roboto","login_link_typography_font_size":{"unit":"rem","size":0.9,"sizes":[]},"login_link_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"login_link_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"login_link_typography_font_weight":"400","login_link_text_color":"#61CE70","logout_link_typography_typography":"custom","logout_link_typography_font_family":"Roboto","logout_link_typography_font_size":{"unit":"rem","size":0.9,"sizes":[]},"logout_link_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"logout_link_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"logout_link_typography_font_weight":"400","logout_link_text_color":"#61CE70","register_link_typography_typography":"custom","register_link_typography_font_family":"Roboto","register_link_typography_font_size":{"unit":"rem","size":0.9,"sizes":[]},"register_link_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"register_link_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"register_link_typography_font_weight":"400","register_link_text_color":"#61CE70","register_link_margin":{"unit":"px","top":"0","right":"30","bottom":"0","left":"0","isLinked":false},"registered_link_typography_typography":"custom","registered_link_typography_font_family":"Roboto","registered_link_typography_font_size":{"unit":"rem","size":0.9,"sizes":[]},"registered_link_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"registered_link_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"registered_link_typography_font_weight":"400","registered_link_text_color":"#61CE70","registered_link_margin":{"unit":"px","top":"0","right":"30","bottom":"0","left":"0","isLinked":false},"__dynamic__":{"login_link_text_color":"[elementor-tag id=\\"8945fb3\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor1%22%7D\\"]","logout_link_text_color":"[elementor-tag id=\\"7b5d641\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor2%22%7D\\"]","register_link_text_color":"[elementor-tag id=\\"e4f5fe2\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor1%22%7D\\"]","registered_link_text_color":"[elementor-tag id=\\"ee99f8e\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor1%22%7D\\"]"},"show_register_link":"","selected_login_link_icon":{"value":"fas fa-sign-in-alt","library":"fa-solid"},"selected_logout_link_icon":{"value":"fas fa-sign-out-alt","library":"fa-solid"},"selected_register_link_icon":{"value":"fas fa-user-plus","library":"fa-solid"},"selected_registered_link_icon":{"value":"fas fa-user","library":"fa-solid"},"_background_image":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[]},"elements":[],"widgetType":"jet-auth-links"}],"isInner":true}],"isInner":false}]'),
(52, 23, '_elementor_is_screenshot', '1'),
(53, 23, '_wp_attached_file', 'elementor/screenshots/Elementor-post-screenshot_21_2025-08-29-14-43-46_68366021.png'),
(54, 21, '_elementor_screenshot', 'a:2:{s:2:"id";i:23;s:3:"url";s:135:"https://mod25.aeroclasses.com.br/wp-content/uploads/elementor/screenshots/Elementor-post-screenshot_21_2025-08-29-14-43-46_68366021.png";}'),
(58, 24, '_elementor_edit_mode', 'builder'),
(59, 24, '_elementor_template_type', 'header'),
(60, 25, '_elementor_edit_mode', 'builder'),
(61, 25, '_elementor_template_type', 'header'),
(62, 24, '_elementor_version', '3.31.3'),
(63, 24, '_elementor_pro_version', '3.26.1'),
(73, 21, '_edit_lock', '1756490059:1'),
(74, 27, '_elementor_edit_mode', 'builder'),
(75, 27, '_elementor_template_type', 'header'),
(76, 27, '_elementor_version', '3.31.3'),
(77, 27, '_elementor_pro_version', '3.31.2'),
(78, 27, '_elementor_data', '[{"id":"1d5e15f4","elType":"container","settings":{"flex_direction":"row","background_background":"classic","border_border":"solid","border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"padding":{"unit":"px","top":"15","right":"0","bottom":"15","left":"0","isLinked":false},"jedv_conditions":[{"_id":"de39f61"}],"__globals__":{"border_color":"globals\\/colors?id=da65b50"},"flex_gap_tablet":{"unit":"px","size":0,"sizes":[],"column":"0","row":"0","isLinked":true},"flex_direction_tablet":"column","flex_direction_mobile":"row","flex_gap_mobile":{"unit":"px","size":0,"sizes":[],"column":"0","row":"0","isLinked":true},"padding_tablet":{"unit":"px","top":"15","right":"0","bottom":"15","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"0","bottom":"15","left":"0","isLinked":false},"jet_parallax_layout_list":[]},"elements":[{"id":"726b2a3f","elType":"container","settings":{"content_width":"full","width":{"unit":"%","size":25},"flex_direction":"column","flex_justify_content":"center","flex_align_items":"flex-start","padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_flex_size":"none","jedv_conditions":[{"_id":"5f01c10"}],"_element_width":"initial","width_tablet":{"unit":"%","size":100,"sizes":[]},"width_mobile":{"unit":"%","size":100,"sizes":[]},"flex_align_items_mobile":"center","padding_tablet":{"unit":"%","top":"0","right":"3","bottom":"0","left":"3","isLinked":false},"padding_mobile":{"unit":"%","top":"1","right":"5","bottom":"0","left":"5","isLinked":false},"flex_direction_tablet":"row","flex_direction_mobile":"row","flex_justify_content_tablet":"space-between","flex_justify_content_mobile":"space-between","flex_align_items_tablet":"center","flex_gap_mobile":{"unit":"px","size":30,"sizes":[],"column":"30","row":"30","isLinked":true},"jet_parallax_layout_list":[]},"elements":[{"id":"2f838d8","elType":"widget","settings":{"image":{"id":8,"url":"https:\\/\\/mod25.aeroclasses.com.br\\/wp-content\\/uploads\\/2025\\/08\\/logo.8367db9c.png.png","alt":"","source":"library","size":""},"image_size":"medium","align":"left","width":{"unit":"px","size":150,"sizes":[]},"width_tablet":{"unit":"px","size":160,"sizes":[]},"width_mobile":{"unit":"px","size":130,"sizes":[]},"jedv_conditions":[{"_id":"2bcab82"}],"__dynamic__":{"link":"[elementor-tag id=\\"154dab0\\" name=\\"site-url\\" settings=\\"%7B%7D\\"]"},"link_to":"custom","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"},{"id":"41081391","elType":"widget","settings":{"panel_toggle_label":"Menu","panel_toggle_label_alignment":"flex-end","panel_template_id":"75","position":"left","panel_width":{"unit":"px","size":300,"sizes":[]},"toggle_background_background":"classic","toggle_background_color":"#6EC1E400","toggle_background_gradient_angle":{"unit":"deg","size":270,"sizes":[]},"toggle_padding":{"unit":"px","top":"10","right":"30","bottom":"10","left":"30","isLinked":false},"toggle_border_border":"solid","toggle_border_width":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"toggle_border_radius":{"unit":"px","top":"100","right":"100","bottom":"100","left":"100","isLinked":true},"toggle_icon_box_popover_toggle":"custom","toggle_control_label_color":"#DD1919","_z_index":5,"jedv_conditions":[{"_id":"5980c2e"}],"hide_desktop":"hidden-desktop","__dynamic__":{"toggle_icon_box_box_font_color":"[elementor-tag id=\\"da12f57\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]","toggle_control_label_color":"[elementor-tag id=\\"385c716\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"__globals__":{"cover_bg_color":"globals\\/colors?id=secondary"}},"elements":[],"widgetType":"jet-hamburger-panel"},{"id":"9851f3a","elType":"widget","widgetType":"off-canvas","settings":{"off_canvas_name":"Menu","entrance_animation":"fadeIn","exit_animation":"fadeIn"},"elements":[{"id":"eb99045","elType":"container","settings":{"content_width":"full"},"elements":[{"id":"978f32a","elType":"widget","settings":{"title":"Menu","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size":{"unit":"px","size":24,"sizes":[]},"typography_font_weight":"600","__globals__":{"title_color":"globals\\/colors?id=secondary"}},"elements":[],"widgetType":"heading"},{"id":"f260492","elType":"widget","settings":{"icon_list":[{"text":"Home","selected_icon":{"value":"fas fa-home","library":"fa-solid"},"_id":"d9c07fa","__dynamic__":{"link":"[elementor-tag id=\\"f3fe216\\" name=\\"site-url\\" settings=\\"%7B%7D\\"]"}},{"text":"Suporte T\\u00e9cnico","selected_icon":{"value":"fas fa-headset","library":"fa-solid"},"_id":"47061ad"},{"text":"FAQ","selected_icon":{"value":"fas fa-question-circle","library":"fa-solid"},"_id":"74e0f1d"},{"_id":"6d26c73","text":"Meu perfil","selected_icon":{"value":"fas fa-user-cog","library":"fa-solid"}}],"space_between":{"unit":"px","size":10,"sizes":[]},"_border_border":"solid","_border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"__globals__":{"icon_color":"globals\\/colors?id=d203171","_border_color":"globals\\/colors?id=6ee8439"}},"elements":[],"widgetType":"icon-list"},{"id":"14de0a4","elType":"widget","settings":{"login_link_text":"Login","login_prefix":"","logout_link_text":"Sair","logout_prefix":"","register_link_text":"Registrar","register_prefix":"","registered_link_text":"Minha Conta","registered_prefix":"|"},"elements":[],"widgetType":"jet-auth-links"}],"isInner":true,"isLocked":true}]}],"isInner":true},{"id":"461f868","elType":"container","settings":{"flex_direction":"row","flex_justify_content":"flex-end","flex_align_items":"center","padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"_id":"24cb170"}],"flex_gap":{"unit":"px","size":30,"sizes":[],"column":"30","row":"30","isLinked":true},"boxed_width_tablet":{"unit":"%","size":100,"sizes":[]},"boxed_width_mobile":{"unit":"%","size":70,"sizes":[]},"flex_justify_content_mobile":"center","padding_tablet":{"unit":"%","top":"0","right":"3","bottom":"0","left":"0","isLinked":false},"padding_mobile":{"unit":"%","top":"3","right":"3","bottom":"3","left":"3","isLinked":false},"z_index":5,"hide_tablet":"hidden-tablet","hide_mobile":"hidden-mobile","content_width":"full","width_mobile":{"unit":"%","size":100,"sizes":[]},"jet_parallax_layout_list":[]},"elements":[{"id":"7b752b1b","elType":"widget","settings":{"menu":"menu","pointer":"none","menu_typography_typography":"custom","menu_typography_font_family":"Roboto","menu_typography_font_size":{"unit":"rem","size":1,"sizes":[]},"menu_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"menu_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"menu_typography_font_weight":"400","color_menu_item":"#7A7A7A","color_menu_item_hover":"#61CE70","jedv_conditions":[{"_id":"71e58bc"}],"__dynamic__":{"color_menu_item":"[elementor-tag id=\\"fe3ce78\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]","color_menu_item_hover":"[elementor-tag id=\\"24511d2\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"menu_name":"Menu","menu_id":5},"elements":[],"widgetType":"nav-menu"},{"id":"1ab31803","elType":"widget","settings":{"login_link_text":"Login","login_prefix":"","logout_link_text":"Logout","logout_prefix":"","register_link_text":"Criar Conta","register_prefix":"","registered_link_text":"Dashboard","registered_prefix":"","jedv_conditions":[{"_id":"a24d82a"}],"login_link_url":"\\/dashboard","logout_redirect":"home","logout_redirect_url":"\\/dashboard","register_link_url":"\\/registro","registered_link_url":"\\/dashboard","order":"register_login","login_link_typography_typography":"custom","login_link_typography_font_family":"Roboto","login_link_typography_font_size":{"unit":"rem","size":0.9,"sizes":[]},"login_link_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"login_link_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"login_link_typography_font_weight":"400","login_link_text_color":"#61CE70","logout_link_typography_typography":"custom","logout_link_typography_font_family":"Roboto","logout_link_typography_font_size":{"unit":"rem","size":0.9,"sizes":[]},"logout_link_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"logout_link_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"logout_link_typography_font_weight":"400","logout_link_text_color":"#61CE70","register_link_typography_typography":"custom","register_link_typography_font_family":"Roboto","register_link_typography_font_size":{"unit":"rem","size":0.9,"sizes":[]},"register_link_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"register_link_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"register_link_typography_font_weight":"400","register_link_text_color":"#61CE70","register_link_margin":{"unit":"px","top":"0","right":"30","bottom":"0","left":"0","isLinked":false},"registered_link_typography_typography":"custom","registered_link_typography_font_family":"Roboto","registered_link_typography_font_size":{"unit":"rem","size":0.9,"sizes":[]},"registered_link_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"registered_link_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"registered_link_typography_font_weight":"400","registered_link_text_color":"#61CE70","registered_link_margin":{"unit":"px","top":"0","right":"30","bottom":"0","left":"0","isLinked":false},"__dynamic__":{"login_link_text_color":"[elementor-tag id=\\"8945fb3\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor1%22%7D\\"]","logout_link_text_color":"[elementor-tag id=\\"7b5d641\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor2%22%7D\\"]","register_link_text_color":"[elementor-tag id=\\"e4f5fe2\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor1%22%7D\\"]","registered_link_text_color":"[elementor-tag id=\\"ee99f8e\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor1%22%7D\\"]"},"show_register_link":""},"elements":[],"widgetType":"jet-auth-links"}],"isInner":true}],"isInner":false}]'),
(79, 27, '_elementor_screenshot', 'a:2:{s:2:"id";i:23;s:3:"url";s:135:"https://mod25.aeroclasses.com.br/wp-content/uploads/elementor/screenshots/Elementor-post-screenshot_21_2025-08-29-14-43-46_68366021.png";}'),
(83, 27, '_wp_page_template', 'default'),
(84, 16, '_elementor_page_settings', 'a:1:{s:13:"custom_colors";a:2:{i:0;a:3:{s:3:"_id";s:7:"d203171";s:5:"title";s:15:"Nova cor global";s:5:"color";s:7:"#000000";}i:1;a:3:{s:3:"_id";s:7:"6ee8439";s:5:"title";s:15:"Nova cor global";s:5:"color";s:7:"#E4E4E4";}}}'),
(87, 28, '_elementor_edit_mode', 'builder'),
(88, 28, '_elementor_template_type', 'header'),
(89, 28, '_elementor_version', '3.31.3'),
(90, 28, '_elementor_pro_version', '3.31.2'),
(91, 28, '_elementor_data', '[{"id":"7c2337f8","elType":"container","settings":{"flex_direction":"row","background_background":"classic","border_border":"solid","border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"padding":{"unit":"px","top":"15","right":"0","bottom":"15","left":"0","isLinked":false},"jedv_conditions":[{"_id":"de39f61"}],"__globals__":{"border_color":"globals\\/colors?id=da65b50"},"flex_gap_tablet":{"unit":"px","size":0,"sizes":[],"column":"0","row":"0","isLinked":true},"flex_direction_tablet":"column","flex_direction_mobile":"row","flex_gap_mobile":{"unit":"px","size":0,"sizes":[],"column":"0","row":"0","isLinked":true},"padding_tablet":{"unit":"px","top":"15","right":"0","bottom":"15","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"0","bottom":"15","left":"0","isLinked":false},"jet_parallax_layout_list":[]},"elements":[{"id":"63488adc","elType":"container","settings":{"content_width":"full","width":{"unit":"%","size":25},"flex_direction":"column","flex_justify_content":"center","flex_align_items":"flex-start","padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_flex_size":"none","jedv_conditions":[{"_id":"5f01c10"}],"_element_width":"initial","width_tablet":{"unit":"%","size":100,"sizes":[]},"width_mobile":{"unit":"%","size":100,"sizes":[]},"flex_align_items_mobile":"center","padding_tablet":{"unit":"%","top":"0","right":"3","bottom":"0","left":"3","isLinked":false},"padding_mobile":{"unit":"%","top":"1","right":"5","bottom":"0","left":"5","isLinked":false},"flex_direction_tablet":"row","flex_direction_mobile":"row","flex_justify_content_tablet":"space-between","flex_justify_content_mobile":"space-between","flex_align_items_tablet":"center","flex_gap_mobile":{"unit":"px","size":30,"sizes":[],"column":"30","row":"30","isLinked":true},"jet_parallax_layout_list":[]},"elements":[{"id":"2c05e6ea","elType":"widget","settings":{"image":{"id":8,"url":"https:\\/\\/mod25.aeroclasses.com.br\\/wp-content\\/uploads\\/2025\\/08\\/logo.8367db9c.png.png","alt":"","source":"library","size":""},"image_size":"medium","align":"left","width":{"unit":"px","size":150,"sizes":[]},"width_tablet":{"unit":"px","size":160,"sizes":[]},"width_mobile":{"unit":"px","size":130,"sizes":[]},"jedv_conditions":[{"_id":"2bcab82"}],"__dynamic__":{"link":"[elementor-tag id=\\"154dab0\\" name=\\"site-url\\" settings=\\"%7B%7D\\"]"},"link_to":"custom","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"},{"id":"3670b99c","elType":"widget","settings":{"panel_toggle_label":"Menu","panel_toggle_label_alignment":"flex-end","panel_template_id":"75","position":"left","panel_width":{"unit":"px","size":300,"sizes":[]},"toggle_background_background":"classic","toggle_background_color":"#6EC1E400","toggle_background_gradient_angle":{"unit":"deg","size":270,"sizes":[]},"toggle_padding":{"unit":"px","top":"10","right":"30","bottom":"10","left":"30","isLinked":false},"toggle_border_border":"solid","toggle_border_width":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"toggle_border_radius":{"unit":"px","top":"100","right":"100","bottom":"100","left":"100","isLinked":true},"toggle_icon_box_popover_toggle":"custom","toggle_control_label_color":"#DD1919","_z_index":5,"jedv_conditions":[{"_id":"5980c2e"}],"hide_desktop":"hidden-desktop","__dynamic__":{"toggle_icon_box_box_font_color":"[elementor-tag id=\\"da12f57\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]","toggle_control_label_color":"[elementor-tag id=\\"385c716\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"__globals__":{"cover_bg_color":"globals\\/colors?id=secondary"}},"elements":[],"widgetType":"jet-hamburger-panel"},{"id":"4551e43c","elType":"widget","widgetType":"off-canvas","settings":{"off_canvas_name":"Menu","entrance_animation":"fadeIn","exit_animation":"fadeIn"},"elements":[{"id":"5e02ee86","elType":"container","settings":{"content_width":"full"},"elements":[{"id":"9278f1e","elType":"widget","settings":{"title":"Menu","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size":{"unit":"px","size":24,"sizes":[]},"typography_font_weight":"600","__globals__":{"title_color":"globals\\/colors?id=secondary"}},"elements":[],"widgetType":"heading"},{"id":"753fb988","elType":"widget","settings":{"icon_list":[{"text":"Home","selected_icon":{"value":"fas fa-home","library":"fa-solid"},"_id":"d9c07fa","__dynamic__":{"link":"[elementor-tag id=\\"f3fe216\\" name=\\"site-url\\" settings=\\"%7B%7D\\"]"}},{"text":"Suporte T\\u00e9cnico","selected_icon":{"value":"fas fa-headset","library":"fa-solid"},"_id":"47061ad"},{"text":"FAQ","selected_icon":{"value":"fas fa-question-circle","library":"fa-solid"},"_id":"74e0f1d"},{"_id":"6d26c73","text":"Meu perfil","selected_icon":{"value":"fas fa-user-cog","library":"fa-solid"}}],"space_between":{"unit":"px","size":10,"sizes":[]},"_border_border":"solid","_border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"__globals__":{"icon_color":"globals\\/colors?id=d203171","_border_color":"globals\\/colors?id=6ee8439"}},"elements":[],"widgetType":"icon-list"},{"id":"49c531d7","elType":"widget","settings":{"login_link_text":"Login","login_prefix":"","logout_link_text":"Sair","logout_prefix":"","register_link_text":"Registrar","register_prefix":"","registered_link_text":"Minha Conta","registered_prefix":"|"},"elements":[],"widgetType":"jet-auth-links"}],"isInner":true,"isLocked":true}]}],"isInner":true},{"id":"20d73fa2","elType":"container","settings":{"flex_direction":"row","flex_justify_content":"flex-end","flex_align_items":"center","padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"_id":"24cb170"}],"flex_gap":{"unit":"px","size":30,"sizes":[],"column":"30","row":"30","isLinked":true},"boxed_width_tablet":{"unit":"%","size":100,"sizes":[]},"boxed_width_mobile":{"unit":"%","size":70,"sizes":[]},"flex_justify_content_mobile":"center","padding_tablet":{"unit":"%","top":"0","right":"3","bottom":"0","left":"0","isLinked":false},"padding_mobile":{"unit":"%","top":"3","right":"3","bottom":"3","left":"3","isLinked":false},"z_index":5,"hide_tablet":"hidden-tablet","hide_mobile":"hidden-mobile","content_width":"full","width_mobile":{"unit":"%","size":100,"sizes":[]},"jet_parallax_layout_list":[]},"elements":[{"id":"5af79cb2","elType":"widget","settings":{"menu":"menu","pointer":"none","menu_typography_typography":"custom","menu_typography_font_family":"Roboto","menu_typography_font_size":{"unit":"rem","size":1,"sizes":[]},"menu_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"menu_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"menu_typography_font_weight":"400","color_menu_item":"#7A7A7A","color_menu_item_hover":"#61CE70","jedv_conditions":[{"_id":"71e58bc"}],"__dynamic__":{"color_menu_item":"[elementor-tag id=\\"fe3ce78\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]","color_menu_item_hover":"[elementor-tag id=\\"24511d2\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"menu_name":"Menu","menu_id":5},"elements":[],"widgetType":"nav-menu"},{"id":"15c34d11","elType":"widget","settings":{"login_link_text":"Login","login_prefix":"","logout_link_text":"Logout","logout_prefix":"","register_link_text":"Criar Conta","register_prefix":"","registered_link_text":"Dashboard","registered_prefix":"","jedv_conditions":[{"_id":"a24d82a"}],"login_link_url":"\\/dashboard","logout_redirect":"home","logout_redirect_url":"\\/dashboard","register_link_url":"\\/registro","registered_link_url":"\\/dashboard","order":"register_login","login_link_typography_typography":"custom","login_link_typography_font_family":"Roboto","login_link_typography_font_size":{"unit":"rem","size":0.9,"sizes":[]},"login_link_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"login_link_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"login_link_typography_font_weight":"400","login_link_text_color":"#61CE70","logout_link_typography_typography":"custom","logout_link_typography_font_family":"Roboto","logout_link_typography_font_size":{"unit":"rem","size":0.9,"sizes":[]},"logout_link_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"logout_link_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"logout_link_typography_font_weight":"400","logout_link_text_color":"#61CE70","register_link_typography_typography":"custom","register_link_typography_font_family":"Roboto","register_link_typography_font_size":{"unit":"rem","size":0.9,"sizes":[]},"register_link_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"register_link_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"register_link_typography_font_weight":"400","register_link_text_color":"#61CE70","register_link_margin":{"unit":"px","top":"0","right":"30","bottom":"0","left":"0","isLinked":false},"registered_link_typography_typography":"custom","registered_link_typography_font_family":"Roboto","registered_link_typography_font_size":{"unit":"rem","size":0.9,"sizes":[]},"registered_link_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"registered_link_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"registered_link_typography_font_weight":"400","registered_link_text_color":"#61CE70","registered_link_margin":{"unit":"px","top":"0","right":"30","bottom":"0","left":"0","isLinked":false},"__dynamic__":{"login_link_text_color":"[elementor-tag id=\\"8945fb3\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor1%22%7D\\"]","logout_link_text_color":"[elementor-tag id=\\"7b5d641\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor2%22%7D\\"]","register_link_text_color":"[elementor-tag id=\\"e4f5fe2\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor1%22%7D\\"]","registered_link_text_color":"[elementor-tag id=\\"ee99f8e\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor1%22%7D\\"]"},"show_register_link":""},"elements":[],"widgetType":"jet-auth-links"}],"isInner":true}],"isInner":false}]');
INSERT INTO `wpmr_postmeta` VALUES
(92, 29, '_elementor_edit_mode', 'builder'),
(93, 29, '_elementor_template_type', 'header'),
(94, 29, '_elementor_version', '3.31.3'),
(95, 29, '_elementor_pro_version', '3.31.2'),
(96, 29, '_elementor_data', '[{"id":"7c2337f8","elType":"container","settings":{"flex_direction":"row","background_background":"classic","border_border":"solid","border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"padding":{"unit":"px","top":"15","right":"0","bottom":"15","left":"0","isLinked":false},"jedv_conditions":[{"_id":"de39f61"}],"__globals__":{"border_color":"globals\\/colors?id=da65b50"},"flex_gap_tablet":{"unit":"px","size":0,"sizes":[],"column":"0","row":"0","isLinked":true},"flex_direction_tablet":"column","flex_direction_mobile":"row","flex_gap_mobile":{"unit":"px","size":0,"sizes":[],"column":"0","row":"0","isLinked":true},"padding_tablet":{"unit":"px","top":"15","right":"0","bottom":"15","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"15","right":"0","bottom":"15","left":"0","isLinked":false},"jet_parallax_layout_list":[]},"elements":[{"id":"63488adc","elType":"container","settings":{"content_width":"full","width":{"unit":"%","size":25},"flex_direction":"column","flex_justify_content":"center","flex_align_items":"flex-start","padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_flex_size":"none","jedv_conditions":[{"_id":"5f01c10"}],"_element_width":"initial","width_tablet":{"unit":"%","size":100,"sizes":[]},"width_mobile":{"unit":"%","size":100,"sizes":[]},"flex_align_items_mobile":"center","padding_tablet":{"unit":"%","top":"0","right":"3","bottom":"0","left":"3","isLinked":false},"padding_mobile":{"unit":"%","top":"1","right":"5","bottom":"0","left":"5","isLinked":false},"flex_direction_tablet":"row","flex_direction_mobile":"row","flex_justify_content_tablet":"space-between","flex_justify_content_mobile":"space-between","flex_align_items_tablet":"center","flex_gap_mobile":{"unit":"px","size":30,"sizes":[],"column":"30","row":"30","isLinked":true},"jet_parallax_layout_list":[]},"elements":[{"id":"2c05e6ea","elType":"widget","settings":{"image":{"id":8,"url":"https:\\/\\/mod25.aeroclasses.com.br\\/wp-content\\/uploads\\/2025\\/08\\/logo.8367db9c.png.png","alt":"","source":"library","size":""},"image_size":"medium","align":"left","width":{"unit":"px","size":150,"sizes":[]},"width_tablet":{"unit":"px","size":160,"sizes":[]},"width_mobile":{"unit":"px","size":130,"sizes":[]},"jedv_conditions":[{"_id":"2bcab82"}],"__dynamic__":{"link":"[elementor-tag id=\\"154dab0\\" name=\\"site-url\\" settings=\\"%7B%7D\\"]"},"link_to":"custom","_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"},{"id":"3670b99c","elType":"widget","settings":{"panel_toggle_label":"Menu","panel_toggle_label_alignment":"flex-end","panel_template_id":"75","position":"left","panel_width":{"unit":"px","size":300,"sizes":[]},"toggle_background_background":"classic","toggle_background_color":"#6EC1E400","toggle_background_gradient_angle":{"unit":"deg","size":270,"sizes":[]},"toggle_padding":{"unit":"px","top":"10","right":"30","bottom":"10","left":"30","isLinked":false},"toggle_border_border":"solid","toggle_border_width":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"toggle_border_radius":{"unit":"px","top":"100","right":"100","bottom":"100","left":"100","isLinked":true},"toggle_icon_box_popover_toggle":"custom","toggle_control_label_color":"#DD1919","_z_index":5,"jedv_conditions":[{"_id":"5980c2e"}],"hide_desktop":"hidden-desktop","__dynamic__":{"toggle_icon_box_box_font_color":"[elementor-tag id=\\"da12f57\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]","toggle_control_label_color":"[elementor-tag id=\\"385c716\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"__globals__":{"cover_bg_color":"globals\\/colors?id=secondary"}},"elements":[],"widgetType":"jet-hamburger-panel"},{"id":"4551e43c","elType":"widget","widgetType":"off-canvas","settings":{"off_canvas_name":"Menu","entrance_animation":"fadeIn","exit_animation":"fadeIn"},"elements":[{"id":"5e02ee86","elType":"container","settings":{"content_width":"full"},"elements":[{"id":"9278f1e","elType":"widget","settings":{"title":"Menu","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size":{"unit":"px","size":24,"sizes":[]},"typography_font_weight":"600","__globals__":{"title_color":"globals\\/colors?id=secondary"}},"elements":[],"widgetType":"heading"},{"id":"753fb988","elType":"widget","settings":{"icon_list":[{"text":"Home","selected_icon":{"value":"fas fa-home","library":"fa-solid"},"_id":"d9c07fa","__dynamic__":{"link":"[elementor-tag id=\\"f3fe216\\" name=\\"site-url\\" settings=\\"%7B%7D\\"]"}},{"text":"Suporte T\\u00e9cnico","selected_icon":{"value":"fas fa-headset","library":"fa-solid"},"_id":"47061ad"},{"text":"FAQ","selected_icon":{"value":"fas fa-question-circle","library":"fa-solid"},"_id":"74e0f1d"},{"_id":"6d26c73","text":"Meu perfil","selected_icon":{"value":"fas fa-user-cog","library":"fa-solid"}}],"space_between":{"unit":"px","size":10,"sizes":[]},"_border_border":"solid","_border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"__globals__":{"icon_color":"globals\\/colors?id=d203171","_border_color":"globals\\/colors?id=6ee8439"}},"elements":[],"widgetType":"icon-list"},{"id":"49c531d7","elType":"widget","settings":{"login_link_text":"Login","login_prefix":"","logout_link_text":"Sair","logout_prefix":"","register_link_text":"Registrar","register_prefix":"","registered_link_text":"Minha Conta","registered_prefix":"|"},"elements":[],"widgetType":"jet-auth-links"}],"isInner":true,"isLocked":true}]}],"isInner":true},{"id":"20d73fa2","elType":"container","settings":{"flex_direction":"row","flex_justify_content":"flex-end","flex_align_items":"center","padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"_id":"24cb170"}],"flex_gap":{"unit":"px","size":30,"sizes":[],"column":"30","row":"30","isLinked":true},"boxed_width_tablet":{"unit":"%","size":100,"sizes":[]},"boxed_width_mobile":{"unit":"%","size":70,"sizes":[]},"flex_justify_content_mobile":"center","padding_tablet":{"unit":"%","top":"0","right":"3","bottom":"0","left":"0","isLinked":false},"padding_mobile":{"unit":"%","top":"3","right":"3","bottom":"3","left":"3","isLinked":false},"z_index":5,"hide_tablet":"hidden-tablet","hide_mobile":"hidden-mobile","content_width":"full","width_mobile":{"unit":"%","size":100,"sizes":[]},"jet_parallax_layout_list":[]},"elements":[{"id":"5af79cb2","elType":"widget","settings":{"menu":"menu","pointer":"none","menu_typography_typography":"custom","menu_typography_font_family":"Roboto","menu_typography_font_size":{"unit":"rem","size":1,"sizes":[]},"menu_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"menu_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"menu_typography_font_weight":"400","color_menu_item":"#7A7A7A","color_menu_item_hover":"#61CE70","jedv_conditions":[{"_id":"71e58bc"}],"__dynamic__":{"color_menu_item":"[elementor-tag id=\\"fe3ce78\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]","color_menu_item_hover":"[elementor-tag id=\\"24511d2\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"menu_name":"Menu","menu_id":5},"elements":[],"widgetType":"nav-menu"},{"id":"15c34d11","elType":"widget","settings":{"login_link_text":"Login","login_prefix":"","logout_link_text":"Logout","logout_prefix":"","register_link_text":"Criar Conta","register_prefix":"","registered_link_text":"Dashboard","registered_prefix":"","jedv_conditions":[{"_id":"a24d82a"}],"login_link_url":"\\/dashboard","logout_redirect":"home","logout_redirect_url":"\\/dashboard","register_link_url":"\\/registro","registered_link_url":"\\/dashboard","order":"register_login","login_link_typography_typography":"custom","login_link_typography_font_family":"Roboto","login_link_typography_font_size":{"unit":"rem","size":0.9,"sizes":[]},"login_link_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"login_link_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"login_link_typography_font_weight":"400","login_link_text_color":"#61CE70","logout_link_typography_typography":"custom","logout_link_typography_font_family":"Roboto","logout_link_typography_font_size":{"unit":"rem","size":0.9,"sizes":[]},"logout_link_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"logout_link_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"logout_link_typography_font_weight":"400","logout_link_text_color":"#61CE70","register_link_typography_typography":"custom","register_link_typography_font_family":"Roboto","register_link_typography_font_size":{"unit":"rem","size":0.9,"sizes":[]},"register_link_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"register_link_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"register_link_typography_font_weight":"400","register_link_text_color":"#61CE70","register_link_margin":{"unit":"px","top":"0","right":"30","bottom":"0","left":"0","isLinked":false},"registered_link_typography_typography":"custom","registered_link_typography_font_family":"Roboto","registered_link_typography_font_size":{"unit":"rem","size":0.9,"sizes":[]},"registered_link_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"registered_link_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"registered_link_typography_font_weight":"400","registered_link_text_color":"#61CE70","registered_link_margin":{"unit":"px","top":"0","right":"30","bottom":"0","left":"0","isLinked":false},"__dynamic__":{"login_link_text_color":"[elementor-tag id=\\"8945fb3\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor1%22%7D\\"]","logout_link_text_color":"[elementor-tag id=\\"7b5d641\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor2%22%7D\\"]","register_link_text_color":"[elementor-tag id=\\"e4f5fe2\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor1%22%7D\\"]","registered_link_text_color":"[elementor-tag id=\\"ee99f8e\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor1%22%7D\\"]"},"show_register_link":""},"elements":[],"widgetType":"jet-auth-links"}],"isInner":true}],"isInner":false}]'),
(98, 30, '_elementor_edit_mode', 'builder'),
(99, 30, '_elementor_template_type', 'section'),
(100, 30, '_elementor_version', '3.31.3'),
(101, 30, '_elementor_pro_version', '3.31.2'),
(102, 30, '_elementor_data', '[{"id":"34a27fd5","elType":"container","settings":{"flex_direction":"column","flex_justify_content":"center","flex_align_items":"center","padding":{"unit":"%","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_mobile":{"unit":"%","top":"10","right":"3","bottom":"10","left":"3","isLinked":false},"jedv_enabled":"yes","jedv_conditions":[{"jedv_condition":"user","_id":"97ea87c"}],"min_height":{"unit":"vh","size":80,"sizes":[]},"min_height_tablet":{"unit":"vh","size":"","sizes":[]},"min_height_mobile":{"unit":"vh","size":70,"sizes":[]},"background_background":"classic","__dynamic__":{"background_color":"[elementor-tag id=\\"5123637\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor6%22%7D\\"]"},"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"609b66b2","elType":"container","settings":{"content_width":"full","width":{"unit":"%","size":40,"sizes":[]},"flex_gap":{"unit":"px","size":0,"sizes":[],"column":"0","row":"0","isLinked":true},"border_border":"solid","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"#EAEAEA","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":12,"spread":0,"color":"rgba(0, 0, 0, 0.15)"},"padding":{"unit":"%","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_mobile":{"unit":"%","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"jedv_conditions":[{"_id":"5749bee"}],"width_tablet":{"unit":"%","size":50,"sizes":[]},"width_mobile":{"unit":"%","size":90,"sizes":[]},"min_height_tablet":{"unit":"vh","size":"","sizes":[]},"min_height_mobile":{"unit":"vh","size":"","sizes":[]},"background_background":"classic","background_color":"#FFFFFF","background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"264860ff","elType":"widget","settings":{"title":"Editar Meu Perfil","title_color":"#6EC1E4","_margin":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"jedv_conditions":[{"_id":"cb76333"}],"__dynamic__":{"title_color":"[elementor-tag id=\\"9d42417\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"heading"},{"id":"78fe9c9f","elType":"widget","settings":{"title":"Nome de usu\\u00e1rio n\\u00e3o pode ser alterado","title_color":"#6EC1E4","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size":{"unit":"rem","size":0.8,"sizes":[]},"typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"typography_font_weight":"400","_margin":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false},"jedv_conditions":[{"_id":"a67a560"}],"__dynamic__":{"title_color":"[elementor-tag id=\\"b64d737\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor5%22%7D\\"]"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"heading"},{"id":"7495ac07","elType":"widget","settings":{"title":"","title_color":"#6EC1E4","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size":{"unit":"rem","size":1,"sizes":[]},"typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"typography_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"15","left":"0","isLinked":false},"jedv_conditions":[{"_id":"a67a560"}],"__dynamic__":{"title":"[elementor-tag id=\\"ad436fa\\" name=\\"jet-user-custom-field\\" settings=\\"%7B%22user_field%22%3A%22user_login%22%2C%22before%22%3A%22User%20Login%3A%20%22%7D\\"]","title_color":"[elementor-tag id=\\"b64d737\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor2%22%7D\\"]"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"heading"},{"id":"6c497215","elType":"widget","settings":{"icon_list":[{"text":"Voltar ao Dashboard","selected_icon":{"value":"fas fa-arrow-alt-circle-left","library":"fa-solid"},"_id":"0eda6c1","link":{"url":"\\/dashboard","is_external":"","nofollow":"","custom_attributes":""},"__dynamic__":[]}],"icon_align":"right","icon_color":"#6EC1E4","text_color":"#54595F","icon_typography_typography":"custom","icon_typography_font_family":"Roboto","icon_typography_font_size":{"unit":"rem","size":0.9,"sizes":[]},"icon_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"icon_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"icon_typography_font_weight":"400","_margin":{"unit":"px","top":"10","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"_id":"39766da"}],"__dynamic__":{"icon_color":"[elementor-tag id=\\"0b39946\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor1%22%7D\\"]","text_color":"[elementor-tag id=\\"0b56e78\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"icon-list"}],"isInner":true}],"isInner":false}]'),
(103, 31, '_elementor_edit_mode', 'builder'),
(104, 31, '_elementor_template_type', 'section'),
(105, 31, '_elementor_version', '3.31.3'),
(106, 31, '_elementor_pro_version', '3.31.2'),
(107, 31, '_elementor_data', '[{"id":"34a27fd5","elType":"container","settings":{"flex_direction":"column","flex_justify_content":"center","flex_align_items":"center","padding":{"unit":"%","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_mobile":{"unit":"%","top":"10","right":"3","bottom":"10","left":"3","isLinked":false},"jedv_enabled":"yes","jedv_conditions":[{"jedv_condition":"user","_id":"97ea87c"}],"min_height":{"unit":"vh","size":80,"sizes":[]},"min_height_tablet":{"unit":"vh","size":"","sizes":[]},"min_height_mobile":{"unit":"vh","size":70,"sizes":[]},"background_background":"classic","__dynamic__":{"background_color":"[elementor-tag id=\\"5123637\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor6%22%7D\\"]"},"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"609b66b2","elType":"container","settings":{"content_width":"full","width":{"unit":"%","size":40,"sizes":[]},"flex_gap":{"unit":"px","size":0,"sizes":[],"column":"0","row":"0","isLinked":true},"border_border":"solid","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"#EAEAEA","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":12,"spread":0,"color":"rgba(0, 0, 0, 0.15)"},"padding":{"unit":"%","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_mobile":{"unit":"%","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"jedv_conditions":[{"_id":"5749bee"}],"width_tablet":{"unit":"%","size":50,"sizes":[]},"width_mobile":{"unit":"%","size":90,"sizes":[]},"min_height_tablet":{"unit":"vh","size":"","sizes":[]},"min_height_mobile":{"unit":"vh","size":"","sizes":[]},"background_background":"classic","background_color":"#FFFFFF","background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"264860ff","elType":"widget","settings":{"title":"Editar Meu Perfil","title_color":"#6EC1E4","_margin":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"jedv_conditions":[{"_id":"cb76333"}],"__dynamic__":{"title_color":"[elementor-tag id=\\"9d42417\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"heading"},{"id":"78fe9c9f","elType":"widget","settings":{"title":"Nome de usu\\u00e1rio n\\u00e3o pode ser alterado","title_color":"#6EC1E4","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size":{"unit":"rem","size":0.8,"sizes":[]},"typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"typography_font_weight":"400","_margin":{"unit":"px","top":"0","right":"0","bottom":"3","left":"0","isLinked":false},"jedv_conditions":[{"_id":"a67a560"}],"__dynamic__":{"title_color":"[elementor-tag id=\\"b64d737\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor5%22%7D\\"]"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"heading"},{"id":"7495ac07","elType":"widget","settings":{"title":"","title_color":"#6EC1E4","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size":{"unit":"rem","size":1,"sizes":[]},"typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"typography_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"15","left":"0","isLinked":false},"jedv_conditions":[{"_id":"a67a560"}],"__dynamic__":{"title":"[elementor-tag id=\\"ad436fa\\" name=\\"jet-user-custom-field\\" settings=\\"%7B%22user_field%22%3A%22user_login%22%2C%22before%22%3A%22User%20Login%3A%20%22%7D\\"]","title_color":"[elementor-tag id=\\"b64d737\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor2%22%7D\\"]"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"heading"},{"id":"6c497215","elType":"widget","settings":{"icon_list":[{"text":"Voltar ao Dashboard","selected_icon":{"value":"fas fa-arrow-alt-circle-left","library":"fa-solid"},"_id":"0eda6c1","link":{"url":"\\/dashboard","is_external":"","nofollow":"","custom_attributes":""},"__dynamic__":[]}],"icon_align":"right","icon_color":"#6EC1E4","text_color":"#54595F","icon_typography_typography":"custom","icon_typography_font_family":"Roboto","icon_typography_font_size":{"unit":"rem","size":0.9,"sizes":[]},"icon_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"icon_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"icon_typography_font_weight":"400","_margin":{"unit":"px","top":"10","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"_id":"39766da"}],"__dynamic__":{"icon_color":"[elementor-tag id=\\"0b39946\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor1%22%7D\\"]","text_color":"[elementor-tag id=\\"0b56e78\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"icon-list"}],"isInner":true}],"isInner":false}]'),
(110, 16, '_edit_lock', '1756490335:1'),
(111, 32, '_elementor_edit_mode', 'builder'),
(112, 32, '_elementor_template_type', 'section'),
(113, 32, '_elementor_version', '3.31.3'),
(114, 32, '_elementor_pro_version', '3.31.2'),
(115, 32, '_elementor_data', '[{"id":"729e908e","elType":"container","settings":{"flex_direction":"column","background_background":"classic","background_color":"#FFFFFF","padding":{"unit":"%","top":"2","right":"2","bottom":"2","left":"2","isLinked":true},"padding_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"z_index":10,"jedv_conditions":[{"_id":"f4a13f4"}],"content_width":"full","min_height":{"unit":"vh","size":40,"sizes":[]},"min_height_tablet":{"unit":"vh","size":"","sizes":[]},"min_height_mobile":{"unit":"vh","size":"","sizes":[]},"flex_gap":{"unit":"px","size":0,"sizes":[],"column":"0","row":"0","isLinked":true},"width_tablet":{"unit":"%","size":100,"sizes":[]},"width_mobile":{"unit":"%","size":"","sizes":[]},"flex_justify_content_tablet":"flex-start","flex_gap_tablet":{"unit":"px","size":0,"sizes":[],"column":"0","row":"0","isLinked":true},"flex_gap_mobile":{"unit":"px","size":0,"sizes":[],"column":"0","row":"0","isLinked":true},"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"5c1ed743","elType":"container","settings":{"flex_direction":"column","flex_justify_content":"flex-start","flex_align_items":"flex-start","padding":{"unit":"px","top":"12","right":"12","bottom":"12","left":"12","isLinked":true},"jedv_conditions":[{"_id":"24cb170"}],"flex_gap":{"unit":"px","size":10,"sizes":[],"column":"10","row":"10","isLinked":true},"boxed_width_tablet":{"unit":"%","size":100,"sizes":[]},"boxed_width_mobile":{"unit":"%","size":"","sizes":[]},"flex_justify_content_mobile":"center","padding_tablet":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true},"border_border":"solid","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"margin":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false},"_offset_x":{"unit":"px","size":25,"sizes":[]},"_offset_orientation_v":"end","_offset_y_end":{"unit":"px","size":35,"sizes":[]},"__globals__":{"border_color":"globals\\/colors?id=4bca78a"},"margin_tablet":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false},"_flex_align_self_tablet":"flex-start","background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"a4841a","elType":"widget","settings":{"title":"Menu","title_color":"#6EC1E4","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size":{"unit":"rem","size":0.8,"sizes":[]},"typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","typography_letter_spacing":{"unit":"px","size":2.5,"sizes":[]},"jedv_conditions":[{"_id":"3f797e4"}],"__dynamic__":{"title_color":"[elementor-tag id=\\"9775091\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor5%22%7D\\"]"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"heading"},{"id":"44954669","elType":"widget","settings":{"layout":"vertical","pointer":"none","dropdown":"none","menu_typography_typography":"custom","menu_typography_font_family":"Roboto","menu_typography_font_size":{"unit":"rem","size":1,"sizes":[]},"menu_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"menu_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"menu_typography_font_weight":"500","color_menu_item":"#7A7A7A","color_menu_item_hover":"#61CE7000","padding_horizontal_menu_item":{"unit":"px","size":0,"sizes":[]},"padding_vertical_menu_item":{"unit":"px","size":10,"sizes":[]},"jedv_conditions":[{"_id":"6e5f7e4"}],"__dynamic__":{"color_menu_item":"[elementor-tag id=\\"a9ca546\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]","color_menu_item_hover":"[elementor-tag id=\\"a48466e\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"menu":"menu","menu_name":"Menu","menu_id":5,"submenu_icon":{"value":"fas fa-caret-down","library":"fa-solid"},"toggle_icon_normal":{"value":"","library":""},"toggle_icon_active":{"value":"","library":""},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"nav-menu"}],"isInner":true},{"id":"3a988e0c","elType":"container","settings":{"flex_direction":"column","flex_justify_content":"flex-start","flex_align_items":"flex-start","padding":{"unit":"px","top":"12","right":"12","bottom":"12","left":"12","isLinked":true},"jedv_conditions":[{"_id":"24cb170"}],"flex_gap":{"unit":"px","size":10,"sizes":[],"column":"10","row":"10","isLinked":true},"boxed_width_tablet":{"unit":"%","size":100,"sizes":[]},"boxed_width_mobile":{"unit":"%","size":"","sizes":[]},"flex_justify_content_mobile":"center","padding_tablet":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true},"border_border":"solid","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_offset_x":{"unit":"px","size":25,"sizes":[]},"_offset_orientation_v":"end","_offset_y_end":{"unit":"px","size":35,"sizes":[]},"__globals__":{"border_color":"globals\\/colors?id=4bca78a"},"margin":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false},"margin_tablet":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false},"_flex_align_self_tablet":"flex-start","background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"2512609e","elType":"widget","settings":{"icon_list":[{"text":"Suporte T\\u00e9cnico","selected_icon":{"value":"fas fa-headphones-alt","library":"fa-solid"},"_id":"0eda6c1","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"__dynamic__":[]},{"text":"FAQ","selected_icon":{"value":"far fa-question-circle","library":"fa-regular"},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"__dynamic__":[],"_id":"88669b9"}],"icon_color":"#6EC1E4","text_color":"#54595F","icon_typography_typography":"custom","icon_typography_font_family":"Roboto","icon_typography_font_size":{"unit":"rem","size":0.9,"sizes":[]},"icon_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"icon_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"icon_typography_font_weight":"400","jedv_conditions":[{"_id":"39766da"}],"__dynamic__":{"icon_color":"[elementor-tag id=\\"0b39946\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]","text_color":"[elementor-tag id=\\"0b56e78\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"icon-list"}],"isInner":true},{"id":"791764d","elType":"container","settings":{"flex_direction":"column","flex_justify_content":"flex-start","flex_align_items":"flex-start","padding":{"unit":"px","top":"12","right":"12","bottom":"12","left":"12","isLinked":true},"jedv_conditions":[{"_id":"24cb170"}],"flex_gap":{"unit":"px","size":10,"sizes":[],"column":"10","row":"10","isLinked":true},"boxed_width_tablet":{"unit":"%","size":100,"sizes":[]},"boxed_width_mobile":{"unit":"%","size":"","sizes":[]},"flex_justify_content_mobile":"center","padding_tablet":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true},"border_border":"solid","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_offset_x":{"unit":"px","size":25,"sizes":[]},"_offset_orientation_v":"end","_offset_y_end":{"unit":"px","size":35,"sizes":[]},"__globals__":{"border_color":"globals\\/colors?id=4bca78a"},"margin":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false},"margin_tablet":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false},"_flex_align_self_tablet":"flex-start","background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"6af4ecfc","elType":"widget","settings":{"icon_list":[{"text":"Meu Perfil","selected_icon":{"value":"fas fa-user-cog","library":"fa-solid"},"_id":"0eda6c1","__dynamic__":[],"link":{"url":"","is_external":"","nofollow":"","custom_attributes":""}}],"icon_color":"#6EC1E4","text_color":"#54595F","icon_typography_typography":"custom","icon_typography_font_family":"Roboto","icon_typography_font_size":{"unit":"rem","size":0.9,"sizes":[]},"icon_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"icon_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"icon_typography_font_weight":"400","jedv_conditions":[{"_id":"39766da","jedv_condition":"user"}],"__dynamic__":{"icon_color":"[elementor-tag id=\\"0b39946\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]","text_color":"[elementor-tag id=\\"0b56e78\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"jedv_enabled":"yes","_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"icon-list"},{"id":"535e7a76","elType":"widget","settings":{"icon_list":[{"text":"Configura\\u00e7\\u00f5es","selected_icon":{"value":"fas fa-cogs","library":"fa-solid"},"_id":"0eda6c1","__dynamic__":[],"link":{"url":"","is_external":"","nofollow":"","custom_attributes":""}}],"icon_color":"#6EC1E4","text_color":"#54595F","icon_typography_typography":"custom","icon_typography_font_family":"Roboto","icon_typography_font_size":{"unit":"rem","size":0.9,"sizes":[]},"icon_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"icon_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"icon_typography_font_weight":"400","jedv_conditions":[{"_id":"39766da","jedv_condition":"user"},{"_id":"bf2ccc1","jedv_condition":"user-role","jedv_user_role":["administrator"]}],"__dynamic__":{"icon_color":"[elementor-tag id=\\"0b39946\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]","text_color":"[elementor-tag id=\\"0b56e78\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"jedv_enabled":"yes","_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"icon-list"},{"id":"899249b","elType":"widget","settings":{"icon_list":[{"text":"Painel do WordPress","selected_icon":{"value":"fab fa-wordpress","library":"fa-brands"},"_id":"0eda6c1","__dynamic__":[],"link":{"url":"\\/wp-admin","is_external":"","nofollow":"","custom_attributes":""}}],"icon_color":"#6EC1E4","text_color":"#54595F","icon_typography_typography":"custom","icon_typography_font_family":"Roboto","icon_typography_font_size":{"unit":"rem","size":0.9,"sizes":[]},"icon_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"icon_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"icon_typography_font_weight":"400","jedv_conditions":[{"_id":"39766da","jedv_condition":"user"},{"_id":"bf2ccc1","jedv_condition":"user-role","jedv_user_role":["administrator"]}],"__dynamic__":{"icon_color":"[elementor-tag id=\\"0b39946\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]","text_color":"[elementor-tag id=\\"0b56e78\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"jedv_enabled":"yes","content_width":"full","_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"icon-list"},{"id":"5db59c44","elType":"widget","settings":{"login_link_text":"Login","login_prefix":"","logout_link_text":"Logout","logout_prefix":"","register_link_text":"Criar Conta","register_prefix":"","registered_link_text":"Dashboard","registered_prefix":"","jedv_conditions":[{"_id":"a24d82a"}],"login_link_url":"\\/dashboard","logout_redirect":"home","logout_redirect_url":"\\/home","register_link_url":"\\/registro","registered_link_url":"\\/dashboard","order":"register_login","login_link_typography_typography":"custom","login_link_typography_font_family":"Roboto","login_link_typography_font_size":{"unit":"rem","size":0.9,"sizes":[]},"login_link_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"login_link_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"login_link_typography_font_weight":"400","login_link_text_color":"#61CE70","logout_link_typography_typography":"custom","logout_link_typography_font_family":"Roboto","logout_link_typography_font_size":{"unit":"rem","size":0.9,"sizes":[]},"logout_link_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"logout_link_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"logout_link_typography_font_weight":"400","logout_link_text_color":"#61CE70","register_link_typography_typography":"custom","register_link_typography_font_family":"Roboto","register_link_typography_font_size":{"unit":"rem","size":0.9,"sizes":[]},"register_link_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"register_link_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"register_link_typography_font_weight":"400","register_link_text_color":"#61CE70","register_link_margin":{"unit":"px","top":"0","right":"30","bottom":"0","left":"0","isLinked":false},"registered_link_typography_typography":"custom","registered_link_typography_font_family":"Roboto","registered_link_typography_font_size":{"unit":"rem","size":0.9,"sizes":[]},"registered_link_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"registered_link_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"registered_link_typography_font_weight":"400","registered_link_text_color":"#61CE70","registered_link_margin":{"unit":"px","top":"0","right":"30","bottom":"0","left":"0","isLinked":false},"__dynamic__":{"login_link_text_color":"[elementor-tag id=\\"8945fb3\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor1%22%7D\\"]","logout_link_text_color":"[elementor-tag id=\\"7b5d641\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor2%22%7D\\"]","register_link_text_color":"[elementor-tag id=\\"e4f5fe2\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor1%22%7D\\"]","registered_link_text_color":"[elementor-tag id=\\"ee99f8e\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor1%22%7D\\"]"},"selected_login_link_icon":{"value":"fas fa-sign-in-alt","library":"fa-solid"},"selected_logout_link_icon":{"value":"fas fa-sign-out-alt","library":"fa-solid"},"selected_register_link_icon":{"value":"fas fa-user-plus","library":"fa-solid"},"selected_registered_link_icon":{"value":"fas fa-user","library":"fa-solid"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"jet-auth-links"}],"isInner":true}],"isInner":false},{"id":"2468b6f3","elType":"container","settings":{"flex_direction":"column","background_background":"classic","background_color":"#FFFFFF","padding":{"unit":"%","top":"3","right":"3","bottom":"3","left":"3","isLinked":true},"padding_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"z_index":1,"jedv_conditions":[{"_id":"f4a13f4"}],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[],"isInner":false}]');
INSERT INTO `wpmr_postmeta` VALUES
(116, 33, '_elementor_edit_mode', 'builder'),
(117, 33, '_elementor_template_type', 'section'),
(118, 33, '_elementor_version', '3.31.3'),
(119, 33, '_elementor_pro_version', '3.31.2'),
(120, 33, '_elementor_data', '[{"id":"729e908e","elType":"container","settings":{"flex_direction":"column","background_background":"classic","background_color":"#FFFFFF","padding":{"unit":"%","top":"2","right":"2","bottom":"2","left":"2","isLinked":true},"padding_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"z_index":10,"jedv_conditions":[{"_id":"f4a13f4"}],"content_width":"full","min_height":{"unit":"vh","size":40,"sizes":[]},"min_height_tablet":{"unit":"vh","size":"","sizes":[]},"min_height_mobile":{"unit":"vh","size":"","sizes":[]},"flex_gap":{"unit":"px","size":0,"sizes":[],"column":"0","row":"0","isLinked":true},"width_tablet":{"unit":"%","size":100,"sizes":[]},"width_mobile":{"unit":"%","size":"","sizes":[]},"flex_justify_content_tablet":"flex-start","flex_gap_tablet":{"unit":"px","size":0,"sizes":[],"column":"0","row":"0","isLinked":true},"flex_gap_mobile":{"unit":"px","size":0,"sizes":[],"column":"0","row":"0","isLinked":true},"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"5c1ed743","elType":"container","settings":{"flex_direction":"column","flex_justify_content":"flex-start","flex_align_items":"flex-start","padding":{"unit":"px","top":"12","right":"12","bottom":"12","left":"12","isLinked":true},"jedv_conditions":[{"_id":"24cb170"}],"flex_gap":{"unit":"px","size":10,"sizes":[],"column":"10","row":"10","isLinked":true},"boxed_width_tablet":{"unit":"%","size":100,"sizes":[]},"boxed_width_mobile":{"unit":"%","size":"","sizes":[]},"flex_justify_content_mobile":"center","padding_tablet":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true},"border_border":"solid","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"margin":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false},"_offset_x":{"unit":"px","size":25,"sizes":[]},"_offset_orientation_v":"end","_offset_y_end":{"unit":"px","size":35,"sizes":[]},"__globals__":{"border_color":"globals\\/colors?id=4bca78a"},"margin_tablet":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false},"_flex_align_self_tablet":"flex-start","background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"a4841a","elType":"widget","settings":{"title":"Menu","title_color":"#6EC1E4","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size":{"unit":"rem","size":0.8,"sizes":[]},"typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","typography_letter_spacing":{"unit":"px","size":2.5,"sizes":[]},"jedv_conditions":[{"_id":"3f797e4"}],"__dynamic__":{"title_color":"[elementor-tag id=\\"9775091\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor5%22%7D\\"]"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"heading"},{"id":"44954669","elType":"widget","settings":{"layout":"vertical","pointer":"none","dropdown":"none","menu_typography_typography":"custom","menu_typography_font_family":"Roboto","menu_typography_font_size":{"unit":"rem","size":1,"sizes":[]},"menu_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"menu_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"menu_typography_font_weight":"500","color_menu_item":"#7A7A7A","color_menu_item_hover":"#61CE7000","padding_horizontal_menu_item":{"unit":"px","size":0,"sizes":[]},"padding_vertical_menu_item":{"unit":"px","size":10,"sizes":[]},"jedv_conditions":[{"_id":"6e5f7e4"}],"__dynamic__":{"color_menu_item":"[elementor-tag id=\\"a9ca546\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]","color_menu_item_hover":"[elementor-tag id=\\"a48466e\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"menu":"menu","menu_name":"Menu","menu_id":5,"submenu_icon":{"value":"fas fa-caret-down","library":"fa-solid"},"toggle_icon_normal":{"value":"","library":""},"toggle_icon_active":{"value":"","library":""},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"nav-menu"}],"isInner":true},{"id":"3a988e0c","elType":"container","settings":{"flex_direction":"column","flex_justify_content":"flex-start","flex_align_items":"flex-start","padding":{"unit":"px","top":"12","right":"12","bottom":"12","left":"12","isLinked":true},"jedv_conditions":[{"_id":"24cb170"}],"flex_gap":{"unit":"px","size":10,"sizes":[],"column":"10","row":"10","isLinked":true},"boxed_width_tablet":{"unit":"%","size":100,"sizes":[]},"boxed_width_mobile":{"unit":"%","size":"","sizes":[]},"flex_justify_content_mobile":"center","padding_tablet":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true},"border_border":"solid","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_offset_x":{"unit":"px","size":25,"sizes":[]},"_offset_orientation_v":"end","_offset_y_end":{"unit":"px","size":35,"sizes":[]},"__globals__":{"border_color":"globals\\/colors?id=4bca78a"},"margin":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false},"margin_tablet":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false},"_flex_align_self_tablet":"flex-start","background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"2512609e","elType":"widget","settings":{"icon_list":[{"text":"Suporte T\\u00e9cnico","selected_icon":{"value":"fas fa-headphones-alt","library":"fa-solid"},"_id":"0eda6c1","link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"__dynamic__":[]},{"text":"FAQ","selected_icon":{"value":"far fa-question-circle","library":"fa-regular"},"link":{"url":"#","is_external":"","nofollow":"","custom_attributes":""},"__dynamic__":[],"_id":"88669b9"}],"icon_color":"#6EC1E4","text_color":"#54595F","icon_typography_typography":"custom","icon_typography_font_family":"Roboto","icon_typography_font_size":{"unit":"rem","size":0.9,"sizes":[]},"icon_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"icon_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"icon_typography_font_weight":"400","jedv_conditions":[{"_id":"39766da"}],"__dynamic__":{"icon_color":"[elementor-tag id=\\"0b39946\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]","text_color":"[elementor-tag id=\\"0b56e78\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"icon-list"}],"isInner":true},{"id":"791764d","elType":"container","settings":{"flex_direction":"column","flex_justify_content":"flex-start","flex_align_items":"flex-start","padding":{"unit":"px","top":"12","right":"12","bottom":"12","left":"12","isLinked":true},"jedv_conditions":[{"_id":"24cb170"}],"flex_gap":{"unit":"px","size":10,"sizes":[],"column":"10","row":"10","isLinked":true},"boxed_width_tablet":{"unit":"%","size":100,"sizes":[]},"boxed_width_mobile":{"unit":"%","size":"","sizes":[]},"flex_justify_content_mobile":"center","padding_tablet":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true},"padding_mobile":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true},"border_border":"solid","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"_offset_x":{"unit":"px","size":25,"sizes":[]},"_offset_orientation_v":"end","_offset_y_end":{"unit":"px","size":35,"sizes":[]},"__globals__":{"border_color":"globals\\/colors?id=4bca78a"},"margin":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false},"margin_tablet":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false},"_flex_align_self_tablet":"flex-start","background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"6af4ecfc","elType":"widget","settings":{"icon_list":[{"text":"Meu Perfil","selected_icon":{"value":"fas fa-user-cog","library":"fa-solid"},"_id":"0eda6c1","__dynamic__":[],"link":{"url":"","is_external":"","nofollow":"","custom_attributes":""}}],"icon_color":"#6EC1E4","text_color":"#54595F","icon_typography_typography":"custom","icon_typography_font_family":"Roboto","icon_typography_font_size":{"unit":"rem","size":0.9,"sizes":[]},"icon_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"icon_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"icon_typography_font_weight":"400","jedv_conditions":[{"_id":"39766da","jedv_condition":"user"}],"__dynamic__":{"icon_color":"[elementor-tag id=\\"0b39946\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]","text_color":"[elementor-tag id=\\"0b56e78\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"jedv_enabled":"yes","_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"icon-list"},{"id":"535e7a76","elType":"widget","settings":{"icon_list":[{"text":"Configura\\u00e7\\u00f5es","selected_icon":{"value":"fas fa-cogs","library":"fa-solid"},"_id":"0eda6c1","__dynamic__":[],"link":{"url":"","is_external":"","nofollow":"","custom_attributes":""}}],"icon_color":"#6EC1E4","text_color":"#54595F","icon_typography_typography":"custom","icon_typography_font_family":"Roboto","icon_typography_font_size":{"unit":"rem","size":0.9,"sizes":[]},"icon_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"icon_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"icon_typography_font_weight":"400","jedv_conditions":[{"_id":"39766da","jedv_condition":"user"},{"_id":"bf2ccc1","jedv_condition":"user-role","jedv_user_role":["administrator"]}],"__dynamic__":{"icon_color":"[elementor-tag id=\\"0b39946\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]","text_color":"[elementor-tag id=\\"0b56e78\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"jedv_enabled":"yes","_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"icon-list"},{"id":"899249b","elType":"widget","settings":{"icon_list":[{"text":"Painel do WordPress","selected_icon":{"value":"fab fa-wordpress","library":"fa-brands"},"_id":"0eda6c1","__dynamic__":[],"link":{"url":"\\/wp-admin","is_external":"","nofollow":"","custom_attributes":""}}],"icon_color":"#6EC1E4","text_color":"#54595F","icon_typography_typography":"custom","icon_typography_font_family":"Roboto","icon_typography_font_size":{"unit":"rem","size":0.9,"sizes":[]},"icon_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"icon_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"icon_typography_font_weight":"400","jedv_conditions":[{"_id":"39766da","jedv_condition":"user"},{"_id":"bf2ccc1","jedv_condition":"user-role","jedv_user_role":["administrator"]}],"__dynamic__":{"icon_color":"[elementor-tag id=\\"0b39946\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]","text_color":"[elementor-tag id=\\"0b56e78\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"jedv_enabled":"yes","content_width":"full","_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"icon-list"},{"id":"5db59c44","elType":"widget","settings":{"login_link_text":"Login","login_prefix":"","logout_link_text":"Logout","logout_prefix":"","register_link_text":"Criar Conta","register_prefix":"","registered_link_text":"Dashboard","registered_prefix":"","jedv_conditions":[{"_id":"a24d82a"}],"login_link_url":"\\/dashboard","logout_redirect":"home","logout_redirect_url":"\\/home","register_link_url":"\\/registro","registered_link_url":"\\/dashboard","order":"register_login","login_link_typography_typography":"custom","login_link_typography_font_family":"Roboto","login_link_typography_font_size":{"unit":"rem","size":0.9,"sizes":[]},"login_link_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"login_link_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"login_link_typography_font_weight":"400","login_link_text_color":"#61CE70","logout_link_typography_typography":"custom","logout_link_typography_font_family":"Roboto","logout_link_typography_font_size":{"unit":"rem","size":0.9,"sizes":[]},"logout_link_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"logout_link_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"logout_link_typography_font_weight":"400","logout_link_text_color":"#61CE70","register_link_typography_typography":"custom","register_link_typography_font_family":"Roboto","register_link_typography_font_size":{"unit":"rem","size":0.9,"sizes":[]},"register_link_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"register_link_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"register_link_typography_font_weight":"400","register_link_text_color":"#61CE70","register_link_margin":{"unit":"px","top":"0","right":"30","bottom":"0","left":"0","isLinked":false},"registered_link_typography_typography":"custom","registered_link_typography_font_family":"Roboto","registered_link_typography_font_size":{"unit":"rem","size":0.9,"sizes":[]},"registered_link_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"registered_link_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"registered_link_typography_font_weight":"400","registered_link_text_color":"#61CE70","registered_link_margin":{"unit":"px","top":"0","right":"30","bottom":"0","left":"0","isLinked":false},"__dynamic__":{"login_link_text_color":"[elementor-tag id=\\"8945fb3\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor1%22%7D\\"]","logout_link_text_color":"[elementor-tag id=\\"7b5d641\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor2%22%7D\\"]","register_link_text_color":"[elementor-tag id=\\"e4f5fe2\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor1%22%7D\\"]","registered_link_text_color":"[elementor-tag id=\\"ee99f8e\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor1%22%7D\\"]"},"selected_login_link_icon":{"value":"fas fa-sign-in-alt","library":"fa-solid"},"selected_logout_link_icon":{"value":"fas fa-sign-out-alt","library":"fa-solid"},"selected_register_link_icon":{"value":"fas fa-user-plus","library":"fa-solid"},"selected_registered_link_icon":{"value":"fas fa-user","library":"fa-solid"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"jet-auth-links"}],"isInner":true}],"isInner":false},{"id":"2468b6f3","elType":"container","settings":{"flex_direction":"column","background_background":"classic","background_color":"#FFFFFF","padding":{"unit":"%","top":"3","right":"3","bottom":"3","left":"3","isLinked":true},"padding_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"z_index":1,"jedv_conditions":[{"_id":"f4a13f4"}],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[],"isInner":false}]'),
(122, 34, '_wp_attached_file', '2025/08/placeholder.png'),
(123, 34, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:1200;s:6:"height";i:800;s:4:"file";s:23:"2025/08/placeholder.png";s:8:"filesize";i:6146;s:5:"sizes";a:4:{s:6:"medium";a:5:{s:4:"file";s:23:"placeholder-300x200.png";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:9:"image/png";s:8:"filesize";i:3887;}s:5:"large";a:5:{s:4:"file";s:24:"placeholder-1024x683.png";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:9:"image/png";s:8:"filesize";i:18458;}s:9:"thumbnail";a:5:{s:4:"file";s:23:"placeholder-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";s:8:"filesize";i:2225;}s:12:"medium_large";a:5:{s:4:"file";s:23:"placeholder-768x512.png";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:9:"image/png";s:8:"filesize";i:12559;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(124, 34, '_elementor_source_image_hash', '3b05e51aecfeefd2549ecb255b0baedf69acbce7'),
(125, 35, '_elementor_edit_mode', 'builder'),
(126, 35, '_elementor_template_type', 'section'),
(127, 35, '_elementor_version', '3.31.3'),
(128, 35, '_elementor_pro_version', '3.31.2'),
(129, 36, '_elementor_edit_mode', 'builder'),
(130, 36, '_elementor_template_type', 'section'),
(131, 36, '_elementor_version', '3.31.3'),
(132, 36, '_elementor_pro_version', '3.31.2'),
(133, 35, '_wp_page_template', 'default'),
(134, 35, '_elementor_page_settings', 'a:1:{s:24:"content_wrapper_html_tag";s:7:"section";}'),
(135, 35, '_elementor_data', '[{"id":"8f6476a","elType":"container","settings":{"flex_direction":"column","flex_justify_content":"flex-start","flex_align_items":"center","padding":{"unit":"rem","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding_tablet":{"unit":"rem","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_mobile":{"unit":"%","top":"10","right":"3","bottom":"10","left":"3","isLinked":false},"jedv_enabled":"yes","jedv_conditions":[{"jedv_condition":"user-not-logged","_id":"97ea87c"}],"min_height":{"unit":"vh","size":"","sizes":[]},"min_height_tablet":{"unit":"vh","size":"","sizes":[]},"min_height_mobile":{"unit":"vh","size":70,"sizes":[]},"background_background":"classic","__dynamic__":{"background_color":"[elementor-tag id=\\"920b0da\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor6%22%7D\\"]"},"jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"6619ecda","elType":"container","settings":{"content_width":"full","width":{"unit":"%","size":39.737},"flex_gap":{"unit":"px","size":0,"sizes":[],"column":"0","row":"0","isLinked":true},"border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"#EAEAEA","border_radius":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":12,"spread":0,"color":"rgba(0, 0, 0, 0.15)"},"padding":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_mobile":{"unit":"%","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"jedv_conditions":[{"_id":"5749bee"}],"width_tablet":{"unit":"%","size":50,"sizes":[]},"width_mobile":{"unit":"%","size":90,"sizes":[]},"min_height_tablet":{"unit":"vh","size":"","sizes":[]},"min_height_mobile":{"unit":"vh","size":"","sizes":[]},"background_background":"classic","_flex_size":"none","_element_width":"initial","jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"45e0724f","elType":"widget","settings":{"image_size":"medium","width":{"unit":"px","size":250,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"_id":"c3c081d"}],"__dynamic__":{"image":"[elementor-tag id=\\"a006b8b\\" name=\\"jet-options-image\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_logoadmin%22%7D\\"]","link":"[elementor-tag id=\\"6c39684\\" name=\\"site-url\\" settings=\\"%7B%7D\\"]"},"link_to":"custom","width_tablet":{"unit":"px","size":"","sizes":[]},"width_mobile":{"unit":"px","size":"","sizes":[]},"content_width":"full","image":{"id":34,"url":"https:\\/\\/mod25.aeroclasses.com.br\\/wp-content\\/uploads\\/2025\\/08\\/placeholder.png"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"image"},{"id":"6c028f8e","elType":"container","settings":{"flex_direction":"row","flex_justify_content":"center","flex_align_items":"center","jedv_conditions":[{"_id":"3e477a6"}],"jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"d0bf1fc","elType":"widget","settings":{"view":"inline","icon_list":[{"text":"Voltar para Home","selected_icon":{"value":"fas fa-arrow-alt-circle-left","library":"fa-solid"},"_id":"ba13209","__dynamic__":{"link":"[elementor-tag id=\\"19651d1\\" name=\\"site-url\\" settings=\\"%7B%7D\\"]"},"link":{"url":"","is_external":"","nofollow":"","custom_attributes":""}}],"space_between":{"unit":"px","size":30,"sizes":[]},"icon_align":"center","icon_color":"#6EC1E4","text_color":"#54595F","jedv_conditions":[{"_id":"4116851"}],"__dynamic__":{"icon_color":"[elementor-tag id=\\"c93b298\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor1%22%7D\\"]","text_color":"[elementor-tag id=\\"89001e0\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"icon-list"},{"id":"5a3089fe","elType":"widget","settings":{"view":"inline","icon_list":[{"text":"Criar Conta","selected_icon":{"value":"fas fa-user-plus","library":"fa-solid"},"link":{"url":"\\/registro","is_external":"","nofollow":"","custom_attributes":""},"__dynamic__":[],"_id":"f186c52"}],"space_between":{"unit":"px","size":30,"sizes":[]},"icon_align":"center","icon_color":"#6EC1E4","text_color":"#54595F","jedv_conditions":[{"_id":"4116851","jedv_condition":"switcher-enabled","__dynamic__":{"jedv_field":"[elementor-tag id=\\"f21fbd5\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_criarconta%22%7D\\"]"}}],"__dynamic__":{"icon_color":"[elementor-tag id=\\"c93b298\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor1%22%7D\\"]","text_color":"[elementor-tag id=\\"89001e0\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"content_width":"full","jedv_enabled":"yes","_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"icon-list"}],"isInner":true}],"isInner":true},{"id":"62653832","elType":"container","settings":{"content_width":"full","width":{"unit":"%","size":40,"sizes":[]},"flex_gap":{"unit":"px","size":0,"sizes":[],"column":"0","row":"0","isLinked":true},"border_border":"solid","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"#EAEAEA","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":12,"spread":0,"color":"rgba(0, 0, 0, 0.15)"},"padding":{"unit":"%","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_mobile":{"unit":"%","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"jedv_conditions":[{"_id":"5749bee"}],"width_tablet":{"unit":"%","size":50,"sizes":[]},"width_mobile":{"unit":"%","size":90,"sizes":[]},"min_height_tablet":{"unit":"vh","size":"","sizes":[]},"min_height_mobile":{"unit":"vh","size":"","sizes":[]},"background_background":"classic","background_color":"#FFFFFF","jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"7ed5ef40","elType":"widget","settings":{"title":"Login","title_color":"#6EC1E4","_margin":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"jedv_conditions":[{"_id":"cb76333"}],"__dynamic__":{"title_color":"[elementor-tag id=\\"9d42417\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"heading"},{"id":"27a27a35","elType":"widget","settings":{"view":"inline","icon_list":[{"text":"Perdeu sua senha?","selected_icon":{"value":"fas fa-key","library":"fa-solid"},"link":{"url":"\\/reset-password","is_external":"","nofollow":"","custom_attributes":""},"__dynamic__":[],"_id":"e0f06cb"}],"space_between":{"unit":"px","size":30,"sizes":[]},"icon_align":"right","icon_color":"#6EC1E4","text_color":"#54595F","_margin":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"jedv_condition":"in-list","_id":"4116851","jedv_value":"Personalizado","__dynamic__":{"jedv_field":"[elementor-tag id=\\"077c3bc\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3Arecuperador-de-senha%22%7D\\"]"}}],"__dynamic__":{"icon_color":"[elementor-tag id=\\"c93b298\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor1%22%7D\\"]","text_color":"[elementor-tag id=\\"89001e0\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"icon-list"}],"isInner":true}],"isInner":false}]'),
(136, 37, '_elementor_edit_mode', 'builder'),
(137, 37, '_elementor_template_type', 'section'),
(138, 37, '_elementor_version', '3.31.3'),
(139, 37, '_elementor_pro_version', '3.31.2'),
(140, 37, '_wp_page_template', 'default'),
(141, 37, '_elementor_page_settings', 'a:1:{s:24:"content_wrapper_html_tag";s:7:"section";}'),
(142, 37, '_elementor_data', '[{"id":"8f6476a","elType":"container","settings":{"flex_direction":"column","flex_justify_content":"flex-start","flex_align_items":"center","padding":{"unit":"rem","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding_tablet":{"unit":"rem","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_mobile":{"unit":"%","top":"10","right":"3","bottom":"10","left":"3","isLinked":false},"jedv_enabled":"yes","jedv_conditions":[{"jedv_condition":"user-not-logged","_id":"97ea87c"}],"min_height":{"unit":"vh","size":"","sizes":[]},"min_height_tablet":{"unit":"vh","size":"","sizes":[]},"min_height_mobile":{"unit":"vh","size":70,"sizes":[]},"background_background":"classic","__dynamic__":{"background_color":"[elementor-tag id=\\"920b0da\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor6%22%7D\\"]"},"jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"6619ecda","elType":"container","settings":{"content_width":"full","width":{"unit":"%","size":39.737},"flex_gap":{"unit":"px","size":0,"sizes":[],"column":"0","row":"0","isLinked":true},"border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"#EAEAEA","border_radius":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":12,"spread":0,"color":"rgba(0, 0, 0, 0.15)"},"padding":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_mobile":{"unit":"%","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"jedv_conditions":[{"_id":"5749bee"}],"width_tablet":{"unit":"%","size":50,"sizes":[]},"width_mobile":{"unit":"%","size":90,"sizes":[]},"min_height_tablet":{"unit":"vh","size":"","sizes":[]},"min_height_mobile":{"unit":"vh","size":"","sizes":[]},"background_background":"classic","_flex_size":"none","_element_width":"initial","jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"45e0724f","elType":"widget","settings":{"image_size":"medium","width":{"unit":"px","size":250,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"_id":"c3c081d"}],"__dynamic__":{"image":"[elementor-tag id=\\"a006b8b\\" name=\\"jet-options-image\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_logoadmin%22%7D\\"]","link":"[elementor-tag id=\\"6c39684\\" name=\\"site-url\\" settings=\\"%7B%7D\\"]"},"link_to":"custom","width_tablet":{"unit":"px","size":"","sizes":[]},"width_mobile":{"unit":"px","size":"","sizes":[]},"content_width":"full","image":{"id":34,"url":"https:\\/\\/mod25.aeroclasses.com.br\\/wp-content\\/uploads\\/2025\\/08\\/placeholder.png"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"image"},{"id":"6c028f8e","elType":"container","settings":{"flex_direction":"row","flex_justify_content":"center","flex_align_items":"center","jedv_conditions":[{"_id":"3e477a6"}],"jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"d0bf1fc","elType":"widget","settings":{"view":"inline","icon_list":[{"text":"Voltar para Home","selected_icon":{"value":"fas fa-arrow-alt-circle-left","library":"fa-solid"},"_id":"ba13209","__dynamic__":{"link":"[elementor-tag id=\\"19651d1\\" name=\\"site-url\\" settings=\\"%7B%7D\\"]"},"link":{"url":"","is_external":"","nofollow":"","custom_attributes":""}}],"space_between":{"unit":"px","size":30,"sizes":[]},"icon_align":"center","icon_color":"#6EC1E4","text_color":"#54595F","jedv_conditions":[{"_id":"4116851"}],"__dynamic__":{"icon_color":"[elementor-tag id=\\"c93b298\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor1%22%7D\\"]","text_color":"[elementor-tag id=\\"89001e0\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"icon-list"},{"id":"5a3089fe","elType":"widget","settings":{"view":"inline","icon_list":[{"text":"Criar Conta","selected_icon":{"value":"fas fa-user-plus","library":"fa-solid"},"link":{"url":"\\/registro","is_external":"","nofollow":"","custom_attributes":""},"__dynamic__":[],"_id":"f186c52"}],"space_between":{"unit":"px","size":30,"sizes":[]},"icon_align":"center","icon_color":"#6EC1E4","text_color":"#54595F","jedv_conditions":[{"_id":"4116851","jedv_condition":"switcher-enabled","__dynamic__":{"jedv_field":"[elementor-tag id=\\"f21fbd5\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_criarconta%22%7D\\"]"}}],"__dynamic__":{"icon_color":"[elementor-tag id=\\"c93b298\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor1%22%7D\\"]","text_color":"[elementor-tag id=\\"89001e0\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"content_width":"full","jedv_enabled":"yes","_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"icon-list"}],"isInner":true}],"isInner":true},{"id":"62653832","elType":"container","settings":{"content_width":"full","width":{"unit":"%","size":40,"sizes":[]},"flex_gap":{"unit":"px","size":0,"sizes":[],"column":"0","row":"0","isLinked":true},"border_border":"solid","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"#EAEAEA","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":12,"spread":0,"color":"rgba(0, 0, 0, 0.15)"},"padding":{"unit":"%","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_mobile":{"unit":"%","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"jedv_conditions":[{"_id":"5749bee"}],"width_tablet":{"unit":"%","size":50,"sizes":[]},"width_mobile":{"unit":"%","size":90,"sizes":[]},"min_height_tablet":{"unit":"vh","size":"","sizes":[]},"min_height_mobile":{"unit":"vh","size":"","sizes":[]},"background_background":"classic","background_color":"#FFFFFF","jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"7ed5ef40","elType":"widget","settings":{"title":"Login","title_color":"#6EC1E4","_margin":{"unit":"px","top":"0","right":"0","bottom":"30","left":"0","isLinked":false},"jedv_conditions":[{"_id":"cb76333"}],"__dynamic__":{"title_color":"[elementor-tag id=\\"9d42417\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"heading"},{"id":"27a27a35","elType":"widget","settings":{"view":"inline","icon_list":[{"text":"Perdeu sua senha?","selected_icon":{"value":"fas fa-key","library":"fa-solid"},"link":{"url":"\\/reset-password","is_external":"","nofollow":"","custom_attributes":""},"__dynamic__":[],"_id":"e0f06cb"}],"space_between":{"unit":"px","size":30,"sizes":[]},"icon_align":"right","icon_color":"#6EC1E4","text_color":"#54595F","_margin":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"jedv_condition":"in-list","_id":"4116851","jedv_value":"Personalizado","__dynamic__":{"jedv_field":"[elementor-tag id=\\"077c3bc\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3Arecuperador-de-senha%22%7D\\"]"}}],"__dynamic__":{"icon_color":"[elementor-tag id=\\"c93b298\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor1%22%7D\\"]","text_color":"[elementor-tag id=\\"89001e0\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"icon-list"}],"isInner":true}],"isInner":false}]'),
(144, 38, '_elementor_edit_mode', 'builder'),
(145, 38, '_elementor_template_type', 'section'),
(146, 38, '_elementor_version', '3.31.3'),
(147, 38, '_elementor_pro_version', '3.31.2');
INSERT INTO `wpmr_postmeta` VALUES
(148, 38, '_elementor_data', '[{"id":"6de09971","elType":"container","settings":{"flex_direction":"column","flex_justify_content":"center","flex_align_items":"center","padding":{"unit":"%","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_mobile":{"unit":"%","top":"10","right":"3","bottom":"10","left":"3","isLinked":false},"jedv_enabled":"yes","jedv_conditions":[{"jedv_condition":"user","_id":"97ea87c"},{"_id":"ca18a0c","jedv_condition":"user-role","jedv_user_role":["administrator"]}],"min_height":{"unit":"vh","size":80,"sizes":[]},"min_height_tablet":{"unit":"vh","size":"","sizes":[]},"min_height_mobile":{"unit":"vh","size":70,"sizes":[]},"background_background":"classic","__dynamic__":{"background_color":"[elementor-tag id=\\"26d5b1e\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor6%22%7D\\"]"},"jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"6c7f3e6f","elType":"container","settings":{"content_width":"full","width":{"unit":"%","size":80,"sizes":[]},"flex_gap":{"unit":"px","size":0,"sizes":[],"column":"0","row":"0","isLinked":true},"border_border":"solid","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"#EAEAEA","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":12,"spread":0,"color":"rgba(0, 0, 0, 0.15)"},"padding":{"unit":"%","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_mobile":{"unit":"%","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"jedv_conditions":[{"_id":"5749bee"}],"width_tablet":{"unit":"%","size":50,"sizes":[]},"width_mobile":{"unit":"%","size":90,"sizes":[]},"min_height_tablet":{"unit":"vh","size":"","sizes":[]},"min_height_mobile":{"unit":"vh","size":"","sizes":[]},"background_background":"classic","background_color":"#FFFFFF","jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"1afb92e4","elType":"widget","settings":{"title":"Adicionar Prova","title_color":"#6EC1E4","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"_id":"cb76333"}],"__dynamic__":{"title_color":"[elementor-tag id=\\"9d42417\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"heading"},{"id":"58924163","elType":"widget","settings":{"icon_list":[{"text":"Voltar ao Dashboard","selected_icon":{"value":"fas fa-arrow-alt-circle-left","library":"fa-solid"},"_id":"0eda6c1","link":{"url":"\\/dashboard","is_external":"","nofollow":"","custom_attributes":""},"__dynamic__":[]}],"icon_align":"right","icon_color":"#6EC1E4","text_color":"#54595F","icon_typography_typography":"custom","icon_typography_font_family":"Roboto","icon_typography_font_size":{"unit":"rem","size":0.9,"sizes":[]},"icon_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"icon_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"icon_typography_font_weight":"400","_margin":{"unit":"px","top":"10","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"_id":"39766da"}],"__dynamic__":{"icon_color":"[elementor-tag id=\\"0b39946\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor1%22%7D\\"]","text_color":"[elementor-tag id=\\"0b56e78\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"icon-list"}],"isInner":true}],"isInner":false}]'),
(149, 39, '_elementor_edit_mode', 'builder'),
(150, 39, '_elementor_template_type', 'section'),
(151, 39, '_elementor_version', '3.31.3'),
(152, 39, '_elementor_pro_version', '3.31.2'),
(153, 39, '_elementor_data', '[{"id":"6de09971","elType":"container","settings":{"flex_direction":"column","flex_justify_content":"center","flex_align_items":"center","padding":{"unit":"%","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_mobile":{"unit":"%","top":"10","right":"3","bottom":"10","left":"3","isLinked":false},"jedv_enabled":"yes","jedv_conditions":[{"jedv_condition":"user","_id":"97ea87c"},{"_id":"ca18a0c","jedv_condition":"user-role","jedv_user_role":["administrator"]}],"min_height":{"unit":"vh","size":80,"sizes":[]},"min_height_tablet":{"unit":"vh","size":"","sizes":[]},"min_height_mobile":{"unit":"vh","size":70,"sizes":[]},"background_background":"classic","__dynamic__":{"background_color":"[elementor-tag id=\\"26d5b1e\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor6%22%7D\\"]"},"jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"6c7f3e6f","elType":"container","settings":{"content_width":"full","width":{"unit":"%","size":80,"sizes":[]},"flex_gap":{"unit":"px","size":0,"sizes":[],"column":"0","row":"0","isLinked":true},"border_border":"solid","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"#EAEAEA","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":12,"spread":0,"color":"rgba(0, 0, 0, 0.15)"},"padding":{"unit":"%","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_mobile":{"unit":"%","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"jedv_conditions":[{"_id":"5749bee"}],"width_tablet":{"unit":"%","size":50,"sizes":[]},"width_mobile":{"unit":"%","size":90,"sizes":[]},"min_height_tablet":{"unit":"vh","size":"","sizes":[]},"min_height_mobile":{"unit":"vh","size":"","sizes":[]},"background_background":"classic","background_color":"#FFFFFF","jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"1afb92e4","elType":"widget","settings":{"title":"Adicionar Prova","title_color":"#6EC1E4","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"_id":"cb76333"}],"__dynamic__":{"title_color":"[elementor-tag id=\\"9d42417\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"heading"},{"id":"58924163","elType":"widget","settings":{"icon_list":[{"text":"Voltar ao Dashboard","selected_icon":{"value":"fas fa-arrow-alt-circle-left","library":"fa-solid"},"_id":"0eda6c1","link":{"url":"\\/dashboard","is_external":"","nofollow":"","custom_attributes":""},"__dynamic__":[]}],"icon_align":"right","icon_color":"#6EC1E4","text_color":"#54595F","icon_typography_typography":"custom","icon_typography_font_family":"Roboto","icon_typography_font_size":{"unit":"rem","size":0.9,"sizes":[]},"icon_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"icon_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"icon_typography_font_weight":"400","_margin":{"unit":"px","top":"10","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"_id":"39766da"}],"__dynamic__":{"icon_color":"[elementor-tag id=\\"0b39946\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor1%22%7D\\"]","text_color":"[elementor-tag id=\\"0b56e78\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"icon-list"}],"isInner":true}],"isInner":false}]'),
(155, 40, '_elementor_edit_mode', 'builder'),
(156, 40, '_elementor_template_type', 'section'),
(157, 40, '_elementor_version', '3.31.3'),
(158, 40, '_elementor_pro_version', '3.31.2'),
(159, 40, '_elementor_data', '[{"id":"6dcdf199","elType":"container","settings":{"jedv_conditions":[{"_id":"e16db6f"}],"flex_direction":"column","flex_justify_content":"center","flex_align_items":"flex-start","jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"1117f0fb","elType":"widget","settings":{"title":" \\u00e1rea do aluno","title_color":"#6EC1E4","typography_typography":"custom","typography_font_size":{"unit":"rem","size":1.6,"sizes":[]},"typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"typography_font_weight":"600","jedv_conditions":[{"_id":"fc523aa","jedv_condition":"user-role","jedv_user_role":["aluno_cicero","aluno_alusio"]}],"__dynamic__":{"title_color":"[elementor-tag id=\\"f7b135c\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"typography_text_transform":"uppercase","jedv_enabled":"yes","_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"heading"},{"id":"c0fabb0","elType":"widget","settings":{"title":" \\u00e1rea do professor","title_color":"#6EC1E4","typography_typography":"custom","typography_font_size":{"unit":"rem","size":1.6,"sizes":[]},"typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"typography_font_weight":"600","jedv_conditions":[{"_id":"fc523aa","jedv_condition":"user-role","jedv_user_role":["professor_cicero","professor_aluiso"]}],"__dynamic__":{"title_color":"[elementor-tag id=\\"f7b135c\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"typography_text_transform":"uppercase","jedv_enabled":"yes","_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"heading"},{"id":"79de160a","elType":"container","settings":{"content_width":"full","flex_direction":"row","flex_justify_content":"flex-start","flex_align_items":"center","margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"_id":"9b0f5e0"}],"jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"ac76684","elType":"container","settings":{"content_width":"full","width":{"unit":"%","size":30,"sizes":[]},"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"_id":"3f5e013"}],"jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"54a67ba2","elType":"widget","settings":{"lisitng_id":"851","columns":"1","posts_num":1,"not_found_message":"Selecione um paciente","custom_query_id":"11","posts_query":[],"terms_meta_query":[],"users_meta_query":[],"jedv_conditions":[{"_id":"4dbce2d"}],"horizontal_gap":{"unit":"px","size":0,"sizes":[]},"vertical_gap":{"unit":"px","size":0,"sizes":[]},"horizontal_gap_mobile":{"unit":"px","size":0,"sizes":[]},"vertical_gap_mobile":{"unit":"px","size":0,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"content_width":"full","__dynamic__":{"users_include":"[elementor-tag id=\\"5414e51\\" name=\\"jet-user-custom-field\\" settings=\\"%7B%22user_field%22%3A%22ID%22%7D\\"]"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"jet-listing-grid"}],"isInner":true}],"isInner":true}],"isInner":true},{"id":"6a5dcaf7","elType":"container","settings":{"jet_parallax_layout_list":[],"jedv_conditions":[{"_id":"a36f34a"}],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"537d9eb0","elType":"container","settings":{"jedv_conditions":[{"_id":"e16db6f"}],"jet_parallax_layout_list":[],"content_width":"full","flex_direction":"row","flex_justify_content":"center","background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"7f095a73","elType":"widget","settings":{"text":"Instru\\u00e7\\u00f5es","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"64c608f1","elType":"widget","settings":{"text":"DGR","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"7d4cd949","elType":"widget","settings":{"text":"Material de apoio","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"35ca89fc","elType":"widget","settings":{"text":"Avalia\\u00e7\\u00e3o nivel","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"50cba595","elType":"widget","settings":{"text":"Confirmar presen\\u00e7a","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"55a26cfd","elType":"widget","settings":{"text":"Exames","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"}],"isInner":true},{"id":"3165e9e1","elType":"widget","settings":{"editor":"<p>Seja bem-vindo ao curso de Artigos Perigosos!<\\/p><p>\\u00c9 um prazer t\\u00ea-lo conosco nessa importante jornada de aprendizado. Ao longo deste curso, voc\\u00ea ter\\u00e1 acesso a conte\\u00fados essenciais sobre o manuseio, transporte e armazenamento de materiais perigosos, sempre em conformidade com as normas nacionais e internacionais.<\\/p><p>Nosso curso ser\\u00e1 realizado atrav\\u00e9s da plataforma Google Meet, proporcionando uma experi\\u00eancia de aprendizado interativa e flex\\u00edvel. Seguimos rigorosamente as determina\\u00e7\\u00f5es previstas na IS n.\\u00ba 175-002J (ANAC) e no \\"DANGEROUS GOODS TRAINING GUIDANCE, EDITION 1\\" (IATA), garantindo que voc\\u00ea tenha acesso ao conte\\u00fado mais atualizado e relevante.<\\/p><p>Curso ministrado na modalidade n\\u00e3o presencial s\\u00edncrono (online).<\\/p><p>O curso ser\\u00e1 ministrado por Cicero Melo, instrutor de Artigos Perigosos e piloto com 30 anos de experi\\u00eancia. Cicero \\u00e9 homologado pela ANAC e pela IATA desde 2008, trazendo um vasto conhecimento pr\\u00e1tico e te\\u00f3rico para enriquecer sua aprendizagem.<\\/p><p>Estamos \\u00e0 disposi\\u00e7\\u00e3o para qualquer d\\u00favida ou esclarecimento. Aproveite ao m\\u00e1ximo essa experi\\u00eancia e desejamos a voc\\u00ea um excelente aprendizado!<\\/p><p><strong>\\u00a0<\\/strong><\\/p><p><strong>Orienta\\u00e7\\u00f5es para o Curso online ao vivo:<\\/strong><\\/p><p>1) O participante precisa de internet de qualidade;<\\/p><p>2) Computador ou notebook, com webcam, microfone e caixa de som ou fone de ouvido;<\\/p><p>3) As aulas s\\u00e3o auditadas, portanto, o aluno deve assistir no m\\u00ednimo 80% do curso, para ser liberado o link da lista de presen\\u00e7a e avalia\\u00e7\\u00e3o.<\\/p><p>4) O uso de caderno, caneta ou l\\u00e1pis para anota\\u00e7\\u00f5es \\u00e9 opcional.<\\/p><p><strong>5) Se poss\\u00edvel, imprimir o caderno de exerc\\u00edcios, dispon\\u00edvel no material de apoio;<\\/strong><\\/p><p>6) O acesso ao Manual DGR ser\\u00e1 disponibilizado no 1\\u00ba dia de treinamento, at\\u00e9 o fim do curso.<\\/p>","column_gap":{"unit":"px","size":0,"sizes":[]},"jedv_conditions":[{"_id":"bc1f5a7"}],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"text-editor"},{"id":"231090c0","elType":"widget","settings":{"lisitng_id":"2800","columns":"1","posts_num":1,"not_found_message":"No data was found","posts_query":[],"terms_meta_query":[],"users_meta_query":[],"jedv_conditions":[{"_id":"00086e2"}],"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"jet-listing-grid"},{"id":"672fd545","elType":"widget","settings":{"lisitng_id":"2775","columns":"1","posts_num":1,"not_found_message":"No data was found","posts_query":[],"terms_meta_query":[],"users_meta_query":[],"jedv_conditions":[{"_id":"00086e2"}],"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_flex_align_self":"flex-start","_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"jet-listing-grid"}],"isInner":false}]'),
(160, 41, '_elementor_edit_mode', 'builder'),
(161, 41, '_elementor_template_type', 'section'),
(162, 41, '_elementor_version', '3.31.3'),
(163, 41, '_elementor_pro_version', '3.31.2'),
(164, 41, '_elementor_data', '[{"id":"6dcdf199","elType":"container","settings":{"jedv_conditions":[{"_id":"e16db6f"}],"flex_direction":"column","flex_justify_content":"center","flex_align_items":"flex-start","jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"1117f0fb","elType":"widget","settings":{"title":" \\u00e1rea do aluno","title_color":"#6EC1E4","typography_typography":"custom","typography_font_size":{"unit":"rem","size":1.6,"sizes":[]},"typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"typography_font_weight":"600","jedv_conditions":[{"_id":"fc523aa","jedv_condition":"user-role","jedv_user_role":["aluno_cicero","aluno_alusio"]}],"__dynamic__":{"title_color":"[elementor-tag id=\\"f7b135c\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"typography_text_transform":"uppercase","jedv_enabled":"yes","_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"heading"},{"id":"c0fabb0","elType":"widget","settings":{"title":" \\u00e1rea do professor","title_color":"#6EC1E4","typography_typography":"custom","typography_font_size":{"unit":"rem","size":1.6,"sizes":[]},"typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"typography_font_weight":"600","jedv_conditions":[{"_id":"fc523aa","jedv_condition":"user-role","jedv_user_role":["professor_cicero","professor_aluiso"]}],"__dynamic__":{"title_color":"[elementor-tag id=\\"f7b135c\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"typography_text_transform":"uppercase","jedv_enabled":"yes","_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"heading"},{"id":"79de160a","elType":"container","settings":{"content_width":"full","flex_direction":"row","flex_justify_content":"flex-start","flex_align_items":"center","margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"_id":"9b0f5e0"}],"jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"ac76684","elType":"container","settings":{"content_width":"full","width":{"unit":"%","size":30,"sizes":[]},"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"_id":"3f5e013"}],"jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"54a67ba2","elType":"widget","settings":{"lisitng_id":"851","columns":"1","posts_num":1,"not_found_message":"Selecione um paciente","custom_query_id":"11","posts_query":[],"terms_meta_query":[],"users_meta_query":[],"jedv_conditions":[{"_id":"4dbce2d"}],"horizontal_gap":{"unit":"px","size":0,"sizes":[]},"vertical_gap":{"unit":"px","size":0,"sizes":[]},"horizontal_gap_mobile":{"unit":"px","size":0,"sizes":[]},"vertical_gap_mobile":{"unit":"px","size":0,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"content_width":"full","__dynamic__":{"users_include":"[elementor-tag id=\\"5414e51\\" name=\\"jet-user-custom-field\\" settings=\\"%7B%22user_field%22%3A%22ID%22%7D\\"]"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"jet-listing-grid"}],"isInner":true}],"isInner":true}],"isInner":true},{"id":"6a5dcaf7","elType":"container","settings":{"jet_parallax_layout_list":[],"jedv_conditions":[{"_id":"a36f34a"}],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"537d9eb0","elType":"container","settings":{"jedv_conditions":[{"_id":"e16db6f"}],"jet_parallax_layout_list":[],"content_width":"full","flex_direction":"row","flex_justify_content":"center","background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"7f095a73","elType":"widget","settings":{"text":"Instru\\u00e7\\u00f5es","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"64c608f1","elType":"widget","settings":{"text":"DGR","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"7d4cd949","elType":"widget","settings":{"text":"Material de apoio","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"35ca89fc","elType":"widget","settings":{"text":"Avalia\\u00e7\\u00e3o nivel","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"50cba595","elType":"widget","settings":{"text":"Confirmar presen\\u00e7a","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"55a26cfd","elType":"widget","settings":{"text":"Exames","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"}],"isInner":true},{"id":"3165e9e1","elType":"widget","settings":{"editor":"<p>Seja bem-vindo ao curso de Artigos Perigosos!<\\/p><p>\\u00c9 um prazer t\\u00ea-lo conosco nessa importante jornada de aprendizado. Ao longo deste curso, voc\\u00ea ter\\u00e1 acesso a conte\\u00fados essenciais sobre o manuseio, transporte e armazenamento de materiais perigosos, sempre em conformidade com as normas nacionais e internacionais.<\\/p><p>Nosso curso ser\\u00e1 realizado atrav\\u00e9s da plataforma Google Meet, proporcionando uma experi\\u00eancia de aprendizado interativa e flex\\u00edvel. Seguimos rigorosamente as determina\\u00e7\\u00f5es previstas na IS n.\\u00ba 175-002J (ANAC) e no \\"DANGEROUS GOODS TRAINING GUIDANCE, EDITION 1\\" (IATA), garantindo que voc\\u00ea tenha acesso ao conte\\u00fado mais atualizado e relevante.<\\/p><p>Curso ministrado na modalidade n\\u00e3o presencial s\\u00edncrono (online).<\\/p><p>O curso ser\\u00e1 ministrado por Cicero Melo, instrutor de Artigos Perigosos e piloto com 30 anos de experi\\u00eancia. Cicero \\u00e9 homologado pela ANAC e pela IATA desde 2008, trazendo um vasto conhecimento pr\\u00e1tico e te\\u00f3rico para enriquecer sua aprendizagem.<\\/p><p>Estamos \\u00e0 disposi\\u00e7\\u00e3o para qualquer d\\u00favida ou esclarecimento. Aproveite ao m\\u00e1ximo essa experi\\u00eancia e desejamos a voc\\u00ea um excelente aprendizado!<\\/p><p><strong>\\u00a0<\\/strong><\\/p><p><strong>Orienta\\u00e7\\u00f5es para o Curso online ao vivo:<\\/strong><\\/p><p>1) O participante precisa de internet de qualidade;<\\/p><p>2) Computador ou notebook, com webcam, microfone e caixa de som ou fone de ouvido;<\\/p><p>3) As aulas s\\u00e3o auditadas, portanto, o aluno deve assistir no m\\u00ednimo 80% do curso, para ser liberado o link da lista de presen\\u00e7a e avalia\\u00e7\\u00e3o.<\\/p><p>4) O uso de caderno, caneta ou l\\u00e1pis para anota\\u00e7\\u00f5es \\u00e9 opcional.<\\/p><p><strong>5) Se poss\\u00edvel, imprimir o caderno de exerc\\u00edcios, dispon\\u00edvel no material de apoio;<\\/strong><\\/p><p>6) O acesso ao Manual DGR ser\\u00e1 disponibilizado no 1\\u00ba dia de treinamento, at\\u00e9 o fim do curso.<\\/p>","column_gap":{"unit":"px","size":0,"sizes":[]},"jedv_conditions":[{"_id":"bc1f5a7"}],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"text-editor"},{"id":"231090c0","elType":"widget","settings":{"lisitng_id":"2800","columns":"1","posts_num":1,"not_found_message":"No data was found","posts_query":[],"terms_meta_query":[],"users_meta_query":[],"jedv_conditions":[{"_id":"00086e2"}],"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"jet-listing-grid"},{"id":"672fd545","elType":"widget","settings":{"lisitng_id":"2775","columns":"1","posts_num":1,"not_found_message":"No data was found","posts_query":[],"terms_meta_query":[],"users_meta_query":[],"jedv_conditions":[{"_id":"00086e2"}],"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_flex_align_self":"flex-start","_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"jet-listing-grid"}],"isInner":false}]');
INSERT INTO `wpmr_postmeta` VALUES
(166, 42, '_elementor_edit_mode', 'builder'),
(167, 42, '_elementor_template_type', 'section'),
(168, 42, '_elementor_version', '3.31.3'),
(169, 42, '_elementor_pro_version', '3.31.2'),
(170, 42, '_elementor_data', '[{"id":"63c568dd","elType":"container","settings":{"jet_parallax_layout_list":[],"jedv_conditions":[{"_id":"1c9769c"}],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"23b76cb2","elType":"container","settings":{"jedv_conditions":[{"_id":"e16db6f"}],"flex_direction":"column","flex_justify_content":"center","flex_align_items":"flex-start","jet_parallax_layout_list":[],"content_width":"full","background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"45da884c","elType":"widget","settings":{"title":" \\u00e1rea do aluno","title_color":"#6EC1E4","typography_typography":"custom","typography_font_size":{"unit":"rem","size":1.6,"sizes":[]},"typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"typography_font_weight":"600","jedv_conditions":[{"_id":"fc523aa","jedv_condition":"user-role","jedv_user_role":["aluno_cicero","aluno_alusio"]}],"__dynamic__":{"title_color":"[elementor-tag id=\\"f7b135c\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"typography_text_transform":"uppercase","jedv_enabled":"yes","_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"heading"},{"id":"75f8878a","elType":"widget","settings":{"title":" \\u00e1rea do professor","title_color":"#6EC1E4","typography_typography":"custom","typography_font_size":{"unit":"rem","size":1.6,"sizes":[]},"typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"typography_font_weight":"600","jedv_conditions":[{"_id":"fc523aa","jedv_condition":"user-role","jedv_user_role":["professor_cicero","professor_aluiso"]}],"__dynamic__":{"title_color":"[elementor-tag id=\\"f7b135c\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"typography_text_transform":"uppercase","jedv_enabled":"yes","_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"heading"},{"id":"3cb4e308","elType":"container","settings":{"content_width":"full","flex_direction":"row","flex_justify_content":"flex-start","flex_align_items":"center","margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"_id":"9b0f5e0"}],"jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"48217530","elType":"container","settings":{"content_width":"full","width":{"unit":"%","size":30,"sizes":[]},"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"_id":"3f5e013"}],"jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"3e44c21c","elType":"widget","settings":{"lisitng_id":"851","columns":"1","posts_num":1,"not_found_message":"Selecione um paciente","custom_query_id":"11","posts_query":[],"terms_meta_query":[],"users_meta_query":[],"jedv_conditions":[{"_id":"4dbce2d"}],"horizontal_gap":{"unit":"px","size":0,"sizes":[]},"vertical_gap":{"unit":"px","size":0,"sizes":[]},"horizontal_gap_mobile":{"unit":"px","size":0,"sizes":[]},"vertical_gap_mobile":{"unit":"px","size":0,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"content_width":"full","__dynamic__":{"users_include":"[elementor-tag id=\\"5414e51\\" name=\\"jet-user-custom-field\\" settings=\\"%7B%22user_field%22%3A%22ID%22%7D\\"]"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"jet-listing-grid"}],"isInner":true}],"isInner":true}],"isInner":true},{"id":"29e48efa","elType":"container","settings":{"jedv_conditions":[{"_id":"e16db6f"}],"jet_parallax_layout_list":[],"content_width":"full","flex_direction":"row","flex_justify_content":"center","background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"11d28c47","elType":"widget","settings":{"text":"Instru\\u00e7\\u00f5es","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"55ca25c0","elType":"widget","settings":{"text":"DGR","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"2d4f6dce","elType":"widget","settings":{"text":"Material de apoio","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"4ff64519","elType":"widget","settings":{"text":"Avalia\\u00e7\\u00e3o nivel","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"5cfa2f13","elType":"widget","settings":{"text":"Confirmar presen\\u00e7a","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"b4b58fa","elType":"widget","settings":{"text":"Exames","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"}],"isInner":true}],"isInner":false},{"id":"68f8912e","elType":"container","settings":{"flex_align_items":"center","jet_parallax_layout_list":[],"jedv_conditions":[{"_id":"d63b235"}],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"1f1fcabb","elType":"widget","settings":{"editor":"<p>Prezado(a) aluno(a),<\\/p><p>Informamos que o acesso ao <strong>Manual DGR<\\/strong> ser\\u00e1 disponibilizado no <strong>e-mail cadastrado<\\/strong>. Verifique sua caixa de entrada para garantir o recebimento do login e senha.<\\/p><p>Abaixo, segue o link de acesso ao manual:<\\/p>","jedv_conditions":[{"_id":"e1552b2"}],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"text-editor"},{"id":"79b8ba29","elType":"widget","settings":{"lisitng_id":"2910","columns":"1","not_found_message":"No data was found","posts_query":[],"terms_meta_query":[],"users_meta_query":[],"jedv_conditions":[{"_id":"26f4c7d"}],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"jet-listing-grid"},{"id":"655b27ef","elType":"widget","settings":{"editor":"<p>Caso n\\u00e3o receba o e-mail ou tenha qualquer d\\u00favida, por favor, entre em contato conosco. Aproveite o conte\\u00fado e bom aprendizado!<\\/p>","jedv_conditions":[{"_id":"e1552b2"}],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"16b4133","elType":"container","settings":{"jet_parallax_layout_list":[],"jedv_conditions":[{"_id":"3d374b5"}],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[],"isInner":false}]'),
(171, 43, '_elementor_edit_mode', 'builder'),
(172, 43, '_elementor_template_type', 'section'),
(173, 43, '_elementor_version', '3.31.3'),
(174, 43, '_elementor_pro_version', '3.31.2'),
(175, 43, '_elementor_data', '[{"id":"63c568dd","elType":"container","settings":{"jet_parallax_layout_list":[],"jedv_conditions":[{"_id":"1c9769c"}],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"23b76cb2","elType":"container","settings":{"jedv_conditions":[{"_id":"e16db6f"}],"flex_direction":"column","flex_justify_content":"center","flex_align_items":"flex-start","jet_parallax_layout_list":[],"content_width":"full","background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"45da884c","elType":"widget","settings":{"title":" \\u00e1rea do aluno","title_color":"#6EC1E4","typography_typography":"custom","typography_font_size":{"unit":"rem","size":1.6,"sizes":[]},"typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"typography_font_weight":"600","jedv_conditions":[{"_id":"fc523aa","jedv_condition":"user-role","jedv_user_role":["aluno_cicero","aluno_alusio"]}],"__dynamic__":{"title_color":"[elementor-tag id=\\"f7b135c\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"typography_text_transform":"uppercase","jedv_enabled":"yes","_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"heading"},{"id":"75f8878a","elType":"widget","settings":{"title":" \\u00e1rea do professor","title_color":"#6EC1E4","typography_typography":"custom","typography_font_size":{"unit":"rem","size":1.6,"sizes":[]},"typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"typography_font_weight":"600","jedv_conditions":[{"_id":"fc523aa","jedv_condition":"user-role","jedv_user_role":["professor_cicero","professor_aluiso"]}],"__dynamic__":{"title_color":"[elementor-tag id=\\"f7b135c\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"typography_text_transform":"uppercase","jedv_enabled":"yes","_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"heading"},{"id":"3cb4e308","elType":"container","settings":{"content_width":"full","flex_direction":"row","flex_justify_content":"flex-start","flex_align_items":"center","margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"_id":"9b0f5e0"}],"jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"48217530","elType":"container","settings":{"content_width":"full","width":{"unit":"%","size":30,"sizes":[]},"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"_id":"3f5e013"}],"jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"3e44c21c","elType":"widget","settings":{"lisitng_id":"851","columns":"1","posts_num":1,"not_found_message":"Selecione um paciente","custom_query_id":"11","posts_query":[],"terms_meta_query":[],"users_meta_query":[],"jedv_conditions":[{"_id":"4dbce2d"}],"horizontal_gap":{"unit":"px","size":0,"sizes":[]},"vertical_gap":{"unit":"px","size":0,"sizes":[]},"horizontal_gap_mobile":{"unit":"px","size":0,"sizes":[]},"vertical_gap_mobile":{"unit":"px","size":0,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"content_width":"full","__dynamic__":{"users_include":"[elementor-tag id=\\"5414e51\\" name=\\"jet-user-custom-field\\" settings=\\"%7B%22user_field%22%3A%22ID%22%7D\\"]"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"jet-listing-grid"}],"isInner":true}],"isInner":true}],"isInner":true},{"id":"29e48efa","elType":"container","settings":{"jedv_conditions":[{"_id":"e16db6f"}],"jet_parallax_layout_list":[],"content_width":"full","flex_direction":"row","flex_justify_content":"center","background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"11d28c47","elType":"widget","settings":{"text":"Instru\\u00e7\\u00f5es","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"55ca25c0","elType":"widget","settings":{"text":"DGR","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"2d4f6dce","elType":"widget","settings":{"text":"Material de apoio","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"4ff64519","elType":"widget","settings":{"text":"Avalia\\u00e7\\u00e3o nivel","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"5cfa2f13","elType":"widget","settings":{"text":"Confirmar presen\\u00e7a","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"b4b58fa","elType":"widget","settings":{"text":"Exames","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"}],"isInner":true}],"isInner":false},{"id":"68f8912e","elType":"container","settings":{"flex_align_items":"center","jet_parallax_layout_list":[],"jedv_conditions":[{"_id":"d63b235"}],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"1f1fcabb","elType":"widget","settings":{"editor":"<p>Prezado(a) aluno(a),<\\/p><p>Informamos que o acesso ao <strong>Manual DGR<\\/strong> ser\\u00e1 disponibilizado no <strong>e-mail cadastrado<\\/strong>. Verifique sua caixa de entrada para garantir o recebimento do login e senha.<\\/p><p>Abaixo, segue o link de acesso ao manual:<\\/p>","jedv_conditions":[{"_id":"e1552b2"}],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"text-editor"},{"id":"79b8ba29","elType":"widget","settings":{"lisitng_id":"2910","columns":"1","not_found_message":"No data was found","posts_query":[],"terms_meta_query":[],"users_meta_query":[],"jedv_conditions":[{"_id":"26f4c7d"}],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"jet-listing-grid"},{"id":"655b27ef","elType":"widget","settings":{"editor":"<p>Caso n\\u00e3o receba o e-mail ou tenha qualquer d\\u00favida, por favor, entre em contato conosco. Aproveite o conte\\u00fado e bom aprendizado!<\\/p>","jedv_conditions":[{"_id":"e1552b2"}],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"16b4133","elType":"container","settings":{"jet_parallax_layout_list":[],"jedv_conditions":[{"_id":"3d374b5"}],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[],"isInner":false}]'),
(177, 44, '_elementor_edit_mode', 'builder'),
(178, 44, '_elementor_template_type', 'section'),
(179, 44, '_elementor_version', '3.31.3'),
(180, 44, '_elementor_pro_version', '3.31.2'),
(181, 44, '_elementor_data', '[{"id":"234750a9","elType":"container","settings":{"jet_parallax_layout_list":[],"jedv_conditions":[{"_id":"65d545a"}],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"1c7278e6","elType":"container","settings":{"jedv_conditions":[{"_id":"e16db6f"}],"flex_direction":"column","flex_justify_content":"center","flex_align_items":"flex-start","jet_parallax_layout_list":[],"content_width":"full","background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"5ff32696","elType":"widget","settings":{"title":" \\u00e1rea do aluno","title_color":"#6EC1E4","typography_typography":"custom","typography_font_size":{"unit":"rem","size":1.6,"sizes":[]},"typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"typography_font_weight":"600","jedv_conditions":[{"_id":"fc523aa","jedv_condition":"user-role","jedv_user_role":["aluno_cicero","aluno_alusio"]}],"__dynamic__":{"title_color":"[elementor-tag id=\\"f7b135c\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"typography_text_transform":"uppercase","jedv_enabled":"yes","_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"heading"},{"id":"6a0d8ac3","elType":"widget","settings":{"title":" \\u00e1rea do professor","title_color":"#6EC1E4","typography_typography":"custom","typography_font_size":{"unit":"rem","size":1.6,"sizes":[]},"typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"typography_font_weight":"600","jedv_conditions":[{"_id":"fc523aa","jedv_condition":"user-role","jedv_user_role":["professor_cicero","professor_aluiso"]}],"__dynamic__":{"title_color":"[elementor-tag id=\\"f7b135c\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"typography_text_transform":"uppercase","jedv_enabled":"yes","_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"heading"},{"id":"23c47948","elType":"container","settings":{"content_width":"full","flex_direction":"row","flex_justify_content":"flex-start","flex_align_items":"center","margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"_id":"9b0f5e0"}],"jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"3019c77a","elType":"container","settings":{"content_width":"full","width":{"unit":"%","size":30,"sizes":[]},"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"_id":"3f5e013"}],"jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"185f8852","elType":"widget","settings":{"lisitng_id":"851","columns":"1","posts_num":1,"not_found_message":"Selecione um paciente","custom_query_id":"11","posts_query":[],"terms_meta_query":[],"users_meta_query":[],"jedv_conditions":[{"_id":"4dbce2d"}],"horizontal_gap":{"unit":"px","size":0,"sizes":[]},"vertical_gap":{"unit":"px","size":0,"sizes":[]},"horizontal_gap_mobile":{"unit":"px","size":0,"sizes":[]},"vertical_gap_mobile":{"unit":"px","size":0,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"content_width":"full","__dynamic__":{"users_include":"[elementor-tag id=\\"5414e51\\" name=\\"jet-user-custom-field\\" settings=\\"%7B%22user_field%22%3A%22ID%22%7D\\"]"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"jet-listing-grid"}],"isInner":true}],"isInner":true}],"isInner":true},{"id":"131d8ccb","elType":"container","settings":{"jedv_conditions":[{"_id":"e16db6f"}],"jet_parallax_layout_list":[],"content_width":"full","flex_direction":"row","flex_justify_content":"center","background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"668b33f7","elType":"widget","settings":{"text":"Instru\\u00e7\\u00f5es","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"69b1b791","elType":"widget","settings":{"text":"DGR","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"2f7029cb","elType":"widget","settings":{"text":"Material de apoio","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"44305942","elType":"widget","settings":{"text":"Avalia\\u00e7\\u00e3o nivel","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"4de8614b","elType":"widget","settings":{"text":"Confirmar presen\\u00e7a","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"395af987","elType":"widget","settings":{"text":"Exames","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"}],"isInner":true},{"id":"bfebf99","elType":"widget","settings":{"editor":"<p>O instrutor ser\\u00e1 respons\\u00e1vel pela libera\\u00e7\\u00e3o do material do curso ao longo das aulas.<\\/p><p>O conte\\u00fado ser\\u00e1 disponibilizado gradualmente, de acordo com o andamento do programa, garantindo que os alunos tenham acesso aos recursos necess\\u00e1rios no momento mais apropriado para o desenvolvimento\\u00a0do\\u00a0aprendizado.<\\/p>","jedv_conditions":[{"_id":"faf7512"}],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"text-editor"},{"id":"4ee6e55e","elType":"widget","settings":{"lisitng_id":"2523","columns":"1","not_found_message":"N\\u00e3o liberado","posts_query":[],"terms_meta_query":[],"users_meta_query":[],"jedv_conditions":[{"_id":"cfda1e4"}],"jet_family_widget_is_order_orientaion":"","_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"jet-listing-grid"},{"id":"587d456c","elType":"widget","settings":{"shortcode":"[sgc_materiais_curso]","jedv_conditions":[{"_id":"aa52c3f"}],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"shortcode"}],"isInner":false}]');
INSERT INTO `wpmr_postmeta` VALUES
(182, 45, '_elementor_edit_mode', 'builder'),
(183, 45, '_elementor_template_type', 'section'),
(184, 45, '_elementor_version', '3.31.3'),
(185, 45, '_elementor_pro_version', '3.31.2'),
(186, 45, '_elementor_data', '[{"id":"234750a9","elType":"container","settings":{"jet_parallax_layout_list":[],"jedv_conditions":[{"_id":"65d545a"}],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"1c7278e6","elType":"container","settings":{"jedv_conditions":[{"_id":"e16db6f"}],"flex_direction":"column","flex_justify_content":"center","flex_align_items":"flex-start","jet_parallax_layout_list":[],"content_width":"full","background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"5ff32696","elType":"widget","settings":{"title":" \\u00e1rea do aluno","title_color":"#6EC1E4","typography_typography":"custom","typography_font_size":{"unit":"rem","size":1.6,"sizes":[]},"typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"typography_font_weight":"600","jedv_conditions":[{"_id":"fc523aa","jedv_condition":"user-role","jedv_user_role":["aluno_cicero","aluno_alusio"]}],"__dynamic__":{"title_color":"[elementor-tag id=\\"f7b135c\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"typography_text_transform":"uppercase","jedv_enabled":"yes","_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"heading"},{"id":"6a0d8ac3","elType":"widget","settings":{"title":" \\u00e1rea do professor","title_color":"#6EC1E4","typography_typography":"custom","typography_font_size":{"unit":"rem","size":1.6,"sizes":[]},"typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"typography_font_weight":"600","jedv_conditions":[{"_id":"fc523aa","jedv_condition":"user-role","jedv_user_role":["professor_cicero","professor_aluiso"]}],"__dynamic__":{"title_color":"[elementor-tag id=\\"f7b135c\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"typography_text_transform":"uppercase","jedv_enabled":"yes","_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"heading"},{"id":"23c47948","elType":"container","settings":{"content_width":"full","flex_direction":"row","flex_justify_content":"flex-start","flex_align_items":"center","margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"_id":"9b0f5e0"}],"jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"3019c77a","elType":"container","settings":{"content_width":"full","width":{"unit":"%","size":30,"sizes":[]},"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"_id":"3f5e013"}],"jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"185f8852","elType":"widget","settings":{"lisitng_id":"851","columns":"1","posts_num":1,"not_found_message":"Selecione um paciente","custom_query_id":"11","posts_query":[],"terms_meta_query":[],"users_meta_query":[],"jedv_conditions":[{"_id":"4dbce2d"}],"horizontal_gap":{"unit":"px","size":0,"sizes":[]},"vertical_gap":{"unit":"px","size":0,"sizes":[]},"horizontal_gap_mobile":{"unit":"px","size":0,"sizes":[]},"vertical_gap_mobile":{"unit":"px","size":0,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"content_width":"full","__dynamic__":{"users_include":"[elementor-tag id=\\"5414e51\\" name=\\"jet-user-custom-field\\" settings=\\"%7B%22user_field%22%3A%22ID%22%7D\\"]"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"jet-listing-grid"}],"isInner":true}],"isInner":true}],"isInner":true},{"id":"131d8ccb","elType":"container","settings":{"jedv_conditions":[{"_id":"e16db6f"}],"jet_parallax_layout_list":[],"content_width":"full","flex_direction":"row","flex_justify_content":"center","background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"668b33f7","elType":"widget","settings":{"text":"Instru\\u00e7\\u00f5es","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"69b1b791","elType":"widget","settings":{"text":"DGR","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"2f7029cb","elType":"widget","settings":{"text":"Material de apoio","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"44305942","elType":"widget","settings":{"text":"Avalia\\u00e7\\u00e3o nivel","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"4de8614b","elType":"widget","settings":{"text":"Confirmar presen\\u00e7a","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"395af987","elType":"widget","settings":{"text":"Exames","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"}],"isInner":true},{"id":"bfebf99","elType":"widget","settings":{"editor":"<p>O instrutor ser\\u00e1 respons\\u00e1vel pela libera\\u00e7\\u00e3o do material do curso ao longo das aulas.<\\/p><p>O conte\\u00fado ser\\u00e1 disponibilizado gradualmente, de acordo com o andamento do programa, garantindo que os alunos tenham acesso aos recursos necess\\u00e1rios no momento mais apropriado para o desenvolvimento\\u00a0do\\u00a0aprendizado.<\\/p>","jedv_conditions":[{"_id":"faf7512"}],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"text-editor"},{"id":"4ee6e55e","elType":"widget","settings":{"lisitng_id":"2523","columns":"1","not_found_message":"N\\u00e3o liberado","posts_query":[],"terms_meta_query":[],"users_meta_query":[],"jedv_conditions":[{"_id":"cfda1e4"}],"jet_family_widget_is_order_orientaion":"","_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"jet-listing-grid"},{"id":"587d456c","elType":"widget","settings":{"shortcode":"[sgc_materiais_curso]","jedv_conditions":[{"_id":"aa52c3f"}],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"shortcode"}],"isInner":false}]'),
(188, 46, '_elementor_edit_mode', 'builder'),
(189, 46, '_elementor_template_type', 'section'),
(190, 46, '_elementor_version', '3.31.3'),
(191, 46, '_elementor_pro_version', '3.31.2'),
(192, 46, '_elementor_data', '[{"id":"4157980c","elType":"container","settings":{"flex_direction":"column","flex_gap":{"unit":"px","size":0,"column":"0","row":"0","isLinked":true},"jet_parallax_layout_list":[],"jedv_conditions":[{"_id":"04c04a2"}],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"57814829","elType":"container","settings":{"jedv_conditions":[{"_id":"e16db6f"}],"flex_direction":"column","flex_justify_content":"center","flex_align_items":"flex-start","jet_parallax_layout_list":[],"content_width":"full","background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"3f34c451","elType":"widget","settings":{"title":" \\u00e1rea do aluno","title_color":"#6EC1E4","typography_typography":"custom","typography_font_size":{"unit":"rem","size":1.6,"sizes":[]},"typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"typography_font_weight":"600","jedv_conditions":[{"_id":"fc523aa","jedv_condition":"user-role","jedv_user_role":["aluno_cicero","aluno_alusio"]}],"__dynamic__":{"title_color":"[elementor-tag id=\\"f7b135c\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"typography_text_transform":"uppercase","jedv_enabled":"yes","_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"heading"},{"id":"24af8264","elType":"widget","settings":{"title":" \\u00e1rea do professor","title_color":"#6EC1E4","typography_typography":"custom","typography_font_size":{"unit":"rem","size":1.6,"sizes":[]},"typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"typography_font_weight":"600","jedv_conditions":[{"_id":"fc523aa","jedv_condition":"user-role","jedv_user_role":["professor_cicero","professor_aluiso"]}],"__dynamic__":{"title_color":"[elementor-tag id=\\"f7b135c\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"typography_text_transform":"uppercase","jedv_enabled":"yes","_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"heading"},{"id":"701de406","elType":"container","settings":{"content_width":"full","flex_direction":"row","flex_justify_content":"flex-start","flex_align_items":"center","margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"_id":"9b0f5e0"}],"jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"66ac39f4","elType":"container","settings":{"content_width":"full","width":{"unit":"%","size":30,"sizes":[]},"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"_id":"3f5e013"}],"jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"582a062a","elType":"widget","settings":{"lisitng_id":"851","columns":"1","posts_num":1,"not_found_message":"Selecione um paciente","custom_query_id":"11","posts_query":[],"terms_meta_query":[],"users_meta_query":[],"jedv_conditions":[{"_id":"4dbce2d"}],"horizontal_gap":{"unit":"px","size":0,"sizes":[]},"vertical_gap":{"unit":"px","size":0,"sizes":[]},"horizontal_gap_mobile":{"unit":"px","size":0,"sizes":[]},"vertical_gap_mobile":{"unit":"px","size":0,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"content_width":"full","__dynamic__":{"users_include":"[elementor-tag id=\\"5414e51\\" name=\\"jet-user-custom-field\\" settings=\\"%7B%22user_field%22%3A%22ID%22%7D\\"]"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"jet-listing-grid"}],"isInner":true}],"isInner":true}],"isInner":true},{"id":"14535413","elType":"container","settings":{"jedv_conditions":[{"_id":"e16db6f"}],"jet_parallax_layout_list":[],"content_width":"full","flex_direction":"row","flex_justify_content":"center","background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"53ea7638","elType":"widget","settings":{"text":"Instru\\u00e7\\u00f5es","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"4708ccd","elType":"widget","settings":{"text":"DGR","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"3aaee2b","elType":"widget","settings":{"text":"Material de apoio","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"6f2de33a","elType":"widget","settings":{"text":"Avalia\\u00e7\\u00e3o nivel","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"49015131","elType":"widget","settings":{"text":"Confirmar presen\\u00e7a","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"22e264c9","elType":"widget","settings":{"text":"Exames","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"}],"isInner":true},{"id":"4a77e7da","elType":"container","settings":{"content_width":"full","jet_parallax_layout_list":[],"jedv_conditions":[{"_id":"d5d2fa6","jedv_condition":"query-has-items","jedv_field":"confirmado_presenca1","jedv_value":"1","__dynamic__":[]}],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"6626d53d","elType":"widget","settings":{"title":"Confirma\\u00e7\\u00e3o de presen\\u00e7a","align":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_weight":"600","typography_text_transform":"uppercase","jedv_conditions":[{"_id":"2573eae"}],"__globals__":{"title_color":"globals\\/colors?id=secondary"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"heading"},{"id":"54f11422","elType":"widget","settings":{"editor":"<p>Prezado(a) aluno(a),<\\/p><p>Lembramos que \\u00e9 <strong>OBRIGAT\\u00d3RIO O PREENCHIMENTO CORRETO DOS DADOS SOLICITADOS NA LISTAGEM DE PRESEN\\u00c7A<\\/strong>, pois \\u00e9 por meio dessa informa\\u00e7\\u00e3o que solicitamos a emiss\\u00e3o do seu <strong>certificado<\\/strong> de conclus\\u00e3o do curso.<\\/p><p>Portanto, verifique atentamente seus dados antes de finalizar o preenchimento para garantir que o processo de emiss\\u00e3o do certificado seja realizado sem contratempos.<\\/p><p>Agradecemos a sua colabora\\u00e7\\u00e3o e desejamos um \\u00f3timo aprendizado!<\\/p>","jedv_conditions":[{"_id":"114b498"}],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"text-editor"},{"id":"63165d6","elType":"widget","settings":{"lisitng_id":"2560","columns":"1","posts_num":1,"not_found_message":"No data was found","posts_query":[],"terms_meta_query":[],"users_meta_query":[],"jedv_conditions":[{"_id":"8bfa824"}],"__dynamic__":{"users_include":"[elementor-tag id=\\"697cd22\\" name=\\"jet-user-custom-field\\" settings=\\"%7B%22user_field%22%3A%22ID%22%7D\\"]"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"jet-listing-grid"},{"id":"61a4fcc0","elType":"container","settings":{"content_width":"full","width":{"unit":"%","size":98.929},"flex_direction":"row","jet_parallax_layout_list":[],"jedv_conditions":[{"_id":"a324780"}],"_element_width":"initial","flex_justify_content":"center","padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_flex_align_self":"center","background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"746a2127","elType":"widget","settings":{"lisitng_id":"2775","columns":"1","posts_num":1,"not_found_message":"No data was found","posts_query":[],"terms_meta_query":[],"users_meta_query":[],"jedv_conditions":[{"_id":"00086e2"}],"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_flex_align_self":"center","_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"jet-listing-grid"}],"isInner":true}],"isInner":true}],"isInner":false},{"id":"30f61b7","elType":"container","settings":{"flex_direction":"column","jet_parallax_layout_list":[],"jedv_enabled":"yes","jedv_conditions":[{"jedv_condition":"switcher-disabled","_id":"7266c80","jedv_field":"chamada"}],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"56062143","elType":"container","settings":{"flex_direction":"column","content_width":"full","width":{"unit":"%","size":100},"jet_parallax_layout_list":[],"jedv_conditions":[{"_id":"c4a35c2"}],"flex_align_items":"center","_flex_size":"none","_element_width":"initial","jedv_enabled":"yes","background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"68381e27","elType":"widget","settings":{"shortcode":"[sgc_form_confirmacao_presenca]","jedv_conditions":[{"_id":"24dfb8c"}],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"shortcode"}],"isInner":true}],"isInner":false}]'),
(193, 47, '_elementor_edit_mode', 'builder'),
(194, 47, '_elementor_template_type', 'section'),
(195, 47, '_elementor_version', '3.31.3'),
(196, 47, '_elementor_pro_version', '3.31.2'),
(197, 47, '_elementor_data', '[{"id":"4157980c","elType":"container","settings":{"flex_direction":"column","flex_gap":{"unit":"px","size":0,"column":"0","row":"0","isLinked":true},"jet_parallax_layout_list":[],"jedv_conditions":[{"_id":"04c04a2"}],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"57814829","elType":"container","settings":{"jedv_conditions":[{"_id":"e16db6f"}],"flex_direction":"column","flex_justify_content":"center","flex_align_items":"flex-start","jet_parallax_layout_list":[],"content_width":"full","background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"3f34c451","elType":"widget","settings":{"title":" \\u00e1rea do aluno","title_color":"#6EC1E4","typography_typography":"custom","typography_font_size":{"unit":"rem","size":1.6,"sizes":[]},"typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"typography_font_weight":"600","jedv_conditions":[{"_id":"fc523aa","jedv_condition":"user-role","jedv_user_role":["aluno_cicero","aluno_alusio"]}],"__dynamic__":{"title_color":"[elementor-tag id=\\"f7b135c\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"typography_text_transform":"uppercase","jedv_enabled":"yes","_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"heading"},{"id":"24af8264","elType":"widget","settings":{"title":" \\u00e1rea do professor","title_color":"#6EC1E4","typography_typography":"custom","typography_font_size":{"unit":"rem","size":1.6,"sizes":[]},"typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"typography_font_weight":"600","jedv_conditions":[{"_id":"fc523aa","jedv_condition":"user-role","jedv_user_role":["professor_cicero","professor_aluiso"]}],"__dynamic__":{"title_color":"[elementor-tag id=\\"f7b135c\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"typography_text_transform":"uppercase","jedv_enabled":"yes","_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"heading"},{"id":"701de406","elType":"container","settings":{"content_width":"full","flex_direction":"row","flex_justify_content":"flex-start","flex_align_items":"center","margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"_id":"9b0f5e0"}],"jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"66ac39f4","elType":"container","settings":{"content_width":"full","width":{"unit":"%","size":30,"sizes":[]},"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"_id":"3f5e013"}],"jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"582a062a","elType":"widget","settings":{"lisitng_id":"851","columns":"1","posts_num":1,"not_found_message":"Selecione um paciente","custom_query_id":"11","posts_query":[],"terms_meta_query":[],"users_meta_query":[],"jedv_conditions":[{"_id":"4dbce2d"}],"horizontal_gap":{"unit":"px","size":0,"sizes":[]},"vertical_gap":{"unit":"px","size":0,"sizes":[]},"horizontal_gap_mobile":{"unit":"px","size":0,"sizes":[]},"vertical_gap_mobile":{"unit":"px","size":0,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"content_width":"full","__dynamic__":{"users_include":"[elementor-tag id=\\"5414e51\\" name=\\"jet-user-custom-field\\" settings=\\"%7B%22user_field%22%3A%22ID%22%7D\\"]"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"jet-listing-grid"}],"isInner":true}],"isInner":true}],"isInner":true},{"id":"14535413","elType":"container","settings":{"jedv_conditions":[{"_id":"e16db6f"}],"jet_parallax_layout_list":[],"content_width":"full","flex_direction":"row","flex_justify_content":"center","background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"53ea7638","elType":"widget","settings":{"text":"Instru\\u00e7\\u00f5es","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"4708ccd","elType":"widget","settings":{"text":"DGR","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"3aaee2b","elType":"widget","settings":{"text":"Material de apoio","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"6f2de33a","elType":"widget","settings":{"text":"Avalia\\u00e7\\u00e3o nivel","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"49015131","elType":"widget","settings":{"text":"Confirmar presen\\u00e7a","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"22e264c9","elType":"widget","settings":{"text":"Exames","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"}],"isInner":true},{"id":"4a77e7da","elType":"container","settings":{"content_width":"full","jet_parallax_layout_list":[],"jedv_conditions":[{"_id":"d5d2fa6","jedv_condition":"query-has-items","jedv_field":"confirmado_presenca1","jedv_value":"1","__dynamic__":[]}],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"6626d53d","elType":"widget","settings":{"title":"Confirma\\u00e7\\u00e3o de presen\\u00e7a","align":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_weight":"600","typography_text_transform":"uppercase","jedv_conditions":[{"_id":"2573eae"}],"__globals__":{"title_color":"globals\\/colors?id=secondary"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"heading"},{"id":"54f11422","elType":"widget","settings":{"editor":"<p>Prezado(a) aluno(a),<\\/p><p>Lembramos que \\u00e9 <strong>OBRIGAT\\u00d3RIO O PREENCHIMENTO CORRETO DOS DADOS SOLICITADOS NA LISTAGEM DE PRESEN\\u00c7A<\\/strong>, pois \\u00e9 por meio dessa informa\\u00e7\\u00e3o que solicitamos a emiss\\u00e3o do seu <strong>certificado<\\/strong> de conclus\\u00e3o do curso.<\\/p><p>Portanto, verifique atentamente seus dados antes de finalizar o preenchimento para garantir que o processo de emiss\\u00e3o do certificado seja realizado sem contratempos.<\\/p><p>Agradecemos a sua colabora\\u00e7\\u00e3o e desejamos um \\u00f3timo aprendizado!<\\/p>","jedv_conditions":[{"_id":"114b498"}],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"text-editor"},{"id":"63165d6","elType":"widget","settings":{"lisitng_id":"2560","columns":"1","posts_num":1,"not_found_message":"No data was found","posts_query":[],"terms_meta_query":[],"users_meta_query":[],"jedv_conditions":[{"_id":"8bfa824"}],"__dynamic__":{"users_include":"[elementor-tag id=\\"697cd22\\" name=\\"jet-user-custom-field\\" settings=\\"%7B%22user_field%22%3A%22ID%22%7D\\"]"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"jet-listing-grid"},{"id":"61a4fcc0","elType":"container","settings":{"content_width":"full","width":{"unit":"%","size":98.929},"flex_direction":"row","jet_parallax_layout_list":[],"jedv_conditions":[{"_id":"a324780"}],"_element_width":"initial","flex_justify_content":"center","padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_flex_align_self":"center","background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"746a2127","elType":"widget","settings":{"lisitng_id":"2775","columns":"1","posts_num":1,"not_found_message":"No data was found","posts_query":[],"terms_meta_query":[],"users_meta_query":[],"jedv_conditions":[{"_id":"00086e2"}],"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_flex_align_self":"center","_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"jet-listing-grid"}],"isInner":true}],"isInner":true}],"isInner":false},{"id":"30f61b7","elType":"container","settings":{"flex_direction":"column","jet_parallax_layout_list":[],"jedv_enabled":"yes","jedv_conditions":[{"jedv_condition":"switcher-disabled","_id":"7266c80","jedv_field":"chamada"}],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"56062143","elType":"container","settings":{"flex_direction":"column","content_width":"full","width":{"unit":"%","size":100},"jet_parallax_layout_list":[],"jedv_conditions":[{"_id":"c4a35c2"}],"flex_align_items":"center","_flex_size":"none","_element_width":"initial","jedv_enabled":"yes","background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"68381e27","elType":"widget","settings":{"shortcode":"[sgc_form_confirmacao_presenca]","jedv_conditions":[{"_id":"24dfb8c"}],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"shortcode"}],"isInner":true}],"isInner":false}]');
INSERT INTO `wpmr_postmeta` VALUES
(199, 48, '_elementor_edit_mode', 'builder'),
(200, 48, '_elementor_template_type', 'section'),
(201, 48, '_elementor_version', '3.31.3'),
(202, 48, '_elementor_pro_version', '3.31.2'),
(203, 48, '_elementor_data', '[{"id":"277375f7","elType":"container","settings":{"jedv_conditions":[{"_id":"e16db6f"}],"flex_direction":"column","flex_justify_content":"center","flex_align_items":"flex-start","jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"7bd582f7","elType":"widget","settings":{"title":" \\u00e1rea do aluno","title_color":"#6EC1E4","typography_typography":"custom","typography_font_size":{"unit":"rem","size":1.6,"sizes":[]},"typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"typography_font_weight":"600","jedv_conditions":[{"_id":"fc523aa","jedv_condition":"user-role","jedv_user_role":["aluno_cicero","aluno_alusio"]}],"__dynamic__":{"title_color":"[elementor-tag id=\\"f7b135c\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"typography_text_transform":"uppercase","jedv_enabled":"yes","_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"heading"},{"id":"ac4d9a5","elType":"widget","settings":{"title":" \\u00e1rea do professor","title_color":"#6EC1E4","typography_typography":"custom","typography_font_size":{"unit":"rem","size":1.6,"sizes":[]},"typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"typography_font_weight":"600","jedv_conditions":[{"_id":"fc523aa","jedv_condition":"user-role","jedv_user_role":["professor_cicero"]}],"__dynamic__":{"title_color":"[elementor-tag id=\\"f7b135c\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"typography_text_transform":"uppercase","jedv_enabled":"yes","_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"heading"},{"id":"5d11993c","elType":"container","settings":{"content_width":"full","flex_direction":"row","flex_justify_content":"flex-start","flex_align_items":"center","margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"_id":"9b0f5e0"}],"jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"7404fedc","elType":"container","settings":{"content_width":"full","width":{"unit":"%","size":30,"sizes":[]},"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"_id":"3f5e013"}],"jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"1d8ac6bb","elType":"widget","settings":{"lisitng_id":"851","columns":"1","posts_num":1,"not_found_message":"Selecione um paciente","custom_query_id":"11","posts_query":[],"terms_meta_query":[],"users_meta_query":[],"jedv_conditions":[{"_id":"4dbce2d"}],"horizontal_gap":{"unit":"px","size":0,"sizes":[]},"vertical_gap":{"unit":"px","size":0,"sizes":[]},"horizontal_gap_mobile":{"unit":"px","size":0,"sizes":[]},"vertical_gap_mobile":{"unit":"px","size":0,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"content_width":"full","__dynamic__":{"users_include":"[elementor-tag id=\\"5414e51\\" name=\\"jet-user-custom-field\\" settings=\\"%7B%22user_field%22%3A%22ID%22%7D\\"]"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"jet-listing-grid"}],"isInner":true}],"isInner":true}],"isInner":true},{"id":"11b9472","elType":"container","settings":{"jedv_conditions":[{"_id":"99769cf"}],"background_background":"classic","padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"__dynamic__":[],"flex_direction":"column","jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"57585e5f","elType":"container","settings":{"jedv_conditions":[{"_id":"e16db6f"}],"jet_parallax_layout_list":[],"content_width":"full","flex_direction":"row","flex_justify_content":"center","background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"198a7ee0","elType":"widget","settings":{"text":"Instru\\u00e7\\u00f5es","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"7f66b572","elType":"widget","settings":{"text":"DGR","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"6a61d07c","elType":"widget","settings":{"text":"Material de apoio","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"2b8dbfca","elType":"widget","settings":{"text":"Avalia\\u00e7\\u00e3o nivel","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"376927f3","elType":"widget","settings":{"text":"Confirmar presen\\u00e7a","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"391aaef7","elType":"widget","settings":{"text":"Exames","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"}],"isInner":true}],"isInner":true},{"id":"21d16d88","elType":"container","settings":{"flex_direction":"column","jet_parallax_layout_list":[],"jedv_conditions":[{"_id":"c3749a0"}],"content_width":"full","flex_justify_content":"center","background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"1170a94f","elType":"widget","settings":{"editor":"<p>Prezado(a) aluno(a),<\\/p><p>Voc\\u00ea est\\u00e1 prestes a iniciar a prova. Antes de come\\u00e7ar, pedimos que leia atentamente as <strong>instru\\u00e7\\u00f5es importantes<\\/strong> abaixo:<\\/p><ol><li><strong>Leia cada uma das perguntas cuidadosamente<\\/strong> antes de respond\\u00ea-las.<\\/li><li>Para cada pergunta, <strong>existe somente uma \\u00fanica resposta correta<\\/strong>.<\\/li><li><strong>Aten\\u00e7\\u00e3o<\\/strong>: as respostas das quest\\u00f5es est\\u00e3o <strong>randomizadas<\\/strong>.<\\/li><li>Voc\\u00ea tem um <strong>tempo m\\u00e1ximo de 3 horas (180 minutos)<\\/strong> para completar o teste. Para receber sua certifica\\u00e7\\u00e3o, ser\\u00e1 necess\\u00e1rio acertar <strong>80% das perguntas<\\/strong> propostas.<\\/li><\\/ol><p>Boa sorte e aproveite ao m\\u00e1ximo esse momento!<\\/p>","jedv_conditions":[{"_id":"1e8a8e6"}],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"text-editor"},{"id":"402e8f47","elType":"widget","settings":{"lisitng_id":"2552","columns":"1","not_found_message":"No data was found","posts_query":[],"terms_meta_query":[],"users_meta_query":[],"jedv_conditions":[{"_id":"8ac7d7c"}],"posts_num":1,"_element_width":"initial","_element_custom_width":{"unit":"%","size":100},"_flex_size":"none","_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"jet-listing-grid"}],"isInner":false}]'),
(204, 49, '_elementor_edit_mode', 'builder'),
(205, 49, '_elementor_template_type', 'section'),
(206, 49, '_elementor_version', '3.31.3'),
(207, 49, '_elementor_pro_version', '3.31.2'),
(208, 49, '_elementor_data', '[{"id":"277375f7","elType":"container","settings":{"jedv_conditions":[{"_id":"e16db6f"}],"flex_direction":"column","flex_justify_content":"center","flex_align_items":"flex-start","jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"7bd582f7","elType":"widget","settings":{"title":" \\u00e1rea do aluno","title_color":"#6EC1E4","typography_typography":"custom","typography_font_size":{"unit":"rem","size":1.6,"sizes":[]},"typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"typography_font_weight":"600","jedv_conditions":[{"_id":"fc523aa","jedv_condition":"user-role","jedv_user_role":["aluno_cicero","aluno_alusio"]}],"__dynamic__":{"title_color":"[elementor-tag id=\\"f7b135c\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"typography_text_transform":"uppercase","jedv_enabled":"yes","_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"heading"},{"id":"ac4d9a5","elType":"widget","settings":{"title":" \\u00e1rea do professor","title_color":"#6EC1E4","typography_typography":"custom","typography_font_size":{"unit":"rem","size":1.6,"sizes":[]},"typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"typography_font_weight":"600","jedv_conditions":[{"_id":"fc523aa","jedv_condition":"user-role","jedv_user_role":["professor_cicero"]}],"__dynamic__":{"title_color":"[elementor-tag id=\\"f7b135c\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"typography_text_transform":"uppercase","jedv_enabled":"yes","_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"heading"},{"id":"5d11993c","elType":"container","settings":{"content_width":"full","flex_direction":"row","flex_justify_content":"flex-start","flex_align_items":"center","margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"_id":"9b0f5e0"}],"jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"7404fedc","elType":"container","settings":{"content_width":"full","width":{"unit":"%","size":30,"sizes":[]},"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"_id":"3f5e013"}],"jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"1d8ac6bb","elType":"widget","settings":{"lisitng_id":"851","columns":"1","posts_num":1,"not_found_message":"Selecione um paciente","custom_query_id":"11","posts_query":[],"terms_meta_query":[],"users_meta_query":[],"jedv_conditions":[{"_id":"4dbce2d"}],"horizontal_gap":{"unit":"px","size":0,"sizes":[]},"vertical_gap":{"unit":"px","size":0,"sizes":[]},"horizontal_gap_mobile":{"unit":"px","size":0,"sizes":[]},"vertical_gap_mobile":{"unit":"px","size":0,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"content_width":"full","__dynamic__":{"users_include":"[elementor-tag id=\\"5414e51\\" name=\\"jet-user-custom-field\\" settings=\\"%7B%22user_field%22%3A%22ID%22%7D\\"]"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"jet-listing-grid"}],"isInner":true}],"isInner":true}],"isInner":true},{"id":"11b9472","elType":"container","settings":{"jedv_conditions":[{"_id":"99769cf"}],"background_background":"classic","padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"__dynamic__":[],"flex_direction":"column","jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"57585e5f","elType":"container","settings":{"jedv_conditions":[{"_id":"e16db6f"}],"jet_parallax_layout_list":[],"content_width":"full","flex_direction":"row","flex_justify_content":"center","background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"198a7ee0","elType":"widget","settings":{"text":"Instru\\u00e7\\u00f5es","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"7f66b572","elType":"widget","settings":{"text":"DGR","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"6a61d07c","elType":"widget","settings":{"text":"Material de apoio","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"2b8dbfca","elType":"widget","settings":{"text":"Avalia\\u00e7\\u00e3o nivel","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"376927f3","elType":"widget","settings":{"text":"Confirmar presen\\u00e7a","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"391aaef7","elType":"widget","settings":{"text":"Exames","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"}],"isInner":true}],"isInner":true},{"id":"21d16d88","elType":"container","settings":{"flex_direction":"column","jet_parallax_layout_list":[],"jedv_conditions":[{"_id":"c3749a0"}],"content_width":"full","flex_justify_content":"center","background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"1170a94f","elType":"widget","settings":{"editor":"<p>Prezado(a) aluno(a),<\\/p><p>Voc\\u00ea est\\u00e1 prestes a iniciar a prova. Antes de come\\u00e7ar, pedimos que leia atentamente as <strong>instru\\u00e7\\u00f5es importantes<\\/strong> abaixo:<\\/p><ol><li><strong>Leia cada uma das perguntas cuidadosamente<\\/strong> antes de respond\\u00ea-las.<\\/li><li>Para cada pergunta, <strong>existe somente uma \\u00fanica resposta correta<\\/strong>.<\\/li><li><strong>Aten\\u00e7\\u00e3o<\\/strong>: as respostas das quest\\u00f5es est\\u00e3o <strong>randomizadas<\\/strong>.<\\/li><li>Voc\\u00ea tem um <strong>tempo m\\u00e1ximo de 3 horas (180 minutos)<\\/strong> para completar o teste. Para receber sua certifica\\u00e7\\u00e3o, ser\\u00e1 necess\\u00e1rio acertar <strong>80% das perguntas<\\/strong> propostas.<\\/li><\\/ol><p>Boa sorte e aproveite ao m\\u00e1ximo esse momento!<\\/p>","jedv_conditions":[{"_id":"1e8a8e6"}],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"text-editor"},{"id":"402e8f47","elType":"widget","settings":{"lisitng_id":"2552","columns":"1","not_found_message":"No data was found","posts_query":[],"terms_meta_query":[],"users_meta_query":[],"jedv_conditions":[{"_id":"8ac7d7c"}],"posts_num":1,"_element_width":"initial","_element_custom_width":{"unit":"%","size":100},"_flex_size":"none","_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"jet-listing-grid"}],"isInner":false}]'),
(210, 50, '_elementor_edit_mode', 'builder'),
(211, 50, '_elementor_template_type', 'section'),
(212, 50, '_elementor_version', '3.31.3'),
(213, 50, '_elementor_pro_version', '3.31.2'),
(214, 50, '_elementor_data', '[{"id":"5d8f5234","elType":"container","settings":{"flex_direction":"column","flex_justify_content":"center","flex_align_items":"center","padding":{"unit":"%","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_mobile":{"unit":"%","top":"10","right":"3","bottom":"10","left":"3","isLinked":false},"jedv_enabled":"yes","jedv_conditions":[{"jedv_condition":"user","_id":"97ea87c"},{"_id":"ca18a0c","jedv_condition":"user-role","jedv_user_role":["administrator"]}],"min_height":{"unit":"vh","size":80,"sizes":[]},"min_height_tablet":{"unit":"vh","size":"","sizes":[]},"min_height_mobile":{"unit":"vh","size":70,"sizes":[]},"background_background":"classic","__dynamic__":{"background_color":"[elementor-tag id=\\"26d5b1e\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor6%22%7D\\"]"},"jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"7d509b32","elType":"container","settings":{"content_width":"full","width":{"unit":"%","size":80,"sizes":[]},"flex_gap":{"unit":"px","size":0,"sizes":[],"column":"0","row":"0","isLinked":true},"border_border":"solid","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"#EAEAEA","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":12,"spread":0,"color":"rgba(0, 0, 0, 0.15)"},"padding":{"unit":"%","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_mobile":{"unit":"%","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"jedv_conditions":[{"_id":"5749bee"}],"width_tablet":{"unit":"%","size":50,"sizes":[]},"width_mobile":{"unit":"%","size":90,"sizes":[]},"min_height_tablet":{"unit":"vh","size":"","sizes":[]},"min_height_mobile":{"unit":"vh","size":"","sizes":[]},"background_background":"classic","background_color":"#FFFFFF","jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"6b6793ec","elType":"widget","settings":{"title":"Adicionar link da aula","title_color":"#6EC1E4","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"_id":"cb76333"}],"__dynamic__":{"title_color":"[elementor-tag id=\\"9d42417\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"heading"},{"id":"2236a1d6","elType":"widget","settings":{"icon_list":[{"text":"Voltar ao Dashboard","selected_icon":{"value":"fas fa-arrow-alt-circle-left","library":"fa-solid"},"_id":"0eda6c1","link":{"url":"\\/dashboard","is_external":"","nofollow":"","custom_attributes":""},"__dynamic__":[]}],"icon_align":"right","icon_color":"#6EC1E4","text_color":"#54595F","icon_typography_typography":"custom","icon_typography_font_family":"Roboto","icon_typography_font_size":{"unit":"rem","size":0.9,"sizes":[]},"icon_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"icon_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"icon_typography_font_weight":"400","_margin":{"unit":"px","top":"10","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"_id":"39766da"}],"__dynamic__":{"icon_color":"[elementor-tag id=\\"0b39946\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor1%22%7D\\"]","text_color":"[elementor-tag id=\\"0b56e78\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"icon-list"}],"isInner":true}],"isInner":false}]'),
(215, 51, '_elementor_edit_mode', 'builder'),
(216, 51, '_elementor_template_type', 'section'),
(217, 51, '_elementor_version', '3.31.3'),
(218, 51, '_elementor_pro_version', '3.31.2'),
(219, 51, '_elementor_data', '[{"id":"5d8f5234","elType":"container","settings":{"flex_direction":"column","flex_justify_content":"center","flex_align_items":"center","padding":{"unit":"%","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_mobile":{"unit":"%","top":"10","right":"3","bottom":"10","left":"3","isLinked":false},"jedv_enabled":"yes","jedv_conditions":[{"jedv_condition":"user","_id":"97ea87c"},{"_id":"ca18a0c","jedv_condition":"user-role","jedv_user_role":["administrator"]}],"min_height":{"unit":"vh","size":80,"sizes":[]},"min_height_tablet":{"unit":"vh","size":"","sizes":[]},"min_height_mobile":{"unit":"vh","size":70,"sizes":[]},"background_background":"classic","__dynamic__":{"background_color":"[elementor-tag id=\\"26d5b1e\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor6%22%7D\\"]"},"jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"7d509b32","elType":"container","settings":{"content_width":"full","width":{"unit":"%","size":80,"sizes":[]},"flex_gap":{"unit":"px","size":0,"sizes":[],"column":"0","row":"0","isLinked":true},"border_border":"solid","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"#EAEAEA","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":12,"spread":0,"color":"rgba(0, 0, 0, 0.15)"},"padding":{"unit":"%","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_mobile":{"unit":"%","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"jedv_conditions":[{"_id":"5749bee"}],"width_tablet":{"unit":"%","size":50,"sizes":[]},"width_mobile":{"unit":"%","size":90,"sizes":[]},"min_height_tablet":{"unit":"vh","size":"","sizes":[]},"min_height_mobile":{"unit":"vh","size":"","sizes":[]},"background_background":"classic","background_color":"#FFFFFF","jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"6b6793ec","elType":"widget","settings":{"title":"Adicionar link da aula","title_color":"#6EC1E4","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"_id":"cb76333"}],"__dynamic__":{"title_color":"[elementor-tag id=\\"9d42417\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"heading"},{"id":"2236a1d6","elType":"widget","settings":{"icon_list":[{"text":"Voltar ao Dashboard","selected_icon":{"value":"fas fa-arrow-alt-circle-left","library":"fa-solid"},"_id":"0eda6c1","link":{"url":"\\/dashboard","is_external":"","nofollow":"","custom_attributes":""},"__dynamic__":[]}],"icon_align":"right","icon_color":"#6EC1E4","text_color":"#54595F","icon_typography_typography":"custom","icon_typography_font_family":"Roboto","icon_typography_font_size":{"unit":"rem","size":0.9,"sizes":[]},"icon_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"icon_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"icon_typography_font_weight":"400","_margin":{"unit":"px","top":"10","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"_id":"39766da"}],"__dynamic__":{"icon_color":"[elementor-tag id=\\"0b39946\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor1%22%7D\\"]","text_color":"[elementor-tag id=\\"0b56e78\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"icon-list"}],"isInner":true}],"isInner":false}]');
INSERT INTO `wpmr_postmeta` VALUES
(221, 52, '_elementor_edit_mode', 'builder'),
(222, 52, '_elementor_template_type', 'section'),
(223, 52, '_elementor_version', '3.31.3'),
(224, 52, '_elementor_pro_version', '3.31.2'),
(225, 52, '_elementor_data', '[{"id":"6214e086","elType":"container","settings":{"flex_direction":"column","flex_justify_content":"center","flex_align_items":"center","padding":{"unit":"%","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_mobile":{"unit":"%","top":"10","right":"3","bottom":"10","left":"3","isLinked":false},"jedv_enabled":"yes","jedv_conditions":[{"jedv_condition":"user","_id":"97ea87c"},{"_id":"ca18a0c","jedv_condition":"user-role","jedv_user_role":["administrator"]}],"min_height":{"unit":"vh","size":80,"sizes":[]},"min_height_tablet":{"unit":"vh","size":"","sizes":[]},"min_height_mobile":{"unit":"vh","size":70,"sizes":[]},"background_background":"classic","__dynamic__":{"background_color":"[elementor-tag id=\\"26d5b1e\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor6%22%7D\\"]"},"jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"14551096","elType":"container","settings":{"content_width":"full","width":{"unit":"%","size":80,"sizes":[]},"flex_gap":{"unit":"px","size":0,"sizes":[],"column":"0","row":"0","isLinked":true},"border_border":"solid","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"#EAEAEA","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":12,"spread":0,"color":"rgba(0, 0, 0, 0.15)"},"padding":{"unit":"%","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_mobile":{"unit":"%","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"jedv_conditions":[{"_id":"5749bee"}],"width_tablet":{"unit":"%","size":50,"sizes":[]},"width_mobile":{"unit":"%","size":90,"sizes":[]},"min_height_tablet":{"unit":"vh","size":"","sizes":[]},"min_height_mobile":{"unit":"vh","size":"","sizes":[]},"background_background":"classic","background_color":"#FFFFFF","jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"742f1672","elType":"widget","settings":{"title":"Adicionar Periodo do cursos","title_color":"#6EC1E4","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"_id":"cb76333"}],"__dynamic__":{"title_color":"[elementor-tag id=\\"9d42417\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"heading"},{"id":"18d7e623","elType":"widget","settings":{"icon_list":[{"text":"Voltar ao Dashboard","selected_icon":{"value":"fas fa-arrow-alt-circle-left","library":"fa-solid"},"_id":"0eda6c1","link":{"url":"\\/dashboard","is_external":"","nofollow":"","custom_attributes":""},"__dynamic__":[]}],"icon_align":"right","icon_color":"#6EC1E4","text_color":"#54595F","icon_typography_typography":"custom","icon_typography_font_family":"Roboto","icon_typography_font_size":{"unit":"rem","size":0.9,"sizes":[]},"icon_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"icon_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"icon_typography_font_weight":"400","_margin":{"unit":"px","top":"10","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"_id":"39766da"}],"__dynamic__":{"icon_color":"[elementor-tag id=\\"0b39946\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor1%22%7D\\"]","text_color":"[elementor-tag id=\\"0b56e78\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"icon-list"}],"isInner":true}],"isInner":false}]'),
(226, 53, '_elementor_edit_mode', 'builder'),
(227, 53, '_elementor_template_type', 'section'),
(228, 53, '_elementor_version', '3.31.3'),
(229, 53, '_elementor_pro_version', '3.31.2'),
(230, 53, '_elementor_data', '[{"id":"6214e086","elType":"container","settings":{"flex_direction":"column","flex_justify_content":"center","flex_align_items":"center","padding":{"unit":"%","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_mobile":{"unit":"%","top":"10","right":"3","bottom":"10","left":"3","isLinked":false},"jedv_enabled":"yes","jedv_conditions":[{"jedv_condition":"user","_id":"97ea87c"},{"_id":"ca18a0c","jedv_condition":"user-role","jedv_user_role":["administrator"]}],"min_height":{"unit":"vh","size":80,"sizes":[]},"min_height_tablet":{"unit":"vh","size":"","sizes":[]},"min_height_mobile":{"unit":"vh","size":70,"sizes":[]},"background_background":"classic","__dynamic__":{"background_color":"[elementor-tag id=\\"26d5b1e\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor6%22%7D\\"]"},"jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"14551096","elType":"container","settings":{"content_width":"full","width":{"unit":"%","size":80,"sizes":[]},"flex_gap":{"unit":"px","size":0,"sizes":[],"column":"0","row":"0","isLinked":true},"border_border":"solid","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"#EAEAEA","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":12,"spread":0,"color":"rgba(0, 0, 0, 0.15)"},"padding":{"unit":"%","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_mobile":{"unit":"%","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"jedv_conditions":[{"_id":"5749bee"}],"width_tablet":{"unit":"%","size":50,"sizes":[]},"width_mobile":{"unit":"%","size":90,"sizes":[]},"min_height_tablet":{"unit":"vh","size":"","sizes":[]},"min_height_mobile":{"unit":"vh","size":"","sizes":[]},"background_background":"classic","background_color":"#FFFFFF","jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"742f1672","elType":"widget","settings":{"title":"Adicionar Periodo do cursos","title_color":"#6EC1E4","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"_id":"cb76333"}],"__dynamic__":{"title_color":"[elementor-tag id=\\"9d42417\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"heading"},{"id":"18d7e623","elType":"widget","settings":{"icon_list":[{"text":"Voltar ao Dashboard","selected_icon":{"value":"fas fa-arrow-alt-circle-left","library":"fa-solid"},"_id":"0eda6c1","link":{"url":"\\/dashboard","is_external":"","nofollow":"","custom_attributes":""},"__dynamic__":[]}],"icon_align":"right","icon_color":"#6EC1E4","text_color":"#54595F","icon_typography_typography":"custom","icon_typography_font_family":"Roboto","icon_typography_font_size":{"unit":"rem","size":0.9,"sizes":[]},"icon_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"icon_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"icon_typography_font_weight":"400","_margin":{"unit":"px","top":"10","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"_id":"39766da"}],"__dynamic__":{"icon_color":"[elementor-tag id=\\"0b39946\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor1%22%7D\\"]","text_color":"[elementor-tag id=\\"0b56e78\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"icon-list"}],"isInner":true}],"isInner":false}]'),
(232, 54, '_elementor_edit_mode', 'builder'),
(233, 54, '_elementor_template_type', 'section'),
(234, 54, '_elementor_version', '3.31.3'),
(235, 54, '_elementor_pro_version', '3.31.2'),
(236, 54, '_elementor_data', '[{"id":"51843d87","elType":"container","settings":{"flex_direction":"column","flex_justify_content":"center","flex_align_items":"center","padding":{"unit":"%","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_mobile":{"unit":"%","top":"10","right":"3","bottom":"10","left":"3","isLinked":false},"jedv_enabled":"yes","jedv_conditions":[{"jedv_condition":"user","_id":"97ea87c"},{"_id":"ca18a0c","jedv_condition":"user-role","jedv_user_role":["administrator"]}],"min_height":{"unit":"vh","size":80,"sizes":[]},"min_height_tablet":{"unit":"vh","size":"","sizes":[]},"min_height_mobile":{"unit":"vh","size":70,"sizes":[]},"background_background":"classic","__dynamic__":{"background_color":"[elementor-tag id=\\"26d5b1e\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor6%22%7D\\"]"},"jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"7da31eca","elType":"container","settings":{"content_width":"full","width":{"unit":"%","size":80,"sizes":[]},"flex_gap":{"unit":"px","size":0,"sizes":[],"column":"0","row":"0","isLinked":true},"border_border":"solid","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"#EAEAEA","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":12,"spread":0,"color":"rgba(0, 0, 0, 0.15)"},"padding":{"unit":"%","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_mobile":{"unit":"%","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"jedv_conditions":[{"_id":"5749bee"}],"width_tablet":{"unit":"%","size":50,"sizes":[]},"width_mobile":{"unit":"%","size":90,"sizes":[]},"min_height_tablet":{"unit":"vh","size":"","sizes":[]},"min_height_mobile":{"unit":"vh","size":"","sizes":[]},"background_background":"classic","background_color":"#FFFFFF","jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"4947d7c4","elType":"widget","settings":{"title":"Adicionar Formul\\u00e1rio","title_color":"#6EC1E4","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"_id":"cb76333"}],"__dynamic__":{"title_color":"[elementor-tag id=\\"9d42417\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"heading"},{"id":"ed65502","elType":"widget","settings":{"icon_list":[{"text":"Voltar ao Dashboard","selected_icon":{"value":"fas fa-arrow-alt-circle-left","library":"fa-solid"},"_id":"0eda6c1","link":{"url":"\\/dashboard","is_external":"","nofollow":"","custom_attributes":""},"__dynamic__":[]}],"icon_align":"right","icon_color":"#6EC1E4","text_color":"#54595F","icon_typography_typography":"custom","icon_typography_font_family":"Roboto","icon_typography_font_size":{"unit":"rem","size":0.9,"sizes":[]},"icon_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"icon_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"icon_typography_font_weight":"400","_margin":{"unit":"px","top":"10","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"_id":"39766da"}],"__dynamic__":{"icon_color":"[elementor-tag id=\\"0b39946\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor1%22%7D\\"]","text_color":"[elementor-tag id=\\"0b56e78\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"icon-list"}],"isInner":true}],"isInner":false}]'),
(237, 55, '_elementor_edit_mode', 'builder'),
(238, 55, '_elementor_template_type', 'section'),
(239, 55, '_elementor_version', '3.31.3'),
(240, 55, '_elementor_pro_version', '3.31.2'),
(241, 55, '_elementor_data', '[{"id":"51843d87","elType":"container","settings":{"flex_direction":"column","flex_justify_content":"center","flex_align_items":"center","padding":{"unit":"%","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_mobile":{"unit":"%","top":"10","right":"3","bottom":"10","left":"3","isLinked":false},"jedv_enabled":"yes","jedv_conditions":[{"jedv_condition":"user","_id":"97ea87c"},{"_id":"ca18a0c","jedv_condition":"user-role","jedv_user_role":["administrator"]}],"min_height":{"unit":"vh","size":80,"sizes":[]},"min_height_tablet":{"unit":"vh","size":"","sizes":[]},"min_height_mobile":{"unit":"vh","size":70,"sizes":[]},"background_background":"classic","__dynamic__":{"background_color":"[elementor-tag id=\\"26d5b1e\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor6%22%7D\\"]"},"jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"7da31eca","elType":"container","settings":{"content_width":"full","width":{"unit":"%","size":80,"sizes":[]},"flex_gap":{"unit":"px","size":0,"sizes":[],"column":"0","row":"0","isLinked":true},"border_border":"solid","border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"border_color":"#EAEAEA","border_radius":{"unit":"px","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":12,"spread":0,"color":"rgba(0, 0, 0, 0.15)"},"padding":{"unit":"%","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_mobile":{"unit":"%","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"jedv_conditions":[{"_id":"5749bee"}],"width_tablet":{"unit":"%","size":50,"sizes":[]},"width_mobile":{"unit":"%","size":90,"sizes":[]},"min_height_tablet":{"unit":"vh","size":"","sizes":[]},"min_height_mobile":{"unit":"vh","size":"","sizes":[]},"background_background":"classic","background_color":"#FFFFFF","jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"4947d7c4","elType":"widget","settings":{"title":"Adicionar Formul\\u00e1rio","title_color":"#6EC1E4","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"_id":"cb76333"}],"__dynamic__":{"title_color":"[elementor-tag id=\\"9d42417\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"heading"},{"id":"ed65502","elType":"widget","settings":{"icon_list":[{"text":"Voltar ao Dashboard","selected_icon":{"value":"fas fa-arrow-alt-circle-left","library":"fa-solid"},"_id":"0eda6c1","link":{"url":"\\/dashboard","is_external":"","nofollow":"","custom_attributes":""},"__dynamic__":[]}],"icon_align":"right","icon_color":"#6EC1E4","text_color":"#54595F","icon_typography_typography":"custom","icon_typography_font_family":"Roboto","icon_typography_font_size":{"unit":"rem","size":0.9,"sizes":[]},"icon_typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"icon_typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"icon_typography_font_weight":"400","_margin":{"unit":"px","top":"10","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"_id":"39766da"}],"__dynamic__":{"icon_color":"[elementor-tag id=\\"0b39946\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor1%22%7D\\"]","text_color":"[elementor-tag id=\\"0b56e78\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"icon-list"}],"isInner":true}],"isInner":false}]'),
(243, 56, '_elementor_edit_mode', 'builder'),
(244, 56, '_elementor_template_type', 'section'),
(245, 56, '_elementor_version', '3.31.3'),
(246, 56, '_elementor_pro_version', '3.31.2'),
(247, 56, '_elementor_data', '[{"id":"78228741","elType":"container","settings":{"jedv_conditions":[{"_id":"99769cf"}],"background_background":"classic","padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"__dynamic__":[],"flex_direction":"column","jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"4297b972","elType":"container","settings":{"jedv_conditions":[{"_id":"e16db6f"}],"flex_direction":"column","flex_justify_content":"center","flex_align_items":"flex-start","jet_parallax_layout_list":[],"content_width":"full","background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"6999c1eb","elType":"widget","settings":{"title":" \\u00e1rea do aluno","title_color":"#6EC1E4","typography_typography":"custom","typography_font_size":{"unit":"rem","size":1.6,"sizes":[]},"typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"typography_font_weight":"600","jedv_conditions":[{"_id":"fc523aa","jedv_condition":"user-role","jedv_user_role":["aluno_cicero","aluno_alusio"]}],"__dynamic__":{"title_color":"[elementor-tag id=\\"f7b135c\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"typography_text_transform":"uppercase","jedv_enabled":"yes","_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"heading"},{"id":"2449e7ff","elType":"widget","settings":{"title":" \\u00e1rea do professor","title_color":"#6EC1E4","typography_typography":"custom","typography_font_size":{"unit":"rem","size":1.6,"sizes":[]},"typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"typography_font_weight":"600","jedv_conditions":[{"_id":"fc523aa","jedv_condition":"user-role","jedv_user_role":["professor_cicero","professor_aluiso"]}],"__dynamic__":{"title_color":"[elementor-tag id=\\"f7b135c\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"typography_text_transform":"uppercase","jedv_enabled":"yes","_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"heading"},{"id":"7dcc5c12","elType":"container","settings":{"content_width":"full","flex_direction":"row","flex_justify_content":"flex-start","flex_align_items":"center","margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"_id":"9b0f5e0"}],"jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"fdbc572","elType":"container","settings":{"content_width":"full","width":{"unit":"%","size":30,"sizes":[]},"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"_id":"3f5e013"}],"jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"525e1b57","elType":"widget","settings":{"lisitng_id":"851","columns":"1","posts_num":1,"not_found_message":"Selecione um paciente","custom_query_id":"11","posts_query":[],"terms_meta_query":[],"users_meta_query":[],"jedv_conditions":[{"_id":"4dbce2d"}],"horizontal_gap":{"unit":"px","size":0,"sizes":[]},"vertical_gap":{"unit":"px","size":0,"sizes":[]},"horizontal_gap_mobile":{"unit":"px","size":0,"sizes":[]},"vertical_gap_mobile":{"unit":"px","size":0,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"content_width":"full","__dynamic__":{"users_include":"[elementor-tag id=\\"5414e51\\" name=\\"jet-user-custom-field\\" settings=\\"%7B%22user_field%22%3A%22ID%22%7D\\"]"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"jet-listing-grid"}],"isInner":true}],"isInner":true}],"isInner":true},{"id":"6053f7c4","elType":"container","settings":{"jedv_conditions":[{"_id":"e16db6f"}],"jet_parallax_layout_list":[],"content_width":"full","flex_direction":"row","flex_justify_content":"center","background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"48862792","elType":"widget","settings":{"text":"Instru\\u00e7\\u00f5es","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"6edb6b3f","elType":"widget","settings":{"text":"DGR","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"43b5af11","elType":"widget","settings":{"text":"Material de apoio","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"2ddba4bf","elType":"widget","settings":{"text":"Avalia\\u00e7\\u00e3o nivel","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"eb8e858","elType":"widget","settings":{"text":"Confirmar presen\\u00e7a","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"18672e73","elType":"widget","settings":{"text":"Exames","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"}],"isInner":true}],"isInner":true},{"id":"378a9996","elType":"container","settings":{"jet_parallax_layout_list":[],"jedv_conditions":[{"_id":"4446365"}],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"1cd4c0b2","elType":"widget","settings":{"lisitng_id":"2734","columns":"1","posts_num":1,"not_found_message":"No data was found","posts_query":[],"terms_meta_query":[],"users_meta_query":[],"jedv_conditions":[{"_id":"f9906a5"}],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"jet-listing-grid"}],"isInner":false}]'),
(248, 57, '_elementor_edit_mode', 'builder'),
(249, 57, '_elementor_template_type', 'section'),
(250, 57, '_elementor_version', '3.31.3'),
(251, 57, '_elementor_pro_version', '3.31.2'),
(252, 57, '_elementor_data', '[{"id":"78228741","elType":"container","settings":{"jedv_conditions":[{"_id":"99769cf"}],"background_background":"classic","padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"__dynamic__":[],"flex_direction":"column","jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"4297b972","elType":"container","settings":{"jedv_conditions":[{"_id":"e16db6f"}],"flex_direction":"column","flex_justify_content":"center","flex_align_items":"flex-start","jet_parallax_layout_list":[],"content_width":"full","background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"6999c1eb","elType":"widget","settings":{"title":" \\u00e1rea do aluno","title_color":"#6EC1E4","typography_typography":"custom","typography_font_size":{"unit":"rem","size":1.6,"sizes":[]},"typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"typography_font_weight":"600","jedv_conditions":[{"_id":"fc523aa","jedv_condition":"user-role","jedv_user_role":["aluno_cicero","aluno_alusio"]}],"__dynamic__":{"title_color":"[elementor-tag id=\\"f7b135c\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"typography_text_transform":"uppercase","jedv_enabled":"yes","_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"heading"},{"id":"2449e7ff","elType":"widget","settings":{"title":" \\u00e1rea do professor","title_color":"#6EC1E4","typography_typography":"custom","typography_font_size":{"unit":"rem","size":1.6,"sizes":[]},"typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"typography_font_weight":"600","jedv_conditions":[{"_id":"fc523aa","jedv_condition":"user-role","jedv_user_role":["professor_cicero","professor_aluiso"]}],"__dynamic__":{"title_color":"[elementor-tag id=\\"f7b135c\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"typography_text_transform":"uppercase","jedv_enabled":"yes","_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"heading"},{"id":"7dcc5c12","elType":"container","settings":{"content_width":"full","flex_direction":"row","flex_justify_content":"flex-start","flex_align_items":"center","margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"_id":"9b0f5e0"}],"jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"fdbc572","elType":"container","settings":{"content_width":"full","width":{"unit":"%","size":30,"sizes":[]},"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"jedv_conditions":[{"_id":"3f5e013"}],"jet_parallax_layout_list":[],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"525e1b57","elType":"widget","settings":{"lisitng_id":"851","columns":"1","posts_num":1,"not_found_message":"Selecione um paciente","custom_query_id":"11","posts_query":[],"terms_meta_query":[],"users_meta_query":[],"jedv_conditions":[{"_id":"4dbce2d"}],"horizontal_gap":{"unit":"px","size":0,"sizes":[]},"vertical_gap":{"unit":"px","size":0,"sizes":[]},"horizontal_gap_mobile":{"unit":"px","size":0,"sizes":[]},"vertical_gap_mobile":{"unit":"px","size":0,"sizes":[]},"_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"content_width":"full","__dynamic__":{"users_include":"[elementor-tag id=\\"5414e51\\" name=\\"jet-user-custom-field\\" settings=\\"%7B%22user_field%22%3A%22ID%22%7D\\"]"},"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"jet-listing-grid"}],"isInner":true}],"isInner":true}],"isInner":true},{"id":"6053f7c4","elType":"container","settings":{"jedv_conditions":[{"_id":"e16db6f"}],"jet_parallax_layout_list":[],"content_width":"full","flex_direction":"row","flex_justify_content":"center","background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"48862792","elType":"widget","settings":{"text":"Instru\\u00e7\\u00f5es","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"6edb6b3f","elType":"widget","settings":{"text":"DGR","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"43b5af11","elType":"widget","settings":{"text":"Material de apoio","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"2ddba4bf","elType":"widget","settings":{"text":"Avalia\\u00e7\\u00e3o nivel","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"eb8e858","elType":"widget","settings":{"text":"Confirmar presen\\u00e7a","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"},{"id":"18672e73","elType":"widget","settings":{"text":"Exames","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"selected_icon":{"value":"","library":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"button_background_hover_video_fallback":{"url":"","id":"","size":""},"button_background_hover_slideshow_gallery":[],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"button"}],"isInner":true}],"isInner":true},{"id":"378a9996","elType":"container","settings":{"jet_parallax_layout_list":[],"jedv_conditions":[{"_id":"4446365"}],"background_image":{"url":"","id":"","size":""},"background_video_fallback":{"url":"","id":"","size":""},"background_slideshow_gallery":[],"background_hover_image":{"url":"","id":"","size":""},"background_hover_video_fallback":{"url":"","id":"","size":""},"background_hover_slideshow_gallery":[],"background_overlay_image":{"url":"","id":"","size":""},"background_overlay_video_fallback":{"url":"","id":"","size":""},"background_overlay_slideshow_gallery":[],"background_overlay_hover_image":{"url":"","id":"","size":""},"background_overlay_hover_video_fallback":{"url":"","id":"","size":""},"background_overlay_hover_slideshow_gallery":[],"jet_sticky_section_background_image":{"url":"","id":"","size":""},"jet_sticky_section_background_video_fallback":{"url":"","id":"","size":""},"jet_sticky_section_background_slideshow_gallery":[]},"elements":[{"id":"1cd4c0b2","elType":"widget","settings":{"lisitng_id":"2734","columns":"1","posts_num":1,"not_found_message":"No data was found","posts_query":[],"terms_meta_query":[],"users_meta_query":[],"jedv_conditions":[{"_id":"f9906a5"}],"_background_image":{"url":"","id":"","size":""},"_background_video_fallback":{"url":"","id":"","size":""},"_background_slideshow_gallery":[],"_background_hover_image":{"url":"","id":"","size":""},"_background_hover_video_fallback":{"url":"","id":"","size":""},"_background_hover_slideshow_gallery":[],"_mask_image":{"url":"","id":"","size":""}},"elements":[],"widgetType":"jet-listing-grid"}],"isInner":false}]');
INSERT INTO `wpmr_postmeta` VALUES
(258, 59, '_elementor_is_screenshot', '1'),
(259, 59, '_wp_attached_file', 'elementor/screenshots/Elementor-post-screenshot_28_2025-08-29-18-12-09_2e3de2ca.png'),
(260, 28, '_elementor_screenshot', 'a:2:{s:2:"id";i:59;s:3:"url";s:135:"https://mod25.aeroclasses.com.br/wp-content/uploads/elementor/screenshots/Elementor-post-screenshot_28_2025-08-29-18-12-09_2e3de2ca.png";}'),
(266, 28, '_edit_lock', '1756491274:1'),
(267, 60, '_elementor_edit_mode', 'builder'),
(268, 60, '_elementor_template_type', 'single-post'),
(269, 61, '_elementor_edit_mode', 'builder'),
(270, 61, '_elementor_template_type', 'single-post'),
(271, 60, '_elementor_version', '3.31.3'),
(272, 60, '_elementor_pro_version', '3.31.2'),
(273, 60, '_edit_lock', '1756491474:1'),
(274, 60, '_wp_page_template', 'default'),
(275, 60, '_elementor_data', '[{"id":"253baa4","elType":"container","settings":{"flex_direction":"column","min_height":{"unit":"vh","size":"","sizes":[]},"min_height_tablet":{"unit":"vh","size":"","sizes":[]},"min_height_mobile":{"unit":"vh","size":"","sizes":[]},"jedv_conditions":[{"_id":"8fa3a71","jedv_condition":"user","jedv_user_role":"","jedv_user_id":"","jedv_field":"","jedv_value":"","jedv_context":"default","value_is-profile-page":"","query_id":"","terms_taxonomy":"","time_from":"","time_to":"","week_days":[],"item_number":"","each_item_number":"","jedv_data_type":"chars"},{"_id":"5a5cbe9","jedv_condition":"user-role","jedv_user_role":["subscriber"],"jedv_user_id":"","jedv_field":"","jedv_value":"","jedv_context":"default","value_is-profile-page":"","query_id":"","terms_taxonomy":"","time_from":"","time_to":"","week_days":[],"item_number":"","each_item_number":"","jedv_data_type":"chars"},{"_id":"71c9f85","jedv_condition":"switcher-disabled","__dynamic__":{"jedv_field":"[elementor-tag id=\\"34099b5\\" name=\\"jet-user-custom-field\\" settings=\\"%7B%22user_field%22%3A%22_status%22%7D\\"]"},"jedv_user_role":"","jedv_user_id":"","jedv_field":"","jedv_value":"","jedv_context":"default","value_is-profile-page":"","query_id":"","terms_taxonomy":"","time_from":"","time_to":"","week_days":[],"item_number":"","each_item_number":"","jedv_data_type":"chars"}],"padding":{"unit":"%","top":"2","right":"0","bottom":"5","left":"0","isLinked":false},"padding_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"jedv_enabled":"yes","z_index":0,"z_index_mobile":0,"jet_parallax_layout_list":[],"background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_gradient_position_tablet":"center center","background_gradient_position_mobile":"center center","background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_hover_gradient_position_tablet":"center center","background_hover_gradient_position_mobile":"center center","background_overlay_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_overlay_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_overlay_gradient_position_tablet":"center center","background_overlay_gradient_position_mobile":"center center","background_overlay_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_overlay_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_overlay_hover_gradient_position_tablet":"center center","background_overlay_hover_gradient_position_mobile":"center center","jedv_type":"show","jedv_relation":"AND"},"elements":[{"id":"25a4883","elType":"container","settings":{"jedv_conditions":[{"_id":"e16db6f","jedv_condition":"","jedv_user_role":"","jedv_user_id":"","jedv_field":"","jedv_value":"","jedv_context":"default","value_is-profile-page":"","query_id":"","terms_taxonomy":"","time_from":"","time_to":"","week_days":[],"item_number":"","each_item_number":"","jedv_data_type":"chars"}],"content_width":"full","padding":{"unit":"%","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"jet_parallax_layout_list":[],"background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_gradient_position_tablet":"center center","background_gradient_position_mobile":"center center","background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_hover_gradient_position_tablet":"center center","background_hover_gradient_position_mobile":"center center","background_overlay_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_overlay_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_overlay_gradient_position_tablet":"center center","background_overlay_gradient_position_mobile":"center center","background_overlay_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_overlay_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_overlay_hover_gradient_position_tablet":"center center","background_overlay_hover_gradient_position_mobile":"center center","jedv_enabled":"","jedv_type":"show","jedv_relation":"AND"},"elements":[{"id":"c726898","elType":"widget","settings":{"alert_type":"danger","alert_title":"Ops! Acesso Bloqueado","alert_description":"Parece que seu acesso foi bloqueado pelo administrador do site.\\n<br>\\nEntre em <a href=\\"mailto:[jet_engine  component=option page=site-config field=_email_admin]\\">CONTATO<\\/a> para reativar sua conta!","jedv_conditions":[{"_id":"742f363","jedv_condition":"","jedv_user_role":"","jedv_user_id":"","jedv_field":"","jedv_value":"","jedv_context":"default","value_is-profile-page":"","query_id":"","terms_taxonomy":"","time_from":"","time_to":"","week_days":[],"item_number":"","each_item_number":"","jedv_data_type":"chars"}],"__globals__":{"description_color":"globals\\/colors?id=secondary"},"alert_title_line_height":{"unit":"em","size":"","sizes":[]},"alert_title_word_spacing":{"unit":"em","size":"","sizes":[]},"alert_description_line_height":{"unit":"em","size":"","sizes":[]},"alert_description_word_spacing":{"unit":"em","size":"","sizes":[]},"jedv_enabled":"","jedv_type":"show","jedv_relation":"AND","_background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"_background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"_background_gradient_position_tablet":"center center","_background_gradient_position_mobile":"center center","_background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"_background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"_background_hover_gradient_position_tablet":"center center","_background_hover_gradient_position_mobile":"center center"},"elements":[],"widgetType":"alert"}],"isInner":true}],"isInner":false},{"id":"0ca7372","elType":"container","settings":{"flex_direction":"column","min_height":{"unit":"vh","size":65,"sizes":[]},"min_height_tablet":{"unit":"vh","size":"","sizes":[]},"min_height_mobile":{"unit":"vh","size":"","sizes":[]},"jedv_conditions":[{"_id":"8fa3a71","jedv_condition":"user","jedv_user_role":"","jedv_user_id":"","jedv_field":"","jedv_value":"","jedv_context":"default","value_is-profile-page":"","query_id":"","terms_taxonomy":"","time_from":"","time_to":"","week_days":[],"item_number":"","each_item_number":"","jedv_data_type":"chars"},{"_id":"5a5cbe9","jedv_condition":"user-role","jedv_user_role":["alunos"],"jedv_user_id":"","jedv_field":"","jedv_value":"","jedv_context":"default","value_is-profile-page":"","query_id":"","terms_taxonomy":"","time_from":"","time_to":"","week_days":[],"item_number":"","each_item_number":"","jedv_data_type":"chars"},{"_id":"71c9f85","jedv_condition":"switcher-enabled","__dynamic__":{"jedv_field":"[elementor-tag id=\\"34099b5\\" name=\\"jet-user-custom-field\\" settings=\\"%7B%22user_field%22%3A%22_status%22%7D\\"]"},"jedv_user_role":"","jedv_user_id":"","jedv_field":"","jedv_value":"","jedv_context":"default","value_is-profile-page":"","query_id":"","terms_taxonomy":"","time_from":"","time_to":"","week_days":[],"item_number":"","each_item_number":"","jedv_data_type":"chars"}],"padding":{"unit":"%","top":"2","right":"0","bottom":"5","left":"0","isLinked":false},"padding_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"jedv_enabled":"yes","z_index":0,"z_index_mobile":0,"jet_parallax_layout_list":[],"background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_gradient_position_tablet":"center center","background_gradient_position_mobile":"center center","background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_hover_gradient_position_tablet":"center center","background_hover_gradient_position_mobile":"center center","background_overlay_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_overlay_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_overlay_gradient_position_tablet":"center center","background_overlay_gradient_position_mobile":"center center","background_overlay_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_overlay_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_overlay_hover_gradient_position_tablet":"center center","background_overlay_hover_gradient_position_mobile":"center center","jedv_type":"show","jedv_relation":"AND"},"elements":[{"id":"a4f92de","elType":"container","settings":{"jedv_conditions":[{"_id":"e16db6f","jedv_condition":"","jedv_user_role":"","jedv_user_id":"","jedv_field":"","jedv_value":"","jedv_context":"default","value_is-profile-page":"","query_id":"","terms_taxonomy":"","time_from":"","time_to":"","week_days":[],"item_number":"","each_item_number":"","jedv_data_type":"chars"}],"flex_direction":"column","flex_justify_content":"center","flex_align_items":"flex-start","jet_parallax_layout_list":[],"background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_gradient_position_tablet":"center center","background_gradient_position_mobile":"center center","background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_hover_gradient_position_tablet":"center center","background_hover_gradient_position_mobile":"center center","background_overlay_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_overlay_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_overlay_gradient_position_tablet":"center center","background_overlay_gradient_position_mobile":"center center","background_overlay_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_overlay_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_overlay_hover_gradient_position_tablet":"center center","background_overlay_hover_gradient_position_mobile":"center center","jedv_enabled":"","jedv_type":"show","jedv_relation":"AND"},"elements":[{"id":"fc941aa","elType":"widget","settings":{"title":" \\u00e1rea do aluno","title_color":"#6EC1E4","typography_typography":"custom","typography_font_size":{"unit":"rem","size":1.6,"sizes":[]},"typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"typography_font_weight":"600","jedv_conditions":[{"_id":"fc523aa","jedv_condition":"","jedv_user_role":"","jedv_user_id":"","jedv_field":"","jedv_value":"","jedv_context":"default","value_is-profile-page":"","query_id":"","terms_taxonomy":"","time_from":"","time_to":"","week_days":[],"item_number":"","each_item_number":"","jedv_data_type":"chars"}],"__dynamic__":{"title_color":"[elementor-tag id=\\"f7b135c\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"typography_text_transform":"uppercase","typography_line_height":{"unit":"em","size":"","sizes":[]},"typography_word_spacing":{"unit":"em","size":"","sizes":[]},"jedv_enabled":"","jedv_type":"show","jedv_relation":"AND","_background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"_background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"_background_gradient_position_tablet":"center center","_background_gradient_position_mobile":"center center","_background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"_background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"_background_hover_gradient_position_tablet":"center center","_background_hover_gradient_position_mobile":"center center"},"elements":[],"widgetType":"heading"},{"id":"87aec3b","elType":"container","settings":{"content_width":"full","flex_align_items":"flex-start","jedv_conditions":[{"_id":"02f3a38","jedv_condition":"","jedv_user_role":"","jedv_user_id":"","jedv_field":"","jedv_value":"","jedv_context":"default","value_is-profile-page":"","query_id":"","terms_taxonomy":"","time_from":"","time_to":"","week_days":[],"item_number":"","each_item_number":"","jedv_data_type":"chars"}],"background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_gradient_position_tablet":"center center","background_gradient_position_mobile":"center center","background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_hover_gradient_position_tablet":"center center","background_hover_gradient_position_mobile":"center center","background_overlay_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_overlay_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_overlay_gradient_position_tablet":"center center","background_overlay_gradient_position_mobile":"center center","background_overlay_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_overlay_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_overlay_hover_gradient_position_tablet":"center center","background_overlay_hover_gradient_position_mobile":"center center","jedv_enabled":"","jedv_type":"show","jedv_relation":"AND"},"elements":[],"isInner":true}],"isInner":true},{"id":"86aa101","elType":"container","settings":{"flex_direction":"row","jedv_conditions":[{"_id":"e16db6f","jedv_condition":"","jedv_user_role":"","jedv_user_id":"","jedv_field":"","jedv_value":"","jedv_context":"default","value_is-profile-page":"","query_id":"","terms_taxonomy":"","time_from":"","time_to":"","week_days":[],"item_number":"","each_item_number":"","jedv_data_type":"chars"}],"jet_parallax_layout_list":[],"flex_justify_content":"space-evenly","flex_align_items":"center","flex_wrap":"nowrap","jedv_enabled":"yes","background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_gradient_position_tablet":"center center","background_gradient_position_mobile":"center center","background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_hover_gradient_position_tablet":"center center","background_hover_gradient_position_mobile":"center center","background_overlay_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_overlay_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_overlay_gradient_position_tablet":"center center","background_overlay_gradient_position_mobile":"center center","background_overlay_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_overlay_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_overlay_hover_gradient_position_tablet":"center center","background_overlay_hover_gradient_position_mobile":"center center","jedv_type":"show","jedv_relation":"AND"},"elements":[{"id":"34e70f7","elType":"container","settings":{"jedv_conditions":[{"_id":"99769cf","jedv_condition":"equal","jedv_user_role":"","jedv_user_id":"","jedv_field":"","jedv_value":"","jedv_context":"default","value_is-profile-page":"","query_id":"","terms_taxonomy":"","time_from":"","time_to":"","week_days":[],"item_number":"","each_item_number":"","jedv_data_type":"chars"}],"background_background":"classic","padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"__dynamic__":[],"flex_direction":"column","jet_parallax_layout_list":[],"jedv_enabled":"yes","background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_gradient_position_tablet":"center center","background_gradient_position_mobile":"center center","background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_hover_gradient_position_tablet":"center center","background_hover_gradient_position_mobile":"center center","background_overlay_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_overlay_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_overlay_gradient_position_tablet":"center center","background_overlay_gradient_position_mobile":"center center","background_overlay_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_overlay_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_overlay_hover_gradient_position_tablet":"center center","background_overlay_hover_gradient_position_mobile":"center center","jedv_type":"show","jedv_relation":"AND"},"elements":[{"id":"f340388","elType":"container","settings":{"jedv_conditions":[{"_id":"e16db6f","jedv_condition":"","jedv_user_role":"","jedv_user_id":"","jedv_field":"","jedv_value":"","jedv_context":"default","value_is-profile-page":"","query_id":"","terms_taxonomy":"","time_from":"","time_to":"","week_days":[],"item_number":"","each_item_number":"","jedv_data_type":"chars"}],"jet_parallax_layout_list":[],"content_width":"full","flex_direction":"row","flex_justify_content":"space-between","background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_gradient_position_tablet":"center center","background_gradient_position_mobile":"center center","background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_hover_gradient_position_tablet":"center center","background_hover_gradient_position_mobile":"center center","background_overlay_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_overlay_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_overlay_gradient_position_tablet":"center center","background_overlay_gradient_position_mobile":"center center","background_overlay_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_overlay_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_overlay_hover_gradient_position_tablet":"center center","background_overlay_hover_gradient_position_mobile":"center center","jedv_enabled":"","jedv_type":"show","jedv_relation":"AND"},"elements":[{"id":"6188e94","elType":"widget","settings":{"text":"Instru\\u00e7\\u00f5es","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8","jedv_condition":"","jedv_user_role":"","jedv_user_id":"","jedv_field":"","jedv_value":"","jedv_context":"default","value_is-profile-page":"","query_id":"","terms_taxonomy":"","time_from":"","time_to":"","week_days":[],"item_number":"","each_item_number":"","jedv_data_type":"chars"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"typography_line_height":{"unit":"em","size":"","sizes":[]},"typography_word_spacing":{"unit":"em","size":"","sizes":[]},"background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_gradient_position_tablet":"center center","background_gradient_position_mobile":"center center","button_background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"button_background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"button_background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"button_background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"button_background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"button_background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"button_background_hover_gradient_position_tablet":"center center","button_background_hover_gradient_position_mobile":"center center","jedv_enabled":"","jedv_type":"show","jedv_relation":"AND","_background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"_background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"_background_gradient_position_tablet":"center center","_background_gradient_position_mobile":"center center","_background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"_background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"_background_hover_gradient_position_tablet":"center center","_background_hover_gradient_position_mobile":"center center"},"elements":[],"widgetType":"button"},{"id":"db9faa9","elType":"widget","settings":{"text":"DGR","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8","jedv_condition":"","jedv_user_role":"","jedv_user_id":"","jedv_field":"","jedv_value":"","jedv_context":"default","value_is-profile-page":"","query_id":"","terms_taxonomy":"","time_from":"","time_to":"","week_days":[],"item_number":"","each_item_number":"","jedv_data_type":"chars"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"typography_line_height":{"unit":"em","size":"","sizes":[]},"typography_word_spacing":{"unit":"em","size":"","sizes":[]},"background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_gradient_position_tablet":"center center","background_gradient_position_mobile":"center center","button_background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"button_background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"button_background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"button_background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"button_background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"button_background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"button_background_hover_gradient_position_tablet":"center center","button_background_hover_gradient_position_mobile":"center center","jedv_enabled":"","jedv_type":"show","jedv_relation":"AND","_background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"_background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"_background_gradient_position_tablet":"center center","_background_gradient_position_mobile":"center center","_background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"_background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"_background_hover_gradient_position_tablet":"center center","_background_hover_gradient_position_mobile":"center center"},"elements":[],"widgetType":"button"},{"id":"aff11c2","elType":"widget","settings":{"text":"Material de apoio","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8","jedv_condition":"","jedv_user_role":"","jedv_user_id":"","jedv_field":"","jedv_value":"","jedv_context":"default","value_is-profile-page":"","query_id":"","terms_taxonomy":"","time_from":"","time_to":"","week_days":[],"item_number":"","each_item_number":"","jedv_data_type":"chars"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"typography_line_height":{"unit":"em","size":"","sizes":[]},"typography_word_spacing":{"unit":"em","size":"","sizes":[]},"background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_gradient_position_tablet":"center center","background_gradient_position_mobile":"center center","button_background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"button_background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"button_background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"button_background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"button_background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"button_background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"button_background_hover_gradient_position_tablet":"center center","button_background_hover_gradient_position_mobile":"center center","jedv_enabled":"","jedv_type":"show","jedv_relation":"AND","_background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"_background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"_background_gradient_position_tablet":"center center","_background_gradient_position_mobile":"center center","_background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"_background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"_background_hover_gradient_position_tablet":"center center","_background_hover_gradient_position_mobile":"center center"},"elements":[],"widgetType":"button"},{"id":"2b78f6b","elType":"widget","settings":{"text":"Formul\\u00e1rios","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8","jedv_condition":"","jedv_user_role":"","jedv_user_id":"","jedv_field":"","jedv_value":"","jedv_context":"default","value_is-profile-page":"","query_id":"","terms_taxonomy":"","time_from":"","time_to":"","week_days":[],"item_number":"","each_item_number":"","jedv_data_type":"chars"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"typography_line_height":{"unit":"em","size":"","sizes":[]},"typography_word_spacing":{"unit":"em","size":"","sizes":[]},"background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_gradient_position_tablet":"center center","background_gradient_position_mobile":"center center","button_background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"button_background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"button_background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"button_background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"button_background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"button_background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"button_background_hover_gradient_position_tablet":"center center","button_background_hover_gradient_position_mobile":"center center","jedv_enabled":"","jedv_type":"show","jedv_relation":"AND","_background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"_background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"_background_gradient_position_tablet":"center center","_background_gradient_position_mobile":"center center","_background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"_background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"_background_hover_gradient_position_tablet":"center center","_background_hover_gradient_position_mobile":"center center"},"elements":[],"widgetType":"button"},{"id":"961ab82","elType":"widget","settings":{"text":"Confirmar presen\\u00e7a","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8","jedv_condition":"","jedv_user_role":"","jedv_user_id":"","jedv_field":"","jedv_value":"","jedv_context":"default","value_is-profile-page":"","query_id":"","terms_taxonomy":"","time_from":"","time_to":"","week_days":[],"item_number":"","each_item_number":"","jedv_data_type":"chars"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"typography_line_height":{"unit":"em","size":"","sizes":[]},"typography_word_spacing":{"unit":"em","size":"","sizes":[]},"background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_gradient_position_tablet":"center center","background_gradient_position_mobile":"center center","button_background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"button_background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"button_background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"button_background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"button_background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"button_background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"button_background_hover_gradient_position_tablet":"center center","button_background_hover_gradient_position_mobile":"center center","jedv_enabled":"","jedv_type":"show","jedv_relation":"AND","_background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"_background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"_background_gradient_position_tablet":"center center","_background_gradient_position_mobile":"center center","_background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"_background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"_background_hover_gradient_position_tablet":"center center","_background_hover_gradient_position_mobile":"center center"},"elements":[],"widgetType":"button"},{"id":"bae1ee0","elType":"widget","settings":{"text":"Exames","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8","jedv_condition":"","jedv_user_role":"","jedv_user_id":"","jedv_field":"","jedv_value":"","jedv_context":"default","value_is-profile-page":"","query_id":"","terms_taxonomy":"","time_from":"","time_to":"","week_days":[],"item_number":"","each_item_number":"","jedv_data_type":"chars"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"typography_line_height":{"unit":"em","size":"","sizes":[]},"typography_word_spacing":{"unit":"em","size":"","sizes":[]},"background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_gradient_position_tablet":"center center","background_gradient_position_mobile":"center center","button_background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"button_background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"button_background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"button_background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"button_background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"button_background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"button_background_hover_gradient_position_tablet":"center center","button_background_hover_gradient_position_mobile":"center center","jedv_enabled":"","jedv_type":"show","jedv_relation":"AND","_background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"_background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"_background_gradient_position_tablet":"center center","_background_gradient_position_mobile":"center center","_background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"_background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"_background_hover_gradient_position_tablet":"center center","_background_hover_gradient_position_mobile":"center center"},"elements":[],"widgetType":"button"}],"isInner":true},{"id":"a8830d0","elType":"container","settings":{"jedv_conditions":[{"_id":"284d583","jedv_condition":"","jedv_user_role":"","jedv_user_id":"","jedv_field":"","jedv_value":"","jedv_context":"default","value_is-profile-page":"","query_id":"","terms_taxonomy":"","time_from":"","time_to":"","week_days":[],"item_number":"","each_item_number":"","jedv_data_type":"chars"}],"jet_parallax_layout_list":[],"background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_gradient_position_tablet":"center center","background_gradient_position_mobile":"center center","background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_hover_gradient_position_tablet":"center center","background_hover_gradient_position_mobile":"center center","background_overlay_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_overlay_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_overlay_gradient_position_tablet":"center center","background_overlay_gradient_position_mobile":"center center","background_overlay_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_overlay_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_overlay_hover_gradient_position_tablet":"center center","background_overlay_hover_gradient_position_mobile":"center center","jedv_enabled":"","jedv_type":"show","jedv_relation":"AND"},"elements":[{"id":"e04cbfe","elType":"widget","settings":{"title":"Seja muito bem-vindo a \\u00c1rea do Aluno!","align":"center","jedv_conditions":[{"_id":"1cfb1b3","jedv_condition":"","jedv_user_role":"","jedv_user_id":"","jedv_field":"","jedv_value":"","jedv_context":"default","value_is-profile-page":"","query_id":"","terms_taxonomy":"","time_from":"","time_to":"","week_days":[],"item_number":"","each_item_number":"","jedv_data_type":"chars"}],"__globals__":{"title_color":"globals\\/colors?id=secondary"},"typography_line_height":{"unit":"em","size":"","sizes":[]},"typography_word_spacing":{"unit":"em","size":"","sizes":[]},"jedv_enabled":"","jedv_type":"show","jedv_relation":"AND","_background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"_background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"_background_gradient_position_tablet":"center center","_background_gradient_position_mobile":"center center","_background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"_background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"_background_hover_gradient_position_tablet":"center center","_background_hover_gradient_position_mobile":"center center"},"elements":[],"widgetType":"heading"},{"id":"c523351","elType":"widget","settings":{"editor":"<p><strong>\\u00c9 um prazer t\\u00ea-lo conosco nessa importante jornada de aprendizado. Ao longo deste curso, voc\\u00ea ter\\u00e1 acesso a conte\\u00fados essenciais sobre o manuseio, transporte e armazenamento de materiais perigosos, sempre em conformidade com as normas nacionais e internacionais.<\\/strong><\\/p><p><strong>Nosso curso ser\\u00e1 realizado atrav\\u00e9s da plataforma Google Meet, proporcionando uma experi\\u00eancia de aprendizado interativa e flex\\u00edvel. Seguimos rigorosamente as determina\\u00e7\\u00f5es previstas na IS n.\\u00ba 175-002J (ANAC) e no \\"DANGEROUS GOODS TRAINING GUIDANCE, EDITION 1\\" (IATA), garantindo que voc\\u00ea tenha acesso ao conte\\u00fado mais atualizado e relevante.<\\/strong><\\/p><p><strong>Curso ministrado na modalidade n\\u00e3o presencial s\\u00edncrono (online).<\\/strong><\\/p><p><strong>O curso ser\\u00e1 ministrado por Cicero Melo, instrutor de Artigos Perigosos e piloto com 30 anos de experi\\u00eancia. Cicero \\u00e9 homologado pela ANAC e pela IATA desde 2008, trazendo um vasto conhecimento pr\\u00e1tico e te\\u00f3rico para enriquecer sua aprendizagem.<\\/strong><\\/p><p><strong>Estamos \\u00e0 disposi\\u00e7\\u00e3o para qualquer d\\u00favida ou esclarecimento. Aproveite ao m\\u00e1ximo essa experi\\u00eancia e desejamos a voc\\u00ea um excelente aprendizado!<\\/strong><\\/p>","align":"center","jedv_conditions":[{"_id":"a6c9240","jedv_condition":"","jedv_user_role":"","jedv_user_id":"","jedv_field":"","jedv_value":"","jedv_context":"default","value_is-profile-page":"","query_id":"","terms_taxonomy":"","time_from":"","time_to":"","week_days":[],"item_number":"","each_item_number":"","jedv_data_type":"chars"}],"typography_line_height":{"unit":"em","size":"","sizes":[]},"typography_word_spacing":{"unit":"em","size":"","sizes":[]},"drop_cap_typography_line_height":{"unit":"em","size":"","sizes":[]},"drop_cap_typography_word_spacing":{"unit":"em","size":"","sizes":[]},"jedv_enabled":"","jedv_type":"show","jedv_relation":"AND","_background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"_background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"_background_gradient_position_tablet":"center center","_background_gradient_position_mobile":"center center","_background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"_background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"_background_hover_gradient_position_tablet":"center center","_background_hover_gradient_position_mobile":"center center"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":true}],"isInner":false}]');
INSERT INTO `wpmr_postmeta` VALUES
(276, 62, '_elementor_edit_mode', 'builder'),
(277, 62, '_elementor_template_type', 'single-post'),
(278, 62, '_elementor_version', '3.31.3'),
(279, 62, '_elementor_pro_version', '3.31.2'),
(280, 62, '_wp_page_template', 'default'),
(281, 62, '_elementor_data', '[{"id":"253baa4","elType":"container","settings":{"flex_direction":"column","min_height":{"unit":"vh","size":"","sizes":[]},"min_height_tablet":{"unit":"vh","size":"","sizes":[]},"min_height_mobile":{"unit":"vh","size":"","sizes":[]},"jedv_conditions":[{"_id":"8fa3a71","jedv_condition":"user","jedv_user_role":"","jedv_user_id":"","jedv_field":"","jedv_value":"","jedv_context":"default","value_is-profile-page":"","query_id":"","terms_taxonomy":"","time_from":"","time_to":"","week_days":[],"item_number":"","each_item_number":"","jedv_data_type":"chars"},{"_id":"5a5cbe9","jedv_condition":"user-role","jedv_user_role":["subscriber"],"jedv_user_id":"","jedv_field":"","jedv_value":"","jedv_context":"default","value_is-profile-page":"","query_id":"","terms_taxonomy":"","time_from":"","time_to":"","week_days":[],"item_number":"","each_item_number":"","jedv_data_type":"chars"},{"_id":"71c9f85","jedv_condition":"switcher-disabled","__dynamic__":{"jedv_field":"[elementor-tag id=\\"34099b5\\" name=\\"jet-user-custom-field\\" settings=\\"%7B%22user_field%22%3A%22_status%22%7D\\"]"},"jedv_user_role":"","jedv_user_id":"","jedv_field":"","jedv_value":"","jedv_context":"default","value_is-profile-page":"","query_id":"","terms_taxonomy":"","time_from":"","time_to":"","week_days":[],"item_number":"","each_item_number":"","jedv_data_type":"chars"}],"padding":{"unit":"%","top":"2","right":"0","bottom":"5","left":"0","isLinked":false},"padding_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"jedv_enabled":"yes","z_index":0,"z_index_mobile":0,"jet_parallax_layout_list":[],"background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_gradient_position_tablet":"center center","background_gradient_position_mobile":"center center","background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_hover_gradient_position_tablet":"center center","background_hover_gradient_position_mobile":"center center","background_overlay_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_overlay_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_overlay_gradient_position_tablet":"center center","background_overlay_gradient_position_mobile":"center center","background_overlay_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_overlay_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_overlay_hover_gradient_position_tablet":"center center","background_overlay_hover_gradient_position_mobile":"center center","jedv_type":"show","jedv_relation":"AND"},"elements":[{"id":"25a4883","elType":"container","settings":{"jedv_conditions":[{"_id":"e16db6f","jedv_condition":"","jedv_user_role":"","jedv_user_id":"","jedv_field":"","jedv_value":"","jedv_context":"default","value_is-profile-page":"","query_id":"","terms_taxonomy":"","time_from":"","time_to":"","week_days":[],"item_number":"","each_item_number":"","jedv_data_type":"chars"}],"content_width":"full","padding":{"unit":"%","top":"5","right":"5","bottom":"5","left":"5","isLinked":true},"padding_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"jet_parallax_layout_list":[],"background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_gradient_position_tablet":"center center","background_gradient_position_mobile":"center center","background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_hover_gradient_position_tablet":"center center","background_hover_gradient_position_mobile":"center center","background_overlay_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_overlay_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_overlay_gradient_position_tablet":"center center","background_overlay_gradient_position_mobile":"center center","background_overlay_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_overlay_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_overlay_hover_gradient_position_tablet":"center center","background_overlay_hover_gradient_position_mobile":"center center","jedv_enabled":"","jedv_type":"show","jedv_relation":"AND"},"elements":[{"id":"c726898","elType":"widget","settings":{"alert_type":"danger","alert_title":"Ops! Acesso Bloqueado","alert_description":"Parece que seu acesso foi bloqueado pelo administrador do site.\\n<br>\\nEntre em <a href=\\"mailto:[jet_engine  component=option page=site-config field=_email_admin]\\">CONTATO<\\/a> para reativar sua conta!","jedv_conditions":[{"_id":"742f363","jedv_condition":"","jedv_user_role":"","jedv_user_id":"","jedv_field":"","jedv_value":"","jedv_context":"default","value_is-profile-page":"","query_id":"","terms_taxonomy":"","time_from":"","time_to":"","week_days":[],"item_number":"","each_item_number":"","jedv_data_type":"chars"}],"__globals__":{"description_color":"globals\\/colors?id=secondary"},"alert_title_line_height":{"unit":"em","size":"","sizes":[]},"alert_title_word_spacing":{"unit":"em","size":"","sizes":[]},"alert_description_line_height":{"unit":"em","size":"","sizes":[]},"alert_description_word_spacing":{"unit":"em","size":"","sizes":[]},"jedv_enabled":"","jedv_type":"show","jedv_relation":"AND","_background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"_background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"_background_gradient_position_tablet":"center center","_background_gradient_position_mobile":"center center","_background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"_background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"_background_hover_gradient_position_tablet":"center center","_background_hover_gradient_position_mobile":"center center"},"elements":[],"widgetType":"alert"}],"isInner":true}],"isInner":false},{"id":"0ca7372","elType":"container","settings":{"flex_direction":"column","min_height":{"unit":"vh","size":65,"sizes":[]},"min_height_tablet":{"unit":"vh","size":"","sizes":[]},"min_height_mobile":{"unit":"vh","size":"","sizes":[]},"jedv_conditions":[{"_id":"8fa3a71","jedv_condition":"user","jedv_user_role":"","jedv_user_id":"","jedv_field":"","jedv_value":"","jedv_context":"default","value_is-profile-page":"","query_id":"","terms_taxonomy":"","time_from":"","time_to":"","week_days":[],"item_number":"","each_item_number":"","jedv_data_type":"chars"},{"_id":"5a5cbe9","jedv_condition":"user-role","jedv_user_role":["alunos"],"jedv_user_id":"","jedv_field":"","jedv_value":"","jedv_context":"default","value_is-profile-page":"","query_id":"","terms_taxonomy":"","time_from":"","time_to":"","week_days":[],"item_number":"","each_item_number":"","jedv_data_type":"chars"},{"_id":"71c9f85","jedv_condition":"switcher-enabled","__dynamic__":{"jedv_field":"[elementor-tag id=\\"34099b5\\" name=\\"jet-user-custom-field\\" settings=\\"%7B%22user_field%22%3A%22_status%22%7D\\"]"},"jedv_user_role":"","jedv_user_id":"","jedv_field":"","jedv_value":"","jedv_context":"default","value_is-profile-page":"","query_id":"","terms_taxonomy":"","time_from":"","time_to":"","week_days":[],"item_number":"","each_item_number":"","jedv_data_type":"chars"}],"padding":{"unit":"%","top":"2","right":"0","bottom":"5","left":"0","isLinked":false},"padding_tablet":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"padding_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"jedv_enabled":"yes","z_index":0,"z_index_mobile":0,"jet_parallax_layout_list":[],"background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_gradient_position_tablet":"center center","background_gradient_position_mobile":"center center","background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_hover_gradient_position_tablet":"center center","background_hover_gradient_position_mobile":"center center","background_overlay_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_overlay_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_overlay_gradient_position_tablet":"center center","background_overlay_gradient_position_mobile":"center center","background_overlay_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_overlay_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_overlay_hover_gradient_position_tablet":"center center","background_overlay_hover_gradient_position_mobile":"center center","jedv_type":"show","jedv_relation":"AND"},"elements":[{"id":"a4f92de","elType":"container","settings":{"jedv_conditions":[{"_id":"e16db6f","jedv_condition":"","jedv_user_role":"","jedv_user_id":"","jedv_field":"","jedv_value":"","jedv_context":"default","value_is-profile-page":"","query_id":"","terms_taxonomy":"","time_from":"","time_to":"","week_days":[],"item_number":"","each_item_number":"","jedv_data_type":"chars"}],"flex_direction":"column","flex_justify_content":"center","flex_align_items":"flex-start","jet_parallax_layout_list":[],"background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_gradient_position_tablet":"center center","background_gradient_position_mobile":"center center","background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_hover_gradient_position_tablet":"center center","background_hover_gradient_position_mobile":"center center","background_overlay_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_overlay_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_overlay_gradient_position_tablet":"center center","background_overlay_gradient_position_mobile":"center center","background_overlay_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_overlay_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_overlay_hover_gradient_position_tablet":"center center","background_overlay_hover_gradient_position_mobile":"center center","jedv_enabled":"","jedv_type":"show","jedv_relation":"AND"},"elements":[{"id":"fc941aa","elType":"widget","settings":{"title":" \\u00e1rea do aluno","title_color":"#6EC1E4","typography_typography":"custom","typography_font_size":{"unit":"rem","size":1.6,"sizes":[]},"typography_font_size_tablet":{"unit":"rem","size":"","sizes":[]},"typography_font_size_mobile":{"unit":"rem","size":"","sizes":[]},"typography_font_weight":"600","jedv_conditions":[{"_id":"fc523aa","jedv_condition":"","jedv_user_role":"","jedv_user_id":"","jedv_field":"","jedv_value":"","jedv_context":"default","value_is-profile-page":"","query_id":"","terms_taxonomy":"","time_from":"","time_to":"","week_days":[],"item_number":"","each_item_number":"","jedv_data_type":"chars"}],"__dynamic__":{"title_color":"[elementor-tag id=\\"f7b135c\\" name=\\"jet-options-page\\" settings=\\"%7B%22option_field%22%3A%22site-config%3A%3A_cor8%22%7D\\"]"},"typography_text_transform":"uppercase","typography_line_height":{"unit":"em","size":"","sizes":[]},"typography_word_spacing":{"unit":"em","size":"","sizes":[]},"jedv_enabled":"","jedv_type":"show","jedv_relation":"AND","_background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"_background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"_background_gradient_position_tablet":"center center","_background_gradient_position_mobile":"center center","_background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"_background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"_background_hover_gradient_position_tablet":"center center","_background_hover_gradient_position_mobile":"center center"},"elements":[],"widgetType":"heading"},{"id":"87aec3b","elType":"container","settings":{"content_width":"full","flex_align_items":"flex-start","jedv_conditions":[{"_id":"02f3a38","jedv_condition":"","jedv_user_role":"","jedv_user_id":"","jedv_field":"","jedv_value":"","jedv_context":"default","value_is-profile-page":"","query_id":"","terms_taxonomy":"","time_from":"","time_to":"","week_days":[],"item_number":"","each_item_number":"","jedv_data_type":"chars"}],"background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_gradient_position_tablet":"center center","background_gradient_position_mobile":"center center","background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_hover_gradient_position_tablet":"center center","background_hover_gradient_position_mobile":"center center","background_overlay_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_overlay_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_overlay_gradient_position_tablet":"center center","background_overlay_gradient_position_mobile":"center center","background_overlay_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_overlay_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_overlay_hover_gradient_position_tablet":"center center","background_overlay_hover_gradient_position_mobile":"center center","jedv_enabled":"","jedv_type":"show","jedv_relation":"AND"},"elements":[],"isInner":true}],"isInner":true},{"id":"86aa101","elType":"container","settings":{"flex_direction":"row","jedv_conditions":[{"_id":"e16db6f","jedv_condition":"","jedv_user_role":"","jedv_user_id":"","jedv_field":"","jedv_value":"","jedv_context":"default","value_is-profile-page":"","query_id":"","terms_taxonomy":"","time_from":"","time_to":"","week_days":[],"item_number":"","each_item_number":"","jedv_data_type":"chars"}],"jet_parallax_layout_list":[],"flex_justify_content":"space-evenly","flex_align_items":"center","flex_wrap":"nowrap","jedv_enabled":"yes","background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_gradient_position_tablet":"center center","background_gradient_position_mobile":"center center","background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_hover_gradient_position_tablet":"center center","background_hover_gradient_position_mobile":"center center","background_overlay_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_overlay_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_overlay_gradient_position_tablet":"center center","background_overlay_gradient_position_mobile":"center center","background_overlay_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_overlay_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_overlay_hover_gradient_position_tablet":"center center","background_overlay_hover_gradient_position_mobile":"center center","jedv_type":"show","jedv_relation":"AND"},"elements":[{"id":"34e70f7","elType":"container","settings":{"jedv_conditions":[{"_id":"99769cf","jedv_condition":"equal","jedv_user_role":"","jedv_user_id":"","jedv_field":"","jedv_value":"","jedv_context":"default","value_is-profile-page":"","query_id":"","terms_taxonomy":"","time_from":"","time_to":"","week_days":[],"item_number":"","each_item_number":"","jedv_data_type":"chars"}],"background_background":"classic","padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"__dynamic__":[],"flex_direction":"column","jet_parallax_layout_list":[],"jedv_enabled":"yes","background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_gradient_position_tablet":"center center","background_gradient_position_mobile":"center center","background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_hover_gradient_position_tablet":"center center","background_hover_gradient_position_mobile":"center center","background_overlay_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_overlay_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_overlay_gradient_position_tablet":"center center","background_overlay_gradient_position_mobile":"center center","background_overlay_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_overlay_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_overlay_hover_gradient_position_tablet":"center center","background_overlay_hover_gradient_position_mobile":"center center","jedv_type":"show","jedv_relation":"AND"},"elements":[{"id":"f340388","elType":"container","settings":{"jedv_conditions":[{"_id":"e16db6f","jedv_condition":"","jedv_user_role":"","jedv_user_id":"","jedv_field":"","jedv_value":"","jedv_context":"default","value_is-profile-page":"","query_id":"","terms_taxonomy":"","time_from":"","time_to":"","week_days":[],"item_number":"","each_item_number":"","jedv_data_type":"chars"}],"jet_parallax_layout_list":[],"content_width":"full","flex_direction":"row","flex_justify_content":"space-between","background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_gradient_position_tablet":"center center","background_gradient_position_mobile":"center center","background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_hover_gradient_position_tablet":"center center","background_hover_gradient_position_mobile":"center center","background_overlay_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_overlay_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_overlay_gradient_position_tablet":"center center","background_overlay_gradient_position_mobile":"center center","background_overlay_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_overlay_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_overlay_hover_gradient_position_tablet":"center center","background_overlay_hover_gradient_position_mobile":"center center","jedv_enabled":"","jedv_type":"show","jedv_relation":"AND"},"elements":[{"id":"6188e94","elType":"widget","settings":{"text":"Instru\\u00e7\\u00f5es","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8","jedv_condition":"","jedv_user_role":"","jedv_user_id":"","jedv_field":"","jedv_value":"","jedv_context":"default","value_is-profile-page":"","query_id":"","terms_taxonomy":"","time_from":"","time_to":"","week_days":[],"item_number":"","each_item_number":"","jedv_data_type":"chars"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"typography_line_height":{"unit":"em","size":"","sizes":[]},"typography_word_spacing":{"unit":"em","size":"","sizes":[]},"background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_gradient_position_tablet":"center center","background_gradient_position_mobile":"center center","button_background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"button_background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"button_background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"button_background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"button_background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"button_background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"button_background_hover_gradient_position_tablet":"center center","button_background_hover_gradient_position_mobile":"center center","jedv_enabled":"","jedv_type":"show","jedv_relation":"AND","_background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"_background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"_background_gradient_position_tablet":"center center","_background_gradient_position_mobile":"center center","_background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"_background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"_background_hover_gradient_position_tablet":"center center","_background_hover_gradient_position_mobile":"center center"},"elements":[],"widgetType":"button"},{"id":"db9faa9","elType":"widget","settings":{"text":"DGR","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8","jedv_condition":"","jedv_user_role":"","jedv_user_id":"","jedv_field":"","jedv_value":"","jedv_context":"default","value_is-profile-page":"","query_id":"","terms_taxonomy":"","time_from":"","time_to":"","week_days":[],"item_number":"","each_item_number":"","jedv_data_type":"chars"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"typography_line_height":{"unit":"em","size":"","sizes":[]},"typography_word_spacing":{"unit":"em","size":"","sizes":[]},"background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_gradient_position_tablet":"center center","background_gradient_position_mobile":"center center","button_background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"button_background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"button_background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"button_background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"button_background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"button_background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"button_background_hover_gradient_position_tablet":"center center","button_background_hover_gradient_position_mobile":"center center","jedv_enabled":"","jedv_type":"show","jedv_relation":"AND","_background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"_background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"_background_gradient_position_tablet":"center center","_background_gradient_position_mobile":"center center","_background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"_background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"_background_hover_gradient_position_tablet":"center center","_background_hover_gradient_position_mobile":"center center"},"elements":[],"widgetType":"button"},{"id":"aff11c2","elType":"widget","settings":{"text":"Material de apoio","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8","jedv_condition":"","jedv_user_role":"","jedv_user_id":"","jedv_field":"","jedv_value":"","jedv_context":"default","value_is-profile-page":"","query_id":"","terms_taxonomy":"","time_from":"","time_to":"","week_days":[],"item_number":"","each_item_number":"","jedv_data_type":"chars"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"typography_line_height":{"unit":"em","size":"","sizes":[]},"typography_word_spacing":{"unit":"em","size":"","sizes":[]},"background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_gradient_position_tablet":"center center","background_gradient_position_mobile":"center center","button_background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"button_background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"button_background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"button_background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"button_background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"button_background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"button_background_hover_gradient_position_tablet":"center center","button_background_hover_gradient_position_mobile":"center center","jedv_enabled":"","jedv_type":"show","jedv_relation":"AND","_background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"_background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"_background_gradient_position_tablet":"center center","_background_gradient_position_mobile":"center center","_background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"_background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"_background_hover_gradient_position_tablet":"center center","_background_hover_gradient_position_mobile":"center center"},"elements":[],"widgetType":"button"},{"id":"2b78f6b","elType":"widget","settings":{"text":"Formul\\u00e1rios","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8","jedv_condition":"","jedv_user_role":"","jedv_user_id":"","jedv_field":"","jedv_value":"","jedv_context":"default","value_is-profile-page":"","query_id":"","terms_taxonomy":"","time_from":"","time_to":"","week_days":[],"item_number":"","each_item_number":"","jedv_data_type":"chars"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"typography_line_height":{"unit":"em","size":"","sizes":[]},"typography_word_spacing":{"unit":"em","size":"","sizes":[]},"background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_gradient_position_tablet":"center center","background_gradient_position_mobile":"center center","button_background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"button_background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"button_background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"button_background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"button_background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"button_background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"button_background_hover_gradient_position_tablet":"center center","button_background_hover_gradient_position_mobile":"center center","jedv_enabled":"","jedv_type":"show","jedv_relation":"AND","_background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"_background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"_background_gradient_position_tablet":"center center","_background_gradient_position_mobile":"center center","_background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"_background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"_background_hover_gradient_position_tablet":"center center","_background_hover_gradient_position_mobile":"center center"},"elements":[],"widgetType":"button"},{"id":"961ab82","elType":"widget","settings":{"text":"Confirmar presen\\u00e7a","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8","jedv_condition":"","jedv_user_role":"","jedv_user_id":"","jedv_field":"","jedv_value":"","jedv_context":"default","value_is-profile-page":"","query_id":"","terms_taxonomy":"","time_from":"","time_to":"","week_days":[],"item_number":"","each_item_number":"","jedv_data_type":"chars"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"typography_line_height":{"unit":"em","size":"","sizes":[]},"typography_word_spacing":{"unit":"em","size":"","sizes":[]},"background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_gradient_position_tablet":"center center","background_gradient_position_mobile":"center center","button_background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"button_background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"button_background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"button_background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"button_background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"button_background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"button_background_hover_gradient_position_tablet":"center center","button_background_hover_gradient_position_mobile":"center center","jedv_enabled":"","jedv_type":"show","jedv_relation":"AND","_background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"_background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"_background_gradient_position_tablet":"center center","_background_gradient_position_mobile":"center center","_background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"_background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"_background_hover_gradient_position_tablet":"center center","_background_hover_gradient_position_mobile":"center center"},"elements":[],"widgetType":"button"},{"id":"bae1ee0","elType":"widget","settings":{"text":"Exames","background_background":"gradient","background_color":"#6EC1E4","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#2E87AD","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"jedv_conditions":[{"_id":"d913fe8","jedv_condition":"","jedv_user_role":"","jedv_user_id":"","jedv_field":"","jedv_value":"","jedv_context":"default","value_is-profile-page":"","query_id":"","terms_taxonomy":"","time_from":"","time_to":"","week_days":[],"item_number":"","each_item_number":"","jedv_data_type":"chars"}],"__dynamic__":[],"__globals__":{"background_color":"globals\\/colors?id=primary","background_color_b":""},"typography_line_height":{"unit":"em","size":"","sizes":[]},"typography_word_spacing":{"unit":"em","size":"","sizes":[]},"background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_gradient_position_tablet":"center center","background_gradient_position_mobile":"center center","button_background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"button_background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"button_background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"button_background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"button_background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"button_background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"button_background_hover_gradient_position_tablet":"center center","button_background_hover_gradient_position_mobile":"center center","jedv_enabled":"","jedv_type":"show","jedv_relation":"AND","_background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"_background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"_background_gradient_position_tablet":"center center","_background_gradient_position_mobile":"center center","_background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"_background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"_background_hover_gradient_position_tablet":"center center","_background_hover_gradient_position_mobile":"center center"},"elements":[],"widgetType":"button"}],"isInner":true},{"id":"a8830d0","elType":"container","settings":{"jedv_conditions":[{"_id":"284d583","jedv_condition":"","jedv_user_role":"","jedv_user_id":"","jedv_field":"","jedv_value":"","jedv_context":"default","value_is-profile-page":"","query_id":"","terms_taxonomy":"","time_from":"","time_to":"","week_days":[],"item_number":"","each_item_number":"","jedv_data_type":"chars"}],"jet_parallax_layout_list":[],"background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_gradient_position_tablet":"center center","background_gradient_position_mobile":"center center","background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_hover_gradient_position_tablet":"center center","background_hover_gradient_position_mobile":"center center","background_overlay_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_overlay_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_overlay_gradient_position_tablet":"center center","background_overlay_gradient_position_mobile":"center center","background_overlay_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"background_overlay_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"background_overlay_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"background_overlay_hover_gradient_position_tablet":"center center","background_overlay_hover_gradient_position_mobile":"center center","jedv_enabled":"","jedv_type":"show","jedv_relation":"AND"},"elements":[{"id":"e04cbfe","elType":"widget","settings":{"title":"Seja muito bem-vindo a \\u00c1rea do Aluno!","align":"center","jedv_conditions":[{"_id":"1cfb1b3","jedv_condition":"","jedv_user_role":"","jedv_user_id":"","jedv_field":"","jedv_value":"","jedv_context":"default","value_is-profile-page":"","query_id":"","terms_taxonomy":"","time_from":"","time_to":"","week_days":[],"item_number":"","each_item_number":"","jedv_data_type":"chars"}],"__globals__":{"title_color":"globals\\/colors?id=secondary"},"typography_line_height":{"unit":"em","size":"","sizes":[]},"typography_word_spacing":{"unit":"em","size":"","sizes":[]},"jedv_enabled":"","jedv_type":"show","jedv_relation":"AND","_background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"_background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"_background_gradient_position_tablet":"center center","_background_gradient_position_mobile":"center center","_background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"_background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"_background_hover_gradient_position_tablet":"center center","_background_hover_gradient_position_mobile":"center center"},"elements":[],"widgetType":"heading"},{"id":"c523351","elType":"widget","settings":{"editor":"<p><strong>\\u00c9 um prazer t\\u00ea-lo conosco nessa importante jornada de aprendizado. Ao longo deste curso, voc\\u00ea ter\\u00e1 acesso a conte\\u00fados essenciais sobre o manuseio, transporte e armazenamento de materiais perigosos, sempre em conformidade com as normas nacionais e internacionais.<\\/strong><\\/p><p><strong>Nosso curso ser\\u00e1 realizado atrav\\u00e9s da plataforma Google Meet, proporcionando uma experi\\u00eancia de aprendizado interativa e flex\\u00edvel. Seguimos rigorosamente as determina\\u00e7\\u00f5es previstas na IS n.\\u00ba 175-002J (ANAC) e no \\"DANGEROUS GOODS TRAINING GUIDANCE, EDITION 1\\" (IATA), garantindo que voc\\u00ea tenha acesso ao conte\\u00fado mais atualizado e relevante.<\\/strong><\\/p><p><strong>Curso ministrado na modalidade n\\u00e3o presencial s\\u00edncrono (online).<\\/strong><\\/p><p><strong>O curso ser\\u00e1 ministrado por Cicero Melo, instrutor de Artigos Perigosos e piloto com 30 anos de experi\\u00eancia. Cicero \\u00e9 homologado pela ANAC e pela IATA desde 2008, trazendo um vasto conhecimento pr\\u00e1tico e te\\u00f3rico para enriquecer sua aprendizagem.<\\/strong><\\/p><p><strong>Estamos \\u00e0 disposi\\u00e7\\u00e3o para qualquer d\\u00favida ou esclarecimento. Aproveite ao m\\u00e1ximo essa experi\\u00eancia e desejamos a voc\\u00ea um excelente aprendizado!<\\/strong><\\/p>","align":"center","jedv_conditions":[{"_id":"a6c9240","jedv_condition":"","jedv_user_role":"","jedv_user_id":"","jedv_field":"","jedv_value":"","jedv_context":"default","value_is-profile-page":"","query_id":"","terms_taxonomy":"","time_from":"","time_to":"","week_days":[],"item_number":"","each_item_number":"","jedv_data_type":"chars"}],"typography_line_height":{"unit":"em","size":"","sizes":[]},"typography_word_spacing":{"unit":"em","size":"","sizes":[]},"drop_cap_typography_line_height":{"unit":"em","size":"","sizes":[]},"drop_cap_typography_word_spacing":{"unit":"em","size":"","sizes":[]},"jedv_enabled":"","jedv_type":"show","jedv_relation":"AND","_background_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"_background_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"_background_gradient_position_tablet":"center center","_background_gradient_position_mobile":"center center","_background_hover_color_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_hover_color_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_hover_color_b_stop_tablet":{"unit":"%","size":"","sizes":[]},"_background_hover_color_b_stop_mobile":{"unit":"%","size":"","sizes":[]},"_background_hover_gradient_angle_tablet":{"unit":"deg","size":"","sizes":[]},"_background_hover_gradient_angle_mobile":{"unit":"deg","size":"","sizes":[]},"_background_hover_gradient_position_tablet":"center center","_background_hover_gradient_position_mobile":"center center"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":true}],"isInner":false}]');
INSERT INTO `wpmr_postmeta` VALUES
(283, 60, '_elementor_conditions', 'a:1:{i:0;s:16:"include/singular";}'),
(286, 63, '_elementor_edit_mode', 'builder'),
(287, 63, '_elementor_template_type', 'single-post'),
(288, 64, '_elementor_edit_mode', 'builder'),
(289, 64, '_elementor_template_type', 'single-post'),
(290, 63, '_elementor_version', '3.31.3'),
(291, 63, '_elementor_pro_version', '3.31.2'),
(292, 63, '_edit_lock', '1756491639:1'),
(293, 63, '_wp_page_template', 'default'),
(294, 63, '_elementor_data', '[]'),
(295, 65, '_elementor_edit_mode', 'builder'),
(296, 65, '_elementor_template_type', 'single-post'),
(297, 65, '_elementor_version', '3.31.3'),
(298, 65, '_elementor_pro_version', '3.31.2'),
(299, 65, '_wp_page_template', 'default'),
(300, 65, '_elementor_data', '[]'),
(324, 16, '_elementor_css', 'a:6:{s:4:"time";i:1759805604;s:5:"fonts";a:2:{i:0;s:6:"Roboto";i:1;s:11:"Roboto Slab";}s:5:"icons";a:0:{}s:20:"dynamic_elements_ids";a:0:{}s:6:"status";s:4:"file";i:0;s:0:"";}');

-- --------------------------------------------------------

--
-- Table structure for table `wpmr_posts`
--

CREATE TABLE `wpmr_posts` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint(20) unsigned NOT NULL DEFAULT 0,
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext NOT NULL,
  `post_title` text NOT NULL,
  `post_excerpt` text NOT NULL,
  `post_status` varchar(20) NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) NOT NULL DEFAULT 'open',
  `post_password` varchar(255) NOT NULL DEFAULT '',
  `post_name` varchar(200) NOT NULL DEFAULT '',
  `to_ping` text NOT NULL,
  `pinged` text NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `guid` varchar(255) NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT 0,
  `post_type` varchar(20) NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`(191)),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpmr_posts`
--

INSERT INTO `wpmr_posts` VALUES
(1, 1, '2025-08-29 14:15:39', '2025-08-29 14:15:39', '<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->', 'Hello world!', '', 'publish', 'open', 'open', '', 'hello-world', '', '', '2025-08-29 14:15:39', '2025-08-29 14:15:39', '', 0, 'https://mod25.aeroclasses.com.br/?p=1', 0, 'post', '', 1),
(2, 1, '2025-08-29 14:15:39', '2025-08-29 14:15:39', '<!-- wp:paragraph -->\n<p>This is an example page. It''s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class="wp-block-quote"><p>Hi there! I''m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin'' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class="wp-block-quote"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href="https://mod25.aeroclasses.com.br/wp-admin/">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->', 'Sample Page', '', 'publish', 'closed', 'open', '', 'sample-page', '', '', '2025-08-29 14:15:39', '2025-08-29 14:15:39', '', 0, 'https://mod25.aeroclasses.com.br/?page_id=2', 0, 'page', '', 0),
(3, 1, '2025-08-29 14:15:39', '2025-08-29 14:15:39', '<!-- wp:heading -->\n<h2 class="wp-block-heading">Who we are</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class="privacy-policy-tutorial">Suggested text: </strong>Our website address is: https://mod25.aeroclasses.com.br.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class="wp-block-heading">Comments</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class="privacy-policy-tutorial">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class="wp-block-heading">Media</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class="privacy-policy-tutorial">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class="wp-block-heading">Cookies</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class="privacy-policy-tutorial">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class="wp-block-heading">Embedded content from other websites</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class="privacy-policy-tutorial">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class="wp-block-heading">Who we share your data with</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class="privacy-policy-tutorial">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class="wp-block-heading">How long we retain your data</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class="privacy-policy-tutorial">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class="wp-block-heading">What rights you have over your data</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class="privacy-policy-tutorial">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class="wp-block-heading">Where your data is sent</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class="privacy-policy-tutorial">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p>\n<!-- /wp:paragraph -->\n', 'Privacy Policy', '', 'draft', 'closed', 'open', '', 'privacy-policy', '', '', '2025-08-29 14:15:39', '2025-08-29 14:15:39', '', 0, 'https://mod25.aeroclasses.com.br/?page_id=3', 0, 'page', '', 0),
(4, 0, '2025-08-29 14:15:43', '2025-08-29 14:15:43', '<!-- wp:page-list /-->', 'Navigation', '', 'publish', 'closed', 'closed', '', 'navigation', '', '', '2025-08-29 14:15:43', '2025-08-29 14:15:43', '', 0, 'https://mod25.aeroclasses.com.br/2025/08/29/navigation/', 0, 'wp_navigation', '', 0),
(6, 1, '2025-08-29 14:25:09', '2025-08-29 14:25:09', '', 'Favicon 300', '', 'inherit', 'open', 'closed', '', 'favicon-300', '', '', '2025-08-29 14:25:09', '2025-08-29 14:25:09', '', 0, 'https://mod25.aeroclasses.com.br/wp-content/uploads/2025/08/Favicon-300.png', 0, 'attachment', 'image/png', 0),
(7, 1, '2025-08-29 14:25:09', '2025-08-29 14:25:09', '', 'Favicon', '', 'inherit', 'open', 'closed', '', 'favicon', '', '', '2025-08-29 14:25:09', '2025-08-29 14:25:09', '', 0, 'https://mod25.aeroclasses.com.br/wp-content/uploads/2025/08/Favicon.png', 0, 'attachment', 'image/png', 0),
(8, 1, '2025-08-29 14:25:09', '2025-08-29 14:25:09', '', 'logo.8367db9c.png', '', 'inherit', 'open', 'closed', '', 'logo-8367db9c-png', '', '', '2025-08-29 14:25:09', '2025-08-29 14:25:09', '', 0, 'https://mod25.aeroclasses.com.br/wp-content/uploads/2025/08/logo.8367db9c.png.png', 0, 'attachment', 'image/png', 0),
(9, 1, '2025-08-29 14:25:10', '2025-08-29 14:25:10', '', 'Logo', '', 'inherit', 'open', 'closed', '', 'logo', '', '', '2025-08-29 14:25:10', '2025-08-29 14:25:10', '', 0, 'https://mod25.aeroclasses.com.br/wp-content/uploads/2025/08/Logo.png', 0, 'attachment', 'image/png', 0),
(10, 1, '2025-08-29 14:25:10', '2025-08-29 14:25:10', '', 'logo_branco', '', 'inherit', 'open', 'closed', '', 'logo_branco', '', '', '2025-08-29 14:25:10', '2025-08-29 14:25:10', '', 0, 'https://mod25.aeroclasses.com.br/wp-content/uploads/2025/08/logo_branco.png', 0, 'attachment', 'image/png', 0),
(11, 1, '2025-08-29 14:25:11', '2025-08-29 14:25:11', '', 'Logo_icone_branco', '', 'inherit', 'open', 'closed', '', 'logo_icone_branco', '', '', '2025-08-29 14:25:11', '2025-08-29 14:25:11', '', 0, 'https://mod25.aeroclasses.com.br/wp-content/uploads/2025/08/Logo_icone_branco.png', 0, 'attachment', 'image/png', 0),
(12, 1, '2025-08-29 14:25:11', '2025-08-29 14:25:11', '', 'Logo-mini-1-1', '', 'inherit', 'open', 'closed', '', 'logo-mini-1-1', '', '', '2025-08-29 14:25:11', '2025-08-29 14:25:11', '', 0, 'https://mod25.aeroclasses.com.br/wp-content/uploads/2025/08/Logo-mini-1-1.png', 0, 'attachment', 'image/png', 0),
(13, 1, '2025-08-29 14:25:11', '2025-08-29 14:25:11', '', 'Logo-mini-2', '', 'inherit', 'open', 'closed', '', 'logo-mini-2', '', '', '2025-08-29 14:25:11', '2025-08-29 14:25:11', '', 0, 'https://mod25.aeroclasses.com.br/wp-content/uploads/2025/08/Logo-mini-2.png', 0, 'attachment', 'image/png', 0),
(14, 1, '2025-08-29 14:25:12', '2025-08-29 14:25:12', '', 'Logo-mini-3-1', '', 'inherit', 'open', 'closed', '', 'logo-mini-3-1', '', '', '2025-08-29 14:25:12', '2025-08-29 14:25:12', '', 0, 'https://mod25.aeroclasses.com.br/wp-content/uploads/2025/08/Logo-mini-3-1.png', 0, 'attachment', 'image/png', 0),
(15, 1, '2025-08-29 14:25:30', '2025-08-29 14:25:30', 'https://mod25.aeroclasses.com.br/wp-content/uploads/2025/08/cropped-Favicon.png', 'cropped-Favicon.png', '', 'inherit', 'open', 'closed', '', 'cropped-favicon-png', '', '', '2025-08-29 14:25:30', '2025-08-29 14:25:30', '', 7, 'https://mod25.aeroclasses.com.br/wp-content/uploads/2025/08/cropped-Favicon.png', 0, 'attachment', 'image/png', 0),
(16, 1, '2025-08-29 14:29:24', '2025-08-29 14:29:24', '', 'Kit padrão', '', 'publish', 'closed', 'closed', '', 'kit-padrao', '', '', '2025-08-29 14:29:24', '2025-08-29 14:29:24', '', 0, 'https://mod25.aeroclasses.com.br/?p=16', 0, 'elementor_library', '', 0),
(21, 1, '2025-08-29 14:43:06', '2025-08-29 14:43:06', '<svg aria-hidden="true" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M432 416H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z"></path></svg><svg aria-hidden="true" viewBox="0 0 352 512" xmlns="http://www.w3.org/2000/svg"><path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"></path></svg>Menu			\n					<svg aria-hidden="true" viewBox="0 0 352 512" xmlns="http://www.w3.org/2000/svg"><path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"></path></svg>				\n		<a href=""><svg aria-hidden="true" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"></path></svg>Dashboard</a>\n		<a href="https://mod25.aeroclasses.com.br/wp-login.php?action=logout&#038;redirect_to=https%3A%2F%2Fmod25.aeroclasses.com.br%2F&#038;_wpnonce=d0947e8ec5"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M497 273L329 441c-15 15-41 4.5-41-17v-96H152c-13.3 0-24-10.7-24-24v-96c0-13.3 10.7-24 24-24h136V88c0-21.4 25.9-32 41-17l168 168c9.3 9.4 9.3 24.6 0 34zM192 436v-40c0-6.6-5.4-12-12-12H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h84c6.6 0 12-5.4 12-12V76c0-6.6-5.4-12-12-12H96c-53 0-96 43-96 96v192c0 53 43 96 96 96h84c6.6 0 12-5.4 12-12z"></path></svg>Logout</a>', 'MENU-HOME-PUBLICO', '', 'publish', 'closed', 'closed', '', 'menu-home-publico', '', '', '2025-08-29 14:43:06', '2025-08-29 14:43:06', '', 0, 'https://mod25.aeroclasses.com.br/?elementor_library=menu-home-publico', 0, 'elementor_library', '', 0),
(22, 1, '2025-08-29 14:43:06', '2025-08-29 14:43:06', '<svg aria-hidden="true" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M432 416H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z"></path></svg><svg aria-hidden="true" viewBox="0 0 352 512" xmlns="http://www.w3.org/2000/svg"><path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"></path></svg>Menu			\n					<svg aria-hidden="true" viewBox="0 0 352 512" xmlns="http://www.w3.org/2000/svg"><path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"></path></svg>				\n		<a href=""><svg aria-hidden="true" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"></path></svg>Dashboard</a>\n		<a href="https://mod25.aeroclasses.com.br/wp-login.php?action=logout&#038;redirect_to=https%3A%2F%2Fmod25.aeroclasses.com.br%2F&#038;_wpnonce=d0947e8ec5"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M497 273L329 441c-15 15-41 4.5-41-17v-96H152c-13.3 0-24-10.7-24-24v-96c0-13.3 10.7-24 24-24h136V88c0-21.4 25.9-32 41-17l168 168c9.3 9.4 9.3 24.6 0 34zM192 436v-40c0-6.6-5.4-12-12-12H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h84c6.6 0 12-5.4 12-12V76c0-6.6-5.4-12-12-12H96c-53 0-96 43-96 96v192c0 53 43 96 96 96h84c6.6 0 12-5.4 12-12z"></path></svg>Logout</a>', 'MENU-HOME-PUBLICO', '', 'inherit', 'closed', 'closed', '', '21-revision-v1', '', '', '2025-08-29 14:43:06', '2025-08-29 14:43:06', '', 21, 'https://mod25.aeroclasses.com.br/?p=22', 0, 'revision', '', 0),
(23, 1, '2025-08-29 14:43:46', '2025-08-29 14:43:46', '', 'Elementor-post-screenshot_21_2025-08-29-14-43-46_68366021.png', '', 'inherit', 'open', 'closed', '', 'elementor-post-screenshot_21_2025-08-29-14-43-46_68366021-png', '', '', '2025-08-29 14:43:46', '2025-08-29 14:43:46', '', 21, 'https://mod25.aeroclasses.com.br/wp-content/uploads/elementor/screenshots/Elementor-post-screenshot_21_2025-08-29-14-43-46_68366021.png', 0, 'attachment', 'image/png', 0),
(24, 1, '2025-08-29 14:47:14', '0000-00-00 00:00:00', '', 'Elementor Header #24', '', 'draft', 'closed', 'closed', '', '', '', '', '2025-08-29 14:47:14', '2025-08-29 14:47:14', '', 0, 'https://mod25.aeroclasses.com.br/?post_type=elementor_library&#038;p=24', 0, 'elementor_library', '', 0),
(25, 1, '2025-08-29 14:47:14', '2025-08-29 14:47:14', '', 'Elementor Header #24', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2025-08-29 14:47:14', '2025-08-29 14:47:14', '', 24, 'https://mod25.aeroclasses.com.br/?p=25', 0, 'revision', '', 0),
(27, 1, '2025-08-29 17:35:58', '2025-08-29 17:35:58', '<img width="300" height="149" src="https://mod25.aeroclasses.com.br/wp-content/uploads/2025/08/logo.8367db9c.png-300x149.png" alt="" srcset="https://mod25.aeroclasses.com.br/wp-content/uploads/2025/08/logo.8367db9c.png-300x149.png 300w, https://mod25.aeroclasses.com.br/wp-content/uploads/2025/08/logo.8367db9c.png.png 500w" sizes="(max-width: 300px) 100vw, 300px" />															\n			<svg aria-hidden="true" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M432 416H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z"></path></svg><svg aria-hidden="true" viewBox="0 0 352 512" xmlns="http://www.w3.org/2000/svg"><path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"></path></svg>Menu			\n					<svg aria-hidden="true" viewBox="0 0 352 512" xmlns="http://www.w3.org/2000/svg"><path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"></path></svg>Edit Template				\n					<h2>Menu</h2>				\n							<ul>\n							<li>\n							<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M280.37 148.26L96 300.11V464a16 16 0 0 0 16 16l112.06-.29a16 16 0 0 0 15.92-16V368a16 16 0 0 1 16-16h64a16 16 0 0 1 16 16v95.64a16 16 0 0 0 16 16.05L464 480a16 16 0 0 0 16-16V300L295.67 148.26a12.19 12.19 0 0 0-15.3 0zM571.6 251.47L488 182.56V44.05a12 12 0 0 0-12-12h-56a12 12 0 0 0-12 12v72.61L318.47 43a48 48 0 0 0-61 0L4.34 251.47a12 12 0 0 0-1.6 16.9l25.5 31A12 12 0 0 0 45.15 301l235.22-193.74a12.19 12.19 0 0 1 15.3 0L530.9 301a12 12 0 0 0 16.9-1.6l25.5-31a12 12 0 0 0-1.7-16.93z"></path></svg>						\n										Home\n									</li>\n								<li>\n							<svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M192 208c0-17.67-14.33-32-32-32h-16c-35.35 0-64 28.65-64 64v48c0 35.35 28.65 64 64 64h16c17.67 0 32-14.33 32-32V208zm176 144c35.35 0 64-28.65 64-64v-48c0-35.35-28.65-64-64-64h-16c-17.67 0-32 14.33-32 32v112c0 17.67 14.33 32 32 32h16zM256 0C113.18 0 4.58 118.83 0 256v16c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-16c0-114.69 93.31-208 208-208s208 93.31 208 208h-.12c.08 2.43.12 165.72.12 165.72 0 23.35-18.93 42.28-42.28 42.28H320c0-26.51-21.49-48-48-48h-32c-26.51 0-48 21.49-48 48s21.49 48 48 48h181.72c49.86 0 90.28-40.42 90.28-90.28V256C507.42 118.83 398.82 0 256 0z"></path></svg>						\n										Suporte Técnico\n									</li>\n								<li>\n							<svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zM262.655 90c-54.497 0-89.255 22.957-116.549 63.758-3.536 5.286-2.353 12.415 2.715 16.258l34.699 26.31c5.205 3.947 12.621 3.008 16.665-2.122 17.864-22.658 30.113-35.797 57.303-35.797 20.429 0 45.698 13.148 45.698 32.958 0 14.976-12.363 22.667-32.534 33.976C247.128 238.528 216 254.941 216 296v4c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-1.333c0-28.462 83.186-29.647 83.186-106.667 0-58.002-60.165-102-116.531-102zM256 338c-25.365 0-46 20.635-46 46 0 25.364 20.635 46 46 46s46-20.636 46-46c0-25.365-20.635-46-46-46z"></path></svg>						\n										FAQ\n									</li>\n								<li>\n							<svg aria-hidden="true" viewBox="0 0 640 512" xmlns="http://www.w3.org/2000/svg"><path d="M610.5 373.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 400.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm201.2 226.5c-2.3-1.2-4.6-2.6-6.8-3.9l-7.9 4.6c-6 3.4-12.8 5.3-19.6 5.3-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-5.5-17.7 1.9-36.4 17.9-45.7l7.9-4.6c-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-16-9.2-23.4-28-17.9-45.7.9-2.9 2.2-5.8 3.2-8.7-3.8-.3-7.5-1.2-11.4-1.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c10.1 0 19.5-3.2 27.2-8.5-1.2-3.8-2-7.7-2-11.8v-9.2z"></path></svg>						\n										Meu perfil\n									</li>\n						</ul>\n		<a href="#"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M416 448h-84c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h84c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32h-84c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h84c53 0 96 43 96 96v192c0 53-43 96-96 96zm-47-201L201 79c-15-15-41-4.5-41 17v96H24c-13.3 0-24 10.7-24 24v96c0 13.3 10.7 24 24 24h136v96c0 21.5 26 32 41 17l168-168c9.3-9.4 9.3-24.6 0-34z"></path></svg>Login</a>\n		<a href="https://mod25.aeroclasses.com.br/wp-login.php?action=logout&#038;redirect_to=https%3A%2F%2Fmod25.aeroclasses.com.br%2F%3Felementor_library%3Dmenu-home-publico&#038;_wpnonce=c41b667a6b"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M497 273L329 441c-15 15-41 4.5-41-17v-96H152c-13.3 0-24-10.7-24-24v-96c0-13.3 10.7-24 24-24h136V88c0-21.4 25.9-32 41-17l168 168c9.3 9.4 9.3 24.6 0 34zM192 436v-40c0-6.6-5.4-12-12-12H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h84c6.6 0 12-5.4 12-12V76c0-6.6-5.4-12-12-12H96c-53 0-96 43-96 96v192c0 53 43 96 96 96h84c6.6 0 12-5.4 12-12z"></path></svg>Sair</a>\n		<a href="#"><svg aria-hidden="true" viewBox="0 0 640 512" xmlns="http://www.w3.org/2000/svg"><path d="M624 208h-64v-64c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v64h-64c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h64v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-64h64c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"></path></svg>Registrar</a>\n	|	<a href="#"><svg aria-hidden="true" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"></path></svg>Minha Conta</a>\n							<h2>Menu</h2>							<ul>\n							<li>\n							<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M280.37 148.26L96 300.11V464a16 16 0 0 0 16 16l112.06-.29a16 16 0 0 0 15.92-16V368a16 16 0 0 1 16-16h64a16 16 0 0 1 16 16v95.64a16 16 0 0 0 16 16.05L464 480a16 16 0 0 0 16-16V300L295.67 148.26a12.19 12.19 0 0 0-15.3 0zM571.6 251.47L488 182.56V44.05a12 12 0 0 0-12-12h-56a12 12 0 0 0-12 12v72.61L318.47 43a48 48 0 0 0-61 0L4.34 251.47a12 12 0 0 0-1.6 16.9l25.5 31A12 12 0 0 0 45.15 301l235.22-193.74a12.19 12.19 0 0 1 15.3 0L530.9 301a12 12 0 0 0 16.9-1.6l25.5-31a12 12 0 0 0-1.7-16.93z"></path></svg>						\n										Home\n									</li>\n								<li>\n							<svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M192 208c0-17.67-14.33-32-32-32h-16c-35.35 0-64 28.65-64 64v48c0 35.35 28.65 64 64 64h16c17.67 0 32-14.33 32-32V208zm176 144c35.35 0 64-28.65 64-64v-48c0-35.35-28.65-64-64-64h-16c-17.67 0-32 14.33-32 32v112c0 17.67 14.33 32 32 32h16zM256 0C113.18 0 4.58 118.83 0 256v16c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-16c0-114.69 93.31-208 208-208s208 93.31 208 208h-.12c.08 2.43.12 165.72.12 165.72 0 23.35-18.93 42.28-42.28 42.28H320c0-26.51-21.49-48-48-48h-32c-26.51 0-48 21.49-48 48s21.49 48 48 48h181.72c49.86 0 90.28-40.42 90.28-90.28V256C507.42 118.83 398.82 0 256 0z"></path></svg>						\n										Suporte Técnico\n									</li>\n								<li>\n							<svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zM262.655 90c-54.497 0-89.255 22.957-116.549 63.758-3.536 5.286-2.353 12.415 2.715 16.258l34.699 26.31c5.205 3.947 12.621 3.008 16.665-2.122 17.864-22.658 30.113-35.797 57.303-35.797 20.429 0 45.698 13.148 45.698 32.958 0 14.976-12.363 22.667-32.534 33.976C247.128 238.528 216 254.941 216 296v4c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-1.333c0-28.462 83.186-29.647 83.186-106.667 0-58.002-60.165-102-116.531-102zM256 338c-25.365 0-46 20.635-46 46 0 25.364 20.635 46 46 46s46-20.636 46-46c0-25.365-20.635-46-46-46z"></path></svg>						\n										FAQ\n									</li>\n								<li>\n							<svg aria-hidden="true" viewBox="0 0 640 512" xmlns="http://www.w3.org/2000/svg"><path d="M610.5 373.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 400.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm201.2 226.5c-2.3-1.2-4.6-2.6-6.8-3.9l-7.9 4.6c-6 3.4-12.8 5.3-19.6 5.3-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-5.5-17.7 1.9-36.4 17.9-45.7l7.9-4.6c-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-16-9.2-23.4-28-17.9-45.7.9-2.9 2.2-5.8 3.2-8.7-3.8-.3-7.5-1.2-11.4-1.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c10.1 0 19.5-3.2 27.2-8.5-1.2-3.8-2-7.7-2-11.8v-9.2z"></path></svg>						\n										Meu perfil\n									</li>\n						</ul>\n		<a href="#"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M416 448h-84c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h84c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32h-84c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h84c53 0 96 43 96 96v192c0 53-43 96-96 96zm-47-201L201 79c-15-15-41-4.5-41 17v96H24c-13.3 0-24 10.7-24 24v96c0 13.3 10.7 24 24 24h136v96c0 21.5 26 32 41 17l168-168c9.3-9.4 9.3-24.6 0-34z"></path></svg>Login</a>\n		<a href="https://mod25.aeroclasses.com.br/wp-login.php?action=logout&#038;redirect_to=https%3A%2F%2Fmod25.aeroclasses.com.br%2F%3Felementor_library%3Dmenu-home-publico&#038;_wpnonce=c41b667a6b"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M497 273L329 441c-15 15-41 4.5-41-17v-96H152c-13.3 0-24-10.7-24-24v-96c0-13.3 10.7-24 24-24h136V88c0-21.4 25.9-32 41-17l168 168c9.3 9.4 9.3 24.6 0 34zM192 436v-40c0-6.6-5.4-12-12-12H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h84c6.6 0 12-5.4 12-12V76c0-6.6-5.4-12-12-12H96c-53 0-96 43-96 96v192c0 53 43 96 96 96h84c6.6 0 12-5.4 12-12z"></path></svg>Sair</a>\n		<a href="#"><svg aria-hidden="true" viewBox="0 0 640 512" xmlns="http://www.w3.org/2000/svg"><path d="M624 208h-64v-64c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v64h-64c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h64v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-64h64c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"></path></svg>Registrar</a>\n	|	<a href="#"><svg aria-hidden="true" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"></path></svg>Minha Conta</a>\n		<a href="https://mod25.aeroclasses.com.br/?elementor_library=menu-home-publico"><svg aria-hidden="true" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"></path></svg>Dashboard</a>\n		<a href="https://mod25.aeroclasses.com.br/?elementor_library=menu-home-publico"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M416 448h-84c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h84c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32h-84c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h84c53 0 96 43 96 96v192c0 53-43 96-96 96zm-47-201L201 79c-15-15-41-4.5-41 17v96H24c-13.3 0-24 10.7-24 24v96c0 13.3 10.7 24 24 24h136v96c0 21.5 26 32 41 17l168-168c9.3-9.4 9.3-24.6 0-34z"></path></svg>Login</a>\n		<a href="https://mod25.aeroclasses.com.br/wp-login.php?action=logout&#038;redirect_to=https%3A%2F%2Fmod25.aeroclasses.com.br%2F&#038;_wpnonce=c41b667a6b"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M497 273L329 441c-15 15-41 4.5-41-17v-96H152c-13.3 0-24-10.7-24-24v-96c0-13.3 10.7-24 24-24h136V88c0-21.4 25.9-32 41-17l168 168c9.3 9.4 9.3 24.6 0 34zM192 436v-40c0-6.6-5.4-12-12-12H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h84c6.6 0 12-5.4 12-12V76c0-6.6-5.4-12-12-12H96c-53 0-96 43-96 96v192c0 53 43 96 96 96h84c6.6 0 12-5.4 12-12z"></path></svg>Logout</a>', 'MENU-HOME-PUBLICO', '', 'inherit', 'closed', 'closed', '', '21-autosave-v1', '', '', '2025-08-29 17:54:27', '2025-08-29 17:54:27', '', 21, 'https://mod25.aeroclasses.com.br/?p=27', 0, 'revision', '', 0),
(28, 1, '2025-08-29 17:54:53', '2025-08-29 17:54:53', '<img width="300" height="149" src="https://mod25.aeroclasses.com.br/wp-content/uploads/2025/08/logo.8367db9c.png-300x149.png" alt="" srcset="https://mod25.aeroclasses.com.br/wp-content/uploads/2025/08/logo.8367db9c.png-300x149.png 300w, https://mod25.aeroclasses.com.br/wp-content/uploads/2025/08/logo.8367db9c.png.png 500w" sizes="(max-width: 300px) 100vw, 300px" />															\n			<svg aria-hidden="true" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M432 416H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z"></path></svg><svg aria-hidden="true" viewBox="0 0 352 512" xmlns="http://www.w3.org/2000/svg"><path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"></path></svg>Menu			\n					<svg aria-hidden="true" viewBox="0 0 352 512" xmlns="http://www.w3.org/2000/svg"><path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"></path></svg>Edit Template				\n					<h2>Menu</h2>				\n							<ul>\n							<li>\n							<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M280.37 148.26L96 300.11V464a16 16 0 0 0 16 16l112.06-.29a16 16 0 0 0 15.92-16V368a16 16 0 0 1 16-16h64a16 16 0 0 1 16 16v95.64a16 16 0 0 0 16 16.05L464 480a16 16 0 0 0 16-16V300L295.67 148.26a12.19 12.19 0 0 0-15.3 0zM571.6 251.47L488 182.56V44.05a12 12 0 0 0-12-12h-56a12 12 0 0 0-12 12v72.61L318.47 43a48 48 0 0 0-61 0L4.34 251.47a12 12 0 0 0-1.6 16.9l25.5 31A12 12 0 0 0 45.15 301l235.22-193.74a12.19 12.19 0 0 1 15.3 0L530.9 301a12 12 0 0 0 16.9-1.6l25.5-31a12 12 0 0 0-1.7-16.93z"></path></svg>						\n										Home\n									</li>\n								<li>\n							<svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M192 208c0-17.67-14.33-32-32-32h-16c-35.35 0-64 28.65-64 64v48c0 35.35 28.65 64 64 64h16c17.67 0 32-14.33 32-32V208zm176 144c35.35 0 64-28.65 64-64v-48c0-35.35-28.65-64-64-64h-16c-17.67 0-32 14.33-32 32v112c0 17.67 14.33 32 32 32h16zM256 0C113.18 0 4.58 118.83 0 256v16c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-16c0-114.69 93.31-208 208-208s208 93.31 208 208h-.12c.08 2.43.12 165.72.12 165.72 0 23.35-18.93 42.28-42.28 42.28H320c0-26.51-21.49-48-48-48h-32c-26.51 0-48 21.49-48 48s21.49 48 48 48h181.72c49.86 0 90.28-40.42 90.28-90.28V256C507.42 118.83 398.82 0 256 0z"></path></svg>						\n										Suporte Técnico\n									</li>\n								<li>\n							<svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zM262.655 90c-54.497 0-89.255 22.957-116.549 63.758-3.536 5.286-2.353 12.415 2.715 16.258l34.699 26.31c5.205 3.947 12.621 3.008 16.665-2.122 17.864-22.658 30.113-35.797 57.303-35.797 20.429 0 45.698 13.148 45.698 32.958 0 14.976-12.363 22.667-32.534 33.976C247.128 238.528 216 254.941 216 296v4c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-1.333c0-28.462 83.186-29.647 83.186-106.667 0-58.002-60.165-102-116.531-102zM256 338c-25.365 0-46 20.635-46 46 0 25.364 20.635 46 46 46s46-20.636 46-46c0-25.365-20.635-46-46-46z"></path></svg>						\n										FAQ\n									</li>\n								<li>\n							<svg aria-hidden="true" viewBox="0 0 640 512" xmlns="http://www.w3.org/2000/svg"><path d="M610.5 373.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 400.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm201.2 226.5c-2.3-1.2-4.6-2.6-6.8-3.9l-7.9 4.6c-6 3.4-12.8 5.3-19.6 5.3-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-5.5-17.7 1.9-36.4 17.9-45.7l7.9-4.6c-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-16-9.2-23.4-28-17.9-45.7.9-2.9 2.2-5.8 3.2-8.7-3.8-.3-7.5-1.2-11.4-1.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c10.1 0 19.5-3.2 27.2-8.5-1.2-3.8-2-7.7-2-11.8v-9.2z"></path></svg>						\n										Meu perfil\n									</li>\n						</ul>\n		<a href="#"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M416 448h-84c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h84c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32h-84c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h84c53 0 96 43 96 96v192c0 53-43 96-96 96zm-47-201L201 79c-15-15-41-4.5-41 17v96H24c-13.3 0-24 10.7-24 24v96c0 13.3 10.7 24 24 24h136v96c0 21.5 26 32 41 17l168-168c9.3-9.4 9.3-24.6 0-34z"></path></svg>Login</a>\n		<a href="https://mod25.aeroclasses.com.br/wp-login.php?action=logout&#038;redirect_to=https%3A%2F%2Fmod25.aeroclasses.com.br%2F%3Felementor_library%3Dmenu-home-publico&#038;_wpnonce=c41b667a6b"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M497 273L329 441c-15 15-41 4.5-41-17v-96H152c-13.3 0-24-10.7-24-24v-96c0-13.3 10.7-24 24-24h136V88c0-21.4 25.9-32 41-17l168 168c9.3 9.4 9.3 24.6 0 34zM192 436v-40c0-6.6-5.4-12-12-12H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h84c6.6 0 12-5.4 12-12V76c0-6.6-5.4-12-12-12H96c-53 0-96 43-96 96v192c0 53 43 96 96 96h84c6.6 0 12-5.4 12-12z"></path></svg>Sair</a>\n		<a href="#"><svg aria-hidden="true" viewBox="0 0 640 512" xmlns="http://www.w3.org/2000/svg"><path d="M624 208h-64v-64c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v64h-64c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h64v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-64h64c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"></path></svg>Registrar</a>\n	|	<a href="#"><svg aria-hidden="true" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"></path></svg>Minha Conta</a>\n							<h2>Menu</h2>							<ul>\n							<li>\n							<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M280.37 148.26L96 300.11V464a16 16 0 0 0 16 16l112.06-.29a16 16 0 0 0 15.92-16V368a16 16 0 0 1 16-16h64a16 16 0 0 1 16 16v95.64a16 16 0 0 0 16 16.05L464 480a16 16 0 0 0 16-16V300L295.67 148.26a12.19 12.19 0 0 0-15.3 0zM571.6 251.47L488 182.56V44.05a12 12 0 0 0-12-12h-56a12 12 0 0 0-12 12v72.61L318.47 43a48 48 0 0 0-61 0L4.34 251.47a12 12 0 0 0-1.6 16.9l25.5 31A12 12 0 0 0 45.15 301l235.22-193.74a12.19 12.19 0 0 1 15.3 0L530.9 301a12 12 0 0 0 16.9-1.6l25.5-31a12 12 0 0 0-1.7-16.93z"></path></svg>						\n										Home\n									</li>\n								<li>\n							<svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M192 208c0-17.67-14.33-32-32-32h-16c-35.35 0-64 28.65-64 64v48c0 35.35 28.65 64 64 64h16c17.67 0 32-14.33 32-32V208zm176 144c35.35 0 64-28.65 64-64v-48c0-35.35-28.65-64-64-64h-16c-17.67 0-32 14.33-32 32v112c0 17.67 14.33 32 32 32h16zM256 0C113.18 0 4.58 118.83 0 256v16c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-16c0-114.69 93.31-208 208-208s208 93.31 208 208h-.12c.08 2.43.12 165.72.12 165.72 0 23.35-18.93 42.28-42.28 42.28H320c0-26.51-21.49-48-48-48h-32c-26.51 0-48 21.49-48 48s21.49 48 48 48h181.72c49.86 0 90.28-40.42 90.28-90.28V256C507.42 118.83 398.82 0 256 0z"></path></svg>						\n										Suporte Técnico\n									</li>\n								<li>\n							<svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zM262.655 90c-54.497 0-89.255 22.957-116.549 63.758-3.536 5.286-2.353 12.415 2.715 16.258l34.699 26.31c5.205 3.947 12.621 3.008 16.665-2.122 17.864-22.658 30.113-35.797 57.303-35.797 20.429 0 45.698 13.148 45.698 32.958 0 14.976-12.363 22.667-32.534 33.976C247.128 238.528 216 254.941 216 296v4c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-1.333c0-28.462 83.186-29.647 83.186-106.667 0-58.002-60.165-102-116.531-102zM256 338c-25.365 0-46 20.635-46 46 0 25.364 20.635 46 46 46s46-20.636 46-46c0-25.365-20.635-46-46-46z"></path></svg>						\n										FAQ\n									</li>\n								<li>\n							<svg aria-hidden="true" viewBox="0 0 640 512" xmlns="http://www.w3.org/2000/svg"><path d="M610.5 373.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 400.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm201.2 226.5c-2.3-1.2-4.6-2.6-6.8-3.9l-7.9 4.6c-6 3.4-12.8 5.3-19.6 5.3-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-5.5-17.7 1.9-36.4 17.9-45.7l7.9-4.6c-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-16-9.2-23.4-28-17.9-45.7.9-2.9 2.2-5.8 3.2-8.7-3.8-.3-7.5-1.2-11.4-1.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c10.1 0 19.5-3.2 27.2-8.5-1.2-3.8-2-7.7-2-11.8v-9.2z"></path></svg>						\n										Meu perfil\n									</li>\n						</ul>\n		<a href="#"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M416 448h-84c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h84c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32h-84c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h84c53 0 96 43 96 96v192c0 53-43 96-96 96zm-47-201L201 79c-15-15-41-4.5-41 17v96H24c-13.3 0-24 10.7-24 24v96c0 13.3 10.7 24 24 24h136v96c0 21.5 26 32 41 17l168-168c9.3-9.4 9.3-24.6 0-34z"></path></svg>Login</a>\n		<a href="https://mod25.aeroclasses.com.br/wp-login.php?action=logout&#038;redirect_to=https%3A%2F%2Fmod25.aeroclasses.com.br%2F%3Felementor_library%3Dmenu-home-publico&#038;_wpnonce=c41b667a6b"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M497 273L329 441c-15 15-41 4.5-41-17v-96H152c-13.3 0-24-10.7-24-24v-96c0-13.3 10.7-24 24-24h136V88c0-21.4 25.9-32 41-17l168 168c9.3 9.4 9.3 24.6 0 34zM192 436v-40c0-6.6-5.4-12-12-12H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h84c6.6 0 12-5.4 12-12V76c0-6.6-5.4-12-12-12H96c-53 0-96 43-96 96v192c0 53 43 96 96 96h84c6.6 0 12-5.4 12-12z"></path></svg>Sair</a>\n		<a href="#"><svg aria-hidden="true" viewBox="0 0 640 512" xmlns="http://www.w3.org/2000/svg"><path d="M624 208h-64v-64c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v64h-64c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h64v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-64h64c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"></path></svg>Registrar</a>\n	|	<a href="#"><svg aria-hidden="true" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"></path></svg>Minha Conta</a>\n		<a href="https://mod25.aeroclasses.com.br/?elementor_library=menu-home-publico"><svg aria-hidden="true" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"></path></svg>Dashboard</a>\n		<a href="https://mod25.aeroclasses.com.br/?elementor_library=menu-home-publico"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M416 448h-84c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h84c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32h-84c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h84c53 0 96 43 96 96v192c0 53-43 96-96 96zm-47-201L201 79c-15-15-41-4.5-41 17v96H24c-13.3 0-24 10.7-24 24v96c0 13.3 10.7 24 24 24h136v96c0 21.5 26 32 41 17l168-168c9.3-9.4 9.3-24.6 0-34z"></path></svg>Login</a>\n		<a href="https://mod25.aeroclasses.com.br/wp-login.php?action=logout&#038;redirect_to=https%3A%2F%2Fmod25.aeroclasses.com.br%2F&#038;_wpnonce=c41b667a6b"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M497 273L329 441c-15 15-41 4.5-41-17v-96H152c-13.3 0-24-10.7-24-24v-96c0-13.3 10.7-24 24-24h136V88c0-21.4 25.9-32 41-17l168 168c9.3 9.4 9.3 24.6 0 34zM192 436v-40c0-6.6-5.4-12-12-12H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h84c6.6 0 12-5.4 12-12V76c0-6.6-5.4-12-12-12H96c-53 0-96 43-96 96v192c0 53 43 96 96 96h84c6.6 0 12-5.4 12-12z"></path></svg>Logout</a>', 'menu', '', 'publish', 'closed', 'closed', '', 'menu', '', '', '2025-08-29 17:54:54', '2025-08-29 17:54:54', '', 0, 'https://mod25.aeroclasses.com.br/?elementor_library=menu', 0, 'elementor_library', '', 0),
(29, 1, '2025-08-29 17:54:54', '2025-08-29 17:54:54', '<img width="300" height="149" src="https://mod25.aeroclasses.com.br/wp-content/uploads/2025/08/logo.8367db9c.png-300x149.png" alt="" srcset="https://mod25.aeroclasses.com.br/wp-content/uploads/2025/08/logo.8367db9c.png-300x149.png 300w, https://mod25.aeroclasses.com.br/wp-content/uploads/2025/08/logo.8367db9c.png.png 500w" sizes="(max-width: 300px) 100vw, 300px" />															\n			<svg aria-hidden="true" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M432 416H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-128H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z"></path></svg><svg aria-hidden="true" viewBox="0 0 352 512" xmlns="http://www.w3.org/2000/svg"><path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"></path></svg>Menu			\n					<svg aria-hidden="true" viewBox="0 0 352 512" xmlns="http://www.w3.org/2000/svg"><path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"></path></svg>Edit Template				\n					<h2>Menu</h2>				\n							<ul>\n							<li>\n							<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M280.37 148.26L96 300.11V464a16 16 0 0 0 16 16l112.06-.29a16 16 0 0 0 15.92-16V368a16 16 0 0 1 16-16h64a16 16 0 0 1 16 16v95.64a16 16 0 0 0 16 16.05L464 480a16 16 0 0 0 16-16V300L295.67 148.26a12.19 12.19 0 0 0-15.3 0zM571.6 251.47L488 182.56V44.05a12 12 0 0 0-12-12h-56a12 12 0 0 0-12 12v72.61L318.47 43a48 48 0 0 0-61 0L4.34 251.47a12 12 0 0 0-1.6 16.9l25.5 31A12 12 0 0 0 45.15 301l235.22-193.74a12.19 12.19 0 0 1 15.3 0L530.9 301a12 12 0 0 0 16.9-1.6l25.5-31a12 12 0 0 0-1.7-16.93z"></path></svg>						\n										Home\n									</li>\n								<li>\n							<svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M192 208c0-17.67-14.33-32-32-32h-16c-35.35 0-64 28.65-64 64v48c0 35.35 28.65 64 64 64h16c17.67 0 32-14.33 32-32V208zm176 144c35.35 0 64-28.65 64-64v-48c0-35.35-28.65-64-64-64h-16c-17.67 0-32 14.33-32 32v112c0 17.67 14.33 32 32 32h16zM256 0C113.18 0 4.58 118.83 0 256v16c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-16c0-114.69 93.31-208 208-208s208 93.31 208 208h-.12c.08 2.43.12 165.72.12 165.72 0 23.35-18.93 42.28-42.28 42.28H320c0-26.51-21.49-48-48-48h-32c-26.51 0-48 21.49-48 48s21.49 48 48 48h181.72c49.86 0 90.28-40.42 90.28-90.28V256C507.42 118.83 398.82 0 256 0z"></path></svg>						\n										Suporte Técnico\n									</li>\n								<li>\n							<svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zM262.655 90c-54.497 0-89.255 22.957-116.549 63.758-3.536 5.286-2.353 12.415 2.715 16.258l34.699 26.31c5.205 3.947 12.621 3.008 16.665-2.122 17.864-22.658 30.113-35.797 57.303-35.797 20.429 0 45.698 13.148 45.698 32.958 0 14.976-12.363 22.667-32.534 33.976C247.128 238.528 216 254.941 216 296v4c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-1.333c0-28.462 83.186-29.647 83.186-106.667 0-58.002-60.165-102-116.531-102zM256 338c-25.365 0-46 20.635-46 46 0 25.364 20.635 46 46 46s46-20.636 46-46c0-25.365-20.635-46-46-46z"></path></svg>						\n										FAQ\n									</li>\n								<li>\n							<svg aria-hidden="true" viewBox="0 0 640 512" xmlns="http://www.w3.org/2000/svg"><path d="M610.5 373.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 400.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm201.2 226.5c-2.3-1.2-4.6-2.6-6.8-3.9l-7.9 4.6c-6 3.4-12.8 5.3-19.6 5.3-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-5.5-17.7 1.9-36.4 17.9-45.7l7.9-4.6c-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-16-9.2-23.4-28-17.9-45.7.9-2.9 2.2-5.8 3.2-8.7-3.8-.3-7.5-1.2-11.4-1.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c10.1 0 19.5-3.2 27.2-8.5-1.2-3.8-2-7.7-2-11.8v-9.2z"></path></svg>						\n										Meu perfil\n									</li>\n						</ul>\n		<a href="#"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M416 448h-84c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h84c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32h-84c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h84c53 0 96 43 96 96v192c0 53-43 96-96 96zm-47-201L201 79c-15-15-41-4.5-41 17v96H24c-13.3 0-24 10.7-24 24v96c0 13.3 10.7 24 24 24h136v96c0 21.5 26 32 41 17l168-168c9.3-9.4 9.3-24.6 0-34z"></path></svg>Login</a>\n		<a href="https://mod25.aeroclasses.com.br/wp-login.php?action=logout&#038;redirect_to=https%3A%2F%2Fmod25.aeroclasses.com.br%2F%3Felementor_library%3Dmenu-home-publico&#038;_wpnonce=c41b667a6b"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M497 273L329 441c-15 15-41 4.5-41-17v-96H152c-13.3 0-24-10.7-24-24v-96c0-13.3 10.7-24 24-24h136V88c0-21.4 25.9-32 41-17l168 168c9.3 9.4 9.3 24.6 0 34zM192 436v-40c0-6.6-5.4-12-12-12H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h84c6.6 0 12-5.4 12-12V76c0-6.6-5.4-12-12-12H96c-53 0-96 43-96 96v192c0 53 43 96 96 96h84c6.6 0 12-5.4 12-12z"></path></svg>Sair</a>\n		<a href="#"><svg aria-hidden="true" viewBox="0 0 640 512" xmlns="http://www.w3.org/2000/svg"><path d="M624 208h-64v-64c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v64h-64c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h64v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-64h64c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"></path></svg>Registrar</a>\n	|	<a href="#"><svg aria-hidden="true" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"></path></svg>Minha Conta</a>\n							<h2>Menu</h2>							<ul>\n							<li>\n							<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M280.37 148.26L96 300.11V464a16 16 0 0 0 16 16l112.06-.29a16 16 0 0 0 15.92-16V368a16 16 0 0 1 16-16h64a16 16 0 0 1 16 16v95.64a16 16 0 0 0 16 16.05L464 480a16 16 0 0 0 16-16V300L295.67 148.26a12.19 12.19 0 0 0-15.3 0zM571.6 251.47L488 182.56V44.05a12 12 0 0 0-12-12h-56a12 12 0 0 0-12 12v72.61L318.47 43a48 48 0 0 0-61 0L4.34 251.47a12 12 0 0 0-1.6 16.9l25.5 31A12 12 0 0 0 45.15 301l235.22-193.74a12.19 12.19 0 0 1 15.3 0L530.9 301a12 12 0 0 0 16.9-1.6l25.5-31a12 12 0 0 0-1.7-16.93z"></path></svg>						\n										Home\n									</li>\n								<li>\n							<svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M192 208c0-17.67-14.33-32-32-32h-16c-35.35 0-64 28.65-64 64v48c0 35.35 28.65 64 64 64h16c17.67 0 32-14.33 32-32V208zm176 144c35.35 0 64-28.65 64-64v-48c0-35.35-28.65-64-64-64h-16c-17.67 0-32 14.33-32 32v112c0 17.67 14.33 32 32 32h16zM256 0C113.18 0 4.58 118.83 0 256v16c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16v-16c0-114.69 93.31-208 208-208s208 93.31 208 208h-.12c.08 2.43.12 165.72.12 165.72 0 23.35-18.93 42.28-42.28 42.28H320c0-26.51-21.49-48-48-48h-32c-26.51 0-48 21.49-48 48s21.49 48 48 48h181.72c49.86 0 90.28-40.42 90.28-90.28V256C507.42 118.83 398.82 0 256 0z"></path></svg>						\n										Suporte Técnico\n									</li>\n								<li>\n							<svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zM262.655 90c-54.497 0-89.255 22.957-116.549 63.758-3.536 5.286-2.353 12.415 2.715 16.258l34.699 26.31c5.205 3.947 12.621 3.008 16.665-2.122 17.864-22.658 30.113-35.797 57.303-35.797 20.429 0 45.698 13.148 45.698 32.958 0 14.976-12.363 22.667-32.534 33.976C247.128 238.528 216 254.941 216 296v4c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-1.333c0-28.462 83.186-29.647 83.186-106.667 0-58.002-60.165-102-116.531-102zM256 338c-25.365 0-46 20.635-46 46 0 25.364 20.635 46 46 46s46-20.636 46-46c0-25.365-20.635-46-46-46z"></path></svg>						\n										FAQ\n									</li>\n								<li>\n							<svg aria-hidden="true" viewBox="0 0 640 512" xmlns="http://www.w3.org/2000/svg"><path d="M610.5 373.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 400.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm201.2 226.5c-2.3-1.2-4.6-2.6-6.8-3.9l-7.9 4.6c-6 3.4-12.8 5.3-19.6 5.3-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-5.5-17.7 1.9-36.4 17.9-45.7l7.9-4.6c-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-16-9.2-23.4-28-17.9-45.7.9-2.9 2.2-5.8 3.2-8.7-3.8-.3-7.5-1.2-11.4-1.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c10.1 0 19.5-3.2 27.2-8.5-1.2-3.8-2-7.7-2-11.8v-9.2z"></path></svg>						\n										Meu perfil\n									</li>\n						</ul>\n		<a href="#"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M416 448h-84c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h84c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32h-84c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h84c53 0 96 43 96 96v192c0 53-43 96-96 96zm-47-201L201 79c-15-15-41-4.5-41 17v96H24c-13.3 0-24 10.7-24 24v96c0 13.3 10.7 24 24 24h136v96c0 21.5 26 32 41 17l168-168c9.3-9.4 9.3-24.6 0-34z"></path></svg>Login</a>\n		<a href="https://mod25.aeroclasses.com.br/wp-login.php?action=logout&#038;redirect_to=https%3A%2F%2Fmod25.aeroclasses.com.br%2F%3Felementor_library%3Dmenu-home-publico&#038;_wpnonce=c41b667a6b"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M497 273L329 441c-15 15-41 4.5-41-17v-96H152c-13.3 0-24-10.7-24-24v-96c0-13.3 10.7-24 24-24h136V88c0-21.4 25.9-32 41-17l168 168c9.3 9.4 9.3 24.6 0 34zM192 436v-40c0-6.6-5.4-12-12-12H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h84c6.6 0 12-5.4 12-12V76c0-6.6-5.4-12-12-12H96c-53 0-96 43-96 96v192c0 53 43 96 96 96h84c6.6 0 12-5.4 12-12z"></path></svg>Sair</a>\n		<a href="#"><svg aria-hidden="true" viewBox="0 0 640 512" xmlns="http://www.w3.org/2000/svg"><path d="M624 208h-64v-64c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v64h-64c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h64v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-64h64c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"></path></svg>Registrar</a>\n	|	<a href="#"><svg aria-hidden="true" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"></path></svg>Minha Conta</a>\n		<a href="https://mod25.aeroclasses.com.br/?elementor_library=menu-home-publico"><svg aria-hidden="true" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"></path></svg>Dashboard</a>\n		<a href="https://mod25.aeroclasses.com.br/?elementor_library=menu-home-publico"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M416 448h-84c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h84c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32h-84c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h84c53 0 96 43 96 96v192c0 53-43 96-96 96zm-47-201L201 79c-15-15-41-4.5-41 17v96H24c-13.3 0-24 10.7-24 24v96c0 13.3 10.7 24 24 24h136v96c0 21.5 26 32 41 17l168-168c9.3-9.4 9.3-24.6 0-34z"></path></svg>Login</a>\n		<a href="https://mod25.aeroclasses.com.br/wp-login.php?action=logout&#038;redirect_to=https%3A%2F%2Fmod25.aeroclasses.com.br%2F&#038;_wpnonce=c41b667a6b"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M497 273L329 441c-15 15-41 4.5-41-17v-96H152c-13.3 0-24-10.7-24-24v-96c0-13.3 10.7-24 24-24h136V88c0-21.4 25.9-32 41-17l168 168c9.3 9.4 9.3 24.6 0 34zM192 436v-40c0-6.6-5.4-12-12-12H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h84c6.6 0 12-5.4 12-12V76c0-6.6-5.4-12-12-12H96c-53 0-96 43-96 96v192c0 53 43 96 96 96h84c6.6 0 12-5.4 12-12z"></path></svg>Logout</a>', 'menu', '', 'inherit', 'closed', 'closed', '', '28-revision-v1', '', '', '2025-08-29 17:54:54', '2025-08-29 17:54:54', '', 28, 'https://mod25.aeroclasses.com.br/?p=29', 0, 'revision', '', 0);
INSERT INTO `wpmr_posts` VALUES
(30, 1, '2025-08-29 17:57:01', '2025-08-29 17:57:01', '<h2>Editar Meu Perfil</h2>					<h2>Nome de usuário não pode ser alterado</h2>							<ul>\n							<li>\n											<a href="/dashboard">\n							<svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm116-292H256v-70.9c0-10.7-13-16.1-20.5-8.5L121.2 247.5c-4.7 4.7-4.7 12.2 0 16.9l114.3 114.9c7.6 7.6 20.5 2.2 20.5-8.5V300h116c6.6 0 12-5.4 12-12v-64c0-6.6-5.4-12-12-12z"></path></svg>						\n										Voltar ao Dashboard\n											</a>\n									</li>\n						</ul>', 'Formulário - Edição de Usuário', '', 'publish', 'closed', 'closed', '', 'formulario-edicao-de-usuario', '', '', '2025-08-29 17:57:01', '2025-08-29 17:57:01', '', 0, 'https://mod25.aeroclasses.com.br/?elementor_library=formulario-edicao-de-usuario', 0, 'elementor_library', '', 0),
(31, 1, '2025-08-29 17:57:01', '2025-08-29 17:57:01', '<h2>Editar Meu Perfil</h2>					<h2>Nome de usuário não pode ser alterado</h2>							<ul>\n							<li>\n											<a href="/dashboard">\n							<svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm116-292H256v-70.9c0-10.7-13-16.1-20.5-8.5L121.2 247.5c-4.7 4.7-4.7 12.2 0 16.9l114.3 114.9c7.6 7.6 20.5 2.2 20.5-8.5V300h116c6.6 0 12-5.4 12-12v-64c0-6.6-5.4-12-12-12z"></path></svg>						\n										Voltar ao Dashboard\n											</a>\n									</li>\n						</ul>', 'Formulário - Edição de Usuário', '', 'inherit', 'closed', 'closed', '', '30-revision-v1', '', '', '2025-08-29 17:57:01', '2025-08-29 17:57:01', '', 30, 'https://mod25.aeroclasses.com.br/?p=31', 0, 'revision', '', 0),
(32, 1, '2025-08-29 17:59:59', '2025-08-29 17:59:59', '<h2>Menu</h2>							<ul>\n							<li>\n											<a href="#">\n							<svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M160 288h-16c-35.35 0-64 28.7-64 64.12v63.76c0 35.41 28.65 64.12 64 64.12h16c17.67 0 32-14.36 32-32.06V320.06c0-17.71-14.33-32.06-32-32.06zm208 0h-16c-17.67 0-32 14.35-32 32.06v127.88c0 17.7 14.33 32.06 32 32.06h16c35.35 0 64-28.71 64-64.12v-63.76c0-35.41-28.65-64.12-64-64.12zM256 32C112.91 32 4.57 151.13 0 288v112c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16V288c0-114.67 93.33-207.8 208-207.82 114.67.02 208 93.15 208 207.82v112c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16V288C507.43 151.13 399.09 32 256 32z"></path></svg>						\n										Suporte Técnico\n											</a>\n									</li>\n								<li>\n											<a href="#">\n							<svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 448c-110.532 0-200-89.431-200-200 0-110.495 89.472-200 200-200 110.491 0 200 89.471 200 200 0 110.53-89.431 200-200 200zm107.244-255.2c0 67.052-72.421 68.084-72.421 92.863V300c0 6.627-5.373 12-12 12h-45.647c-6.627 0-12-5.373-12-12v-8.659c0-35.745 27.1-50.034 47.579-61.516 17.561-9.845 28.324-16.541 28.324-29.579 0-17.246-21.999-28.693-39.784-28.693-23.189 0-33.894 10.977-48.942 29.969-4.057 5.12-11.46 6.071-16.666 2.124l-27.824-21.098c-5.107-3.872-6.251-11.066-2.644-16.363C184.846 131.491 214.94 112 261.794 112c49.071 0 101.45 38.304 101.45 88.8zM298 368c0 23.159-18.841 42-42 42s-42-18.841-42-42 18.841-42 42-42 42 18.841 42 42z"></path></svg>						\n										FAQ\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden="true" viewBox="0 0 640 512" xmlns="http://www.w3.org/2000/svg"><path d="M610.5 373.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 400.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm201.2 226.5c-2.3-1.2-4.6-2.6-6.8-3.9l-7.9 4.6c-6 3.4-12.8 5.3-19.6 5.3-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-5.5-17.7 1.9-36.4 17.9-45.7l7.9-4.6c-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-16-9.2-23.4-28-17.9-45.7.9-2.9 2.2-5.8 3.2-8.7-3.8-.3-7.5-1.2-11.4-1.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c10.1 0 19.5-3.2 27.2-8.5-1.2-3.8-2-7.7-2-11.8v-9.2z"></path></svg>						\n										Meu Perfil\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden="true" viewBox="0 0 640 512" xmlns="http://www.w3.org/2000/svg"><path d="M512.1 191l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0L552 6.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zm-10.5-58.8c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.7-82.4 14.3-52.8 52.8zM386.3 286.1l33.7 16.8c10.1 5.8 14.5 18.1 10.5 29.1-8.9 24.2-26.4 46.4-42.6 65.8-7.4 8.9-20.2 11.1-30.3 5.3l-29.1-16.8c-16 13.7-34.6 24.6-54.9 31.7v33.6c0 11.6-8.3 21.6-19.7 23.6-24.6 4.2-50.4 4.4-75.9 0-11.5-2-20-11.9-20-23.6V418c-20.3-7.2-38.9-18-54.9-31.7L74 403c-10 5.8-22.9 3.6-30.3-5.3-16.2-19.4-33.3-41.6-42.2-65.7-4-10.9.4-23.2 10.5-29.1l33.3-16.8c-3.9-20.9-3.9-42.4 0-63.4L12 205.8c-10.1-5.8-14.6-18.1-10.5-29 8.9-24.2 26-46.4 42.2-65.8 7.4-8.9 20.2-11.1 30.3-5.3l29.1 16.8c16-13.7 34.6-24.6 54.9-31.7V57.1c0-11.5 8.2-21.5 19.6-23.5 24.6-4.2 50.5-4.4 76-.1 11.5 2 20 11.9 20 23.6v33.6c20.3 7.2 38.9 18 54.9 31.7l29.1-16.8c10-5.8 22.9-3.6 30.3 5.3 16.2 19.4 33.2 41.6 42.1 65.8 4 10.9.1 23.2-10 29.1l-33.7 16.8c3.9 21 3.9 42.5 0 63.5zm-117.6 21.1c59.2-77-28.7-164.9-105.7-105.7-59.2 77 28.7 164.9 105.7 105.7zm243.4 182.7l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0l8.2-14.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zM501.6 431c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.6-82.4 14.3-52.8 52.8z"></path></svg>						\n										Configurações\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href="/wp-admin">\n							<svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M61.7 169.4l101.5 278C92.2 413 43.3 340.2 43.3 256c0-30.9 6.6-60.1 18.4-86.6zm337.9 75.9c0-26.3-9.4-44.5-17.5-58.7-10.8-17.5-20.9-32.4-20.9-49.9 0-19.6 14.8-37.8 35.7-37.8.9 0 1.8.1 2.8.2-37.9-34.7-88.3-55.9-143.7-55.9-74.3 0-139.7 38.1-177.8 95.9 5 .2 9.7.3 13.7.3 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l77.5 230.4L249.8 247l-33.1-90.8c-11.5-.7-22.3-2-22.3-2-11.5-.7-10.1-18.2 1.3-17.5 0 0 35.1 2.7 56 2.7 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l76.9 228.7 21.2-70.9c9-29.4 16-50.5 16-68.7zm-139.9 29.3l-63.8 185.5c19.1 5.6 39.2 8.7 60.1 8.7 24.8 0 48.5-4.3 70.6-12.1-.6-.9-1.1-1.9-1.5-2.9l-65.4-179.2zm183-120.7c.9 6.8 1.4 14 1.4 21.9 0 21.6-4 45.8-16.2 76.2l-65 187.9C426.2 403 468.7 334.5 468.7 256c0-37-9.4-71.8-26-102.1zM504 256c0 136.8-111.3 248-248 248C119.2 504 8 392.7 8 256 8 119.2 119.2 8 256 8c136.7 0 248 111.2 248 248zm-11.4 0c0-130.5-106.2-236.6-236.6-236.6C125.5 19.4 19.4 125.5 19.4 256S125.6 492.6 256 492.6c130.5 0 236.6-106.1 236.6-236.6z"></path></svg>						\n										Painel do WordPress\n											</a>\n									</li>\n						</ul>\n		<a href=""><svg aria-hidden="true" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"></path></svg>Dashboard</a>\n		<a href="https://mod25.aeroclasses.com.br/wp-login.php?action=logout&#038;redirect_to=https%3A%2F%2Fmod25.aeroclasses.com.br%2F&#038;_wpnonce=c41b667a6b"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M497 273L329 441c-15 15-41 4.5-41-17v-96H152c-13.3 0-24-10.7-24-24v-96c0-13.3 10.7-24 24-24h136V88c0-21.4 25.9-32 41-17l168 168c9.3 9.4 9.3 24.6 0 34zM192 436v-40c0-6.6-5.4-12-12-12H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h84c6.6 0 12-5.4 12-12V76c0-6.6-5.4-12-12-12H96c-53 0-96 43-96 96v192c0 53 43 96 96 96h84c6.6 0 12-5.4 12-12z"></path></svg>Logout</a>', 'MENU-HAMBURGUER-PANEL', '', 'publish', 'closed', 'closed', '', 'menu-hamburguer-panel', '', '', '2025-08-29 17:59:59', '2025-08-29 17:59:59', '', 0, 'https://mod25.aeroclasses.com.br/?elementor_library=menu-hamburguer-panel', 0, 'elementor_library', '', 0),
(33, 1, '2025-08-29 17:59:59', '2025-08-29 17:59:59', '<h2>Menu</h2>							<ul>\n							<li>\n											<a href="#">\n							<svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M160 288h-16c-35.35 0-64 28.7-64 64.12v63.76c0 35.41 28.65 64.12 64 64.12h16c17.67 0 32-14.36 32-32.06V320.06c0-17.71-14.33-32.06-32-32.06zm208 0h-16c-17.67 0-32 14.35-32 32.06v127.88c0 17.7 14.33 32.06 32 32.06h16c35.35 0 64-28.71 64-64.12v-63.76c0-35.41-28.65-64.12-64-64.12zM256 32C112.91 32 4.57 151.13 0 288v112c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16V288c0-114.67 93.33-207.8 208-207.82 114.67.02 208 93.15 208 207.82v112c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16V288C507.43 151.13 399.09 32 256 32z"></path></svg>						\n										Suporte Técnico\n											</a>\n									</li>\n								<li>\n											<a href="#">\n							<svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 448c-110.532 0-200-89.431-200-200 0-110.495 89.472-200 200-200 110.491 0 200 89.471 200 200 0 110.53-89.431 200-200 200zm107.244-255.2c0 67.052-72.421 68.084-72.421 92.863V300c0 6.627-5.373 12-12 12h-45.647c-6.627 0-12-5.373-12-12v-8.659c0-35.745 27.1-50.034 47.579-61.516 17.561-9.845 28.324-16.541 28.324-29.579 0-17.246-21.999-28.693-39.784-28.693-23.189 0-33.894 10.977-48.942 29.969-4.057 5.12-11.46 6.071-16.666 2.124l-27.824-21.098c-5.107-3.872-6.251-11.066-2.644-16.363C184.846 131.491 214.94 112 261.794 112c49.071 0 101.45 38.304 101.45 88.8zM298 368c0 23.159-18.841 42-42 42s-42-18.841-42-42 18.841-42 42-42 42 18.841 42 42z"></path></svg>						\n										FAQ\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden="true" viewBox="0 0 640 512" xmlns="http://www.w3.org/2000/svg"><path d="M610.5 373.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 400.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm201.2 226.5c-2.3-1.2-4.6-2.6-6.8-3.9l-7.9 4.6c-6 3.4-12.8 5.3-19.6 5.3-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-5.5-17.7 1.9-36.4 17.9-45.7l7.9-4.6c-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-16-9.2-23.4-28-17.9-45.7.9-2.9 2.2-5.8 3.2-8.7-3.8-.3-7.5-1.2-11.4-1.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c10.1 0 19.5-3.2 27.2-8.5-1.2-3.8-2-7.7-2-11.8v-9.2z"></path></svg>						\n										Meu Perfil\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden="true" viewBox="0 0 640 512" xmlns="http://www.w3.org/2000/svg"><path d="M512.1 191l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0L552 6.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zm-10.5-58.8c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.7-82.4 14.3-52.8 52.8zM386.3 286.1l33.7 16.8c10.1 5.8 14.5 18.1 10.5 29.1-8.9 24.2-26.4 46.4-42.6 65.8-7.4 8.9-20.2 11.1-30.3 5.3l-29.1-16.8c-16 13.7-34.6 24.6-54.9 31.7v33.6c0 11.6-8.3 21.6-19.7 23.6-24.6 4.2-50.4 4.4-75.9 0-11.5-2-20-11.9-20-23.6V418c-20.3-7.2-38.9-18-54.9-31.7L74 403c-10 5.8-22.9 3.6-30.3-5.3-16.2-19.4-33.3-41.6-42.2-65.7-4-10.9.4-23.2 10.5-29.1l33.3-16.8c-3.9-20.9-3.9-42.4 0-63.4L12 205.8c-10.1-5.8-14.6-18.1-10.5-29 8.9-24.2 26-46.4 42.2-65.8 7.4-8.9 20.2-11.1 30.3-5.3l29.1 16.8c16-13.7 34.6-24.6 54.9-31.7V57.1c0-11.5 8.2-21.5 19.6-23.5 24.6-4.2 50.5-4.4 76-.1 11.5 2 20 11.9 20 23.6v33.6c20.3 7.2 38.9 18 54.9 31.7l29.1-16.8c10-5.8 22.9-3.6 30.3 5.3 16.2 19.4 33.2 41.6 42.1 65.8 4 10.9.1 23.2-10 29.1l-33.7 16.8c3.9 21 3.9 42.5 0 63.5zm-117.6 21.1c59.2-77-28.7-164.9-105.7-105.7-59.2 77 28.7 164.9 105.7 105.7zm243.4 182.7l-8.2 14.3c-3 5.3-9.4 7.5-15.1 5.4-11.8-4.4-22.6-10.7-32.1-18.6-4.6-3.8-5.8-10.5-2.8-15.7l8.2-14.3c-6.9-8-12.3-17.3-15.9-27.4h-16.5c-6 0-11.2-4.3-12.2-10.3-2-12-2.1-24.6 0-37.1 1-6 6.2-10.4 12.2-10.4h16.5c3.6-10.1 9-19.4 15.9-27.4l-8.2-14.3c-3-5.2-1.9-11.9 2.8-15.7 9.5-7.9 20.4-14.2 32.1-18.6 5.7-2.1 12.1.1 15.1 5.4l8.2 14.3c10.5-1.9 21.2-1.9 31.7 0l8.2-14.3c3-5.3 9.4-7.5 15.1-5.4 11.8 4.4 22.6 10.7 32.1 18.6 4.6 3.8 5.8 10.5 2.8 15.7l-8.2 14.3c6.9 8 12.3 17.3 15.9 27.4h16.5c6 0 11.2 4.3 12.2 10.3 2 12 2.1 24.6 0 37.1-1 6-6.2 10.4-12.2 10.4h-16.5c-3.6 10.1-9 19.4-15.9 27.4l8.2 14.3c3 5.2 1.9 11.9-2.8 15.7-9.5 7.9-20.4 14.2-32.1 18.6-5.7 2.1-12.1-.1-15.1-5.4l-8.2-14.3c-10.4 1.9-21.2 1.9-31.7 0zM501.6 431c38.5 29.6 82.4-14.3 52.8-52.8-38.5-29.6-82.4 14.3-52.8 52.8z"></path></svg>						\n										Configurações\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href="/wp-admin">\n							<svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M61.7 169.4l101.5 278C92.2 413 43.3 340.2 43.3 256c0-30.9 6.6-60.1 18.4-86.6zm337.9 75.9c0-26.3-9.4-44.5-17.5-58.7-10.8-17.5-20.9-32.4-20.9-49.9 0-19.6 14.8-37.8 35.7-37.8.9 0 1.8.1 2.8.2-37.9-34.7-88.3-55.9-143.7-55.9-74.3 0-139.7 38.1-177.8 95.9 5 .2 9.7.3 13.7.3 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l77.5 230.4L249.8 247l-33.1-90.8c-11.5-.7-22.3-2-22.3-2-11.5-.7-10.1-18.2 1.3-17.5 0 0 35.1 2.7 56 2.7 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l76.9 228.7 21.2-70.9c9-29.4 16-50.5 16-68.7zm-139.9 29.3l-63.8 185.5c19.1 5.6 39.2 8.7 60.1 8.7 24.8 0 48.5-4.3 70.6-12.1-.6-.9-1.1-1.9-1.5-2.9l-65.4-179.2zm183-120.7c.9 6.8 1.4 14 1.4 21.9 0 21.6-4 45.8-16.2 76.2l-65 187.9C426.2 403 468.7 334.5 468.7 256c0-37-9.4-71.8-26-102.1zM504 256c0 136.8-111.3 248-248 248C119.2 504 8 392.7 8 256 8 119.2 119.2 8 256 8c136.7 0 248 111.2 248 248zm-11.4 0c0-130.5-106.2-236.6-236.6-236.6C125.5 19.4 19.4 125.5 19.4 256S125.6 492.6 256 492.6c130.5 0 236.6-106.1 236.6-236.6z"></path></svg>						\n										Painel do WordPress\n											</a>\n									</li>\n						</ul>\n		<a href=""><svg aria-hidden="true" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"></path></svg>Dashboard</a>\n		<a href="https://mod25.aeroclasses.com.br/wp-login.php?action=logout&#038;redirect_to=https%3A%2F%2Fmod25.aeroclasses.com.br%2F&#038;_wpnonce=c41b667a6b"><svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M497 273L329 441c-15 15-41 4.5-41-17v-96H152c-13.3 0-24-10.7-24-24v-96c0-13.3 10.7-24 24-24h136V88c0-21.4 25.9-32 41-17l168 168c9.3 9.4 9.3 24.6 0 34zM192 436v-40c0-6.6-5.4-12-12-12H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h84c6.6 0 12-5.4 12-12V76c0-6.6-5.4-12-12-12H96c-53 0-96 43-96 96v192c0 53 43 96 96 96h84c6.6 0 12-5.4 12-12z"></path></svg>Logout</a>', 'MENU-HAMBURGUER-PANEL', '', 'inherit', 'closed', 'closed', '', '32-revision-v1', '', '', '2025-08-29 17:59:59', '2025-08-29 17:59:59', '', 32, 'https://mod25.aeroclasses.com.br/?p=33', 0, 'revision', '', 0),
(34, 1, '2025-08-29 18:00:16', '2025-08-29 18:00:16', '', 'placeholder.png', '', 'inherit', 'open', 'closed', '', 'placeholder-png', '', '', '2025-08-29 18:00:16', '2025-08-29 18:00:16', '', 0, 'https://mod25.aeroclasses.com.br/wp-content/uploads/2025/08/placeholder.png', 0, 'attachment', 'image/png', 0),
(35, 1, '2025-08-29 18:00:16', '2025-08-29 18:00:16', '<ul>\n							<li>\n							<svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm116-292H256v-70.9c0-10.7-13-16.1-20.5-8.5L121.2 247.5c-4.7 4.7-4.7 12.2 0 16.9l114.3 114.9c7.6 7.6 20.5 2.2 20.5-8.5V300h116c6.6 0 12-5.4 12-12v-64c0-6.6-5.4-12-12-12z"></path></svg>						\n										Voltar para Home\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href="/registro">\n							<svg aria-hidden="true" viewBox="0 0 640 512" xmlns="http://www.w3.org/2000/svg"><path d="M624 208h-64v-64c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v64h-64c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h64v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-64h64c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"></path></svg>						\n										Criar Conta\n											</a>\n									</li>\n						</ul>\n							<h2>Login</h2>							<ul>\n							<li>\n											<a href="/reset-password">\n							<svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M512 176.001C512 273.203 433.202 352 336 352c-11.22 0-22.19-1.062-32.827-3.069l-24.012 27.014A23.999 23.999 0 0 1 261.223 384H224v40c0 13.255-10.745 24-24 24h-40v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-78.059c0-6.365 2.529-12.47 7.029-16.971l161.802-161.802C163.108 213.814 160 195.271 160 176 160 78.798 238.797.001 335.999 0 433.488-.001 512 78.511 512 176.001zM336 128c0 26.51 21.49 48 48 48s48-21.49 48-48-21.49-48-48-48-48 21.49-48 48z"></path></svg>						\n										Perdeu sua senha?\n											</a>\n									</li>\n						</ul>', 'LOGIN-FORM', '', 'publish', 'closed', 'closed', '', 'login-form', '', '', '2025-08-29 18:00:16', '2025-08-29 18:00:16', '', 0, 'https://mod25.aeroclasses.com.br/?elementor_library=login-form', 0, 'elementor_library', '', 0),
(36, 1, '2025-08-29 18:00:16', '2025-08-29 18:00:16', '', 'LOGIN-FORM', '', 'inherit', 'closed', 'closed', '', '35-revision-v1', '', '', '2025-08-29 18:00:16', '2025-08-29 18:00:16', '', 35, 'https://mod25.aeroclasses.com.br/?p=36', 0, 'revision', '', 0),
(37, 1, '2025-08-29 18:00:16', '2025-08-29 18:00:16', '<ul>\n							<li>\n							<svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm116-292H256v-70.9c0-10.7-13-16.1-20.5-8.5L121.2 247.5c-4.7 4.7-4.7 12.2 0 16.9l114.3 114.9c7.6 7.6 20.5 2.2 20.5-8.5V300h116c6.6 0 12-5.4 12-12v-64c0-6.6-5.4-12-12-12z"></path></svg>						\n										Voltar para Home\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href="/registro">\n							<svg aria-hidden="true" viewBox="0 0 640 512" xmlns="http://www.w3.org/2000/svg"><path d="M624 208h-64v-64c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v64h-64c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h64v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-64h64c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"></path></svg>						\n										Criar Conta\n											</a>\n									</li>\n						</ul>\n							<h2>Login</h2>							<ul>\n							<li>\n											<a href="/reset-password">\n							<svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M512 176.001C512 273.203 433.202 352 336 352c-11.22 0-22.19-1.062-32.827-3.069l-24.012 27.014A23.999 23.999 0 0 1 261.223 384H224v40c0 13.255-10.745 24-24 24h-40v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-78.059c0-6.365 2.529-12.47 7.029-16.971l161.802-161.802C163.108 213.814 160 195.271 160 176 160 78.798 238.797.001 335.999 0 433.488-.001 512 78.511 512 176.001zM336 128c0 26.51 21.49 48 48 48s48-21.49 48-48-21.49-48-48-48-48 21.49-48 48z"></path></svg>						\n										Perdeu sua senha?\n											</a>\n									</li>\n						</ul>', 'LOGIN-FORM', '', 'inherit', 'closed', 'closed', '', '35-revision-v1', '', '', '2025-08-29 18:00:16', '2025-08-29 18:00:16', '', 35, 'https://mod25.aeroclasses.com.br/?p=37', 0, 'revision', '', 0),
(38, 1, '2025-08-29 18:04:50', '2025-08-29 18:04:50', '<h2>Adicionar Prova</h2>							<ul>\n							<li>\n											<a href="/dashboard">\n							<svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm116-292H256v-70.9c0-10.7-13-16.1-20.5-8.5L121.2 247.5c-4.7 4.7-4.7 12.2 0 16.9l114.3 114.9c7.6 7.6 20.5 2.2 20.5-8.5V300h116c6.6 0 12-5.4 12-12v-64c0-6.6-5.4-12-12-12z"></path></svg>						\n										Voltar ao Dashboard\n											</a>\n									</li>\n						</ul>', 'Formulário ADD Provas - by Admin', '', 'publish', 'closed', 'closed', '', 'formulario-add-provas-by-admin', '', '', '2025-08-29 18:04:50', '2025-08-29 18:04:50', '', 0, 'https://mod25.aeroclasses.com.br/?elementor_library=formulario-add-provas-by-admin', 0, 'elementor_library', '', 0),
(39, 1, '2025-08-29 18:04:50', '2025-08-29 18:04:50', '<h2>Adicionar Prova</h2>							<ul>\n							<li>\n											<a href="/dashboard">\n							<svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm116-292H256v-70.9c0-10.7-13-16.1-20.5-8.5L121.2 247.5c-4.7 4.7-4.7 12.2 0 16.9l114.3 114.9c7.6 7.6 20.5 2.2 20.5-8.5V300h116c6.6 0 12-5.4 12-12v-64c0-6.6-5.4-12-12-12z"></path></svg>						\n										Voltar ao Dashboard\n											</a>\n									</li>\n						</ul>', 'Formulário ADD Provas - by Admin', '', 'inherit', 'closed', 'closed', '', '38-revision-v1', '', '', '2025-08-29 18:04:50', '2025-08-29 18:04:50', '', 38, 'https://mod25.aeroclasses.com.br/?p=39', 0, 'revision', '', 0),
(40, 1, '2025-08-29 18:05:12', '2025-08-29 18:05:12', '<h2> área do aluno</h2>					<h2> área do professor</h2>					Please select listing to show.										<a href="#">\n									Instruções\n					</a>\n														<a href="#">\n									DGR\n					</a>\n														<a href="#">\n									Material de apoio\n					</a>\n														<a href="#">\n									Avaliação nivel\n					</a>\n														<a href="#">\n									Confirmar presença\n					</a>\n														<a href="#">\n									Exames\n					</a>\n						<p>Seja bem-vindo ao curso de Artigos Perigosos!</p><p>É um prazer tê-lo conosco nessa importante jornada de aprendizado. Ao longo deste curso, você terá acesso a conteúdos essenciais sobre o manuseio, transporte e armazenamento de materiais perigosos, sempre em conformidade com as normas nacionais e internacionais.</p><p>Nosso curso será realizado através da plataforma Google Meet, proporcionando uma experiência de aprendizado interativa e flexível. Seguimos rigorosamente as determinações previstas na IS n.º 175-002J (ANAC) e no "DANGEROUS GOODS TRAINING GUIDANCE, EDITION 1" (IATA), garantindo que você tenha acesso ao conteúdo mais atualizado e relevante.</p><p>Curso ministrado na modalidade não presencial síncrono (online).</p><p>O curso será ministrado por Cicero Melo, instrutor de Artigos Perigosos e piloto com 30 anos de experiência. Cicero é homologado pela ANAC e pela IATA desde 2008, trazendo um vasto conhecimento prático e teórico para enriquecer sua aprendizagem.</p><p>Estamos à disposição para qualquer dúvida ou esclarecimento. Aproveite ao máximo essa experiência e desejamos a você um excelente aprendizado!</p><p><strong> </strong></p><p><strong>Orientações para o Curso online ao vivo:</strong></p><p>1) O participante precisa de internet de qualidade;</p><p>2) Computador ou notebook, com webcam, microfone e caixa de som ou fone de ouvido;</p><p>3) As aulas são auditadas, portanto, o aluno deve assistir no mínimo 80% do curso, para ser liberado o link da lista de presença e avaliação.</p><p>4) O uso de caderno, caneta ou lápis para anotações é opcional.</p><p><strong>5) Se possível, imprimir o caderno de exercícios, disponível no material de apoio;</strong></p><p>6) O acesso ao Manual DGR será disponibilizado no 1º dia de treinamento, até o fim do curso.</p>			Please select listing to show.					Please select listing to show.', 'instruções', '', 'publish', 'closed', 'closed', '', 'instrucoes', '', '', '2025-08-29 18:05:13', '2025-08-29 18:05:13', '', 0, 'https://mod25.aeroclasses.com.br/?elementor_library=instrucoes', 0, 'elementor_library', '', 0),
(41, 1, '2025-08-29 18:05:13', '2025-08-29 18:05:13', '<h2> área do aluno</h2>					<h2> área do professor</h2>					Please select listing to show.										<a href="#">\n									Instruções\n					</a>\n														<a href="#">\n									DGR\n					</a>\n														<a href="#">\n									Material de apoio\n					</a>\n														<a href="#">\n									Avaliação nivel\n					</a>\n														<a href="#">\n									Confirmar presença\n					</a>\n														<a href="#">\n									Exames\n					</a>\n						<p>Seja bem-vindo ao curso de Artigos Perigosos!</p><p>É um prazer tê-lo conosco nessa importante jornada de aprendizado. Ao longo deste curso, você terá acesso a conteúdos essenciais sobre o manuseio, transporte e armazenamento de materiais perigosos, sempre em conformidade com as normas nacionais e internacionais.</p><p>Nosso curso será realizado através da plataforma Google Meet, proporcionando uma experiência de aprendizado interativa e flexível. Seguimos rigorosamente as determinações previstas na IS n.º 175-002J (ANAC) e no "DANGEROUS GOODS TRAINING GUIDANCE, EDITION 1" (IATA), garantindo que você tenha acesso ao conteúdo mais atualizado e relevante.</p><p>Curso ministrado na modalidade não presencial síncrono (online).</p><p>O curso será ministrado por Cicero Melo, instrutor de Artigos Perigosos e piloto com 30 anos de experiência. Cicero é homologado pela ANAC e pela IATA desde 2008, trazendo um vasto conhecimento prático e teórico para enriquecer sua aprendizagem.</p><p>Estamos à disposição para qualquer dúvida ou esclarecimento. Aproveite ao máximo essa experiência e desejamos a você um excelente aprendizado!</p><p><strong> </strong></p><p><strong>Orientações para o Curso online ao vivo:</strong></p><p>1) O participante precisa de internet de qualidade;</p><p>2) Computador ou notebook, com webcam, microfone e caixa de som ou fone de ouvido;</p><p>3) As aulas são auditadas, portanto, o aluno deve assistir no mínimo 80% do curso, para ser liberado o link da lista de presença e avaliação.</p><p>4) O uso de caderno, caneta ou lápis para anotações é opcional.</p><p><strong>5) Se possível, imprimir o caderno de exercícios, disponível no material de apoio;</strong></p><p>6) O acesso ao Manual DGR será disponibilizado no 1º dia de treinamento, até o fim do curso.</p>			Please select listing to show.					Please select listing to show.', 'instruções', '', 'inherit', 'closed', 'closed', '', '40-revision-v1', '', '', '2025-08-29 18:05:13', '2025-08-29 18:05:13', '', 40, 'https://mod25.aeroclasses.com.br/?p=41', 0, 'revision', '', 0),
(42, 1, '2025-08-29 18:05:32', '2025-08-29 18:05:32', '<h2> área do aluno</h2>					<h2> área do professor</h2>					Please select listing to show.										<a href="#">\n									Instruções\n					</a>\n														<a href="#">\n									DGR\n					</a>\n														<a href="#">\n									Material de apoio\n					</a>\n														<a href="#">\n									Avaliação nivel\n					</a>\n														<a href="#">\n									Confirmar presença\n					</a>\n														<a href="#">\n									Exames\n					</a>\n						<p>Prezado(a) aluno(a),</p><p>Informamos que o acesso ao <strong>Manual DGR</strong> será disponibilizado no <strong>e-mail cadastrado</strong>. Verifique sua caixa de entrada para garantir o recebimento do login e senha.</p><p>Abaixo, segue o link de acesso ao manual:</p>			Please select listing to show.		<p>Caso não receba o e-mail ou tenha qualquer dúvida, por favor, entre em contato conosco. Aproveite o conteúdo e bom aprendizado!</p>', 'DGR', '', 'publish', 'closed', 'closed', '', 'dgr', '', '', '2025-08-29 18:05:32', '2025-08-29 18:05:32', '', 0, 'https://mod25.aeroclasses.com.br/?elementor_library=dgr', 0, 'elementor_library', '', 0),
(43, 1, '2025-08-29 18:05:32', '2025-08-29 18:05:32', '<h2> área do aluno</h2>					<h2> área do professor</h2>					Please select listing to show.										<a href="#">\n									Instruções\n					</a>\n														<a href="#">\n									DGR\n					</a>\n														<a href="#">\n									Material de apoio\n					</a>\n														<a href="#">\n									Avaliação nivel\n					</a>\n														<a href="#">\n									Confirmar presença\n					</a>\n														<a href="#">\n									Exames\n					</a>\n						<p>Prezado(a) aluno(a),</p><p>Informamos que o acesso ao <strong>Manual DGR</strong> será disponibilizado no <strong>e-mail cadastrado</strong>. Verifique sua caixa de entrada para garantir o recebimento do login e senha.</p><p>Abaixo, segue o link de acesso ao manual:</p>			Please select listing to show.		<p>Caso não receba o e-mail ou tenha qualquer dúvida, por favor, entre em contato conosco. Aproveite o conteúdo e bom aprendizado!</p>', 'DGR', '', 'inherit', 'closed', 'closed', '', '42-revision-v1', '', '', '2025-08-29 18:05:32', '2025-08-29 18:05:32', '', 42, 'https://mod25.aeroclasses.com.br/?p=43', 0, 'revision', '', 0),
(44, 1, '2025-08-29 18:05:57', '2025-08-29 18:05:57', '<h2> área do aluno</h2>					<h2> área do professor</h2>					Please select listing to show.										<a href="#">\n									Instruções\n					</a>\n														<a href="#">\n									DGR\n					</a>\n														<a href="#">\n									Material de apoio\n					</a>\n														<a href="#">\n									Avaliação nivel\n					</a>\n														<a href="#">\n									Confirmar presença\n					</a>\n														<a href="#">\n									Exames\n					</a>\n						<p>O instrutor será responsável pela liberação do material do curso ao longo das aulas.</p><p>O conteúdo será disponibilizado gradualmente, de acordo com o andamento do programa, garantindo que os alunos tenham acesso aos recursos necessários no momento mais apropriado para o desenvolvimento do aprendizado.</p>			Please select listing to show.		[sgc_materiais_curso]', 'materia de apoio', '', 'publish', 'closed', 'closed', '', 'materia-de-apoio', '', '', '2025-08-29 18:05:57', '2025-08-29 18:05:57', '', 0, 'https://mod25.aeroclasses.com.br/?elementor_library=materia-de-apoio', 0, 'elementor_library', '', 0),
(45, 1, '2025-08-29 18:05:57', '2025-08-29 18:05:57', '<h2> área do aluno</h2>					<h2> área do professor</h2>					Please select listing to show.										<a href="#">\n									Instruções\n					</a>\n														<a href="#">\n									DGR\n					</a>\n														<a href="#">\n									Material de apoio\n					</a>\n														<a href="#">\n									Avaliação nivel\n					</a>\n														<a href="#">\n									Confirmar presença\n					</a>\n														<a href="#">\n									Exames\n					</a>\n						<p>O instrutor será responsável pela liberação do material do curso ao longo das aulas.</p><p>O conteúdo será disponibilizado gradualmente, de acordo com o andamento do programa, garantindo que os alunos tenham acesso aos recursos necessários no momento mais apropriado para o desenvolvimento do aprendizado.</p>			Please select listing to show.		[sgc_materiais_curso]', 'materia de apoio', '', 'inherit', 'closed', 'closed', '', '44-revision-v1', '', '', '2025-08-29 18:05:57', '2025-08-29 18:05:57', '', 44, 'https://mod25.aeroclasses.com.br/?p=45', 0, 'revision', '', 0),
(46, 1, '2025-08-29 18:06:26', '2025-08-29 18:06:26', '<h2> área do aluno</h2>					<h2> área do professor</h2>					Please select listing to show.										<a href="#">\n									Instruções\n					</a>\n														<a href="#">\n									DGR\n					</a>\n														<a href="#">\n									Material de apoio\n					</a>\n														<a href="#">\n									Avaliação nivel\n					</a>\n														<a href="#">\n									Confirmar presença\n					</a>\n														<a href="#">\n									Exames\n					</a>\n									<h2>Confirmação de presença</h2>		<p>Prezado(a) aluno(a),</p><p>Lembramos que é <strong>OBRIGATÓRIO O PREENCHIMENTO CORRETO DOS DADOS SOLICITADOS NA LISTAGEM DE PRESENÇA</strong>, pois é por meio dessa informação que solicitamos a emissão do seu <strong>certificado</strong> de conclusão do curso.</p><p>Portanto, verifique atentamente seus dados antes de finalizar o preenchimento para garantir que o processo de emissão do certificado seja realizado sem contratempos.</p><p>Agradecemos a sua colaboração e desejamos um ótimo aprendizado!</p>			Please select listing to show.					Please select listing to show.		[sgc_form_confirmacao_presenca]', 'Confirmar presença', '', 'publish', 'closed', 'closed', '', 'confirmar-presenca', '', '', '2025-08-29 18:06:26', '2025-08-29 18:06:26', '', 0, 'https://mod25.aeroclasses.com.br/?elementor_library=confirmar-presenca', 0, 'elementor_library', '', 0),
(47, 1, '2025-08-29 18:06:26', '2025-08-29 18:06:26', '<h2> área do aluno</h2>					<h2> área do professor</h2>					Please select listing to show.										<a href="#">\n									Instruções\n					</a>\n														<a href="#">\n									DGR\n					</a>\n														<a href="#">\n									Material de apoio\n					</a>\n														<a href="#">\n									Avaliação nivel\n					</a>\n														<a href="#">\n									Confirmar presença\n					</a>\n														<a href="#">\n									Exames\n					</a>\n									<h2>Confirmação de presença</h2>		<p>Prezado(a) aluno(a),</p><p>Lembramos que é <strong>OBRIGATÓRIO O PREENCHIMENTO CORRETO DOS DADOS SOLICITADOS NA LISTAGEM DE PRESENÇA</strong>, pois é por meio dessa informação que solicitamos a emissão do seu <strong>certificado</strong> de conclusão do curso.</p><p>Portanto, verifique atentamente seus dados antes de finalizar o preenchimento para garantir que o processo de emissão do certificado seja realizado sem contratempos.</p><p>Agradecemos a sua colaboração e desejamos um ótimo aprendizado!</p>			Please select listing to show.					Please select listing to show.		[sgc_form_confirmacao_presenca]', 'Confirmar presença', '', 'inherit', 'closed', 'closed', '', '46-revision-v1', '', '', '2025-08-29 18:06:26', '2025-08-29 18:06:26', '', 46, 'https://mod25.aeroclasses.com.br/?p=47', 0, 'revision', '', 0),
(48, 1, '2025-08-29 18:06:45', '2025-08-29 18:06:45', '<h2> área do aluno</h2>					<h2> área do professor</h2>					Please select listing to show.										<a href="#">\n									Instruções\n					</a>\n														<a href="#">\n									DGR\n					</a>\n														<a href="#">\n									Material de apoio\n					</a>\n														<a href="#">\n									Avaliação nivel\n					</a>\n														<a href="#">\n									Confirmar presença\n					</a>\n														<a href="#">\n									Exames\n					</a>\n						<p>Prezado(a) aluno(a),</p><p>Você está prestes a iniciar a prova. Antes de começar, pedimos que leia atentamente as <strong>instruções importantes</strong> abaixo:</p><ol><li><strong>Leia cada uma das perguntas cuidadosamente</strong> antes de respondê-las.</li><li>Para cada pergunta, <strong>existe somente uma única resposta correta</strong>.</li><li><strong>Atenção</strong>: as respostas das questões estão <strong>randomizadas</strong>.</li><li>Você tem um <strong>tempo máximo de 3 horas (180 minutos)</strong> para completar o teste. Para receber sua certificação, será necessário acertar <strong>80% das perguntas</strong> propostas.</li></ol><p>Boa sorte e aproveite ao máximo esse momento!</p>			Please select listing to show.', 'Provas', '', 'publish', 'closed', 'closed', '', 'provas', '', '', '2025-08-29 18:06:45', '2025-08-29 18:06:45', '', 0, 'https://mod25.aeroclasses.com.br/?elementor_library=provas', 0, 'elementor_library', '', 0),
(49, 1, '2025-08-29 18:06:45', '2025-08-29 18:06:45', '<h2> área do aluno</h2>					<h2> área do professor</h2>					Please select listing to show.										<a href="#">\n									Instruções\n					</a>\n														<a href="#">\n									DGR\n					</a>\n														<a href="#">\n									Material de apoio\n					</a>\n														<a href="#">\n									Avaliação nivel\n					</a>\n														<a href="#">\n									Confirmar presença\n					</a>\n														<a href="#">\n									Exames\n					</a>\n						<p>Prezado(a) aluno(a),</p><p>Você está prestes a iniciar a prova. Antes de começar, pedimos que leia atentamente as <strong>instruções importantes</strong> abaixo:</p><ol><li><strong>Leia cada uma das perguntas cuidadosamente</strong> antes de respondê-las.</li><li>Para cada pergunta, <strong>existe somente uma única resposta correta</strong>.</li><li><strong>Atenção</strong>: as respostas das questões estão <strong>randomizadas</strong>.</li><li>Você tem um <strong>tempo máximo de 3 horas (180 minutos)</strong> para completar o teste. Para receber sua certificação, será necessário acertar <strong>80% das perguntas</strong> propostas.</li></ol><p>Boa sorte e aproveite ao máximo esse momento!</p>			Please select listing to show.', 'Provas', '', 'inherit', 'closed', 'closed', '', '48-revision-v1', '', '', '2025-08-29 18:06:45', '2025-08-29 18:06:45', '', 48, 'https://mod25.aeroclasses.com.br/?p=49', 0, 'revision', '', 0),
(50, 1, '2025-08-29 18:07:18', '2025-08-29 18:07:18', '<h2>Adicionar link da aula</h2>							<ul>\n							<li>\n											<a href="/dashboard">\n							<svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm116-292H256v-70.9c0-10.7-13-16.1-20.5-8.5L121.2 247.5c-4.7 4.7-4.7 12.2 0 16.9l114.3 114.9c7.6 7.6 20.5 2.2 20.5-8.5V300h116c6.6 0 12-5.4 12-12v-64c0-6.6-5.4-12-12-12z"></path></svg>						\n										Voltar ao Dashboard\n											</a>\n									</li>\n						</ul>', 'Formulário ADD link - by Admin', '', 'publish', 'closed', 'closed', '', 'formulario-add-link-by-admin', '', '', '2025-08-29 18:07:18', '2025-08-29 18:07:18', '', 0, 'https://mod25.aeroclasses.com.br/?elementor_library=formulario-add-link-by-admin', 0, 'elementor_library', '', 0),
(51, 1, '2025-08-29 18:07:18', '2025-08-29 18:07:18', '<h2>Adicionar link da aula</h2>							<ul>\n							<li>\n											<a href="/dashboard">\n							<svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm116-292H256v-70.9c0-10.7-13-16.1-20.5-8.5L121.2 247.5c-4.7 4.7-4.7 12.2 0 16.9l114.3 114.9c7.6 7.6 20.5 2.2 20.5-8.5V300h116c6.6 0 12-5.4 12-12v-64c0-6.6-5.4-12-12-12z"></path></svg>						\n										Voltar ao Dashboard\n											</a>\n									</li>\n						</ul>', 'Formulário ADD link - by Admin', '', 'inherit', 'closed', 'closed', '', '50-revision-v1', '', '', '2025-08-29 18:07:18', '2025-08-29 18:07:18', '', 50, 'https://mod25.aeroclasses.com.br/?p=51', 0, 'revision', '', 0),
(52, 1, '2025-08-29 18:07:50', '2025-08-29 18:07:50', '<h2>Adicionar Periodo do cursos</h2>							<ul>\n							<li>\n											<a href="/dashboard">\n							<svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm116-292H256v-70.9c0-10.7-13-16.1-20.5-8.5L121.2 247.5c-4.7 4.7-4.7 12.2 0 16.9l114.3 114.9c7.6 7.6 20.5 2.2 20.5-8.5V300h116c6.6 0 12-5.4 12-12v-64c0-6.6-5.4-12-12-12z"></path></svg>						\n										Voltar ao Dashboard\n											</a>\n									</li>\n						</ul>', 'Formulário ADD periodo - by Admin', '', 'publish', 'closed', 'closed', '', 'formulario-add-periodo-by-admin', '', '', '2025-08-29 18:07:50', '2025-08-29 18:07:50', '', 0, 'https://mod25.aeroclasses.com.br/?elementor_library=formulario-add-periodo-by-admin', 0, 'elementor_library', '', 0),
(53, 1, '2025-08-29 18:07:50', '2025-08-29 18:07:50', '<h2>Adicionar Periodo do cursos</h2>							<ul>\n							<li>\n											<a href="/dashboard">\n							<svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm116-292H256v-70.9c0-10.7-13-16.1-20.5-8.5L121.2 247.5c-4.7 4.7-4.7 12.2 0 16.9l114.3 114.9c7.6 7.6 20.5 2.2 20.5-8.5V300h116c6.6 0 12-5.4 12-12v-64c0-6.6-5.4-12-12-12z"></path></svg>						\n										Voltar ao Dashboard\n											</a>\n									</li>\n						</ul>', 'Formulário ADD periodo - by Admin', '', 'inherit', 'closed', 'closed', '', '52-revision-v1', '', '', '2025-08-29 18:07:50', '2025-08-29 18:07:50', '', 52, 'https://mod25.aeroclasses.com.br/?p=53', 0, 'revision', '', 0),
(54, 1, '2025-08-29 18:08:20', '2025-08-29 18:08:20', '<h2>Adicionar Formulário</h2>							<ul>\n							<li>\n											<a href="/dashboard">\n							<svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm116-292H256v-70.9c0-10.7-13-16.1-20.5-8.5L121.2 247.5c-4.7 4.7-4.7 12.2 0 16.9l114.3 114.9c7.6 7.6 20.5 2.2 20.5-8.5V300h116c6.6 0 12-5.4 12-12v-64c0-6.6-5.4-12-12-12z"></path></svg>						\n										Voltar ao Dashboard\n											</a>\n									</li>\n						</ul>', 'Formulário ADD form - by Admin', '', 'publish', 'closed', 'closed', '', 'formulario-add-form-by-admin', '', '', '2025-08-29 18:08:20', '2025-08-29 18:08:20', '', 0, 'https://mod25.aeroclasses.com.br/?elementor_library=formulario-add-form-by-admin', 0, 'elementor_library', '', 0),
(55, 1, '2025-08-29 18:08:20', '2025-08-29 18:08:20', '<h2>Adicionar Formulário</h2>							<ul>\n							<li>\n											<a href="/dashboard">\n							<svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zm116-292H256v-70.9c0-10.7-13-16.1-20.5-8.5L121.2 247.5c-4.7 4.7-4.7 12.2 0 16.9l114.3 114.9c7.6 7.6 20.5 2.2 20.5-8.5V300h116c6.6 0 12-5.4 12-12v-64c0-6.6-5.4-12-12-12z"></path></svg>						\n										Voltar ao Dashboard\n											</a>\n									</li>\n						</ul>', 'Formulário ADD form - by Admin', '', 'inherit', 'closed', 'closed', '', '54-revision-v1', '', '', '2025-08-29 18:08:20', '2025-08-29 18:08:20', '', 54, 'https://mod25.aeroclasses.com.br/?p=55', 0, 'revision', '', 0),
(56, 1, '2025-08-29 18:08:48', '2025-08-29 18:08:48', '<h2> área do aluno</h2>					<h2> área do professor</h2>					Please select listing to show.										<a href="#">\n									Instruções\n					</a>\n														<a href="#">\n									DGR\n					</a>\n														<a href="#">\n									Material de apoio\n					</a>\n														<a href="#">\n									Avaliação nivel\n					</a>\n														<a href="#">\n									Confirmar presença\n					</a>\n														<a href="#">\n									Exames\n					</a>\n									Please select listing to show.', 'formulario-aula', '', 'publish', 'closed', 'closed', '', 'formulario-aula', '', '', '2025-08-29 18:08:48', '2025-08-29 18:08:48', '', 0, 'https://mod25.aeroclasses.com.br/?elementor_library=formulario-aula', 0, 'elementor_library', '', 0),
(57, 1, '2025-08-29 18:08:48', '2025-08-29 18:08:48', '<h2> área do aluno</h2>					<h2> área do professor</h2>					Please select listing to show.										<a href="#">\n									Instruções\n					</a>\n														<a href="#">\n									DGR\n					</a>\n														<a href="#">\n									Material de apoio\n					</a>\n														<a href="#">\n									Avaliação nivel\n					</a>\n														<a href="#">\n									Confirmar presença\n					</a>\n														<a href="#">\n									Exames\n					</a>\n									Please select listing to show.', 'formulario-aula', '', 'inherit', 'closed', 'closed', '', '56-revision-v1', '', '', '2025-08-29 18:08:48', '2025-08-29 18:08:48', '', 56, 'https://mod25.aeroclasses.com.br/?p=57', 0, 'revision', '', 0),
(58, 1, '2025-08-29 18:11:44', '2025-08-29 18:11:44', '{"version": 3, "isGlobalStylesUserThemeJSON": true }', 'Custom Styles', '', 'publish', 'closed', 'closed', '', 'wp-global-styles-hello-elementor', '', '', '2025-08-29 18:11:44', '2025-08-29 18:11:44', '', 0, 'https://mod25.aeroclasses.com.br/wp-global-styles-hello-elementor/', 0, 'wp_global_styles', '', 0),
(59, 1, '2025-08-29 18:12:09', '2025-08-29 18:12:09', '', 'Elementor-post-screenshot_28_2025-08-29-18-12-09_2e3de2ca.png', '', 'inherit', 'open', 'closed', '', 'elementor-post-screenshot_28_2025-08-29-18-12-09_2e3de2ca-png', '', '', '2025-08-29 18:12:09', '2025-08-29 18:12:09', '', 28, 'https://mod25.aeroclasses.com.br/wp-content/uploads/elementor/screenshots/Elementor-post-screenshot_28_2025-08-29-18-12-09_2e3de2ca.png', 0, 'attachment', 'image/png', 0),
(60, 1, '2025-08-29 18:20:05', '0000-00-00 00:00:00', 'Ops! Acesso Bloqueado\n						Parece que seu acesso foi bloqueado pelo administrador do site.\n<br>\nEntre em <a href="mailto:[jet_engine  component=option page=site-config field=_email_admin]">CONTATO</a> para reativar sua conta!\n						<button type="button" aria-label="Dispensar este alerta.">\n									&times;\n							</button>\n							<h2> área do aluno</h2>										<a href="#">\n									Instruções\n					</a>\n														<a href="#">\n									DGR\n					</a>\n														<a href="#">\n									Material de apoio\n					</a>\n														<a href="#">\n									Formulários\n					</a>\n														<a href="#">\n									Confirmar presença\n					</a>\n														<a href="#">\n									Exames\n					</a>\n									<h2>Seja muito bem-vindo a Área do Aluno!</h2>		<p><strong>É um prazer tê-lo conosco nessa importante jornada de aprendizado. Ao longo deste curso, você terá acesso a conteúdos essenciais sobre o manuseio, transporte e armazenamento de materiais perigosos, sempre em conformidade com as normas nacionais e internacionais.</strong></p><p><strong>Nosso curso será realizado através da plataforma Google Meet, proporcionando uma experiência de aprendizado interativa e flexível. Seguimos rigorosamente as determinações previstas na IS n.º 175-002J (ANAC) e no "DANGEROUS GOODS TRAINING GUIDANCE, EDITION 1" (IATA), garantindo que você tenha acesso ao conteúdo mais atualizado e relevante.</strong></p><p><strong>Curso ministrado na modalidade não presencial síncrono (online).</strong></p><p><strong>O curso será ministrado por Cicero Melo, instrutor de Artigos Perigosos e piloto com 30 anos de experiência. Cicero é homologado pela ANAC e pela IATA desde 2008, trazendo um vasto conhecimento prático e teórico para enriquecer sua aprendizagem.</strong></p><p><strong>Estamos à disposição para qualquer dúvida ou esclarecimento. Aproveite ao máximo essa experiência e desejamos a você um excelente aprendizado!</strong></p>', 'Elementor Single Post #60', '', 'draft', 'closed', 'closed', '', '', '', '', '2025-08-29 18:20:05', '2025-08-29 18:20:05', '', 0, 'https://mod25.aeroclasses.com.br/?post_type=elementor_library&#038;p=60', 0, 'elementor_library', '', 0),
(61, 1, '2025-08-29 18:17:08', '2025-08-29 18:17:08', '', 'Elementor Single Post #60', '', 'inherit', 'closed', 'closed', '', '60-revision-v1', '', '', '2025-08-29 18:17:08', '2025-08-29 18:17:08', '', 60, 'https://mod25.aeroclasses.com.br/?p=61', 0, 'revision', '', 0),
(62, 1, '2025-08-29 18:20:05', '2025-08-29 18:20:05', 'Ops! Acesso Bloqueado\n						Parece que seu acesso foi bloqueado pelo administrador do site.\n<br>\nEntre em <a href="mailto:[jet_engine  component=option page=site-config field=_email_admin]">CONTATO</a> para reativar sua conta!\n						<button type="button" aria-label="Dispensar este alerta.">\n									&times;\n							</button>\n							<h2> área do aluno</h2>										<a href="#">\n									Instruções\n					</a>\n														<a href="#">\n									DGR\n					</a>\n														<a href="#">\n									Material de apoio\n					</a>\n														<a href="#">\n									Formulários\n					</a>\n														<a href="#">\n									Confirmar presença\n					</a>\n														<a href="#">\n									Exames\n					</a>\n									<h2>Seja muito bem-vindo a Área do Aluno!</h2>		<p><strong>É um prazer tê-lo conosco nessa importante jornada de aprendizado. Ao longo deste curso, você terá acesso a conteúdos essenciais sobre o manuseio, transporte e armazenamento de materiais perigosos, sempre em conformidade com as normas nacionais e internacionais.</strong></p><p><strong>Nosso curso será realizado através da plataforma Google Meet, proporcionando uma experiência de aprendizado interativa e flexível. Seguimos rigorosamente as determinações previstas na IS n.º 175-002J (ANAC) e no "DANGEROUS GOODS TRAINING GUIDANCE, EDITION 1" (IATA), garantindo que você tenha acesso ao conteúdo mais atualizado e relevante.</strong></p><p><strong>Curso ministrado na modalidade não presencial síncrono (online).</strong></p><p><strong>O curso será ministrado por Cicero Melo, instrutor de Artigos Perigosos e piloto com 30 anos de experiência. Cicero é homologado pela ANAC e pela IATA desde 2008, trazendo um vasto conhecimento prático e teórico para enriquecer sua aprendizagem.</strong></p><p><strong>Estamos à disposição para qualquer dúvida ou esclarecimento. Aproveite ao máximo essa experiência e desejamos a você um excelente aprendizado!</strong></p>', 'Elementor Single Post #60', '', 'inherit', 'closed', 'closed', '', '60-revision-v1', '', '', '2025-08-29 18:20:05', '2025-08-29 18:20:05', '', 60, 'https://mod25.aeroclasses.com.br/?p=62', 0, 'revision', '', 0),
(63, 1, '2025-08-29 18:21:34', '0000-00-00 00:00:00', '', 'Elementor Single Post #63', '', 'draft', 'closed', 'closed', '', '', '', '', '2025-08-29 18:21:34', '2025-08-29 18:21:34', '', 0, 'https://mod25.aeroclasses.com.br/?post_type=elementor_library&#038;p=63', 0, 'elementor_library', '', 0);
INSERT INTO `wpmr_posts` VALUES
(64, 1, '2025-08-29 18:20:36', '2025-08-29 18:20:36', '', 'Elementor Single Post #63', '', 'inherit', 'closed', 'closed', '', '63-revision-v1', '', '', '2025-08-29 18:20:36', '2025-08-29 18:20:36', '', 63, 'https://mod25.aeroclasses.com.br/?p=64', 0, 'revision', '', 0),
(65, 1, '2025-08-29 18:21:34', '2025-08-29 18:21:34', '', 'Elementor Single Post #63', '', 'inherit', 'closed', 'closed', '', '63-revision-v1', '', '', '2025-08-29 18:21:34', '2025-08-29 18:21:34', '', 63, 'https://mod25.aeroclasses.com.br/?p=65', 0, 'revision', '', 0);

-- --------------------------------------------------------

--
-- Table structure for table `wpmr_termmeta`
--

CREATE TABLE `wpmr_termmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpmr_terms`
--

CREATE TABLE `wpmr_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) NOT NULL DEFAULT '',
  `slug` varchar(200) NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT 0,
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpmr_terms`
--

INSERT INTO `wpmr_terms` VALUES
(1, 'Uncategorized', 'uncategorized', 0),
(2, 'header', 'header', 0),
(3, 'section', 'section', 0),
(4, 'hello-elementor', 'hello-elementor', 0),
(5, 'single-post', 'single-post', 0);

-- --------------------------------------------------------

--
-- Table structure for table `wpmr_term_relationships`
--

CREATE TABLE `wpmr_term_relationships` (
  `object_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `term_order` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpmr_term_relationships`
--

INSERT INTO `wpmr_term_relationships` VALUES
(1, 1, 0),
(21, 2, 0),
(24, 2, 0),
(27, 2, 0),
(28, 2, 0),
(30, 3, 0),
(32, 3, 0),
(35, 3, 0),
(38, 3, 0),
(40, 3, 0),
(42, 3, 0),
(44, 3, 0),
(46, 3, 0),
(48, 3, 0),
(50, 3, 0),
(52, 3, 0),
(54, 3, 0),
(56, 3, 0),
(58, 4, 0),
(60, 5, 0),
(63, 5, 0);

-- --------------------------------------------------------

--
-- Table structure for table `wpmr_term_taxonomy`
--

CREATE TABLE `wpmr_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `taxonomy` varchar(32) NOT NULL DEFAULT '',
  `description` longtext NOT NULL,
  `parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `count` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpmr_term_taxonomy`
--

INSERT INTO `wpmr_term_taxonomy` VALUES
(1, 1, 'category', '', 0, 1),
(2, 2, 'elementor_library_type', '', 0, 2),
(3, 3, 'elementor_library_type', '', 0, 13),
(4, 4, 'wp_theme', '', 0, 1),
(5, 5, 'elementor_library_type', '', 0, 0);

-- --------------------------------------------------------

--
-- Table structure for table `wpmr_usermeta`
--

CREATE TABLE `wpmr_usermeta` (
  `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpmr_usermeta`
--

INSERT INTO `wpmr_usermeta` VALUES
(1, 1, 'nickname', 'apefi'),
(2, 1, 'first_name', ''),
(3, 1, 'last_name', ''),
(4, 1, 'description', ''),
(5, 1, 'rich_editing', 'true'),
(6, 1, 'syntax_highlighting', 'true'),
(7, 1, 'comment_shortcuts', 'false'),
(8, 1, 'admin_color', 'fresh'),
(9, 1, 'use_ssl', '0'),
(10, 1, 'show_admin_bar_front', 'true'),
(11, 1, 'locale', ''),
(12, 1, 'wpmr_capabilities', 'a:1:{s:13:"administrator";b:1;}'),
(13, 1, 'wpmr_user_level', '10'),
(14, 1, 'dismissed_wp_pointers', 'theme_editor_notice'),
(15, 1, 'show_welcome_panel', '0'),
(17, 1, 'wpmr_dashboard_quick_press_last_post_id', '5'),
(18, 1, 'community-events-location', 'a:1:{s:2:"ip";s:12:"189.33.242.0";}'),
(19, 1, 'closedpostboxes_dashboard', 'a:0:{}'),
(20, 1, 'metaboxhidden_dashboard', 'a:6:{i:0;s:20:"e-dashboard-overview";i:1;s:21:"dashboard_site_health";i:2;s:19:"dashboard_right_now";i:3;s:18:"dashboard_activity";i:4;s:21:"dashboard_quick_press";i:5;s:17:"dashboard_primary";}'),
(21, 1, 'wpmr_user-settings', 'libraryContent=browse'),
(22, 1, 'wpmr_user-settings-time', '1756477664'),
(23, 1, '_hello_elementor_install_notice', '1'),
(25, 1, 'elementor_introduction', 'a:3:{s:27:"ai-get-started-announcement";b:1;s:20:"globals_introduction";b:1;s:35:"upload_json_warning_generic_message";b:1;}');

-- --------------------------------------------------------

--
-- Table structure for table `wpmr_users`
--

CREATE TABLE `wpmr_users` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) NOT NULL DEFAULT '',
  `user_pass` varchar(255) NOT NULL DEFAULT '',
  `user_nicename` varchar(50) NOT NULL DEFAULT '',
  `user_email` varchar(100) NOT NULL DEFAULT '',
  `user_url` varchar(100) NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT 0,
  `display_name` varchar(250) NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`),
  KEY `user_email` (`user_email`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpmr_users`
--

INSERT INTO `wpmr_users` VALUES
(1, 'apefi', '$wp$2y$10$cjBzfDA9qrn4uMVSvWE2hu2C8sx9WPrAEza0ZqmZP/V9c7efuW/OG', 'apefi', 'apefia1998@gmail.com', 'https://mod25.aeroclasses.com.br', '2025-08-29 14:15:39', '', 0, 'apefi');

-- --------------------------------------------------------

/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
