/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

/* GEIST MONO — VARIABLE */
@font-face {
    font-family: "Geist Mono";
    src: url("https://bloomspavilion.com/wp-content/uploads/2026/08/GeistMonowght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
html {
    scroll-padding-top: var(--header-height);
}
body {
	color:#000000;
}

a, a:hover {
    color: #000000;
}
.site-navigation-toggle-holder .site-navigation-toggle {
    background-color: rgba(0,0,0,0);
    border-radius: 0;
    color: #000000;
}
.site-navigation-toggle-holder .site-navigation-toggle-icon:after, .site-navigation-toggle-holder .site-navigation-toggle-icon:before {
    border-radius: 0;
}
.site-navigation-toggle-holder .site-navigation-toggle-icon::before,
.site-navigation-toggle-holder .site-navigation-toggle-icon::after {
    height: 2px;
    border-radius: 0;
}

/* Primera + segunda línea */
.site-navigation-toggle-holder .site-navigation-toggle-icon::before {
    box-shadow: 0 7px 0 currentcolor;
    margin-block-end: 12px;
}


/* Estado abierto: X */
.site-navigation-toggle-holder
.site-navigation-toggle[aria-expanded="true"]
.site-navigation-toggle-icon::before {
    box-shadow: none;
    transform: translateY(7px) rotate(45deg);
}

.site-navigation-toggle-holder
.site-navigation-toggle[aria-expanded="true"]
.site-navigation-toggle-icon::after {
    transform: translateY(-7px) rotate(-45deg);
}
.site-navigation-dropdown ul.menu {
	padding:20px;
	height: 100vh;
}
.site-navigation-dropdown ul.menu li.menu-about a {
	box-shadow:
    inset 0 -1px 0 rgba(0, 0, 0, .102),
    inset 0 1px 0 rgba(0, 0, 0, .102);
}
.site-navigation-dropdown ul.menu li.menu-faq {
	margin-bottom:30px;
}

.site-header {
	position: fixed;
    width: 100%;
    z-index: 999;
    background: #ffffff;
	top:0;
}

.menu li.menu-exhibit a {
	border: 1px solid #222;
	transition:
    background-color 0.6s ease,
    color 0.6s ease;
}
.menu li.menu-exhibit a:hover {
    background-color: #000;
    color: #fff;
}
.site-main {
    padding-top: var(--header-height);
}

/*HOME*/

.custom-list {
    list-style: none;
    counter-reset: custom-counter;
    padding: 0;
    margin: 0;
}

.custom-list li {
    counter-increment: custom-counter;
    position: relative;
    /* Espacio reservado para (A), (B), etc. */
    padding-left: 220px;
    margin-bottom: 40px;
	font-size: 28px;
    font-weight: 300;
    line-height: 108%;
}
.custom-list li em {
	font-family: "Erode";
    font-weight: 600;
	font-style:italic;
}

.custom-list li::before {
    content: "(" counter(custom-counter, upper-alpha) ")";
    position: absolute;
    left: 0;
    top: 0;
    font-family: "Erode";
    font-weight: 600;
	font-size: 32px;
}
p.txt-indent  {
	text-indent:180px;
}
p.txt-indent30  {
	text-indent:33%;
}
.acc-faq .e-n-accordion-item-title {
	padding-left:0;
}
.content-faq p {
	font-size:20px;
}

/* Inicia la numeración */
.acc-faq .e-n-accordion {
    counter-reset: accordion-item;
}

/* Suma 1 por cada item */
.acc-faq .e-n-accordion-item {
    counter-increment: accordion-item;
}

/* Layout del encabezado */
.acc-faq .e-n-accordion-item-title-header {
    display: grid;
    grid-template-columns: 180px 1fr;
    width: 100%;
    align-items: center;
}

/* Número */
.acc-faq .e-n-accordion-item-title-header::before {
    content: counter(accordion-item, decimal-leading-zero);
	font-size: 20px;
}

.e-n-accordion {
    counter-reset: accordion-item;
    --accordion-number-width: 180px;
}

.e-n-accordion-item {
    counter-increment: accordion-item;
}

/* Título */
.e-n-accordion-item-title-header {
    display: grid;
    grid-template-columns: var(--accordion-number-width) 1fr;
    width: 100%;
    align-items: center;
}

.e-n-accordion-item-title-header::before {
    content: counter(accordion-item, decimal-leading-zero);
}

/* Contenido */
.e-n-accordion-item > [role="region"] {
    padding-left: var(--accordion-number-width);
}
.e-n-accordion-item p {
	color:#818181;
}

.question-link {
    position: relative;

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

    width: 100%;

    padding-bottom: 20px;

    color: #000;
    text-decoration: none;

    font-family: "Geist", sans-serif;
    font-size: clamp(50px, 9vw, 140px);
    line-height: 1;
}


/* ========================================
   FLECHAS
======================================== */

.question-link__arrows {
    position: relative;

    display: block;

    width: 1em;
    height: 1em;

    flex-shrink: 0;
}

.question-link__arrow {
    position: absolute;

    top: 50%;
    right: 0;

    transform: translateY(-50%);

    transition: opacity 0.35s ease;
}


/* Flecha horizontal visible inicialmente */

.question-link__arrow--normal {
    opacity: 1;
}


/* Flecha diagonal oculta inicialmente */

.question-link__arrow--hover {
    opacity: 0;
}


/* ========================================
   LÍNEA INFERIOR
======================================== */

.question-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 2px;

    background: currentColor;

    opacity: 0;

    transition: opacity 0.35s ease;
}


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

.question-link:hover .question-link__arrow--normal {
    opacity: 0;
}

.question-link:hover .question-link__arrow--hover {
    opacity: 1;
}

.question-link:hover::after {
    opacity: 1;
}
.linea-horizontal::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100vw;
    height: 1px;
    background: #eeeeee;
    transform: translateX(-50%);
}
.faq-divider {
    width: 100vw !important;
    max-width: none !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}

