/* Overrides leves */
.process-item { display: flex; align-items: center; gap: 28px; }
.arrow-connector { 
    color: var(--primary); 
    font-size: 24px; 
    flex-shrink: 0; 
    opacity: 0.8;
    filter: drop-shadow(0 2px 4px rgba(255,107,53,0.3));
    transition: all 0.3s ease;
}
.arrow-connector:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Utilitários */
.workmap-icon-orange, .reports-icon-orange { color: var(--primary); }

/* ===== SCIENCE CAROUSEL ===== */
.scientific-carousel .section-header { text-align: center; margin-bottom: 30px; }
.science-slider { position: relative; overflow: hidden; width: 100%; max-width: 100%; }
.science-track { display: flex; transition: transform .5s ease; width: 100%; }
.science-item { min-width: 100%; padding: 30px; border: 1px solid rgba(255,255,255,.1); border-radius: 16px; background: rgba(255,255,255,.04); box-sizing: border-box; }
.science-badges { display:flex; gap:10px; margin-bottom:10px; flex-wrap: wrap; }
.science-badge { font-size: 12px; font-weight:700; padding:6px 10px; border-radius:999px; background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.15); }
.science-badge.journal { color:#93c5fd; border-color: rgba(59,130,246,.4); }
.science-badge.highlight { color: var(--primary); border-color: rgba(255,107,53,.4); }
.science-badge.kelvin { 
    background: linear-gradient(
        90deg,
        rgba(138, 43, 226, 0.15) 0%,
        rgba(59, 130, 246, 0.15) 20%,
        rgba(34, 197, 94, 0.15) 40%,
        rgba(255, 193, 7, 0.15) 60%,
        rgba(255, 107, 53, 0.15) 80%,
        rgba(239, 68, 68, 0.15) 100%
    );
    border: 2px solid;
    border-image: linear-gradient(
        90deg,
        rgba(138, 43, 226, 0.5),
        rgba(59, 130, 246, 0.5),
        rgba(34, 197, 94, 0.5),
        rgba(255, 193, 7, 0.5),
        rgba(255, 107, 53, 0.5),
        rgba(239, 68, 68, 0.5)
    ) 1;
    color: var(--white);
    font-weight: 800;
    box-shadow: 0 2px 12px rgba(255, 107, 53, 0.3);
    position: relative;
}
.science-title { font-size: 22px; font-weight:800; margin: 10px 0 8px; }
.science-summary { color: rgba(255,255,255,.8); margin-bottom: 10px; }
.science-points { margin: 0 0 12px 0; padding-left: 0; list-style: none; color: rgba(255,255,255,.85); }
.science-refs a { color: #93c5fd; text-decoration: underline; }
.science-nav { display:flex; align-items:center; justify-content:center; gap:16px; margin-top:16px; }
.science-btn { background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.2); color:#fff; padding:8px 12px; border-radius:10px; cursor:pointer; }
.science-dots { display:flex; gap:8px; }
.science-dot { width:8px; height:8px; border-radius:999px; background: rgba(255,255,255,.3); cursor:pointer; }
.science-dot.active { background: var(--primary); }

@media (max-width: 768px) {
  .science-item { 
    padding: 20px 15px; 
    margin: 0;
    min-width: 100%;
    box-sizing: border-box;
  }
  
  .science-title {
    font-size: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .science-summary {
    font-size: 15px;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .science-points {
    font-size: 14px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .science-points li {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .science-badges {
    gap: 8px;
    flex-wrap: wrap;
  }
  
  .science-badge {
    font-size: 11px;
    padding: 5px 8px;
    word-wrap: break-word;
  }
  
  .science-nav {
    margin-top: 24px;
    gap: 12px;
  }
  
  .science-btn {
    padding: 10px 14px;
    font-size: 14px;
  }
  
  .science-refs a {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

/* ===== REPORTS SECTION NEW ===== */
.reports-section-new { max-width: 1400px; margin: 80px auto; padding: 0 20px; }
.reports-header-new { text-align: center; margin-bottom: 40px; }
.reports-title-new { font-size: 32px; font-weight: 800; margin-bottom: 16px; color: var(--white); }
.reports-title-new i { margin-right: 12px; }
.reports-description-new { color: rgba(255,255,255,.8); font-size: 18px; max-width: 800px; margin: 0 auto; }

.reports-layout-new { display: flex; align-items: center; gap: 20px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 16px; max-width: 700px; margin: 0 auto; }

.reports-thumbnail { position: relative; flex-shrink: 0; }
.thumbnail-img { width: 150px; height: auto; border-radius: 8px; cursor: pointer; transition: transform 0.3s ease; }
.thumbnail-img:hover { transform: scale(1.05); }
.thumbnail-overlay { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: rgba(0,0,0,.7); color: white; padding: 8px 12px; border-radius: 8px; opacity: 0; transition: opacity 0.3s ease; }
.reports-thumbnail:hover .thumbnail-overlay { opacity: 1; }

.reports-separator { width: 2px; height: 120px; background: linear-gradient(to bottom, transparent, var(--primary), transparent); flex-shrink: 0; }

.reports-features-new { flex: 1; }
.reports-features-new h4 { font-size: 20px; font-weight: 700; margin-bottom: 16px; color: var(--white); }
.features-list-new { list-style: none; padding: 0; margin: 0; }
.features-list-new li { display: flex; align-items: center; margin-bottom: 12px; color: rgba(255,255,255,.9); }
.features-list-new li i { color: #22c55e; margin-right: 12px; font-size: 16px; }

@media (max-width: 768px) {
  .reports-layout-new { 
    flex-direction: column; 
    gap: 30px; 
    padding: 25px 20px; 
    margin: 0 10px;
  }
  .reports-separator { width: 100%; height: 2px; }
  .thumbnail-img { width: 120px; }
  
  .reports-title-new {
    font-size: 26px;
  }
  
  .reports-description-new {
    font-size: 16px;
  }
  
  .features-list-new li {
    font-size: 14px;
  }
}

/* ===== REPORTS SIMPLE LAYOUT ===== */
.reports-simple { 
    background: rgba(255,255,255,.02); 
    border: 1px solid rgba(255,255,255,.05); 
    border-radius: 16px; 
    padding: 24px; 
    max-width: 600px; 
    margin: 0 auto;
    text-align: center;
}

.reports-header-simple { margin-bottom: 20px; }
.reports-icon-simple { 
    color: var(--primary); 
    font-size: 32px; 
    margin-bottom: 12px; 
}
.reports-title-simple { 
    font-size: 24px; 
    font-weight: 700; 
    color: var(--white); 
    margin-bottom: 8px; 
}
.reports-title-simple .highlight { color: var(--primary); }
.reports-subtitle-simple { 
    color: rgba(255,255,255,.7); 
    font-size: 14px; 
}

.reports-preview { 
    position: relative; 
    margin: 20px 0; 
    cursor: pointer; 
    border-radius: 12px; 
    overflow: hidden;
}
.report-preview-img { 
    width: 100%; 
    max-width: 300px; 
    height: auto; 
    border-radius: 12px; 
    transition: transform 0.3s ease; 
}
.reports-preview:hover .report-preview-img { transform: scale(1.02); }
.preview-overlay { 
    position: absolute; 
    top: 0; left: 0; right: 0; bottom: 0; 
    background: rgba(0,0,0,.6); 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    opacity: 0; 
    transition: opacity 0.3s ease; 
    color: white; 
}
.reports-preview:hover .preview-overlay { opacity: 1; }
.preview-overlay i { font-size: 24px; margin-bottom: 8px; }
.preview-overlay span { font-size: 14px; font-weight: 500; }

.reports-benefits { 
    display: flex; 
    justify-content: center; 
    gap: 20px; 
    flex-wrap: wrap; 
}
.benefit-item { 
    display: flex; 
    align-items: center; 
    gap: 6px; 
    color: rgba(255,255,255,.8); 
    font-size: 14px; 
}
.benefit-item i { color: #22c55e; font-size: 12px; }

/* ===== SECTION DIVIDERS ===== */
.section-divider { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: 60px 0; 
    padding: 0 20px; 
}
.divider-line { 
    flex: 1; 
    height: 1px; 
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent); 
}
.divider-dot { 
    width: 8px; 
    height: 8px; 
    border-radius: 50%; 
    background: var(--primary); 
    margin: 0 20px; 
    box-shadow: 0 0 10px rgba(255,107,53,.3); 
}

@media (max-width: 768px) {
  .reports-benefits { 
    gap: 12px;
    flex-direction: column;
  }
  .benefit-item { 
    font-size: 13px;
    width: 100%;
    justify-content: center;
  }
  .section-divider { 
    margin: 30px 0;
  }
  
  .reports-simple {
    padding: 20px;
    margin: 0 10px;
  }
  
  .reports-title-simple {
    font-size: 20px;
  }
  
  .reports-subtitle-simple {
    font-size: 13px;
  }
}

/* ===== REPORTS ALTERNATIVE LAYOUT ===== */
.reports-alt { 
    background: linear-gradient(135deg, rgba(255,255,255,.03), rgba(255,255,255,.01)); 
    border: 1px solid rgba(255,255,255,.08); 
    border-radius: 20px; 
    padding: 32px; 
    max-width: 800px; 
    margin: 0 auto;
}

.reports-grid { 
    display: grid; 
    grid-template-columns: 1fr 200px; 
    gap: 32px; 
    align-items: center; 
    margin-bottom: 24px; 
}

.reports-badge { 
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
    background: rgba(255,107,53,.1); 
    border: 1px solid rgba(255,107,53,.3); 
    color: var(--primary); 
    padding: 6px 12px; 
    border-radius: 20px; 
    font-size: 14px; 
    font-weight: 600; 
    margin-bottom: 16px; 
}
.reports-title-alt { 
    font-size: 28px; 
    font-weight: 800; 
    color: var(--white); 
    margin-bottom: 12px; 
    display: flex; 
    align-items: center; 
    gap: 12px; 
}
.reports-title-alt i { color: var(--primary); font-size: 24px; }
.reports-desc-alt { 
    color: rgba(255,255,255,.8); 
    font-size: 16px; 
    line-height: 1.5; 
}

.report-card { 
    position: relative; 
    cursor: pointer; 
    border-radius: 12px; 
    overflow: hidden; 
    transition: transform 0.3s ease; 
}
.report-card:hover { transform: scale(1.05); }
.report-img { 
    width: 100%; 
    height: auto; 
    border-radius: 12px; 
    max-width: 400px;
}
.card-badge { 
    position: absolute; 
    top: 12px; 
    right: 12px; 
    background: rgba(0,0,0,.8); 
    color: white; 
    padding: 6px 10px; 
    border-radius: 8px; 
    font-size: 12px; 
    display: flex; 
    align-items: center; 
    gap: 4px; 
    opacity: 0; 
    transition: opacity 0.3s ease; 
}
.report-card:hover .card-badge { opacity: 1; }

.reports-badges-row { 
    display: flex; 
    justify-content: center; 
    gap: 12px; 
    flex-wrap: wrap; 
}
.badge-item { 
    display: flex; 
    align-items: center; 
    gap: 6px; 
    background: rgba(34,197,94,.1); 
    border: 1px solid rgba(34,197,94,.3); 
    padding: 6px 10px; 
    border-radius: 16px; 
    color: #22c55e; 
    font-size: 13px; 
    font-weight: 600; 
}
.badge-item i { font-size: 11px; }

@media (max-width: 768px) {
  .reports-grid { 
    grid-template-columns: 1fr; 
    gap: 25px; 
    text-align: center; 
  }
  
  .reports-alt {
    padding: 25px 20px;
    margin: 0 10px;
    border-radius: 16px;
  }
  
  .reports-title-alt { 
    font-size: 22px;
    flex-direction: column;
    gap: 10px;
  }
  
  .reports-desc-alt {
    font-size: 15px;
  }
  
  .reports-badges-row { 
    gap: 8px;
    justify-content: center;
  }
  
  .badge-item { 
    font-size: 12px; 
    padding: 5px 10px; 
  }
  
  .report-card {
    max-width: 250px;
    margin: 0 auto;
  }
  
  .report-img {
    max-width: 100%;
  }
}

/* Melhorias adicionais para mobile pequeno */
@media (max-width: 480px) {
  .science-item {
    padding: 18px 15px;
  }
  
  .science-title {
    font-size: 18px;
  }
  
  .science-summary {
    font-size: 14px;
  }
  
  .science-points li {
    font-size: 13px;
  }
  
  .reports-layout-new {
    padding: 20px 15px;
  }
  
  .reports-title-new {
    font-size: 22px;
  }
  
  .reports-alt {
    padding: 20px 15px;
  }
  
  .reports-title-alt {
    font-size: 20px;
  }
  
  .reports-badges-row {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .badge-item {
    width: 100%;
    max-width: 200px;
    justify-content: center;
  }
}


