/* xl - DESKTOP STYLES */ 
@media (min-width: 1120px) {
  /* está quase tudo no retina e mobile */
}

/* xs - SMARTPHONE PORTRAIT STYLES */ 
@media (max-width: 479px) {
  /* ---- Breadcrumbs ---- */
  .voltar-breadcrumb-button {
  	padding-top: 64px;
  	}
  
}

/* RETINA DISPLAY STYLES */ 
/* INDICE ------------------------------------- 
---------------------------------------------------------------------------------------------------------------
01.    Single Geral 

01.1   Hero com breadcrumbs e titulo;
01.1.1 Fundo com imagem thumbnail;
01.1.2 Estilos texto banner;
01.1.3 Breadcrumbs
01.1.3 Estilos data de publicação
01.1.4 Estilos taxonomias banner;
01.1.5 Badge - Status Eventos;
01.1.6 Botões de partilha;
01.1.7 Botão - google calendar;

01.2   Estilos do post content;
01.2.1 Paddings dos headings dentro da div .texto-corrido;
01.2.2 O primeiro elemento da div (seja p ou h) não tem padding superior;

01.3   Repetidores - lateral direita
------------------------------------------------------------------------------------------------------------ */

/* ------------------------------ 01. Single Geral ------------------------------ */
/* --------------- 01.1 Hero com breadcrumbs e titulo --------------- */
/* ---- 01.1.1 Fundo com imagem thumbnail ---- */
.single-title {
    background-image: var(--current-post-bg) !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative !important;
    z-index: 1 !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
}

/* Overlay imagem - preto com 50% transparencia */
.single-title::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.5) !important; 
    z-index: -1 !important;
}

/* ---- 01.1.2 Estilos texto ---- */
/* Textos devem ficar a branco */
.single-title h1,
.single-title .post-meta,
.single-title .post-meta li,
.single-title .ee-postmeta-custom,
.single-title .ee-postmeta-before {
    color: #ffffff !important;
    fill: #ffffff !important;
    opacity: 1 !important;
}

/* ---- 01.1.3 Breadcrumbs ---- */
/* Estilo geral do Botão Voltar */
.voltar-breadcrumb-button {
    display: inline-flex;
    align-items: center; 
    text-decoration: none !important;
    font-size: 14px;
    transition: opacity 0.3s ease; /* Suaviza a mudança de opacidade */
}
/* Seta (SVG) */
.voltar-breadcrumb-button svg {
    width: 20px;
    height: 20px;
    fill: currentColor; 
    margin-right: 4px;   
}

.single-title .voltar-breadcrumb-button {
    color: var(--text-secondary) !important; 
}

/* Hover */
.voltar-breadcrumb-button:hover {
    opacity: 0.8 !important;
	color: var(--text-secondary) !important;
}

/* ---- 01.1.3 Estilos data de publicação ---- */
.bde-post-meta-954-106 {
  display: block !important;
  white-space: nowrap;
  padding: 0;
  margin: 0;
}

.bde-post-meta-954-106 li {
  display: inline !important;
  margin: 0;
  padding: 0;
}

.bde-post-meta-954-106 li p {
  display: inline;
  margin: 0;
}

.bde-post-meta-954-106 li::marker {
  content: "";
}

/* ---- 01.1.3 Estilos taxonomias ---- */
.single-title .ee-postmeta-term {
	padding: 8px !important;
	border-radius: var(--border-radious);
	background: var(--background-popups);
	color: var(--text-secondary);
	height: 48px !important;
	align-items: center;
}

/* Tags de taxonomia */
.single-title .ee-postmeta-terms-wrap {
	gap: 8px !important;
}

/* ---- 01.1.4 Badge - Status Eventos ---- */
.hero-single-tags .oxy-shortcode {
	width: 120px !important;
}
.status-evento-badge {
	height: 64px !important;
	padding: 6px 16px;
    display: flex;
	align-items: center;
	justify-content: center;
    border-top-right-radius: var(--border-radious) !important;
    background: var(--background-neutral-primary) !important;
	color: var(--text-primary) !important;
	min-width: 108px;
}

/* ---- 01.1.5 Botões de partilha ---- */
/* --- Coteiner partilha --- */
.social-share-container {
    display: flex;
    gap: 8px;
    margin: 0px;
    flex-wrap: wrap;
}