.faq-divider .elementor-divider-separator {
    width: 100% !important;
    border-top: 1px solid #eeeeee !important;
}

/*PIE*/
.form-pie {
	min-height: 170px;
}
.form-pie label {
	display:none;
}
footer h6, footer p, footer li, footer figcaption {
	font-size:18px;
	line-height: 1.2;
	color:#000000!important;
}
footer figcaption {
	padding-top: 20px;
}
footer h6 {
	font-weight:600;
}
footer ul {
	list-style-type: none;
	padding-left: 0;
}
footer li {
	padding-bottom:15px;
}
footer .contacto-pie a {
	text-decoration:none;
}
footer .contacto-pie img {
	margin-bottom: -6px;
}
footer .contacto-pie p {
	
}
.lista-horizontal ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 20px;
}
footer .legales p, footer .legales li {
	font-size:12px;
}
footer .legales li {
	padding-bottom:0;
}
footer .alto-minimo {
	min-height:210px;
}
.find-answer {
	font-family: Erode; 
	font-weight: 600; 
	font-size: 22px; 
}
/* TABLET */

@media (max-width: 1024px) { 

}

/*TABLET*/

@media (min-width: 768px) and (max-width: 1024px) {
	
}
/*MOVIL*/

@media (max-width: 767px) {
	p.txt-indent  {
	text-indent:0;
	}
	p.txt-indent30  {
	text-indent:0;
	}
	.custom-list li::before {
	font-size:20px;	
	}
	.custom-list li em {
	font-size:18px;
	}
	.custom-list li {
    counter-increment: custom-counter;
    position: relative;
    padding-left: 70px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: solid 1px #eee;
	font-size:16px;
	}
	.custom-list em {
	padding-bottom: 5px;
    display: inline-block;
	}
	.custom-list li:first-child {
        border-top: 1px solid #eeeeee;
        padding-top: 20px;
        margin-top: 20px;
    }
	.custom-list li:first-child::before {
        top: 20px;
    }
	.custom-list li:last-child {
	border:none;
	}
	.exhibit-card {
	margin-block-end: 20px !important;
    padding-bottom: 20px!important;
    border-bottom: solid 1px #eeeeee;
	}
	.member-card {
	margin-block-end: 20px !important;
    padding-bottom: 50px!important;
    border-bottom: solid 1px #eeeeee;
	}
	.find-answer {
	font-size: 20px; 
	}
	.question-link__text {
	font-size: 16px; 
	}
	.acc-faq .e-n-accordion-item-title-header::before {
    content: counter(accordion-item, decimal-leading-zero);
	font-size: 15px;
	}
	.e-n-accordion-item-title-text, .content-faq p {
		font-size: 15px!important;
	}
	.acc-faq .e-n-accordion-item {
		border-top: solid 1px #eeeeee;
	}
	.e-n-accordion-item-title {
		padding-top: 25px!important;
    	padding-bottom: 25px!important;
	}
	.acc-faq .e-n-accordion-item-title-header {
    grid-template-columns: 60px 1fr;
	}
	.e-n-accordion {
    counter-reset: accordion-item;
    --accordion-number-width: 60px;
	}
	footer h6, footer p, footer li, footer figcaption {
	font-size:14px;
	}
	footer .spacer-pie-vertical {
	padding-bottom:0;
	}
	footer .legales p, footer .legales li {
	font-size:10px;
	}
	.linea-horizontal::after {
    display:none;
	}
}