casts.com | 6.1.0 | * | Crowdsignal | crowdsignal.net | 6.2.0 | * | Anghami | anghami.com | 6.3.0 | * | Bluesky | bsky.app | 6.6.0 | * | Canva | canva.com | 6.8.0 | * * No longer supported providers: * * | Provider | Flavor | Since | Removed | * | ------------ | -------------------- | --------- | --------- | * | Qik | qik.com | 2.9.0 | 3.9.0 | * | Viddler | viddler.com | 2.9.0 | 4.0.0 | * | Revision3 | revision3.com | 2.9.0 | 4.2.0 | * | Blip | blip.tv | 2.9.0 | 4.4.0 | * | Rdio | rdio.com | 3.6.0 | 4.4.1 | * | Rdio | rd.io | 3.6.0 | 4.4.1 | * | Vine | vine.co | 4.1.0 | 4.9.0 | * | Photobucket | photobucket.com | 2.9.0 | 5.1.0 | * | Funny or Die | funnyordie.com | 3.0.0 | 5.1.0 | * | CollegeHumor | collegehumor.com | 4.0.0 | 5.3.1 | * | Hulu | hulu.com | 2.9.0 | 5.5.0 | * | Instagram | instagram.com | 3.5.0 | 5.5.2 | * | Instagram | instagr.am | 3.5.0 | 5.5.2 | * | Instagram TV | instagram.com | 5.1.0 | 5.5.2 | * | Instagram TV | instagr.am | 5.1.0 | 5.5.2 | * | Facebook | facebook.com | 4.7.0 | 5.5.2 | * | Meetup.com | meetup.com | 3.9.0 | 6.0.1 | * | Meetup.com | meetu.ps | 3.9.0 | 6.0.1 | * | SlideShare | slideshare.net | 3.5.0 | 6.6.0 | * * @see wp_oembed_add_provider() * * @since 2.9.0 * * @param array[] $providers An array of arrays containing data about popular oEmbed providers. */ $this->providers = apply_filters( 'oembed_providers', $providers ); // Fix any embeds that contain new lines in the middle of the HTML which breaks wpautop(). add_filter( 'oembed_dataparse', array( $this, '_strip_newlines' ), 10, 3 ); } /** * Exposes private/protected methods for backward compatibility. * * @since 4.0.0 * * @param string $name Method to call. * @param array $arguments Arguments to pass when calling. * @return mixed|false Return value of the callback, false otherwise. */ public function __call( $name, $arguments ) { if ( in_array( $name, $this->compat_methods, true ) ) { return $this->$name( ...$arguments ); } return false; } /** * Takes a URL and returns the corresponding oEmbed provider's URL, if there is one. * * @since 4.0.0 * * @see WP_oEmbed::discover() * * @param string $url The URL to the content. * @param string|array $args { * Optional. Additional provider arguments. Default empty. * * @type bool $discover Optional. Determines whether to attempt to discover link tags * at the given URL for an oEmbed provider when the provider URL * is not found in the built-in providers list. Default true. * } * @return string|false The oEmbed provider URL on success, false on failure. */ public function get_provider( $url, $args = '' ) { $args = wp_parse_args( $args ); $provider = false; if ( ! isset( $args['discover'] ) ) { $args['discover'] = true; } foreach ( $this->providers as $matchmask => $data ) { list( $providerurl, $regex ) = $data; // Turn the asterisk-type provider URLs into regex. if ( ! $regex ) { $matchmask = '#' . str_replace( '___wildcard___', '(.+)', preg_quote( str_replace( '*', '___wildcard___', $matchmask ), '#' ) ) . '#i'; $matchmask = preg_replace( '|^#http\\\://|', '#https?\://', $matchmask ); } if ( preg_match( $matchmask, $url ) ) { $provider = str_replace( '{format}', 'json', $providerurl ); // JSON is easier to deal with than XML. break; } } if ( ! $provider && $args['discover'] ) { $provider = $this->discover( $url ); } return $provider; } /** * Adds an oEmbed provider. * * The provider is added just-in-time when wp_oembed_add_provider() is called before * the {@see 'plugins_loaded'} hook. * * The just-in-time addition is for the benefit of the {@see 'oembed_providers'} filter. * * @since 4.0.0 * * @see wp_oembed_add_provider() * * @param string $format Format of URL that this provider can handle. You can use * asterisks as wildcards. * @param string $provider The URL to the oEmbed provider.. * @param bool $regex Optional. Whether the $format parameter is in a regex format. * Default false. */ public static function _add_provider_early( $format, $provider, $regex = false ) { if ( empty( self::$early_providers['add'] ) ) { self::$early_providers['add'] = array(); } self::$early_providers['add'][ $format ] = array( $provider, $regex ); } /** * Removes an oEmbed provider. * * The provider is removed just-in-time when wp_oembed_remove_provider() is called before * the {@see 'plugins_loaded'} hook. * * The just-in-time removal is for the benefit of the {@see 'oembed_providers'} filter. * * @since 4.0.0 * * @see wp_oembed_remove_provider() * * @param string $format The format of URL that this provider can handle. You can use * asterisks as wildcards. */ public static function _remove_provider_early( $format ) { if ( empty( self::$early_providers['remove'] ) ) { self::$early_providers['remove'] = array(); } self::$early_providers['remove'][] = $format; } /** * Takes a URL and attempts to return the oEmbed data. * * @see WP_oEmbed::fetch() * * @since 4.8.0 * * @param string $url The URL to the content that should be attempted to be embedded. * @param string|array $args Optional. Additional arguments for retrieving embed HTML. * See wp_oembed_get() for accepted arguments. Default empty. * @return object|false The result in the form of an object on success, false on failure. */ public function get_data( $url, $args = '' ) { $args = wp_parse_args( $args ); $provider = $this->get_provider( $url, $args ); if ( ! $provider ) { return false; } $data = $this->fetch( $provider, $url, $args ); if ( false === $data ) { return false; } return $data; } /** * The do-it-all function that takes a URL and attempts to return the HTML. * * @see WP_oEmbed::fetch() * @see WP_oEmbed::data2html() * * @since 2.9.0 * * @param string $url The URL to the content that should be attempted to be embedded. * @param string|array $args Optional. Additional arguments for retrieving embed HTML. * See wp_oembed_get() for accepted arguments. Default empty. * @return string|false The UNSANITIZED (and potentially unsafe) HTML that should be used to embed * on success, false on failure. */ public function get_html( $url, $args = '' ) { /** * Filters the oEmbed result before any HTTP requests are made. * * This allows one to short-circuit the default logic, perhaps by * replacing it with a routine that is more optimal for your setup. * * Returning a non-null value from the filter will effectively short-circuit retrieval * and return the passed value instead. * * @since 4.5.3 * * @param null|string $result The UNSANITIZED (and potentially unsafe) HTML that should be used to embed. * Default null to continue retrieving the result. * @param string $url The URL to the content that should be attempted to be embedded. * @param string|array $args Optional. Additional arguments for retrieving embed HTML. * See wp_oembed_get() for accepted arguments. Default empty. */ $pre = apply_filters( 'pre_oembed_result', null, $url, $args ); if ( null !== $pre ) { return $pre; } $data = $this->get_data( $url, $args ); if ( false === $data ) { return false; } /** * Filters the HTML returned by the oEmbed provider. * * @since 2.9.0 * * @param string|false $data The returned oEmbed HTML (false if unsafe). * @param string $url URL of the content to be embedded. * @param string|array $args Optional. Additional arguments for retrieving embed HTML. * See wp_oembed_get() for accepted arguments. Default empty. */ return apply_filters( 'oembed_result', $this->data2html( $data, $url ), $url, $args ); } /** * Attempts to discover link tags at the given URL for an oEmbed provider. * * @since 2.9.0 * * @param string $url The URL that should be inspected for discovery `` tags. * @return string|false The oEmbed provider URL on success, false on failure. */ public function discover( $url ) { $providers = array(); $args = array( 'limit_response_size' => 153600, // 150 KB ); /** * Filters oEmbed remote get arguments. * * @since 4.0.0 * * @see WP_Http::request() * * @param array $args oEmbed remote get arguments. * @param string $url URL to be inspected. */ $args = apply_filters( 'oembed_remote_get_args', $args, $url ); // Fetch URL content. $request = wp_safe_remote_get( $url, $args ); $html = wp_remote_retrieve_body( $request ); if ( $html ) { /** * Filters the link types that contain oEmbed provider URLs. * * @since 2.9.0 * * @param string[] $format Array of oEmbed link types. Accepts 'application/json+oembed', * 'text/xml+oembed', and 'application/xml+oembed' (incorrect, * used by at least Vimeo). */ $linktypes = apply_filters( 'oembed_linktypes', array( 'application/json+oembed' => 'json', 'text/xml+oembed' => 'xml', 'application/xml+oembed' => 'xml', ) ); // Strip . $html_head_end = stripos( $html, '' ); if ( $html_head_end ) { $html = substr( $html, 0, $html_head_end ); } // Do a quick check. $tagfound = false; foreach ( $linktypes as $linktype => $format ) { if ( stripos( $html, $linktype ) ) { $tagfound = true; break; } } if ( $tagfound && preg_match_all( '#]+)/?>#iU', $html, $links ) ) { foreach ( $links[1] as $link ) { $atts = shortcode_parse_atts( $link ); if ( ! empty( $atts['type'] ) && ! empty( $linktypes[ $atts['type'] ] ) && ! empty( $atts['href'] ) ) { $providers[ $linktypes[ $atts['type'] ] ] = htmlspecialchars_decode( $atts['href'] ); // Stop here if it's JSON (that's all we need). if ( 'json' === $linktypes[ $atts['type'] ] ) { break; } } } } } // JSON is preferred to XML. if ( ! empty( $providers['json'] ) ) { return $providers['json']; } elseif ( ! empty( $providers['xml'] ) ) { return $providers['xml']; } else { return false; } } /** * Connects to an oEmbed provider and returns the result. * * @since 2.9.0 * * @param string $provider The URL to the oEmbed provider. * @param string $url The URL to the content that is desired to be embedded. * @param string|array $args Optional. Additional arguments for retrieving embed HTML. * See wp_oembed_get() for accepted arguments. Default empty. * @return object|false The result in the form of an object on success, false on failure. */ public function fetch( $provider, $url, $args = '' ) { $args = wp_parse_args( $args, wp_embed_defaults( $url ) ); $provider = add_query_arg( 'maxwidth', (int) $args['width'], $provider ); $provider = add_query_arg( 'maxheight', (int) $args['height'], $provider ); $provider = add_query_arg( 'url', urlencode( $url ), $provider ); $provider = add_query_arg( 'dnt', 1, $provider ); /** * Filters the oEmbed URL to be fetched. * * @since 2.9.0 * @since 4.9.0 The `dnt` (Do Not Track) query parameter was added to all oEmbed provider URLs. * * @param string $provider URL of the oEmbed provider. * @param string $url URL of the content to be embedded. * @param array $args Optional. Additional arguments for retrieving embed HTML. * See wp_oembed_get() for accepted arguments. Default empty. */ $provider = apply_filters( 'oembed_fetch_url', $provider, $url, $args ); foreach ( array( 'json', 'xml' ) as $format ) { $result = $this->_fetch_with_format( $provider, $format ); if ( is_wp_error( $result ) && 'not-implemented' === $result->get_error_code() ) { continue; } return ( $result && ! is_wp_error( $result ) ) ? $result : false; } return false; } /** * Fetches result from an oEmbed provider for a specific format and complete provider URL * * @since 3.0.0 * * @param string $provider_url_with_args URL to the provider with full arguments list (url, maxheight, etc.) * @param string $format Format to use. * @return object|false|WP_Error The result in the form of an object on success, false on failure. */ private function _fetch_with_format( $provider_url_with_args, $format ) { $provider_url_with_args = add_query_arg( 'format', $format, $provider_url_with_args ); /** This filter is documented in wp-includes/class-wp-oembed.php */ $args = apply_filters( 'oembed_remote_get_args', array(), $provider_url_with_args ); $response = wp_safe_remote_get( $provider_url_with_args, $args ); if ( 501 === wp_remote_retrieve_response_code( $response ) ) { return new WP_Error( 'not-implemented' ); } $body = wp_remote_retrieve_body( $response ); if ( ! $body ) { return false; } $parse_method = "_parse_$format"; return $this->$parse_method( $body ); } /** * Parses a json response body. * * @since 3.0.0 * * @param string $response_body * @return object|false */ private function _parse_json( $response_body ) { $data = json_decode( trim( $response_body ) ); return ( $data && is_object( $data ) ) ? $data : false; } /** * Parses an XML response body. * * @since 3.0.0 * * @param string $response_body * @return object|false */ private function _parse_xml( $response_body ) { if ( ! function_exists( 'libxml_disable_entity_loader' ) ) { return false; } if ( PHP_VERSION_ID < 80000 ) { /* * This function has been deprecated in PHP 8.0 because in libxml 2.9.0, external entity loading * is disabled by default, so this function is no longer needed to protect against XXE attacks. */ $loader = libxml_disable_entity_loader( true ); } $errors = libxml_use_internal_errors( true ); $return = $this->_parse_xml_body( $response_body ); libxml_use_internal_errors( $errors ); if ( PHP_VERSION_ID < 80000 && isset( $loader ) ) { // phpcs:ignore PHPCompatibility.FunctionUse.RemovedFunctions.libxml_disable_entity_loaderDeprecated libxml_disable_entity_loader( $loader ); } return $return; } /** * Serves as a helper function for parsing an XML response body. * * @since 3.6.0 * * @param string $response_body * @return stdClass|false */ private function _parse_xml_body( $response_body ) { if ( ! function_exists( 'simplexml_import_dom' ) || ! class_exists( 'DOMDocument', false ) ) { return false; } $dom = new DOMDocument(); $success = $dom->loadXML( $response_body ); if ( ! $success ) { return false; } if ( isset( $dom->doctype ) ) { return false; } foreach ( $dom->childNodes as $child ) { if ( XML_DOCUMENT_TYPE_NODE === $child->nodeType ) { return false; } } $xml = simplexml_import_dom( $dom ); if ( ! $xml ) { return false; } $return = new stdClass(); foreach ( $xml as $key => $value ) { $return->$key = (string) $value; } return $return; } /** * Converts a data object from WP_oEmbed::fetch() and returns the HTML. * * @since 2.9.0 * * @param object $data A data object result from an oEmbed provider. * @param string $url The URL to the content that is desired to be embedded. * @return string|false The HTML needed to embed on success, false on failure. */ public function data2html( $data, $url ) { if ( ! is_object( $data ) || empty( $data->type ) ) { return false; } $return = false; switch ( $data->type ) { case 'photo': if ( empty( $data->url ) || empty( $data->width ) || empty( $data->height ) ) { break; } if ( ! is_string( $data->url ) || ! is_numeric( $data->width ) || ! is_numeric( $data->height ) ) { break; } $title = ! empty( $data->title ) && is_string( $data->title ) ? $data->title : ''; $return = '' . esc_attr( $title ) . ''; break; case 'video': case 'rich': if ( ! empty( $data->html ) && is_string( $data->html ) ) { $return = $data->html; } break; case 'link': if ( ! empty( $data->title ) && is_string( $data->title ) ) { $return = '' . esc_html( $data->title ) . ''; } break; default: $return = false; } /** * Filters the returned oEmbed HTML. * * Use this filter to add support for custom data types, or to filter the result. * * @since 2.9.0 * * @param string $return The returned oEmbed HTML. * @param object $data A data object result from an oEmbed provider. * @param string $url The URL of the content to be embedded. */ return apply_filters( 'oembed_dataparse', $return, $data, $url ); } /** * Strips any new lines from the HTML. * * @since 2.9.0 as strip_scribd_newlines() * @since 3.0.0 * * @param string $html Existing HTML. * @param object $data Data object from WP_oEmbed::data2html() * @param string $url The original URL passed to oEmbed. * @return string Possibly modified $html */ public function _strip_newlines( $html, $data, $url ) { if ( ! str_contains( $html, "\n" ) ) { return $html; } $count = 1; $found = array(); $token = '__PRE__'; $search = array( "\t", "\n", "\r", ' ' ); $replace = array( '__TAB__', '__NL__', '__CR__', '__SPACE__' ); $tokenized = str_replace( $search, $replace, $html ); preg_match_all( '#(]*>.+?)#i', $tokenized, $matches, PREG_SET_ORDER ); foreach ( $matches as $i => $match ) { $tag_html = str_replace( $replace, $search, $match[0] ); $tag_token = $token . $i; $found[ $tag_token ] = $tag_html; $html = str_replace( $tag_html, $tag_token, $html, $count ); } $replaced = str_replace( $replace, $search, $html ); $stripped = str_replace( array( "\r\n", "\n" ), '', $replaced ); $pre = array_values( $found ); $tokens = array_keys( $found ); return str_replace( $tokens, $pre, $stripped ); } } Eugénio Campos - Página 4 de 12 - Ourivesaria Lapide Azul
  • Home
  • Relógios
    • Relógios Homem
      • Relógios Casuais
      • Relógios Clássicos
      • Desportivo
      • Smartwatch
    • Mulher
      • Casual
      • Clássico
      • Desportivo
      • Smartwatch
    • Criança
      • Casual
      • Desportivo
      • Smartwatch
    • Imagem
  • Jóias
    • Homem
      • Anéis
      • Colares
      • Pulseiras
    • Mulher
      • Anéis
      • Brincos
      • Colares de Mulher
      • Pulseiras
    • Criança
      • Anéis
      • Brincos
      • Colares
      • Pulseiras
    • Imagem
  • Bilaminados
    • Eventos
      • Infantil
      • Aniversários
      • Homenagens
    • Religiosos
      • Figuras
      • Comunhões
      • Batizados
    • Decoração
      • Molduras
      • Vidros
      • Outros
    • Imagem
  • A Minha Jóia
  • Bestsellers
    • Relógios Timberland
    • Relógios Police

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

  • About Envato
  • Careers
  • Privacy Policy
  • Sitemap
  • Community
  • Blog
  • Forums
  • Meetups
