/* elige-reunion.css */
:root {
    --brand: #000323;
    --accent: #f3c37d;
    --card: #fff;
    --text: #0f1535;
    --shadow: 0 10px 30px rgba(0, 3, 35, .25);
}

.gateway {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.hello-wrap {
    background: linear-gradient(135deg, #000323 0%, #1c244d 55%, #f3c37d 100%);
    border-radius: 22px;
    padding: 28px 24px;
}

.hello {
    margin: 0;
    font-weight: 800;
    font-size: clamp(24px, 3vw, 36px);
    color: #fff;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 20px;
}

.card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: var(--card);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 8px 24px rgba(0, 3, 35, .12);
    border: 1px solid rgba(0, 3, 35, .06);
    text-decoration: none;
    color: var(--text);
    transition: transform .2s, box-shadow .2s;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0, 3, 35, .18);
}

.icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #fff;
    background: radial-gradient(40% 40% at 30% 30%, #ffffffaa 0%, #ffffff00 100%), linear-gradient(135deg, #000323, #1c244d 60%, #f3c37d);
}

.card h3 {
    margin: 0;
    font-size: 18px;
    color: #001330;
    font-weight: 700;
}

.card p {
    margin: 0;
    color: #4b557a;
    line-height: 1.45;
    font-size: 15px;
}

/* Animación Bob */
.elementor-button.elementor-animation-bob:hover {
    animation: bob .35s ease-in-out;
}

@keyframes bob {
    50% {
        transform: translateY(-3px);
    }
}

@media(max-width:900px) {
    .cards {
        grid-template-columns: 1fr;
    }
}

/* Popup “ventana” */
.win-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 3, 35, .55);
    display: none;
    place-items: center;
    z-index: 9999;
    padding: 18px;
}

.win-modal.open {
    display: grid;
}

.win {
    width: min(980px, 96vw);
    height: min(82vh, 900px);
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.win-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f6f7fb;
    border-bottom: 1px solid #e9ecf3;
    padding: 8px 10px;
}

.dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.red {
    background: #ff5f57;
}

.yellow {
    background: #febc2e;
}

.green {
    background: #28c840;
}

.addr {
    flex: 1;
    display: flex;
    gap: 8px;
}

.addr input {
    flex: 1;
    height: 32px;
    border-radius: 8px;
    border: 1px solid #dfe3f0;
    padding: 0 10px;
    font-size: 13px;
    background: #fff;
    color: #666;
}

.addr a {
    white-space: nowrap;
    font-size: 12px;
    color: #334;
    text-decoration: none;
    padding: 6px 10px;
    border: 1px solid #dfe3f0;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.addr a:hover {
    background: #f0f0f0;
}

.win-body {
    position: relative;
    flex: 1;
    background: #fff;
    overflow-y: auto;
}

/* Loader */
.win-loader {
    position: absolute;
    inset: 0;
    display: none;
    place-items: center;
    background: #fff;
    z-index: 10;
}

.win-loader.active {
    display: grid;
}

.win-loader:after {
    content: "";
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 3px solid #e6e8f0;
    border-top-color: #000323;
    animation: spin .8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Fallback */
.fallback {
    position: absolute;
    inset: 0;
    display: none;
    place-items: center;
    text-align: center;
    padding: 24px;
    background: #fff;
    z-index: 5;
}

.fallback a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 16px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, #000323, #f3c37d);
}

/* Containers */
#hsEmbedWrap {
    display: none;
    padding: 18px 14px 0;
}

#meetTarget {
    display: none;
}

#meetTarget .meetings-iframe-container {
    min-height: 75vh;
}