/* seção comunição e progresso */

:root {
    --bg-dark: #1D304D;
    --card-bg: #263852;
    --primary-green: #297D6D;
    --text-light: #ffffff;
    --text-muted: rgb(174 207 230);
}

.flex {
    display: flex;
    gap: 10px;
}

.flex-1 {
    flex: 1;
}

.mb-8 {
    margin-bottom: 2rem;
}

html,
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    width: 100
}

h2 {
    font-size: 3rem;
    line-height: 1;
    font-weight: 900;
    font-family: Flama, Roboto, sans-serif !important;
}

h3 {
    font-size: 1.875rem !important;
    line-height: 2.25rem !important;
    font-weight: 800;
    letter-spacing: -1px;
    font-family: Flama, Roboto, sans-serif !important;
}

p {
    font-size: 1rem;
    line-height: 1.5rem;
}

.cop-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 90px 20px 80px;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.badge {
    border: 1px solid #d4af37;
    background-color: #40494C;
    color: #d4af37;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
}

.main-title {
    font-size: 4rem;
    margin: 20px 0;
    line-height: 1.1;
    font-family: Flama, Roboto, sans-serif;
    font-weight: 800;
    margin-top: 30px;
}
/* Tablets grandes */
@media (max-width: 1024px) {
    .main-title {
        font-size: 3.2rem;
    }
}

/* Tablets e desktops pequenos */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-top: 25px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-top: 20px;
    }
}