Facebook-f Instagram
Portes grátis em compras superiores a 50€
Apoio ao cliente: +351 965 084 018 (Chamada para a rede móvel nacional)
Ourivesaria Lapide Azul Ourivesaria Lapide Azul
  • 0
  • Home
  • Relógios
      • Relógios Homem
        • Relógios Casuais
        • Relógios Clássicos
        • Desportivo
        • Smartwatch
      • Mulher
        • Casual
        • Clássico
        • Desportivo
        • Smartwatch
      • Criança
        • Casual
        • Desportivo
        • Smartwatch
      • Imagem
  • Jóias
      • Homem
        • Anéis
        • Colares
        • Pulseiras
      • Mulher
        • Anéis
        • Brincos
        • Colares de Mulher
        • Pulseiras
      • Criança
        • Anéis
        • Brincos
        • Colares
        • Pulseiras
      • Imagem
  • Bilaminados
      • Eventos
        • Infantil
        • Aniversários
        • Homenagens
      • Religiosos
        • Figuras
        • Comunhões
        • Batizados
      • Decoração
        • Molduras
        • Vidros
        • Outros
      • Imagem
  • A Minha Jóia
  • Bestsellers
    • Relógios Timberland
    • Relógios Police
Ourivesaria Lapide Azul
0
0