/* Estilo botões */
.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--border-radious);
    transition: all 0.25s ease;
    color: var(--text-secondary) !important;
    text-decoration: none !important;
	background-color: var(--background-popups);
}

.share-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor; /* Faz o ícone herdar a cor do texto (branco) */
}

.share-btn:hover {
    background-color: var(--status-hover);
}

/* ---- 01.1.6 Botão - google calendar ---- */
.btn-gcal-google {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background-color: var(--background-popups); 
    color: var(--text-secondary) !important;
    text-decoration: none !important;
    border-radius: var(--border-radious);
    font-family: inherit;
    transition: all 0.2s ease;
	height: 48px;
	width: 238px;
}

.btn-gcal-google:hover {
    background-color: var(--status-hover);
}

/* Tamanho do Ícone SVG */
.btn-gcal-google svg {
    width: 20px;
    height: 20px;
    display: block;
    flex-shrink: 0;
}

/* Estilo para o texto interno */
.btn-gcal-google span {
    line-height: 1;
}


/* --------------- 01.2 Estilos do post content --------------- */
/* ---- 01.2.1 Paddings dos headings dentro da div .texto-corrido ---- */
.texto-corrido h1, 
.texto-corrido h2 {
    padding-top: 32px;
    padding-bottom: 16px;
}

.texto-corrido h3, 
.texto-corrido h4 {
    padding-top: 24px;
    padding-bottom: 16px;
}

.texto-corrido h5, 
.texto-corrido h6 {
    padding-top: 8px;
    padding-bottom: 8px;
}

.texto-corrido .wp-block-list {
    margin: 0px !important;
	padding-top: 0px !important;
	padding-bottom: 0px !important;
    padding-left: 16px !important;
}
.texto-corrido li {
	padding-bottom: 0px !important;
}
.texto-corrido p {
    margin-bottom: 16px;
}
.texto-corrido ol, .texto-corrido ul {
	margin-top: 0px;
    margin-bottom: 16px;
	padding-left: 16px;
}
.texto-corrido ol li p, 
.texto-corrido ul li p {
    margin-bottom: 0;
    padding: 4px;
}

/* ---- 01.2.2 O primeiro elemento da div (seja p ou h) não tem padding superior ---- */
.texto-corrido > :first-child {
    padding-top: 0 !important;
    margin-top: 0;
}

/* ------------------------------ 01.3 Repetidores - lateral direita ------------------------------ */
.oxy-container-2918-123 {
  display: block !important;
  text-align: left !important;
}

.oxy-container-2918-123 p {
  display: inline !important;
  margin: 0 !important;
  padding: 0 !important;
}

.oxy-container-2918-123 p:first-child::after {
  content: " ";
}

/* ------------------------------ 01.4 Galerias ------------------------------ */
.galeria-single .swiper-button-prev, .galeria-single .swiper-button-next {
	background-color: var(--background-palette-primary);
	border-radius: var(--border-radious);
}
.galeria-single .swiper-button-prev:hover, .galeria-single .swiper-button-next:hover {
	background-color: var(--status-hover);
}


/* INDICE ------------------------------------- 
---------------------------------------------------------------------------------------------------------------
01.    Single Geral 

01.1   Hero com breadcrumbs e titulo;
01.1.1 Fundo com imagem thumbnail;
01.1.2 Estilos texto banner;
01.1.3 Breadcrumbs
01.1.3 Estilos taxonomias banner;
01.1.4 Badge - Status Eventos;
01.1.5 Botões de partilha;
01.1.6 Botão - google calendar;

01.2   Estilos do post content;
01.2.1 Paddings dos headings dentro da div .texto-corrido;
01.2.2 O primeiro elemento da div (seja p ou h) não tem padding superior;

------------------------------------------------------------------------------------------------------------ */



/* ------------------------------ 01. Single Geral ------------------------------ */
/* --------------- 01.1 Hero com breadcrumbs e titulo --------------- */
/* ---- 01.1.1 Fundo com imagem thumbnail ---- */
.single-title {
    background-image: var(--current-post-bg) !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative !important;
    z-index: 1 !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
}

/* Overlay imagem - preto com 50% transparencia */
.single-title::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.5) !important; 
    z-index: -1 !important;
}

