/* ==========================================================
   BENEYTZION
   ESTILO GENERAL DE PORTADA
   Azul profundo + dorado + crema
   ========================================================== */
/* ==========================================================
   COLORES BASE
   ========================================================== */
:root {
}

/* ==========================================================
   FONDO GENERAL
   ========================================================== */
body {
	background: linear-gradient(180deg,
            #fffdf8 0%,
            #f7f2e8 100%) !important;
	color: var(--bz-text);
}

/* ==========================================================
   CONTENIDO PRINCIPAL
   ========================================================== */
.site-content,
main,
.content-area {
	position: relative;
}

/* ==========================================================
   TÍTULOS
   ========================================================== */
h1,
h2,
h3,
h4,
.entry-title,
.page-title {
	color: var(--bz-blue) !important;
	font-family: Georgia, "Times New Roman", serif !important;
	font-weight: 700 !important;
	letter-spacing: .2px;
	line-height: 1.15;
}

/* ==========================================================
   TÍTULOS DE SECCIÓN
   Línea dorada decorativa
   ========================================================== */
.entry-content h2,
.entry-content h3 {
	position: relative;
	margin-top: 34px;
	margin-bottom: 18px;
	padding-bottom: 10px;
}

.entry-content h2::after,
.entry-content h3::after {
	content: "";
	display: block;
	width: 54px;
	height: 2px;
	margin-top: 9px;
	background: linear-gradient(90deg,
            var(--bz-gold),
            var(--bz-gold-light));
	border-radius: 30px;
}

/* ==========================================================
   TEXTO
   ========================================================== */
.entry-content p,
.entry-content li {
	line-height: 1.75;
	color: #34383c;
}

/* ==========================================================
   BLOQUES DEL CONTENIDO
   ========================================================== */
.entry-content > p,
.entry-content > ul,
.entry-content > ol {
	position: relative;
}

/* ==========================================================
   CITAS BÍBLICAS
   ========================================================== */
blockquote {
	position: relative;
	margin: 28px 0 !important;
	padding: 22px 26px 22px 30px !important;
	background: linear-gradient(135deg,
            rgba(255,255,255,.93),
            rgba(247,242,232,.96)) !important;
	border-left: 4px solid var(--bz-gold) !important;
	border-radius: 4px 18px 18px 4px !important;
	box-shadow: 0 9px 24px rgba(16,42,64,.07);
	color: #303438;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.04em;
	line-height: 1.7;
}

/* pequeño símbolo decorativo */
blockquote::before {
	content: "״";
	position: absolute;
	top: 2px;
	right: 18px;
	font-size: 42px;
	color: rgba(184,148,84,.22);
	font-family: Georgia, serif;
}

/* ==========================================================
   ENLACES
   ========================================================== */
.entry-content a {
	color: var(--bz-blue-2);
	text-decoration-color: rgba(184,148,84,.65);
	text-underline-offset: 3px;
	transition: color .25s ease, text-decoration-color .25s ease;
}

.entry-content a:hover {
	color: var(--bz-gold);
	text-decoration-color: var(--bz-gold);
}

/* ==========================================================
   IMÁGENES
   ========================================================== */
.entry-content img,
.wp-post-image {
	border-radius: 18px;
	box-shadow: 0 12px 30px rgba(16,42,64,.12);
	transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s ease, filter .45s ease;
}

/* efecto elegante */
@media (hover: hover) {
	.entry-content img:hover,
	    .wp-post-image:hover {
		transform: translateY(-5px) scale(1.025);
		box-shadow: 0 18px 38px rgba(16,42,64,.17);
		filter: brightness(1.03);
	}
}

/* ==========================================================
   BOTONES
   ========================================================== */
button,
input[type="submit"],
.wp-block-button__link {
	background: linear-gradient(135deg,
            var(--bz-blue-2),
            var(--bz-blue)) !important;
	color: #fffaf0 !important;
	border: 1px solid var(--bz-gold) !important;
	border-radius: 30px !important;
	padding: 10px 22px !important;
	font-weight: 600 !important;
	letter-spacing: .2px;
	box-shadow: 0 5px 14px rgba(16,42,64,.16);
	transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

/* hover botón */
button:hover,
input[type="submit"]:hover,
.wp-block-button__link:hover {
	transform: translateY(-2px);
	box-shadow: 0 9px 20px rgba(16,42,64,.22);
	background: linear-gradient(135deg,
            #1d4a6b,
            #102a40) !important;
}

/* ==========================================================
   LISTAS
   ========================================================== */
.entry-content ul {
	padding-left: 22px;
}

.entry-content ul li {
	margin-bottom: 8px;
}

.entry-content ul li::marker {
	color: var(--bz-gold);
}

/* ==========================================================
   SEPARADORES
   ========================================================== */
.entry-content hr {
	border: 0 !important;
	height: 1px;
	margin: 38px 0;
	background: linear-gradient(90deg,
            transparent,
            rgba(184,148,84,.65),
            transparent);
}

/* ==========================================================
   ENTRADAS / TARJETAS
   ========================================================== */
article {
	transition: transform .35s ease, box-shadow .35s ease;
}

@media (hover: hover) {
	article:hover {
		transform: translateY(-3px);
	}
}

/* ==========================================================
   FORMULARIOS
   ========================================================== */
input[type="text"],
input[type="email"],
input[type="url"],
textarea {
	background: rgba(255,255,255,.88) !important;
	border: 1px solid rgba(184,148,84,.45) !important;
	border-radius: 9px !important;
	padding: 11px 13px !important;
	transition: border-color .25s ease, box-shadow .25s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
textarea:focus {
	border-color: var(--bz-gold) !important;
	box-shadow: 0 0 0 3px rgba(184,148,84,.12) !important;
	outline: none !important;
}

/* ==========================================================
   MÓVIL
   ========================================================== */
@media (max-width: 767px) {
	.entry-content h2,
	    .entry-content h3 {
		margin-top: 26px;
	}
	
	blockquote {
		padding: 18px 18px 18px 22px !important;
		font-size: .97em;
	}
	
	.entry-content p,
	    .entry-content li {
		line-height: 1.65;
	}
	
	.entry-content img,
	    .wp-post-image {
		border-radius: 12px;
	}
}/* ==========================================================
   BENEYTZION — CABECERA REAL
   ========================================================== */


/* CABECERA COMPLETA */
#masthead.site-header {
    background:
        linear-gradient(
            135deg,
            #0d263a 0%,
            #173d59 50%,
            #102a40 100%
        ) !important;

    border-bottom: 3px solid #b89454 !important;

    box-shadow:
        0 7px 24px rgba(16, 42, 64, .22) !important;
}


/* ==========================================================
   NOMBRE DEL SITIO
   ========================================================== */

#masthead .site-branding .site-title,
#masthead .site-branding .site-title a {

    color: #f8f1e3 !important;

    font-family:
        Georgia,
        "Times New Roman",
        serif !important;

    font-weight: 700 !important;

    letter-spacing: .5px !important;

    text-shadow:
        0 2px 5px rgba(0,0,0,.25);

    text-decoration: none !important;

    transition:
        color .3s ease,
        transform .3s ease,
        text-shadow .3s ease !important;
}


/* HOVER DEL NOMBRE */

@media (hover: hover) {

    #masthead .site-title a:hover {

        color: #e4c57c !important;

        text-shadow:
            0 3px 8px rgba(0,0,0,.30);
    }
}


/* ==========================================================
   DESCRIPCIÓN / SALMO
   ========================================================== */

#masthead .site-branding .site-description {

    color: #e8d9bd !important;

    font-family:
        Georgia,
        "Times New Roman",
        serif !important;

    font-style: italic !important;

    line-height: 1.45 !important;

    text-shadow:
        0 1px 3px rgba(0,0,0,.22);
}