Eugénio Campos

Início/Marcas/Eugénio Campos/Página 4

Categorias

  • Relógios
    • Relógios Homem
      • Relógios Casuais
      • Relógios Clássicos
      • Desportivo
      • Smartwatch
    • Mulher
      • Casual
      • Clássico
      • Desportivo
      • Smartwatch
    • Criança
      • Casual
      • Desportivo
      • Smartwatch
  • Jóias
    • Homem
      • Anéis
      • Colares
      • Pulseiras
    • Mulher
      • Anéis
      • Brincos
      • Colares de Mulher
      • Pulseiras
    • Criança
      • Anéis
      • Brincos
      • Colares
      • Pulseiras
  • Outlet

Género

  • Homem 6
  • Mulher 129

Material

  • Couro 1
  • Esmalte 1
  • Pedras 12
  • Pérola 2
  • Prata 925 119
  • Prata 925 e Ouro 9kt 15
  • Zircónia 4

Cor

  • Azul 11
  • Branco 12
  • Cinzento 2
  • Lilás 1
  • Rosa 6
  • Verde 14
  • Vermelho 4
  • Nude 1
  • Dourado 106
  • Prateado 45
  • Ouro Rosa 3
  • Preto 2

Preço

Preço: —
  • 12
  • pulseira-eugenio-campos-oceaneIndisponível

    Pulseira Eugénio Campos Oceane

    49.90€

    Indisponível

  • This product has multiple variants. The options may be chosen on the product page
    anel-eugenio-campos-brilliantIndisponível

    Anel Eugénio Campos Brilliant

    364.90€

    Indisponível

  • colar-eugenio-campos-orchid-rosa

    Colar Eugénio Campos Orchid Rosa

    84.90€

    Disponível

  • anel-eugenio-campos-orchid-rosa

    Anel Eugénio Campos Orchid Rosa

    89.90€

    Disponível

  • colar-eugenio-campos-esterIndisponível

    Colar Eugénio Campos Ester

    84.90€

    Indisponível

  • brincos-eugenio-campos-esterIndisponível

    Brincos Eugénio Campos Ester

    118.90€

    Indisponível

  • colar-eugenio-campos-lira-celeste

    Colar Eugénio Campos Lira Celeste

    84.90€

    Disponível

  • anel-eugenio-campos-lira-celesteIndisponível

    Anel Eugénio Campos Lira Celeste

    84.90€

    Indisponível

  • colar-eugenio-campos-imber-dourado

    Colar Eugénio Campos Imber Dourado

    118.90€

    Disponível

  • brincos-eugenio-campos-unity-dourados

    Brincos Eugénio Campos Unity Dourados

    57.90€

    Disponível

  • colar-eugenio-campos-afinidade

    Colar Eugénio Campos Afinidade

    79.90€

    Disponível

  • colar-eugenio-campos-afinidade-iiIndisponível

    Colar Eugénio Campos Afinidade II

    114.90€

    Indisponível

  • Prev
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • …
  • 10
  • 11
  • 12
  • Next