/* ---- 01.1.2 Estilos texto ---- */
/* Textos devem ficar a branco */
.single-title h1,
.single-title .post-meta,
.single-title .post-meta li,
.single-title .ee-postmeta-custom,
.single-title .ee-postmeta-before {
    color: #ffffff !important;
    fill: #ffffff !important;
    opacity: 1 !important;
}

/* ---- 01.1.3 Breadcrumbs ---- */
/* Estilo geral do Botão Voltar */
.voltar-breadcrumb-button {
    display: inline-flex;
    align-items: center; 
    text-decoration: none !important;
    font-size: 14px;
    transition: opacity 0.3s ease; /* Suaviza a mudança de opacidade */
}
/* Seta (SVG) */
.voltar-breadcrumb-button svg {
    width: 20px;
    height: 20px;
    fill: currentColor; 
    margin-right: 4px;   
}

.single-title .voltar-breadcrumb-button {
    color: var(--text-secondary) !important; 
}

/* Hover */
.voltar-breadcrumb-button:hover {
    opacity: 0.8 !important;
	color: var(--text-secondary) !important;
}

/* ---- 01.1.3 Estilos taxonomias ---- */
.single-title .ee-postmeta-term {
	padding: 8px !important;
	border-radius: var(--border-radious);
	background: var(--background-popups);
	color: var(--text-secondary);
	height: 48px !important;
	align-items: center;
}

/* Tags de taxonomia */
.single-title .ee-postmeta-terms-wrap {
	gap: 8px !important;
}

/* ---- 01.1.4 Badge - Status Eventos ---- */
.hero-single-tags .oxy-shortcode {
	width: 120px !important;
}
.status-evento-badge {
	height: 64px !important;
	padding: 6px 16px;
    display: flex;
	align-items: center;
	justify-content: center;
    border-top-right-radius: var(--border-radious) !important;
    background: var(--background-neutral-primary) !important;
	color: var(--text-primary) !important;
	min-width: 108px;
}

/* ---- 01.1.5 Botões de partilha ---- */
/* --- Coteiner partilha --- */
.social-share-container {
    display: flex;
    gap: 8px;
    margin: 0px;
    flex-wrap: wrap;
}

/* Estilo botões */
.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--border-radious);
    transition: all 0.25s ease;
    color: var(--text-secondary) !important;
    text-decoration: none !important;
	background-color: var(--background-popups);
}

.share-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor; /* Faz o ícone herdar a cor do texto (branco) */
}

.share-btn:hover {
    background-color: var(--status-hover);
}

/* ---- 01.1.6 Botão - google calendar ---- */
.btn-gcal-google {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background-color: var(--background-popups); 
    color: var(--text-secondary) !important;
    text-decoration: none !important;
    border-radius: var(--border-radious);
    font-family: inherit;
    transition: all 0.2s ease;
	height: 48px;
	width: 238px;
}

.btn-gcal-google:hover {
    background-color: var(--status-hover);
}

/* Tamanho do Ícone SVG */
.btn-gcal-google svg {
    width: 20px;
    height: 20px;
    display: block;
    flex-shrink: 0;
}

/* Estilo para o texto interno */
.btn-gcal-google span {
    line-height: 1;
}


/* --------------- 01.2 Estilos do post content --------------- */
/* ---- 01.2.1 Paddings dos headings dentro da div .texto-corrido ---- */
.texto-corrido h1, 
.texto-corrido h2 {
    padding-top: 32px;
    padding-bottom: 16px;
}

.texto-corrido h3, 
.texto-corrido h4 {
    padding-top: 24px;
    padding-bottom: 16px;
}

.texto-corrido h5, 
.texto-corrido h6 {
    padding-top: 8px;
    padding-bottom: 8px;
}

.texto-corrido .wp-block-list {
    margin: 0px !important;
	padding-top: 0px !important;
	padding-bottom: 0px !important;
    padding-left: 16px !important;
}
.texto-corrido li {
	padding-bottom: 0px !important;
}
.texto-corrido p {
    margin-bottom: 16px;
}
.texto-corrido ol, .texto-corrido ul {
	margin-top: 0px;
    margin-bottom: 16px;
	padding-left: 16px;
}
.texto-corrido ol li p, 
.texto-corrido ul li p {
    margin-bottom: 0;
    padding: 4px;
}

/* ---- 01.2.2 O primeiro elemento da div (seja p ou h) não tem padding superior ---- */
.texto-corrido > :first-child {
    padding-top: 0 !important;
    margin-top: 0;
}






