/* Container do laço */
.promo-ribbon {
    position: absolute;
    top: 0;
    width: 100vw;
    height: 140px;
    transform-origin: top right;
}

@keyframes ribbonPulse {
    0%   { transform: scale(1); }
    10%  { transform: scale(1.05); }
    20%  { transform: scale(1); }
    100% { transform: scale(1); }
}

/* SVG ocupa tudo */
.promo-ribbon .svg {
    width: 100%;
    height: 100%;
    transform: rotate(45deg);
}

/* Overlay */
.promo-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.promo-modal {
    background: white;
    width: 1300px;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 14px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);

    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Área que rola */
.promo-content {
    padding: 30px;
    overflow-y: auto;
    flex: 1; /* ocupa o espaço disponível */
}

/* Rodapé fixo */
.promo-footer {
    padding: 16px 24px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: flex-end; /* empurra botão pra direita */
    background: white;
}

/* Botão */
.promo-close {
    background: rgb(18,49,65);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.promo-close:hover {
    opacity: 0.9;
}

/* Animação */
@keyframes promoFadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.integracao-corte {
    max-width: 1900px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.7;

}

.integracao-corte h2 {
    border-bottom: 2px solid #003366;
    padding-bottom: 8px;
    margin-bottom: 24px;
}

.integracao-box {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 10px;
    overflow: auto;
}

.integracao-intro {
    font-size: 16px;
    margin-bottom: 18px;
}

.integracao-secao {
    margin-top: 22px;
    padding: 16px 18px;
    background: #ffffff;
    border-left: 4px solid #003366;
    border-radius: 6px;
}

.integracao-secao h3 {
    margin-top: 0;
    font-size: 16px;
    color: #003366;
}

.integracao-secao ul {
    margin: 10px 0 0 18px;
}

.destaque-azul {
    border-left-color: #003366;
}

.destaque-cinza {
    border-left-color: #6c757d;
}

div#header h2 {
    background-position-y: 20px;
    position:relative;
    top: -20px;
}
/* Novo Globo */
/* Container principal */
.selo {
    position: relative;
    width: 100px;
    height: 100px;
    top:19px;
    cursor: pointer;
    left: calc(95% - 155px);
}
.pos-acao {
    position: relative;
    left: -100px;
    z-index: 10;
}

/* Imagem redonda */
.planeta {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid white;
    object-fit: cover;
    box-shadow: 0 0 12px rgba(255,255,255,0.3);
}

/* SVG ocupa toda a área */
.texto-circular {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

text {
    fill: white;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    background-color: #002a3a;

}

.anel-externo {
    position: absolute;
    top: -4px;
    left: -4px;
    width: 138px;
    height: 138px;
    border-radius: 50%;

}