/* ==========================================================
   MENÚ
   ========================================================== */

#masthead .main-navigation a {

    color: #f8f1e3 !important;

    text-decoration: none !important;

    transition:
        color .25s ease,
        transform .25s ease !important;
}


/* HOVER MENÚ */

@media (hover: hover) {

    #masthead .main-navigation a:hover {

        color: #e4c57c !important;

        transform: translateY(-2px);
    }
}


/* PÁGINA ACTUAL */

#masthead .main-navigation .current-menu-item > a,
#masthead .main-navigation .current_page_item > a {

    color: #d8b566 !important;
}


/* ==========================================================
   LOGO / IMAGEN DE CABECERA
   ========================================================== */

#masthead .site-branding img {

    transition:
        transform .4s cubic-bezier(.2,.8,.2,1),
        filter .4s ease !important;
}


@media (hover: hover) {

    #masthead .site-branding img:hover {

        transform:
            translateY(-3px)
            scale(1.05);

        filter:
            drop-shadow(0 7px 9px rgba(0,0,0,.20));
    }
}


/* ==========================================================
   MENÚ DESPLEGABLE
   ========================================================== */

#masthead .main-navigation ul ul {

    background: #102a40 !important;

    border-top:
        2px solid #b89454 !important;

    box-shadow:
        0 10px 25px rgba(0,0,0,.22) !important;
}


#masthead .main-navigation ul ul a {

    color: #f8f1e3 !important;
}


#masthead .main-navigation ul ul a:hover {

    color: #e4c57c !important;

    background:
        rgba(184,148,84,.13) !important;
}/* ==========================================================
   BENEYTZION — MENÚ PRINCIPAL
   AZUL + DORADO
   ========================================================== */


/* FRANJA COMPLETA DEL MENÚ */
#masthead .main-navigation,
#masthead nav.main-navigation {
    background:
        linear-gradient(
            135deg,
            #102a40 0%,
            #173d59 50%,
            #102a40 100%
        ) !important;

    border-top: 1px solid #b89454 !important;
    border-bottom: 2px solid #b89454 !important;

    box-shadow:
        0 4px 12px rgba(16, 42, 64, .16) !important;
}


/* QUITAR FONDO SALMÓN DE CONTENEDORES INTERNOS */
#masthead .main-navigation > div,
#masthead .main-navigation ul {
    background: transparent !important;
}


/* ==========================================================
   ENLACES DEL MENÚ
   ========================================================== */

#masthead .main-navigation ul.menu > li > a,
#masthead .main-navigation > div > ul > li > a {

    color: #d7b66b !important;

    font-weight: 600 !important;

    text-shadow:
        0 1px 2px rgba(0,0,0,.18);

    transition:
        color .25s ease,
        transform .25s ease,
        text-shadow .25s ease !important;
}


/* ==========================================================
   HOVER
   ========================================================== */

@media (hover: hover) and (pointer: fine) {

    #masthead .main-navigation ul.menu > li > a:hover,
    #masthead .main-navigation > div > ul > li > a:hover {

        color: #ffffff !important;

        transform: translateY(-2px);

        text-shadow:
            0 2px 6px rgba(0,0,0,.30);
    }
}


/* ==========================================================
   ELEMENTO ACTIVO
   ========================================================== */

#masthead .main-navigation .current-menu-item > a,
#masthead .main-navigation .current_page_item > a {

    color: #ffffff !important;
}


/* ==========================================================
   PUNTOS / SEPARADORES ENTRE OPCIONES
   ========================================================== */

#masthead .main-navigation li {
    color: #b89454 !important;
}


/* ==========================================================
   SUBMENÚ
   ========================================================== */

#masthead .main-navigation ul ul {

    background: #102a40 !important;

    border:
        1px solid rgba(184,148,84,.55) !important;

    box-shadow:
        0 10px 22px rgba(0,0,0,.22) !important;
}


#masthead .main-navigation ul ul a {

    color: #ffffff !important;
}


#masthead .main-navigation ul ul a:hover {

    background:
        rgba(184,148,84,.14) !important;

    color: #e2c47f !important;
}/* ==========================================================
   BENEYTZION
   TÍTULO + VERSÍCULO VISIBLES SOBRE FONDO CLARO
   ========================================================== */


/* TÍTULO */
#masthead .site-branding .site-title,
#masthead .site-branding .site-title a {

    color: #102a40 !important;

    font-family:
        Georgia,
        "Times New Roman",
        serif !important;

    font-weight: 700 !important;

    font-size: 32px !important;
    line-height: 1.1 !important;

    letter-spacing: .8px !important;

    text-decoration: none !important;

    /* ayuda a separarlo del fondo */
    text-shadow:
        0 1px 0 #e1bd6d,
        0 2px 3px rgba(255,255,255,.95),
        0 3px 8px rgba(16,42,64,.18) !important;
}


/* ==========================================================
   VERSÍCULO
   ========================================================== */

#masthead .site-branding .site-description {

    color: #17344d !important;

    font-family:
        Georgia,
        "Times New Roman",
        serif !important;

    font-size: 14px !important;

    font-weight: 600 !important;
    font-style: italic !important;

    line-height: 1.35 !important;

    letter-spacing: .15px !important;

    text-shadow:
        0 1px 2px rgba(255,255,255,1),
        0 2px 5px rgba(255,255,255,.9) !important;
}


/* ==========================================================
   HOVER DEL TÍTULO
   ========================================================== */

@media (hover: hover) and (pointer: fine) {

    #masthead .site-title a:hover {

        color: #b07e2f !important;

        text-shadow:
            0 1px 0 #102a40,
            0 3px 8px rgba(255,255,255,.9) !important;
    }
}


/* ==========================================================
   MÓVIL
   ========================================================== */

@media (max-width: 767px) {

    #masthead .site-branding .site-title,
    #masthead .site-branding .site-title a {

        font-size: 24px !important;
        line-height: 1.05 !important;
    }


    #masthead .site-branding .site-description {

        font-size: 11px !important;
        line-height: 1.25 !important;
    }
}/* ==========================================================
   BENEYTZION
   ANCHO GENERAL EXTRA GRANDE
   CABECERA + MENÚ + CONTENIDO + WIDGETS
   ========================================================== */


/* ==========================================================
   1. TODA LA WEB
   Hasta 1800px y 98% de la pantalla
   ========================================================== */

html body #page,
html body #page.site,
html body #page.fixed,
html body #page.fixed.site {

    width: min(98vw, 1800px) !important;
    max-width: none !important;

    margin-left: auto !important;
    margin-right: auto !important;

    box-sizing: border-box !important;
}


/* ==========================================================
   2. CABECERA COMPLETA
   ========================================================== */

html body #masthead.site-header {

    width: 100% !important;
    max-width: none !important;

    margin-left: 0 !important;
    margin-right: 0 !important;

    box-sizing: border-box !important;
}


/* ==========================================================
   3. LOGO + TÍTULO + VERSÍCULO
   ========================================================== */

html body #masthead .site-branding {

    width: 100% !important;
    max-width: none !important;

    margin-left: auto !important;
    margin-right: auto !important;

    box-sizing: border-box !important;
}


html body #masthead .site-title,
html body #masthead .site-description {

    width: 100% !important;
    max-width: none !important;
}


/* ==========================================================
   4. MENÚ PRINCIPAL
   MISMO ANCHO QUE TODA LA WEB
   ========================================================== */

html body #masthead .main-navigation {

    width: 100% !important;
    max-width: none !important;

    margin-left: 0 !important;
    margin-right: 0 !important;

    box-sizing: border-box !important;
}


/* CONTENEDOR INTERIOR DEL MENÚ */