.degrade {
    background: linear-gradient(90deg, #2C7F70, #82B4BE, #82B4BE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}


.subtitle {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--text-muted);
}

.description {
    color: #fff;
    font-size: 0.9rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.5;
}

/* Card de Submissão */


/* Card base */
.submission-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 2.5rem; /* 40px */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin: 0 auto 60px auto;
    width: 70%;
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

/* Tipografia interna */
.submission-card .flex-1 {
    font-size: 14px;
    color: #929BA9;
    padding-bottom: 20px;
}

/* Tablets grandes */
@media (max-width: 1024px) {
    .submission-card {
        width: 80%;
        padding: 2rem; /* 32px */
    }

    .submission-card .flex-1 {
        font-size: 13px;
        padding-bottom: 18px;
    }
}

/* Tablets pequenos / mobile */
@media (max-width: 768px) {
    .submission-card {
        width: 90%;
        padding: 1.5rem; 
    }

    .submission-card .flex-1 {
        font-size: 12px;
        padding-bottom: 16px;
    }
}

/* Mobile pequeno */
@media (max-width: 480px) {
    .submission-card {
        width: 95%;
        padding: 1rem; 
        border-radius: 12px;
    }

    .submission-card .flex-1 {
        font-size: 11px;
        padding-bottom: 12px;
    }
}

.card-header {
    display: inline-flex;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.card-header svg {
margin-right: 10px;
}

.progress-bar-container {
    background: rgba(255, 255, 255, 0.1);
    height: 1rem;
    border-radius: 4px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: #C0A847;
    border-radius: 4px;
    transition: width 0.5s ease;
}


.progress-bar-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: #798496;
    transform: translateX(-50%);
}

.pro {
color: #C0A847 !important;
}
.info-grid {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    text-align: left;
}

.info-item small {
    display: block;
    color: #929BA9;
    font-size: 0.75rem;
    margin-bottom: 5px;
}


.info-item {
    font-size: 1.25rem;
}

@keyframes piscarSuave {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}

.animation strong {
  animation: piscarSuave 2.5s infinite ease-in-out;
      margin-left: 5px;
}

@media (max-width: 1024px) {
    .info-item {
        font-size: 1.1rem;
    }

    .info-item small {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .info-item {
        font-size: 1rem;
    }

    .info-item small {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .info-item {
        font-size: 0.9rem;
    }

    .info-item small {
        font-size: 0.6rem;
    }
}



.divider {
    border: none;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 20px 0;
}

/* Botões */
.actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn {
    padding: 14px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: .875rem;
    line-height: 1.25rem;
    transition: 0.3s;
}

.btn-primary {
    padding: 14px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: .875rem;
    line-height: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: none;
    background-color: var(--primary-green);
    color: white;
    box-shadow: 0 2px 4px rgba(175, 250, 215, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn-primary svg {
    width: 14px;
    min-width: 14px;
    margin-left: -2px;
}
/* Hover efeito */
.btn-primary:hover {
    background-color: #54978A; 
    box-shadow: 0 4px 8px rgba(175, 250, 215, 0.5);
    transform: scale(1.05);
}

/* Tablets grandes */
@media (max-width: 1024px) {
    .btn-primary {
        font-size: 13px;
    }
}

/* Tablets pequenos / mobile */

@media (max-width: 480px) {
    .btn-primary, .btn-status, .btn , .btn-status {
        font-size: 10px !important;
        max-width: 220px; 
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: inline-flex;
        justify-content: center;
    }

    .btn-status svg, .btn-primary svg {
        width: 12px !important; 
        height: 12px !important;
      }
    .centralize{
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.btn-outline {
    border: 1px solid var(--text-muted);
    color: white;
}

.btn-outline:hover {
    background-color: #ffffff;
    color: #263852;
}




@media (max-width: 768px) {
    h2{
        font-size: 38px !important;
    }
     h3{
        font-size: 30px !important;
    }

    }


.benefits-section {
    background-color: #1E3250;
    color: white;
    padding: 100px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-title {
    font-size: 2.5rem;
    margin: 15px 0;
}

.section-title span {
    color: #AECFE6;
}

.section-subtitle {
    color: #AECFE6;
    max-width: 600px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}


.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

/* Card Style */
.benefit-card {
    background-color: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: left;
    transition: transform 0.3s ease;
}

.benefits-section .section-title {
    font-size: 3rem;
    line-height: 1;
}

@media (max-width: 768px) {
  h2{
        font-size: 30px !important;
    }
    
    h3 {
    font-size: 25px !important;
    }
    
    .benefits-section .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .benefits-section .section-title {
        font-size: 2rem;
    }
}

.benefits-section .section-subtitle {
    font-size: 1rem;
    line-height: 1.5rem;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
}

.icon-container {
    margin-bottom: 15px;
}

.icon-container svg {
    width: 48px;
    height: 38px;
    stroke-width: 2;
}

.benefit-card:nth-child(1) svg {
    color: #CCB146;
}

.benefit-card:nth-child(2) svg {
    color: #297D6D;
}

.benefit-card:nth-child(3) svg {
    color: #ffffff;
}

.benefit-card:nth-child(4) svg {
    color: #CCB146;
}

.benefit-card:nth-child(5) svg {
    color: #297D6D;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}


.benefit-card:nth-child(5) {
    grid-column: span 2;
}

/* Responsividade */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-card:nth-child(5) {
        grid-column: span 2;
    }
}

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

    .benefit-card:nth-child(5) {
        grid-column: span 1;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

.cta-container {
    margin-top: 40px;
}

/* SEÇÃO PROGRESSO*/

/* =========================
   SECTION
========================= */
.cop-info-section {
    background: #fff;
    padding: 100px 20px;
    color: #1D304D;
}

/* =========================
   GRID
========================= */
.cop-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    align-items: start;
}

/* =========================
   ESQUERDA
========================= */
.cop-title {
    font-size: 3rem;
    line-height: 1;
    font-weight: 800;
    margin: 10px 0;
}

.pr-left {
    font-size: .75rem;
    line-height: 1rem;
    color: #28796B;
    font-weight: 600;
}

.cop-title span {
    background: linear-gradient(90deg, #277268, #1E3451);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.cop-text {
    color: rgb(76 107 139);
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.5rem;
}

.cop-list {
    color: rgb(30 50 80);
    font-weight: 700;
    font-size: .875rem;
    line-height: 1.25rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.cop-list li {
    list-style: none;
    position: relative;
    padding-left: 20px;
}

.cop-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: var(--primary-green);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.cop-quote {
    padding: 30px;
    border-radius: 20px;
    font-size: .875rem;
    line-height: 1.25rem;
    font-style: italic;
    margin: 30px 0;
    color: rgb(76 107 139);
    border-left: 4px solid #CCB146;
}

/* =========================
   DIREITA
========================= */
.cop-subtitle {
    margin: 10px 0 20px;
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
}

.pr-right {
    font-size: .75rem;
    line-height: 1rem;
    color: #CCB146;
}

/* =========================
   CARDS
========================= */
.cop-card {
    display: flex;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    background: #ffffff;
    margin-bottom: 15px;
    transition: 0.3s;
}

.cop-card svg {
    width: 45px !important;
    height: 45px !important;
    padding: 10px; 
    border-radius: 50%;
    flex-shrink: 0;
    box-sizing: border-box;
    display: block;
}

.card-1 svg {
    stroke: #CCB146 !important;
    background-color: #FAF7EC;
    border: none;
}

.card-2 svg {
    stroke: #297D6D !important;
    background-color: #E6F2F0; /* Verde bem clarinho */
    border: none;
}

.cop-card .content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.cop-card strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 800;
}

.cop-card p {
    font-size: 0.9rem;
    margin-top: 5px;
    color: inherit;
}

/* CARD ATIVO */
.cop-card.active {
    background: #1D304D;
    color: white;
    border-radius: 16px;
    padding: 20px 24px;
    gap: 16px;
}

.cop-card.active svg {
    stroke: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.1) !important; 
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.cop-card.active p {
    color: rgb(174 207 230);
    font-size: .875rem;
    line-height: 1.25rem;
}

/* INFOS */
.cop-card .infos {
    display: flex;
    gap: 8px;
    margin-top: 25px;
}

.cop-card .info {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 12px;
    white-space: nowrap;
}

/* =========================
   RESPONSIVO
========================= */


/* Mobile */
@media (max-width: 768px) {
    .cop-info-section {
        padding: 60px 20px;
    }

    .cop-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .cop-subtitle {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .cop-list {
        grid-template-columns: 1fr;
    }

    .cop-card {
        padding: 16px;
        gap: 12px;
    }

    .cop-card strong {
        font-size: 1rem;
    }

    .cop-card p {
        font-size: 0.85rem;
    }
    .cop-info-grid {
        display: flex;
        flex-direction: column;
    }

    .cop-left {
        order: 2; 
        display: flex;
        flex-direction: column;
    }

    .cop-left .btn-primary {
        margin-top: auto; 
    }

    .cop-right {
        order: 1; 
    }
}

/* Mobile pequeno */
@media (max-width: 480px) {
    .cop-title {
        font-size: 1.8rem;
    }

    .cop-info-grid {
        gap: 30px;
    }
}





/* SECTION QUEM DEVE ENVIAR */

.who-cop-section {
    background: #f5f7f9;
    padding: 100px 20px;
}

.who-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 80px;
}


.who-left,
.who-right {
    display: flex;
    flex-direction: column;
}


.who-header {
    display: flex;
    align-items: center;
}

.who-header svg {
      width: 45px !important;
    height: 45px !important;
    padding: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    box-sizing: border-box;
    display: block;
    background: #e3e3e3;
}

.who-header h2 {
    font-size: 2.7rem;
    font-weight: 800;
    margin: 15px;
    line-height: 1.1;
    color: #1D304D;
}


.who-spacer {
    height: 90px;
}

.who-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.who-card.dashed {
    border: 1px dashed #d6dde5;
    background: #fafbfc;
}

.who-title {
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1D304D;
}

.who-title.gold {
    color: #CCB146;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-top: 0;
}

.who-item {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    color: #4c6b8b;
}

.who-item p {
    margin: 10px;
}

.who-item svg {
    width: 30px;
    height: 30px;
    min-width: 1.5rem;
    min-height: 1.5rem;
    flex-shrink: 0;
    color: #297D6D;
    margin-top: 10px;
}

.who-list {
    list-style: none;
    padding: 0;
}

.who-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.5rem;
    color: #4c6b8b;
}

.who-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #CCB146;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .who-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .who-spacer {
        display: none;
    }

    .who-header h2 {
        font-size: 1.8rem;
    }
}