/* ========================================
   BANNER DE PROMOÇÃO DE FINAL DE ANO
   ======================================== */

.promocao-banner {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    width: 100%;
    border-radius: 15px;
    padding: 15px;
    margin-top: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(24, 139, 136, 0.3);
}

.promocao-header {
    text-align: center;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.promocao-badge {
    display: inline-block;
    background: rgba(24, 139, 136, 0.3);
    backdrop-filter: blur(10px);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    border: 1px solid rgba(24, 139, 136, 0.5);
}

.promocao-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.promocao-image-container {
    text-align: center;
    margin: 12px 0;
    position: relative;
    z-index: 1;
}

.promocao-image {
    max-width: 50%;
    max-height: 200px;
    height: auto;
    border-radius: 10px;
    transition: transform 0.2s ease;
    object-fit: contain;
}

.promocao-image:hover {
    transform: scale(1.02);
}

.promocao-content {
    position: relative;
    z-index: 1;
}

.promocao-description {
    text-align: center;
    color: white;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

.promocao-rules {
    background: rgba(24, 139, 136, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid rgba(24, 139, 136, 0.3);
}

.promocao-rules-title {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin: 0 0 10px 0;
    text-align: center;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

.promocao-rules-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.promocao-rules-list li {
    display: flex;
    align-items: center;
    color: white;
    font-size: 12px;
    margin-bottom: 6px;
    padding: 6px 8px;
    background: rgba(24, 139, 136, 0.1);
    border-radius: 6px;
    transition: all 0.2s ease;
}

.promocao-rules-list li:last-child {
    margin-bottom: 0;
}

.promocao-rules-list li:hover {
    background: rgba(24, 139, 136, 0.2);
    transform: translateX(3px);
}

.promocao-rules-list li i {
    font-size: 14px;
    margin-right: 8px;
    color: #188b88;
    flex-shrink: 0;
}

.promocao-rules-list li strong {
    color: #188b88;
    font-weight: 700;
}

.promocao-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.btn-promocao-instagram {
    background: linear-gradient(135deg, #188b88 0%, #0d5c5a 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(24, 139, 136, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-promocao-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24, 139, 136, 0.4);
    color: white;
    text-decoration: none;
    background: linear-gradient(135deg, #0d5c5a 0%, #188b88 100%);
}

.btn-promocao-instagram i {
    font-size: 16px;
}

.btn-promocao-share {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    color: white;
    border: 1px solid rgba(24, 139, 136, 0.5);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-promocao-share:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24, 139, 136, 0.3);
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-color: rgba(24, 139, 136, 0.8);
}

.btn-promocao-share i {
    font-size: 16px;
}

.promocao-footer {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    margin: 0;
    font-style: italic;
}

/* Responsividade para o banner */
@media (max-width: 768px) {
    .promocao-banner {
        padding: 12px;
        margin-top: 12px;
    }
    
    .promocao-title {
        font-size: 16px;
    }
    
    .promocao-image {
        max-width: 70%;
        max-height: 120px;
    }
    
    .promocao-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-promocao-instagram,
    .btn-promocao-share {
        width: 100%;
        justify-content: center;
        padding: 6px 14px;
        font-size: 11px;
    }
}

/* ========================================
   MODAL DE RETROSPECTIVA - ESTILO MODERNO
   ======================================== */

#retrospectivaDialog * {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

#retrospectivaDialog .retrospectiva-dialog {
    max-width: 40%;
    width: 40%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    max-height: 100vh;
}

#retrospectivaDialog .retrospectiva-dialog[ng-show*="tabRetrospectiva == 9"] {
    height: 100vh;
    max-height: 100vh;
}

#retrospectivaDialog .modal-content {
    border: none;
    box-shadow: none;
    width: 100%;
    max-width: 100%;
}

/* Container para slides */
.retrospectiva-dialog {
    position: relative;
}

/* Otimização de performance para transições */
.retrospectiva-slide {
    will-change: opacity, transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    /* Forçar aceleração de hardware */
    -webkit-perspective: 1000;
    perspective: 1000;
    transition: none !important;
}

/* Por padrão, todos os slides estão ocultos */
.retrospectiva-slide {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

/* Apenas o slide ativo fica visível */
.retrospectiva-slide.retrospectiva-slide-active {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    position: relative;
    z-index: 2;
}

/* ========================================
   CARD DE RETROSPECTIVA
   ======================================== */

.retrospectiva-card {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 30px;
    padding: 50px 40px;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Efeito de brilho no fundo */
.retrospectiva-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    border-radius: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(24, 139, 136, 0.15) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========================================
   BOTÃO FECHAR
   ======================================== */

.close-white {
    position: absolute;
    top: 20px;
    right: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 3.5rem;
    font-weight: 300;
    opacity: 1;
    z-index: 10;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.close-white:hover {
    color: #fff;
    transform: rotate(90deg);
}

/* ========================================
   INDICADOR DE PROGRESSO
   ======================================== */

.progress-indicator {
    position: absolute;
    top: 25px;
    left: 40px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.4rem;
    font-weight: 600;
    z-index: 10;
}

/* ========================================
   BADGE DO ANO
   ======================================== */

.year-badge {
    position: absolute;
    top: 140px;
    right: 30px;
    font-size: 14rem;
    font-weight: 900;
    rotate: 180deg;
    color: rgba(255, 255, 255, 0.08);
    line-height: 0.8;
    letter-spacing: -5px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    z-index: 1;
    pointer-events: none;
    font-family: 'Poppins', sans-serif;
}

/* ========================================
   HEADER DA RETROSPECTIVA
   ======================================== */

.retrospectiva-header {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.retrospectiva-header i {
    font-size: 48px;
    color: #188b88;
    margin-bottom: 15px;
    display: block;
    filter: drop-shadow(0 4px 10px rgba(24, 139, 136, 0.4));
}

.retrospectiva-header h1 {
    color: #fff;
    font-size: 3.2rem;
    font-weight: 900;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    font-family: 'Poppins', sans-serif;
    letter-spacing: -1px;
}

/* Estilos específicos para tela de introdução */
.intro-header {
    margin-bottom: 0 !important;
    margin-top: 35px !important;
}

.title-main {
    font-size: 3.5rem !important;
    font-weight: 700 !important;
}

.year-title {
    font-size: 10rem !important;
    font-weight: 900 !important;
    background: linear-gradient(to bottom, #fff, #188b88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin: 0;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.intro-text {
    margin: 0 !important;
    width: 47% !important;
    margin-bottom: 15px !important;
}

.intro-desc {
    margin: 0 !important;
    width: 45% !important;
}

/* ========================================
   CONTEÚDO DA RETROSPECTIVA
   ======================================== */

.retrospectiva-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin: 40px 0;
}

.retrospectiva-content .subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.8rem;
    line-height: 1.5;
    margin: 0 0 30px 0;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.retrospectiva-content .description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
    font-family: 'Inter', sans-serif;
}

/* ========================================
   NÚMERO GRANDE (DESTAQUE)
   ======================================== */

.big-number {
    font-size: 14rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin: 30px 0;
    text-shadow: 0 4px 30px rgba(24, 139, 136, 0.5);
    background: linear-gradient(135deg, #fff 0%, #a8dadc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -4px;
}

.big-number span {
    display: block;
}

/* ========================================
   NOME DO CONTATO E VALOR
   ======================================== */

.contact-name {
    font-size: 2.8rem;
    font-weight: 700;
    color: #188b88;
    margin: 20px 0 10px 0;
    text-shadow: 0 2px 15px rgba(24, 139, 136, 0.4);
    font-family: 'Poppins', sans-serif;
}

.contact-value {
    font-size: 7rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    text-shadow: 0 4px 30px rgba(24, 139, 136, 0.5);
    font-family: 'Poppins', sans-serif;
    letter-spacing: -2px;
}

/* ========================================
   ANIMAÇÃO DE NÚMEROS
   ======================================== */

.animate-number {
    animation: numberPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes numberPop {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(30px);
    }
    60% {
        transform: scale(1.1) translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* ========================================
   FOOTER E BOTÕES
   ======================================== */

.retrospectiva-footer {
    position: relative;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 100%;
    margin-top: 30px;
    pointer-events: auto !important;
}

.retrospectiva-footer.final-buttons {
    flex-direction: column;
    gap: 12px;
    z-index: 100;
    position: relative;
}

.retrospectiva-footer button {
    position: relative;
    z-index: 101;
    pointer-events: auto !important;
    cursor: pointer !important;
}

/* Garantir que os botões da tela 8 sejam sempre clicáveis */
.retrospectiva-slide-8 .retrospectiva-footer,
.retrospectiva-slide-8 .retrospectiva-footer button {
    pointer-events: auto !important;
    z-index: 1000 !important;
    cursor: pointer !important;
    position: relative !important;
}

.retrospectiva-slide-8.retrospectiva-slide-active .retrospectiva-footer,
.retrospectiva-slide-8.retrospectiva-slide-active .retrospectiva-footer button {
    pointer-events: auto !important;
    z-index: 1000 !important;
    cursor: pointer !important;
}

/* Botões principais */
.btn-retro {
    background: linear-gradient(135deg, #188b88 0%, #0d5c5a 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 16px 35px;
    font-size: 1.6rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(24, 139, 136, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.btn-retro:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(24, 139, 136, 0.6);
    background: linear-gradient(135deg, #0d5c5a 0%, #188b88 100%);
}

.btn-retro i {
    font-size: 2rem;
}

/* Botões pequenos (navegação) */
.btn-retro-small {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-retro-small:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.btn-retro-small:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.btn-retro-small i {
    font-size: 2.4rem;
}

.btn-secundary.btn-retro-small {
    background: rgba(255, 255, 255, 0.08);
}

/* Botões de ação (salvar/compartilhar) */
.btn-retro-action {
    width: 100%;
    border: none;
    border-radius: 20px;
    padding: 14px 25px;
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-retro-action.btn-success {
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

.btn-retro-action.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.5);
}

.btn-retro-action.btn-info {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.3);
}

.btn-retro-action.btn-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.5);
}

.btn-retro-action i {
    font-size: 2rem;
}

/* ========================================
   LOADING STATE
   ======================================== */

.loading-retrospectiva {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

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

/* ========================================
   RESPONSIVIDADE
   ======================================== */

@media (max-width: 768px) {
    #retrospectivaDialog .retrospectiva-dialog {
        width: 95%;
        max-width: 95%;
        margin: 10px auto;
    }
    
    .retrospectiva-card {
        padding: 40px 30px;
        min-height: 500px;
        border-radius: 20px;
    }
    
    .retrospectiva-header h1 {
        font-size: 2.4rem;
    }
    
    .retrospectiva-content .subtitle {
        font-size: 1.5rem;
    }
    
    .retrospectiva-content .description {
        font-size: 1.3rem;
    }
    
    .big-number {
        font-size: 8rem;
    }
    
    .contact-name {
        font-size: 2rem;
    }
    
    .contact-value {
        font-size: 4rem;
    }
    
    .year-badge {
        font-size: 5rem;
        right: 20px;
    }
    
    .btn-retro {
        font-size: 1.4rem;
        padding: 14px 28px;
    }
    
    .btn-retro-small {
        width: 50px;
        height: 50px;
    }
    
    .btn-retro-small i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .retrospectiva-card {
        padding: 30px 20px;
    }
    
    .big-number {
        font-size: 6rem;
    }
    
    .retrospectiva-header h1 {
        font-size: 2rem;
    }
}

/* ========================================
   PÓDIO DE VENDAS
   ======================================== */

.podio-container {
    width: 100%;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.podio-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 600px;
}

.podio-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

/* Medalhas */
.podio-medal {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 3.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    animation: medalPop 0.8s ease-out;
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.podio-medal.gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #fff;
    animation-delay: 0.4s;
}

.podio-medal.silver {
    background: linear-gradient(135deg, #C0C0C0 0%, #808080 100%);
    color: #fff;
    animation-delay: 0.2s;
}

.podio-medal.bronze {
    background: linear-gradient(135deg, #CD7F32 0%, #8B4513 100%);
    color: #fff;
    animation-delay: 0.1s;
}

@keyframes medalPop {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }
    60% {
        transform: scale(1.2) rotate(10deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* Pedestais */
.podio-pedestal {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px 20px;
    width: 100%;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.podio-pedestal:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.podio-pedestal.first-place {
    min-height: 200px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 165, 0, 0.1) 100%);
    border-color: rgba(255, 215, 0, 0.4);
}

.podio-pedestal.second-place {
    min-height: 160px;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.2) 0%, rgba(128, 128, 128, 0.1) 100%);
    border-color: rgba(192, 192, 192, 0.4);
}

.podio-pedestal.third-place {
    min-height: 140px;
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.2) 0%, rgba(139, 69, 19, 0.1) 100%);
    border-color: rgba(205, 127, 50, 0.4);
}

/* Nomes e valores */
.podio-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

.podio-value {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #fff 0%, #a8dadc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.podio-first .podio-value {
    font-size: 4.5rem;
}

.podio-second .podio-value {
    font-size: 3.8rem;
}

.podio-third .podio-value {
    font-size: 3.2rem;
}

/* Responsividade do pódio */
@media (max-width: 768px) {
    .podio-wrapper {
        gap: 10px;
    }
    
    .podio-medal {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
    }
    
    .podio-name {
        font-size: 1.4rem;
    }
    
    .podio-value {
        font-size: 2.5rem;
    }
    
    .podio-first .podio-value {
        font-size: 3rem;
    }
    
    .podio-second .podio-value {
        font-size: 2.7rem;
    }
    
    .podio-third .podio-value {
        font-size: 2.3rem;
    }
    
    .podio-pedestal.first-place {
        min-height: 150px;
    }
    
    .podio-pedestal.second-place {
        min-height: 120px;
    }
    
    .podio-pedestal.third-place {
        min-height: 100px;
    }
}

/* ========================================
   TELA DE COMPARTILHAMENTO VISUAL
   ======================================== */

.retrospectiva-share-card {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 30px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    animation: slideIn 0.4s ease-out;
    width: 100%;
    max-width: 650px;
    box-sizing: border-box;
    margin: 10px auto;
}

.retrospectiva-share-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(24, 139, 136, 0.15) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

.share-header {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.share-logo-img {
    max-width: 150px;
    height: auto;
    margin-bottom: 10px;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
}

.share-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    font-family: 'Poppins', sans-serif;
    letter-spacing: -1px;
}

.share-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    min-height: 0;
    max-height: 100%;
}

.share-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.share-stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px 12px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.share-stat-item.highlight {
    background: rgba(24, 139, 136, 0.2);
    border-color: rgba(24, 139, 136, 0.4);
}

.share-stat-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.share-stat-value {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    margin: 6px 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    background: linear-gradient(135deg, #fff 0%, #a8dadc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.share-stat-item.highlight .share-stat-value {
    font-size: 3.5rem;
}

.share-stat-label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    margin-top: 6px;
    line-height: 1.2;
}

.share-podium-section {
    margin: 20px 0;
    flex-shrink: 0;
}

.share-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 15px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    font-family: 'Poppins', sans-serif;
}

.share-podium {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 12px;
}

.share-podium-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 15px 12px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.15);
    flex: 1;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.share-podium-item.first {
    min-height: 140px;
    background: rgba(24, 139, 136, 0.2);
    border-color: rgba(24, 139, 136, 0.4);
}

.share-podium-medal {
    font-size: 2.5rem;
    margin-bottom: 8px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.share-podium-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

.share-podium-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', sans-serif;
}

.share-messages-section {
    margin: 20px 0;
    flex-shrink: 0;
}

.share-messages-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.share-message-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 15px 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.share-message-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.share-message-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.share-message-text {
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    text-align: center;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-family: 'Inter', sans-serif;
    flex: 1;
}

.share-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.share-message {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 12px 0;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    font-family: 'Poppins', sans-serif;
}

.share-brand-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.share-footer-logo {
    max-width: 100px;
    height: auto;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.2));
}

.share-brand {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
}

.share-actions {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-shrink: 0;
    padding-top: 15px;
}

.btn-share-capture {
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    color: #667eea;
    border: none;
    border-radius: 50px;
    padding: 16px 35px;
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.btn-share-capture:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #f0f0f0 0%, #fff 100%);
}

.btn-share-capture i {
    font-size: 2rem;
}

.btn-share-back {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 16px 35px;
    font-size: 1.6rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.btn-share-back:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.btn-share-back i {
    font-size: 2rem;
}

.btn-warning {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.3);
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.5);
}

/* Responsividade da tela de compartilhamento */
@media (max-width: 768px) {
    .retrospectiva-share-card {
        padding: 30px 25px;
        height: 100vh;
        max-height: 100vh;
    }
    
    .share-logo-img {
        max-width: 150px;
    }
    
    .share-title {
        font-size: 2.4rem;
    }
    
    .share-stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .share-stat-item.highlight {
        grid-column: span 1;
    }
    
    .share-stat-value {
        font-size: 2.8rem;
    }
    
    .share-stat-item.highlight .share-stat-value {
        font-size: 3.2rem;
    }
    
    .share-podium {
        flex-direction: column;
        gap: 12px;
    }
    
    .share-podium-item,
    .share-podium-item.first {
        min-height: 120px;
    }
    
    .share-footer-logo {
        max-width: 100px;
    }
}