html body #masthead .menu-primary-container {

    width: 100% !important;
    max-width: none !important;

    margin-left: auto !important;
    margin-right: auto !important;

    box-sizing: border-box !important;
}


/* LISTA DEL MENÚ */

html body #masthead .menu-primary,
html body #masthead .main-navigation ul {

    max-width: none !important;
}


/* ==========================================================
   5. CONTENIDO GENERAL
   ========================================================== */

html body #content.site-content,
html body .site-content {

    width: 100% !important;
    max-width: none !important;

    margin-left: auto !important;
    margin-right: auto !important;

    padding-left: 60px !important;
    padding-right: 60px !important;

    box-sizing: border-box !important;
}


/* ==========================================================
   6. COLUMNA PRINCIPAL
   70% DEL ANCHO
   ========================================================== */

html body #primary,
html body #primary.content-area {

    width: 70% !important;
    max-width: none !important;

    float: left !important;

    box-sizing: border-box !important;

    padding-right: 30px !important;
}


/* ==========================================================
   7. COLUMNA DERECHA / WIDGETS
   27% DEL ANCHO
   ========================================================== */

html body #secondary,
html body #secondary.widget-area,
html body .widget-area {

    display: block !important;

    width: 27% !important;
    max-width: none !important;

    float: right !important;

    visibility: visible !important;
    opacity: 1 !important;

    box-sizing: border-box !important;
}


/* ==========================================================
   8. WIDGETS
   APROVECHAN TODO EL NUEVO ANCHO
   ========================================================== */

html body #secondary .widget,
html body .widget-area .widget {

    width: 100% !important;
    max-width: 100% !important;

    box-sizing: border-box !important;
}


/* ==========================================================
   9. IMÁGENES / MAPAS / IFRAMES DE WIDGETS
   ========================================================== */

html body #secondary img,
html body #secondary iframe,
html body #secondary object,
html body #secondary embed,
html body .widget-area img,
html body .widget-area iframe {

    max-width: 100% !important;
    height: auto;
}


/* ==========================================================
   10. LIMPIEZA DE COLUMNAS
   ========================================================== */

html body #content.site-content::after {

    content: "";

    display: table;

    clear: both;
}


/* ==========================================================
   11. FOOTER
   ========================================================== */

html body #colophon.site-footer {

    width: 100% !important;
    max-width: none !important;

    box-sizing: border-box !important;
}


/* ==========================================================
   12. MONITORES MEDIANOS
   ========================================================== */

@media (max-width: 1400px) {

    html body #page,
    html body #page.site,
    html body #page.fixed,
    html body #page.fixed.site {

        width: 97vw !important;
    }


    html body #content.site-content {

        padding-left: 40px !important;
        padding-right: 40px !important;
    }


    html body #primary,
    html body #primary.content-area {

        width: 69% !important;
    }


    html body #secondary,
    html body #secondary.widget-area,
    html body .widget-area {

        width: 28% !important;
    }
}


/* ==========================================================
   13. TABLET
   ========================================================== */

@media (max-width: 1000px) {

    html body #page,
    html body #page.site,
    html body #page.fixed,
    html body #page.fixed.site {

        width: 100% !important;
        max-width: 100% !important;
    }


    html body #content.site-content {

        padding-left: 30px !important;
        padding-right: 30px !important;
    }
}


/* ==========================================================
   14. MÓVIL
   ========================================================== */

@media (max-width: 767px) {

    html body #page,
    html body #page.site,
    html body #page.fixed,
    html body #page.fixed.site {

        width: 100% !important;
        max-width: 100% !important;

        margin-left: 0 !important;
        margin-right: 0 !important;
    }


    /* CONTENIDO */

    html body #content.site-content {

        width: 100% !important;

        padding-left: 18px !important;
        padding-right: 18px !important;
    }


    /* ARTÍCULO */

    html body #primary,
    html body #primary.content-area {

        width: 100% !important;
        max-width: 100% !important;

        float: none !important;

        padding-right: 0 !important;
    }


    /* WIDGETS DEBAJO DEL ARTÍCULO */

    html body #secondary,
    html body #secondary.widget-area,
    html body .widget-area {

        width: 100% !important;
        max-width: 100% !important;

        float: none !important;
    }
}/* ==========================================================
   BENEYTZION · PARASHÁ SEMANAL
   Diseño azul marino + dorado
   Icono: Rollo de la Torá
   ========================================================== */


/* ==========================================================
   CONTENEDOR PRINCIPAL
   ========================================================== */

.bz-parasha {
    width: 100%;
    margin: 0 0 28px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #fbf7ed 100%
        );

    border: 1px solid rgba(184,148,84,.55);

    border-radius: 8px;

    box-shadow:
        0 8px 24px rgba(16,42,64,.12);

    box-sizing: border-box;
}


/* ==========================================================
   CABECERA
   ========================================================== */

.bz-parasha-cabecera {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 13px 15px;

    background:
        linear-gradient(
            135deg,
            #0b2539 0%,
            #173d59 50%,
            #102a40 100%
        );

    border-bottom: 2px solid #b89454;

    color: #f5e3b9;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 1px;

    text-align: center;
}


/* BRILLO DORADO INFERIOR */

.bz-parasha-cabecera::after {
    content: "";

    position: absolute;

    left: 10%;
    right: 10%;
    bottom: 2px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(212,183,124,.85),
            transparent
        );
}


/* ==========================================================
   ICONO ROLLO DE LA TORÁ
   ========================================================== */

.bz-parasha-icono {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: auto;
    height: auto;

    border: 0;

    color: #d4b77c;

    font-size: 21px;

    line-height: 1;

    transform: translateY(-1px);

    filter:
        sepia(.30)
        saturate(.85);
}


/* ==========================================================
   CONTENIDO INTERIOR
   ========================================================== */

.bz-parasha-contenido {
    position: relative;

    padding:
        20px 18px 21px;

    text-align: center;

    box-sizing: border-box;
}


/* ==========================================================
   TEXTO HEBREO SUPERIOR
   ========================================================== */

.bz-parasha-hebreo {
    color: #b89454;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 16px;

    line-height: 1.4;

    letter-spacing: .4px;
}


/* ==========================================================
   LÍNEA DORADA DECORATIVA
   ========================================================== */

.bz-parasha-linea {
    width: 70px;

    height: 1px;

    margin:
        9px auto 13px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #b89454,
            transparent
        );
}


/* ==========================================================
   NOMBRE DE LA PARASHÁ
   ========================================================== */

.bz-parasha-nombre {
    color: #102a40;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 22px;

    font-weight: 700;

    line-height: 1.25;

    margin-bottom: 4px;
}


/* ==========================================================
   NOMBRE DE LA PARASHÁ EN HEBREO
   ========================================================== */

.bz-parasha-nombre-hebreo {
    min-height: 5px;

    margin-bottom: 8px;

    color: #a67d3d;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 18px;

    line-height: 1.4;
}


/* ==========================================================
   FECHA
   ========================================================== */

.bz-parasha-fecha {
    color: #74787b;

    font-size: 12px;

    line-height: 1.4;
}


/* ==========================================================
   PEQUEÑO SEPARADOR DORADO
   ========================================================== */

.bz-parasha-separador {
    margin:
        12px 0 8px;

    color: #b89454;

    font-size: 11px;
}


/* ==========================================================
   ETIQUETA "LECTURA DE LA TORÁ"
   ========================================================== */

.bz-parasha-etiqueta {
    margin-bottom: 5px;

    color: #6f7477;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.4px;
}


/* ==========================================================
   REFERENCIA DE LA TORÁ
   ========================================================== */

.bz-parasha-lectura {
    color: #9a6d29;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 14px;

    font-weight: 700;

    line-height: 1.45;
}


/* ==========================================================
   DETALLE DECORATIVO INFERIOR
   ========================================================== */

