﻿.logo {
    max-width: 120px;
    margin-bottom: 1rem;
    transition: transform 0.6s ease-in-out;
    cursor: pointer;
    opacity: 1;
}

    .logo:hover {
        transform: rotate(360deg) scale(1.05);
    }

.brand {
    margin: 0.25rem 0 0.5rem 0;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: initial;
    opacity: 1;
}

.subtitle {
    font-size: 1rem;
    opacity: 1;
    margin-bottom: 4px;
}

.hover-label {
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gpch-contraste, #ffffff);
    background-color: rgba(0,0,0,0.4);
    padding: 0.4rem 1rem;
    border-radius: 6px;
    pointer-events: none;
}

.flower-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0rem; /* reduce separación entre flor y etiqueta */
    padding-bottom: 0;
    min-height: 280px; /* ajusta según tamaño de ThemeFlower + etiqueta */
    opacity: 1;
}

.theme-flower {
    display: block;
    margin-bottom: 0rem; /* ajusta según cercanía deseada */
    position: relative;
    text-align: center;
}

.info-tema {
    margin-top: 0rem;
    font-size: 1rem;
    font-weight: 600;
    position: relative;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: all 0.3s ease-in-out;
    text-align: center;
}

svg {
    margin: 0;
    padding: 0;
    line-height: 0;
    stroke: none;
}

.gpch-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 1rem;
    gap: 4rem;
}

.gpch-animated_background {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 1rem;
    gap: 4rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex: 1;
}


.gpch-bloque {
    width: 100%;
    max-width: 720px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.2); /* blanco translúcido */
    border-radius: 12px;
    box-shadow: 0 16px 16px rgba(0,0,0,0.3), 0 0 8px rgba(0,0,0,0.4);
    backdrop-filter: blur(12px); /* difuminado del fondo */
    -webkit-backdrop-filter: blur(12px); /* soporte Safari */
    border: 1px solid rgba(255, 255, 255, 0.3); /* borde sutil */
    box-sizing: border-box;
    text-align: center;
}

.gpch-bloque-formulario h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: #444;
}


