.petalo {
    cursor: pointer;
    opacity: 0.9;
    mix-blend-mode: multiply;
}

.petalo-group {
    transform-origin: center;
}

/* === Bloques de contenido institucional === */

.bloque-texto {
    width: 100%;
    max-width: 600px;
    background-color: rgba(255, 255, 255, 0.85); 
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: initial;
    box-sizing: border-box;
    margin: 0 auto;
}

    .bloque-texto h3 {
        margin-bottom: 1rem;
        color: #b71c1c;
        font-size: 1.25rem;
    }

    .bloque-texto p {
        margin: 0.5rem 0;
        font-size: 0.95rem;
        color: #333;
    }

    .bloque-texto a {
        color: #1976d2;
        text-decoration: none;
        font-weight: 600;
    }

        .bloque-texto a:hover {
            text-decoration: underline;
        }

.gpch-loader-flor {
    display: block;
    margin: 80px auto 20px auto;
    animation: flor-rotar 4s linear infinite;
}

@keyframes flor-rotar {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.gpch-transicion-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white; /* o usa ThemePalette.GetColor si quieres fondo temático */
    z-index: 9999;
}

    .gpch-transicion-wrapper svg {
        animation: flor-rotar 0.7s linear infinite;
    }

@keyframes flor-rotar {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

html, body {
    height: 100%;
    margin: 0;
    background-color: #f5f7fa; /* fondo institucional gris claro */
}

.gpch-layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-image: var(--gpch-tema-bkpimage);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}


.gpch-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /*padding: 2rem 1rem;*/
    /*background-color: #f5f7fa;*/
    box-sizing: border-box;
}

.gpch-footer {
    margin-top: auto;
}


.florselector-wrapper {
    position: fixed;
    top: calc(var(--gpch-appbar-height) + 8px); /* justo debajo de la AppBar */
    left: 16px;
    padding: 8px;
    z-index: 5000;
}

@media (max-width: 1080px) {
    .florselector-wrapper {
        display: none;
    }
}