.bz-parasha-contenido::after {
    content: "";

    display: block;

    width: 42px;

    height: 1px;

    margin:
        15px auto 0;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(184,148,84,.75),
            transparent
        );
}


/* ==========================================================
   EFECTO AL PASAR EL RATÓN
   SOLO ORDENADORES
   ========================================================== */

@media (hover:hover) and (pointer:fine) {

    .bz-parasha {
        transition:
            transform .30s ease,
            box-shadow .30s ease,
            border-color .30s ease;
    }


    .bz-parasha:hover {
        transform:
            translateY(-4px);

        border-color:
            rgba(184,148,84,.78);

        box-shadow:
            0 13px 30px rgba(16,42,64,.17);
    }


    .bz-parasha-icono {
        transition:
            transform .30s ease;
    }


    .bz-parasha:hover .bz-parasha-icono {
        transform:
            translateY(-1px)
            scale(1.08);
    }
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width:1000px) {

    .bz-parasha-cabecera {
        font-size: 14px;
    }


    .bz-parasha-nombre {
        font-size: 20px;
    }

}


/* ==========================================================
   MÓVIL
   ========================================================== */

@media (max-width:767px) {

    .bz-parasha {
        margin-bottom: 22px;
    }


    .bz-parasha-cabecera {
        padding:
            12px 13px;

        gap: 8px;

        font-size: 13px;

        letter-spacing: .8px;
    }


    .bz-parasha-icono {
        font-size: 20px;
    }


    .bz-parasha-contenido {
        padding:
            18px 16px;
    }


    .bz-parasha-hebreo {
        font-size: 15px;
    }


    .bz-parasha-nombre {
        font-size: 20px;
    }


    .bz-parasha-nombre-hebreo {
        font-size: 17px;
    }


    .bz-parasha-lectura {
        font-size: 13px;
    }

}/* ==========================================================
   BENEYTZION · MO'ADIM
   Inspirado en el widget de A través de las Escrituras
   ========================================================== */


/* CONTENEDOR GENERAL */

.bz-moadim2 {
    width: 100%;
    margin: 0 0 30px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #fffdfa 0%,
            #fbf7ed 100%
        );

    border:
        1px solid rgba(184,148,84,.60);

    border-radius: 10px;

    box-shadow:
        0 9px 25px rgba(16,42,64,.13);

    box-sizing: border-box;
}


/* ==========================================================
   CABECERA
   ========================================================== */

.bz-moadim2-header {
    display: flex;
    align-items: center;

    gap: 10px;

    padding:
        12px 15px;

    background:
        linear-gradient(
            135deg,
            #092338 0%,
            #123b5c 55%,
            #102a40 100%
        );

    border-bottom:
        2px solid #b89454;

    color: #fff;
}


/* ICONO */

.bz-moadim2-header-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    flex: 0 0 30px;

    background:
        rgba(255,255,255,.08);

    border:
        1px solid rgba(212,183,124,.80);

    border-radius: 7px;

    font-size: 16px;
}


/* MO'ADIM */

.bz-moadim2-title {
    color: #f8e5ba;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: .4px;

    line-height: 1.1;
}


/* LEVÍTICO 23 */

.bz-moadim2-header-ref {
    margin-top: 3px;

    color:
        rgba(255,255,255,.72);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 8px;

    font-style: italic;
}


/* ==========================================================
   PRÓXIMA CONVOCACIÓN
   ========================================================== */

.bz-moadim2-next {
    margin:
        11px 10px 0;

    padding:
        16px 12px 13px;

    background:
        linear-gradient(
            145deg,
            #fffdfa,
            #fff9ed
        );

    border:
        1px solid rgba(198,154,72,.42);

    border-radius: 11px;

    text-align: center;

    box-shadow:
        0 5px 14px rgba(16,42,64,.06);
}


/* ETIQUETA PRÓXIMA */

.bz-moadim2-badge {
    display: inline-block;

    margin-bottom: 8px;

    padding:
        4px 12px;

    background:
        #f8e8c4;

    border:
        1px solid rgba(198,154,72,.65);

    border-radius: 20px;

    color: #96651f;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1px;
}


/* NOMBRE */

.bz-moadim2-next-name {
    color: #102a40;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 19px;

    font-weight: 700;

    line-height: 1.25;
}


/* HEBREO */

.bz-moadim2-next-hebrew {
    margin-top: 4px;

    color: #a3702e;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 12px;

    line-height: 1.4;
}


/* ORNAMENTO */

.bz-moadim2-ornament {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 6px;

    margin:
        10px auto 11px;
}


.bz-moadim2-ornament span {
    width: 48px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(184,148,84,.55)
        );
}


.bz-moadim2-ornament span:last-child {
    background:
        linear-gradient(
            90deg,
            rgba(184,148,84,.55),
            transparent
        );
}


.bz-moadim2-ornament b {
    color: #b47d27;

    font-size: 6px;
}


/* ==========================================================
   CUENTA REGRESIVA
   ========================================================== */

.bz-moadim2-countdown {
    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 5px;

    margin:
        0 auto 10px;

    max-width: 240px;
}


/* CADA CASILLA */

.bz-moadim2-time {
    padding:
        8px 3px 6px;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f5faff
        );

    border:
        1px solid #bad1e2;

    border-radius: 6px;

    box-shadow:
        0 3px 7px rgba(16,42,64,.08);
}


/* NÚMERO */

.bz-moadim2-time strong {
    display: block;

    color: #123b5c;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 17px;

    font-weight: 700;

    line-height: 1;
}


/* TEXTO DÍAS/HORAS... */

.bz-moadim2-time small {
    display: block;

    margin-top: 5px;

    color: #687985;

    font-size: 6px;

    font-weight: 700;

    letter-spacing: .5px;
}


/* FECHA */

.bz-moadim2-next-date {
    margin-top: 7px;

    color: #60717c;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 9px;

    font-style: italic;
}


/* ATARDECER */

.bz-moadim2-sunset {
    margin-top: 2px;

    color: #8a795d;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 8px;

    font-style: italic;
}


/* REFERENCIA BÍBLICA */

.bz-moadim2-bible-ref {
    display: inline-block;

    margin-top: 8px;

    padding:
        3px 9px;

    background:
        rgba(255,255,255,.65);

    border:
        1px solid rgba(184,148,84,.45);

    border-radius: 14px;

    color: #183b55;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 9px;

    font-weight: 700;
}


/* ==========================================================
   TÍTULO DE LA LISTA
   ========================================================== */

.bz-moadim2-list-title {
    padding:
        12px 10px 8px;

    color: #9c681f;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .8px;

    text-align: center;
}


/* ==========================================================
   LISTA DE MO'ADIM
   ========================================================== */

.bz-moadim2-list {
    padding:
        0 10px 12px;
}


/* ELEMENTO */

.bz-moadim2-item {
    position: relative;

    display: grid;

    grid-template-columns:
        28px 1fr auto;

    align-items: center;

    gap: 8px;

    min-height: 44px;

    margin-bottom: 6px;

    padding:
        6px 9px;

    background:
        rgba(255,255,255,.70);

    border:
        1px solid rgba(16,42,64,.07);

    border-radius: 7px;

    box-shadow:
        0 2px 7px rgba(16,42,64,.04);

    box-sizing: border-box;
}


/* ACTIVO / PRÓXIMO */

.bz-moadim2-item.is-next {
    background:
        #fff8e7;

    border:
        1px solid #d69b39;

    border-left:
        3px solid #c6811d;

    box-shadow:
        0 3px 10px rgba(184,148,84,.15);
}


/* ICONO */

.bz-moadim2-item-icon {
    text-align: center;

    font-size: 15px;
}


/* DATOS */

.bz-moadim2-item-data {
    min-width: 0;

    text-align: center;
}