Mais do que jóias e relógios queremos dar aos nossos clientes peças diferentes e com qualidade para se sentirem mais confiantes.

Facebook-f Instagram
Empresa
  • Sobre Nós
  • A Minha Jóia
  • Notícias
  • Outlet
  • Marcas
  • Contactos
Informação
  • Termos & Condições
  • Informação Contrastaria
  • Política de Privacidade
  • Utilização de Cookies
  • Resolução de Litígios
  • Livro de Reclamações

Contactos

Av. da Liberdade 758 R/C Loja i
Paço de Sousa 4560-383 Penafiel
Portugal
info@lapideazul.pt
+351 255 755 418 (Chamada para a rede fixa nacional)
+351 965 084 018 (Chamada para a rede móvel nacional)

© 2022 Lapide Azul. Todos os direitos reservados
Website desenvolvido por agilstore

Guia de Medidas

Anchor

Escala de tamanhos para anéis usada pela Lapide Azul. Se tiver dúvidas sobre qual o tamanho indicado, recomendamos que entre em contacto connosco.

Guia de Medidas
Saber Mais

Carrinho0

Carrinho

Lapide Azul
  • Home
  • Relógios
    • Relógios Homem
      • Relógios Casuais
      • Relógios Clássicos
      • Desportivo
      • Smartwatch
    • Mulher
      • Casual
      • Clássico
      • Desportivo
      • Smartwatch
    • Criança
      • Casual
      • Desportivo
      • Smartwatch
    • Imagem
  • Jóias
    • Homem
      • Anéis
      • Colares
      • Pulseiras
    • Mulher
      • Anéis
      • Brincos
      • Colares de Mulher
      • Pulseiras
    • Criança
      • Anéis
      • Brincos
      • Colares
      • Pulseiras
    • Imagem
  • Bilaminados
    • Eventos
      • Infantil
      • Aniversários
      • Homenagens
    • Religiosos
      • Figuras
      • Comunhões
      • Batizados
    • Decoração
      • Molduras
      • Vidros
      • Outros
    • Imagem
  • A Minha Jóia
  • Bestsellers
    • Relógios Timberland
    • Relógios Police