/* NOMBRE */

.bz-moadim2-item-name {
    color: #17364e;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 10px;

    font-weight: 700;

    line-height: 1.25;
}


.bz-moadim2-item.is-next
.bz-moadim2-item-name {
    color: #895315;
}


/* HEBREO */

.bz-moadim2-item-hebrew {
    margin-top: 2px;

    color: #8c7a62;

    font-size: 7px;

    line-height: 1.2;
}


/* FECHA DERECHA */

.bz-moadim2-item-date {
    min-width: 35px;

    padding:
        3px 5px;

    background:
        #f4f6f7;

    border-radius: 10px;

    color: #687780;

    font-size: 7px;

    text-align: center;

    white-space: nowrap;
}


.bz-moadim2-item.is-next
.bz-moadim2-item-date {
    background:
        #fff0c6;

    color: #875315;
}


/* CARGANDO */

.bz-moadim2-loading {
    padding: 15px;

    color: #777;

    font-size: 11px;

    text-align: center;
}


/* ==========================================================
   HOVER
   ========================================================== */

@media (hover:hover) and (pointer:fine) {

    .bz-moadim2 {
        transition:
            transform .3s ease,
            box-shadow .3s ease;
    }

    .bz-moadim2:hover {
        transform: translateY(-3px);

        box-shadow:
            0 13px 30px rgba(16,42,64,.16);
    }


    .bz-moadim2-item {
        transition:
            transform .2s ease,
            background-color .2s ease;
    }


    .bz-moadim2-item:hover {
        transform:
            translateX(2px);

        background:
            #fffaf0;
    }

}


/* ==========================================================
   MÓVIL
   ========================================================== */

@media (max-width:767px) {

    .bz-moadim2-next {
        margin:
            10px 8px 0;
    }


    .bz-moadim2-list {
        padding:
            0 8px 10px;
    }


    .bz-moadim2-next-name {
        font-size: 18px;
    }


    .bz-moadim2-time strong {
        font-size: 16px;
    }

}/* ==========================================================
   BENEYTZION · REUNIÓN SEMANAL · SHABAT
   ========================================================== */

.bz-reunion {
    width: 100%;
    margin: 0 0 28px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #fbf7ed 100%
        );

    border:
        1px solid rgba(184,148,84,.58);

    border-radius: 9px;

    box-shadow:
        0 8px 24px rgba(16,42,64,.12);

    box-sizing: border-box;
}


/* ==========================================================
   CABECERA
   ========================================================== */

.bz-reunion-cabecera {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding:
        13px 15px;

    background:
        linear-gradient(
            135deg,
            #092338 0%,
            #173d59 52%,
            #102a40 100%
        );

    border-bottom:
        2px solid #b89454;

    text-align: left;
}


.bz-reunion-cabecera::after {
    content: "";

    position: absolute;

    left: 10%;
    right: 10%;
    bottom: 2px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(212,183,124,.9),
            transparent
        );
}


/* ICONO */

.bz-reunion-icono {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 31px;
    height: 31px;

    flex: 0 0 31px;

    border:
        1px solid rgba(212,183,124,.8);

    border-radius: 7px;

    background:
        rgba(255,255,255,.07);

    font-size: 17px;
}


/* TÍTULO */

.bz-reunion-titulo {
    color: #f5e3b9;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: .9px;

    line-height: 1.15;
}


/* SHABAT */

.bz-reunion-subtitulo {
    margin-top: 2px;

    color:
        rgba(255,255,255,.72);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 9px;

    font-style: italic;

    letter-spacing: 1.2px;
}


/* ==========================================================
   CONTENIDO
   ========================================================== */

.bz-reunion-contenido {
    padding:
        17px 16px 19px;

    box-sizing: border-box;
}


/* ==========================================================
   SÁBADOS 11:00
   ========================================================== */

.bz-reunion-destacado {
    padding:
        14px 12px;

    background:
        linear-gradient(
            145deg,
            #fffdfa,
            #fff8e9
        );

    border:
        1px solid rgba(184,148,84,.38);

    border-radius: 8px;

    text-align: center;
}


.bz-reunion-dia {
    color: #102a40;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 20px;

    font-weight: 700;
}


.bz-reunion-hora {
    margin-top: 2px;

    color: #b07829;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 18px;

    font-weight: 700;
}


.bz-reunion-hebreo {
    margin-top: 5px;

    color: #a77a38;

    font-size: 12px;
}


/* ==========================================================
   SEPARADOR
   ========================================================== */

.bz-reunion-separador {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 6px;

    margin:
        13px auto;
}


.bz-reunion-separador span {
    width: 55px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(184,148,84,.55)
        );
}


.bz-reunion-separador span:last-child {
    background:
        linear-gradient(
            90deg,
            rgba(184,148,84,.55),
            transparent
        );
}


.bz-reunion-separador b {
    color: #b89454;

    font-size: 6px;
}


/* ==========================================================
   FILAS DE INFORMACIÓN
   ========================================================== */

.bz-reunion-dato {
    display: flex;

    align-items: flex-start;

    gap: 11px;

    padding:
        10px 3px;

    border-bottom:
        1px solid rgba(184,148,84,.20);
}


.bz-reunion-dato:last-of-type {
    border-bottom: 0;
}


/* ICONO */

.bz-reunion-dato-icono {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 29px;
    height: 29px;

    flex: 0 0 29px;

    background:
        #f7f2e8;

    border:
        1px solid rgba(184,148,84,.32);

    border-radius: 50%;

    color: #a8752e;

    font-size: 13px;
}


/* TEXTO */

.bz-reunion-dato-texto {
    min-width: 0;

    color: #53616b;

    font-size: 11px;

    line-height: 1.55;
}


.bz-reunion-dato-texto strong {
    display: block;

    margin-bottom: 2px;

    color: #102a40;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 11px;

    font-weight: 700;
}


.bz-reunion-dato-texto span {
    display: block;
}


/* ENLACES */

.bz-reunion-dato-texto a {
    color: #95651f !important;

    font-weight: 600;

    text-decoration: none !important;

    overflow-wrap: anywhere;
}


.bz-reunion-dato-texto a:hover {
    color: #102a40 !important;

    text-decoration: underline !important;
}


/* ==========================================================
   BOTÓN MAPA
   ========================================================== */

.bz-reunion-mapa {
    display: block;

    margin-top: 14px;

    padding:
        8px 12px;

    background:
        linear-gradient(
            135deg,
            #102a40,
            #173d59
        );

    border:
        1px solid #b89454;

    border-radius: 20px;

    color: #f5e3b9 !important;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1px;

    text-align: center;

    text-decoration: none !important;

    box-shadow:
        0 4px 10px rgba(16,42,64,.12);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}


.bz-reunion-mapa:hover {
    background:
        linear-gradient(
            135deg,
            #173d59,
            #214f70
        );

    color: #ffffff !important;

    transform:
        translateY(-2px);

    box-shadow:
        0 7px 15px rgba(16,42,64,.18);
}


/* ==========================================================
   HOVER DEL WIDGET
   ========================================================== */

@media (hover:hover) and (pointer:fine) {

    .bz-reunion {
        transition:
            transform .3s ease,
            box-shadow .3s ease,
            border-color .3s ease;
    }


    .bz-reunion:hover {
        transform:
            translateY(-3px);

        border-color:
            rgba(184,148,84,.80);

        box-shadow:
            0 13px 30px rgba(16,42,64,.16);
    }

}


/* ==========================================================
   MÓVIL
   ========================================================== */

@media (max-width:767px) {

    .bz-reunion-cabecera {
        padding:
            12px 13px;
    }


    .bz-reunion-titulo {
        font-size: 13px;
    }


    .bz-reunion-contenido {
        padding:
            15px 14px 17px;
    }


    .bz-reunion-dia {
        font-size: 19px;
    }


    .bz-reunion-hora {
        font-size: 17px;
    }

}/* ==========================================================
   BENEYTZION · CONTÁCTANOS
   ========================================================== */