AVISO: Ao navegar o nosso site estará a consentir a utilização de cookies
OK SABER MAIS
Manage consent

Privacy Overview

This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience.
Necessary
Sempre activado
Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously.
CookieDuraçãoDescrição
cookielawinfo-checkbox-analytics11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics".
cookielawinfo-checkbox-functional11 monthsThe cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional".
cookielawinfo-checkbox-necessary11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary".
cookielawinfo-checkbox-others11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other.
cookielawinfo-checkbox-performance11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance".
viewed_cookie_policy11 monthsThe cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data.
Functional
Functional cookies help to perform certain functionalities like sharing the content of the website on social media platforms, collect feedbacks, and other third-party features.
Performance
Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.
Analytics
Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics the number of visitors, bounce rate, traffic source, etc.
Advertisement
Advertisement cookies are used to provide visitors with relevant ads and marketing campaigns. These cookies track visitors across websites and collect information to provide customized ads.
Others
Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet.
GUARDAR E ACEITAR
Política de Privacidade

O acesso e uso do site www.lapideazul.pt atribui a condição de utilizador ao visitante da página web e implica a total aceitação sem reservas das condições de uso vigentes ao momento da utilização do site.

O Lapide Azul – Unipessoal, Lda compromete-se a assegurar a privacidade de todos os seus clientes, mantendo os seus dados pessoais confidenciais em cumprimento da legislação aplicável (Lei de Protecção de Dados Nº 67/98 de 26 de Outubro) e a garantir o direito de acesso, retificação e anulação de qualquer dado fornecido, pessoalmente ou por escrito.

No papel de entidade responsável pela recolha e tratamento de dados pessoais, o Lapide Azul – Unipessoal, Lda apenas facultará a informação estritamente necessária às entidades cuja colaboração seja indispensável à prestação do seu serviço, designadamente transportadoras e entidades financeiras.

Se o utilizador pretender alterar, corrigir ou apagar os seus dados pessoais, poderá fazê-lo de forma fácil e gratuita junto da responsável pelo tratamento dos dados pelo sítio www.lapideazul.pt, através de email info@lapideazul.pt, por telefone ou por carta para Avenida da Liberdade n°758 R/C loja i, Edifício Vila do Paço 2.

O Lapide Azul – Unipessoal, Lda poderá recolher a seguinte informação pessoal dos utilizadores da sua pagina web através dos formulários correspondentes: nome, endereço de correio electrónico, endereço postal, número de telefone, data de nascimento, sexo, quando o utilizador visitar a página web www.lapideazul.pt, se registar e realizar uma encomenda.

Os dados recolhidos terão como fins processar os pedidos de encomenda, processar devoluções, bem como contactar o utilizador em caso de haver algum problema com as encomendas.

O Lapide Azul – Unipessoal, Lda adotará todas as medidas necessárias para garantir a segurança e integridade dos dados de carácter pessoal dos utilizadores, bem como para evitar a sua perda, alteração e/ou acesso por parte de terceiros não autorizados.