.bz-contacto {
    width: 100%;
    margin: 0 0 28px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #fbf7ed 100%
        );

    border:
        1px solid rgba(184,148,84,.58);

    border-radius: 9px;

    box-shadow:
        0 8px 24px rgba(16,42,64,.12);

    box-sizing: border-box;
}


/* ==========================================================
   CABECERA
   ========================================================== */

.bz-contacto-cabecera {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding:
        13px 15px;

    background:
        linear-gradient(
            135deg,
            #092338 0%,
            #173d59 52%,
            #102a40 100%
        );

    border-bottom:
        2px solid #b89454;

    text-align: left;
}


.bz-contacto-cabecera::after {
    content: "";

    position: absolute;

    left: 10%;
    right: 10%;
    bottom: 2px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(212,183,124,.9),
            transparent
        );
}


/* ICONO CABECERA */

.bz-contacto-icono {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 31px;
    height: 31px;

    flex: 0 0 31px;

    border:
        1px solid rgba(212,183,124,.8);

    border-radius: 7px;

    background:
        rgba(255,255,255,.07);

    font-size: 16px;
}


/* TÍTULO */

.bz-contacto-titulo {
    color: #f5e3b9;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1px;

    line-height: 1.15;
}


/* SUBTÍTULO */

.bz-contacto-subtitulo {
    margin-top: 2px;

    color:
        rgba(255,255,255,.70);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 9px;

    font-style: italic;
}


/* ==========================================================
   CONTENIDO
   ========================================================== */

.bz-contacto-contenido {
    padding:
        17px 15px 16px;

    box-sizing: border-box;
}


/* INTRO */

.bz-contacto-intro {
    color: #102a40;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 14px;

    font-weight: 700;

    text-align: center;
}


/* LÍNEA */

.bz-contacto-linea {
    width: 62px;
    height: 1px;

    margin:
        10px auto 13px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #b89454,
            transparent
        );
}


/* ==========================================================
   OPCIONES
   ========================================================== */

.bz-contacto-opcion {
    display: flex;

    align-items: center;

    gap: 10px;

    min-height: 50px;

    margin-bottom: 8px;

    padding:
        8px 10px;

    background:
        rgba(255,255,255,.74);

    border:
        1px solid rgba(184,148,84,.25);

    border-radius: 7px;

    color: #26333d !important;

    text-decoration: none !important;

    box-shadow:
        0 2px 7px rgba(16,42,64,.04);

    box-sizing: border-box;

    transition:
        transform .22s ease,
        border-color .22s ease,
        background .22s ease,
        box-shadow .22s ease;
}


/* ICONO */

.bz-contacto-opcion-icono {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 33px;
    height: 33px;

    flex: 0 0 33px;

    background:
        #f7f2e8;

    border:
        1px solid rgba(184,148,84,.34);

    border-radius: 50%;

    font-size: 15px;
}


/* TEXTO */

.bz-contacto-opcion-texto {
    flex: 1;

    min-width: 0;

    line-height: 1.25;
}


.bz-contacto-opcion-texto strong {
    display: block;

    color: #102a40;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 11px;

    font-weight: 700;
}


.bz-contacto-opcion-texto small {
    display: block;

    margin-top: 3px;

    color: #6f777c;

    font-size: 9px;

    overflow-wrap: anywhere;
}


/* FLECHA */

.bz-contacto-flecha {
    color: #b17c2e;

    font-family:
        Georgia,
        serif;

    font-size: 22px;

    line-height: 1;
}


/* ==========================================================
   WHATSAPP DESTACADO
   ========================================================== */

.bz-contacto-whatsapp {
    background:
        linear-gradient(
            145deg,
            #fffdf8,
            #fff8e8
        );

    border:
        1px solid rgba(184,148,84,.55);
}


.bz-contacto-whatsapp
.bz-contacto-opcion-icono {
    background:
        #eef7ee;

    border-color:
        rgba(83,130,83,.25);
}


/* ==========================================================
   FINAL HEBREO
   ========================================================== */

.bz-contacto-final {
    margin-top: 11px;

    color: #b89454;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 15px;

    text-align: center;
}


/* ==========================================================
   HOVER
   ========================================================== */

@media (hover:hover) and (pointer:fine) {

    .bz-contacto {
        transition:
            transform .3s ease,
            box-shadow .3s ease,
            border-color .3s ease;
    }


    .bz-contacto:hover {
        transform:
            translateY(-3px);

        border-color:
            rgba(184,148,84,.80);

        box-shadow:
            0 13px 30px rgba(16,42,64,.16);
    }


    .bz-contacto-opcion:hover {
        transform:
            translateX(3px);

        background:
            #fffaf0;

        border-color:
            rgba(184,148,84,.60);

        box-shadow:
            0 4px 10px rgba(16,42,64,.07);
    }

}


/* ==========================================================
   MÓVIL
   ========================================================== */

@media (max-width:767px) {

    .bz-contacto-cabecera {
        padding:
            12px 13px;
    }


    .bz-contacto-titulo {
        font-size: 13px;
    }


    .bz-contacto-contenido {
        padding:
            15px 13px;
    }


    .bz-contacto-opcion {
        min-height: 48px;
    }

}/* ICONO OFICIAL DE WHATSAPP */

.bz-whatsapp-icono {
    background: #25D366 !important;
    border-color: #25D366 !important;
}

.bz-whatsapp-icono svg {
    display: block;
    width: 19px;
    height: 19px;
    fill: #ffffff;
}/* ==========================================================
   BENEYTZION · SITIOS DE INTERÉS
   ========================================================== */

.bz-sitios {
    width: 100%;
    margin: 0 0 28px;
    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #fbf7ed 100%
        );

    border:
        1px solid rgba(184,148,84,.58);

    border-radius: 9px;

    box-shadow:
        0 8px 24px rgba(16,42,64,.12);

    box-sizing: border-box;
}


/* ==========================================================
   CABECERA
   ========================================================== */

.bz-sitios-cabecera {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 13px 15px;

    background:
        linear-gradient(
            135deg,
            #092338 0%,
            #173d59 52%,
            #102a40 100%
        );

    border-bottom:
        2px solid #b89454;

    text-align: left;
}


.bz-sitios-cabecera::after {
    content: "";

    position: absolute;

    left: 10%;
    right: 10%;
    bottom: 2px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(212,183,124,.9),
            transparent
        );
}


/* ICONO CABECERA */

.bz-sitios-icono {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 31px;
    height: 31px;

    flex: 0 0 31px;

    border:
        1px solid rgba(212,183,124,.8);

    border-radius: 7px;

    background:
        rgba(255,255,255,.07);

    font-size: 16px;
}


/* TÍTULO */

.bz-sitios-titulo {
    color: #f5e3b9;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1px;

    line-height: 1.15;
}


/* SUBTÍTULO */

.bz-sitios-subtitulo {
    margin-top: 2px;

    color:
        rgba(255,255,255,.70);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 8px;

    font-style: italic;
}


/* ==========================================================
   CONTENIDO
   ========================================================== */

.bz-sitios-contenido {
    padding:
        17px 15px 16px;

    box-sizing: border-box;
}


/* INTRODUCCIÓN */

.bz-sitios-intro {
    color: #53616b;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 12px;

    font-style: italic;

    line-height: 1.55;

    text-align: center;
}


/* ==========================================================
   SEPARADOR
   ========================================================== */

.bz-sitios-separador {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 6px;

    margin:
        12px auto 13px;
}


.bz-sitios-separador span {
    width: 48px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(184,148,84,.60)
        );
}


.bz-sitios-separador span:last-child {
    background:
        linear-gradient(
            90deg,
            rgba(184,148,84,.60),
            transparent
        );
}


.bz-sitios-separador b {
    color: #b89454;

    font-size: 6px;
}


/* ==========================================================
   ENLACES
   ========================================================== */

.bz-sitios-enlace {
    display: flex;

    align-items: center;

    gap: 10px;

    min-height: 55px;

    margin-bottom: 8px;

    padding:
        9px 10px;

    background:
        rgba(255,255,255,.75);

    border:
        1px solid rgba(184,148,84,.26);

    border-radius: 7px;

    color: #26333d !important;

    text-decoration: none !important;

    box-shadow:
        0 2px 7px rgba(16,42,64,.04);

    box-sizing: border-box;

    transition:
        transform .22s ease,
        background .22s ease,
        border-color .22s ease,
        box-shadow .22s ease;
}


/* ICONO DE CADA SITIO */

.bz-sitios-enlace-icono {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    background:
        linear-gradient(
            145deg,
            #fffaf0,
            #f7f0df
        );

    border:
        1px solid rgba(184,148,84,.38);

    border-radius: 50%;

    font-size: 15px;
}


/* TEXTO */

.bz-sitios-enlace-texto {
    flex: 1;

    min-width: 0;

    line-height: 1.3;
}


.bz-sitios-enlace-texto strong {
    display: block;

    color: #102a40;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 11px;

    font-weight: 700;
}


.bz-sitios-enlace-texto small {
    display: block;

    margin-top: 3px;

    color: #777d80;

    font-size: 8px;

    font-style: italic;
}


/* FLECHA */

.bz-sitios-flecha {
    color: #b17c2e;

    font-family:
        Georgia,
        serif;

    font-size: 22px;

    line-height: 1;
}


/* ==========================================================
   TEXTO HEBREO FINAL
   ========================================================== */

.bz-sitios-final {
    margin-top: 12px;

    color: #b89454;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 14px;

    text-align: center;
}


/* ==========================================================
   HOVER
   ========================================================== */

@media (hover:hover) and (pointer:fine) {

    .bz-sitios {
        transition:
            transform .3s ease,
            box-shadow .3s ease,
            border-color .3s ease;
    }


    .bz-sitios:hover {
        transform:
            translateY(-3px);

        border-color:
            rgba(184,148,84,.80);

        box-shadow:
            0 13px 30px rgba(16,42,64,.16);
    }


    .bz-sitios-enlace:hover {
        transform:
            translateX(3px);

        background:
            #fffaf0;

        border-color:
            rgba(184,148,84,.62);

        box-shadow:
            0 4px 10px rgba(16,42,64,.07);
    }


    .bz-sitios-enlace:hover
    .bz-sitios-enlace-texto strong {
        color: #9a6824;
    }

}


/* ==========================================================
   MÓVIL
   ========================================================== */

@media (max-width:767px) {

    .bz-sitios-cabecera {
        padding:
            12px 13px;
    }


    .bz-sitios-titulo {
        font-size: 13px;
    }


    .bz-sitios-contenido {
        padding:
            15px 13px;
    }


    .bz-sitios-enlace {
        min-height: 52px;
    }

}/* ==========================================================
   BENEYTZION · DÓNDE ENCONTRARNOS
   ========================================================== */

.bz-mapa {
    width: 100%;
    margin: 0 0 28px;
    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #fbf7ed 100%
        );

    border:
        1px solid rgba(184,148,84,.60);

    border-radius: 10px;

    box-shadow:
        0 8px 24px rgba(16,42,64,.12);

    box-sizing: border-box;
}


/* ==========================================================
   CABECERA
   ========================================================== */

.bz-mapa-cabecera {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 13px 15px;

    background:
        linear-gradient(
            135deg,
            #092338 0%,
            #173d59 52%,
            #102a40 100%
        );

    border-bottom:
        2px solid #b89454;

    text-align: left;
}


.bz-mapa-cabecera::after {
    content: "";

    position: absolute;

    left: 10%;
    right: 10%;
    bottom: 2px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(212,183,124,.9),
            transparent
        );
}


.bz-mapa-icono {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 31px;
    height: 31px;

    flex: 0 0 31px;

    background:
        rgba(255,255,255,.07);

    border:
        1px solid rgba(212,183,124,.80);

    border-radius: 7px;

    font-size: 16px;
}


.bz-mapa-titulo {
    color: #f5e3b9;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1px;

    line-height: 1.15;
}


.bz-mapa-subtitulo {
    margin-top: 2px;

    color:
        rgba(255,255,255,.70);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 9px;

    font-style: italic;
}


/* ==========================================================
   CONTENIDO
   ========================================================== */

.bz-mapa-contenido {
    padding: 16px;

    box-sizing: border-box;
}


/* ==========================================================
   DIRECCIÓN
   ========================================================== */

.bz-mapa-direccion {
    margin-bottom: 14px;

    padding: 13px 14px;

    background:
        linear-gradient(
            145deg,
            #fffdfa,
            #fff7e7
        );

    border:
        1px solid rgba(184,148,84,.37);

    border-radius: 8px;

    text-align: center;
}


.bz-mapa-direccion-titulo {
    color: #102a40;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 15px;

    font-weight: 700;
}


.bz-mapa-horario {
    margin-top: 3px;

    color: #a86f23;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 13px;

    font-weight: 700;
}


.bz-mapa-linea {
    width: 60px;
    height: 1px;

    margin:
        9px auto;

    background:
        linear-gradient(
            90deg,
            transparent,
            #b89454,
            transparent
        );
}


.bz-mapa-direccion-texto {
    color: #59646c;

    font-size: 11px;

    line-height: 1.55;
}


/* ==========================================================
   MARCO DEL MAPA
   ========================================================== */

.bz-mapa-marco {
    position: relative;

    overflow: hidden;

    border:
        2px solid rgba(184,148,84,.68);

    border-radius: 9px;

    background: #f7f2e8;

    box-shadow:
        0 5px 14px rgba(16,42,64,.10);
}


.bz-mapa-marco::before {
    content: "";

    position: absolute;

    z-index: 2;

    top: 0;
    left: 0;
    right: 0;

    height: 3px;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            #102a40,
            #b89454,
            #102a40
        );
}


.bz-mapa-marco iframe {
    display: block;

    width: 100% !important;

    height: 330px;

    border: 0 !important;
}


/* ==========================================================
   BOTÓN CÓMO LLEGAR
   ========================================================== */

.bz-mapa-boton {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    margin-top: 14px;

    padding:
        9px 14px;

    background:
        linear-gradient(
            135deg,
            #102a40,
            #173d59
        );

    border:
        1px solid #b89454;

    border-radius: 22px;

    color: #f5e3b9 !important;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1px;

    text-align: center;

    text-decoration: none !important;

    box-shadow:
        0 4px 11px rgba(16,42,64,.14);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}


.bz-mapa-boton-icono {
    font-size: 12px;
}


.bz-mapa-boton:hover {
    background:
        linear-gradient(
            135deg,
            #173d59,
            #214f70
        );

    color: #ffffff !important;

    transform:
        translateY(-2px);

    box-shadow:
        0 7px 16px rgba(16,42,64,.19);
}


/* ==========================================================
   CONTACTO
   ========================================================== */

.bz-mapa-contacto {
    display: flex;

    flex-wrap: wrap;

    align-items: center;
    justify-content: center;

    gap: 7px;

    margin-top: 12px;

    color: #b89454;

    font-size: 9px;

    text-align: center;
}


.bz-mapa-contacto a {
    color: #6e7477 !important;

    text-decoration: none !important;
}


.bz-mapa-contacto a:hover {
    color: #9b6924 !important;

    text-decoration: underline !important;
}