O Lapide Azul – Unipessoal, Lda não cederá a terceiros informação relativa aos dados pessoais dos utilizadores, a não ser que haja um consentimento prévio, expresso e inequívoco destes. Não obstante, o Lapide Azul – Unipessoal, Lda poderá comunicar os dados pessoais dos utilizadores com o intuito de dar cumprimento aos contratos celebrados e para cumprir todos os compromissos assumidos com os utilizadores.

Não obstante o Lapide Azul – Unipessoal, Lda proceder à recolha e ao tratamento de dados de forma segura e que impede a perda ou manipulação, utilizando as técnicas mais aperfeiçoadas para o efeito, informamos que a recolha em rede aberta permite a circulação dos dados pessoais sem condições de segurança, correndo o risco de ser visualizados e utilizados por terceiros não autorizados.

O Lapide Azul – Unipessoal, Lda não se responsabiliza por quaisquer danos ou perdas resultantes de um ataque de negação de serviço, vírus ou qualquer outro programa ou material tecnologicamente prejudicial ou danoso, que possa afectar o computador do utilizador, equipamento informático, electrónico, dados ou materiais, em consequência da utilização do site www.lapideazul.pt, ou do descarregamento de conteúdo do mesmo ou dos conteúdos para os quais o mesmo redireccione.

Todos os elementos, sonoros ou visuais, do site www.lapideazul.pt, incluindo a tecnologia subjacente, são protegidos pelos direitos de autor, das marcas ou das patentes.

O utilizador que disponha de um site pessoal e que deseje colocar, para uso pessoal, no seu site um simples link direto à página www.lapideazul.pt, deve obrigatoriamente solicitar autorização prévia à sociedade Lapide Azul – Unipessoal, Lda. A autorização só é válida se prestada por escrito.