/* ==========================================================
   HEBREO
   ========================================================== */

.bz-mapa-hebreo {
    margin-top: 12px;

    color: #b89454;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 14px;

    text-align: center;
}


/* ==========================================================
   EFECTO ESCRITORIO
   ========================================================== */

@media (hover:hover) and (pointer:fine) {

    .bz-mapa {
        transition:
            transform .3s ease,
            border-color .3s ease,
            box-shadow .3s ease;
    }


    .bz-mapa:hover {
        transform:
            translateY(-3px);

        border-color:
            rgba(184,148,84,.82);

        box-shadow:
            0 13px 30px rgba(16,42,64,.16);
    }

}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width:1000px) {

    .bz-mapa-marco iframe {
        height: 300px;
    }

}


/* ==========================================================
   MÓVIL
   ========================================================== */

@media (max-width:767px) {

    .bz-mapa-cabecera {
        padding:
            12px 13px;
    }


    .bz-mapa-titulo {
        font-size: 13px;
    }


    .bz-mapa-contenido {
        padding:
            14px;
    }


    .bz-mapa-direccion-titulo {
        font-size: 14px;
    }


    .bz-mapa-marco iframe {
        height: 260px;
    }


    .bz-mapa-contacto {
        gap: 5px;
    }

}/* ==========================================================
   BENEYTZION · SÍGUENOS EN YOUTUBE
   ========================================================== */

.bz-youtube {
    width: 100%;
    margin: 0 0 28px;
    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #fbf7ed 100%
        );

    border:
        1px solid rgba(184,148,84,.58);

    border-radius: 9px;

    box-shadow:
        0 8px 24px rgba(16,42,64,.12);

    box-sizing: border-box;
}


/* ==========================================================
   CABECERA
   ========================================================== */

.bz-youtube-cabecera {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 13px 15px;

    background:
        linear-gradient(
            135deg,
            #092338 0%,
            #173d59 52%,
            #102a40 100%
        );

    border-bottom:
        2px solid #b89454;

    text-align: left;
}


.bz-youtube-cabecera::after {
    content: "";

    position: absolute;

    left: 10%;
    right: 10%;
    bottom: 2px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(212,183,124,.90),
            transparent
        );
}


/* ICONO YOUTUBE DE CABECERA */

.bz-youtube-icono-cabecera {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 32px;
    height: 25px;

    flex: 0 0 32px;

    background: #ff0000;

    border-radius: 7px;

    box-shadow:
        0 2px 6px rgba(0,0,0,.20);
}


.bz-youtube-icono-cabecera svg {
    display: block;

    width: 20px;
    height: 20px;

    fill: #ffffff;
}


/* TÍTULO */

.bz-youtube-titulo {
    color: #f5e3b9;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1px;

    line-height: 1.15;
}


/* SUBTÍTULO */

.bz-youtube-subtitulo {
    margin-top: 2px;

    color:
        rgba(255,255,255,.70);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 9px;

    font-style: italic;
}


/* ==========================================================
   CONTENIDO
   ========================================================== */

.bz-youtube-contenido {
    position: relative;

    padding:
        19px 16px 17px;

    text-align: center;

    box-sizing: border-box;
}


/* ==========================================================
   LOGO REAL BENEY TZION
   ========================================================== */

.bz-youtube-logo {
    display: block;

    width: 175px;
    max-width: 78%;

    margin:
        0 auto 13px;

    padding: 7px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #fffdf8,
            #f6eddc
        );

    border:
        1px solid rgba(184,148,84,.62);

    border-radius: 10px;

    box-shadow:
        0 5px 15px rgba(16,42,64,.11);

    box-sizing: border-box;

    text-decoration: none !important;

    transition:
        transform .28s ease,
        box-shadow .28s ease,
        border-color .28s ease;
}


.bz-youtube-logo img {
    display: block;

    width: 100% !important;
    height: auto !important;

    margin: 0 !important;

    border: 0 !important;
    border-radius: 6px !important;

    box-shadow: none !important;
}


/* ==========================================================
   SEPARADOR DORADO
   ========================================================== */

.bz-youtube-separador {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 6px;

    margin:
        13px auto 12px;
}


.bz-youtube-separador span {
    width: 48px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(184,148,84,.68)
        );
}


.bz-youtube-separador span:last-child {
    background:
        linear-gradient(
            90deg,
            rgba(184,148,84,.68),
            transparent
        );
}


.bz-youtube-separador b {
    color: #b89454;

    font-size: 6px;
}


/* ==========================================================
   MENSAJE
   ========================================================== */

.bz-youtube-mensaje {
    margin-bottom: 15px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    text-align: center;
}


.bz-youtube-mensaje strong {
    display: block;

    margin-bottom: 5px;

    color: #102a40;

    font-size: 13px;

    font-weight: 700;
}


.bz-youtube-mensaje span {
    display: block;

    color: #6e767b;

    font-size: 10px;

    font-style: italic;

    line-height: 1.55;
}


/* ==========================================================
   BOTÓN YOUTUBE
   ========================================================== */

.bz-youtube-boton {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    width: 100%;

    padding:
        10px 13px;

    background:
        linear-gradient(
            135deg,
            #b2071d 0%,
            #e00000 45%,
            #ff0000 100%
        );

    border:
        1px solid rgba(125,0,0,.40);

    border-radius: 24px;

    color: #ffffff !important;

    text-decoration: none !important;

    box-shadow:
        0 5px 13px rgba(150,0,0,.20);

    box-sizing: border-box;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        filter .25s ease;
}


/* ICONO DEL BOTÓN */

.bz-youtube-boton-icono {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;

    flex: 0 0 22px;
}


.bz-youtube-boton-icono svg {
    display: block;

    width: 22px;
    height: 22px;

    fill: #ffffff;
}


/* TEXTO BOTÓN */

.bz-youtube-boton-texto {
    color: #ffffff;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .8px;
}


/* ==========================================================
   NOMBRE DEL CANAL
   ========================================================== */

.bz-youtube-canal {
    margin-top: 10px;

    color: #85898b;

    font-size: 9px;

    letter-spacing: .3px;
}


/* ==========================================================
   HEBREO
   ========================================================== */

.bz-youtube-final {
    margin-top: 11px;

    color: #b89454;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 14px;
}


/* ==========================================================
   EFECTOS EN ORDENADOR
   ========================================================== */

@media (hover:hover) and (pointer:fine) {

    .bz-youtube {
        transition:
            transform .30s ease,
            box-shadow .30s ease,
            border-color .30s ease;
    }


    .bz-youtube:hover {
        transform:
            translateY(-3px);

        border-color:
            rgba(184,148,84,.82);

        box-shadow:
            0 13px 30px rgba(16,42,64,.16);
    }


    .bz-youtube-logo:hover {
        transform:
            scale(1.025);

        border-color:
            rgba(184,148,84,.88);

        box-shadow:
            0 7px 18px rgba(16,42,64,.15);
    }


    .bz-youtube-boton:hover {
        color: #ffffff !important;

        transform:
            translateY(-2px);

        filter:
            brightness(1.06);

        box-shadow:
            0 8px 18px rgba(150,0,0,.27);
    }

}


/* ==========================================================
   MÓVIL
   ========================================================== */

@media (max-width:767px) {

    .bz-youtube-cabecera {
        padding:
            12px 13px;
    }


    .bz-youtube-titulo {
        font-size: 13px;
    }


    .bz-youtube-contenido {
        padding:
            17px 14px 15px;
    }


    .bz-youtube-logo {
        width: 160px;
        max-width: 80%;
    }


    .bz-youtube-mensaje strong {
        font-size: 12px;
    }


    .bz-youtube-boton {
        padding:
            10px 11px;
    }

}