* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    color: #2d3436;
    text-align: center;
    padding: 40px 16px;

.container {
    width: 100%;
    max-width: 600px;
    padding: 2rem;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -1px;
    margin-bottom: 2rem;
    color: #0984e3;
}

.badge {
    background: #dfe6e9;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

h1 {
    font-size: 2.5rem;
    margin: 1.5rem 0;
    line-height: 1.2;
}

p {
    color: #636e72;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Barra de Progresso */
.progress-container {
    width: 100%;
    background: #dfe6e9;
    border-radius: 10px;
    height: 10px;
    margin-bottom: 3rem;
    position: relative;
}

.progress-bar {
    width: 75%;
    height: 100%;
    background: #0984e3;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(9, 132, 227, 0.3);
}

.progress-text {
    position: absolute;
    right: 0;
    top: -25px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 3rem;
}

.time-box {
    background: white;
    padding: 15px;
    border-radius: 12px;
    min-width: 80px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #0984e3;
}

.label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #b2bec3;
}

/* Formulário */
.subscribe-form {
    display: flex;
    gap: 10px;
}

input[type="email"] {
    flex: 1;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #dfe6e9;
    outline: none;
}

button {
    background: #0984e3;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background: #74b9ff;
}

/* Responsividade */
@media (max-width: 480px) {
    .subscribe-form {
        flex-direction: column;
    }
    h1 {
        font-size: 1.8rem;
    }
}
.projeto-card {
   display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;

  width: 100%;
  max-width: 300px;
  padding: 28px 24px;

  text-align: center;
  text-decoration: none;

  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.projeto-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.16);
}

.projeto-logo {
  max-width: 210px;
  width: 100%;
  height: auto;
}

.projeto-chamada {
  margin: 0;

  font-size: 18px;
  font-weight: 600;
  color: #222222;
}

.botao-class {
  display: inline-block;

  padding: 13px 24px;
  border-radius: 999px;

  background: #1f5f55;
  color: #ffffff;

  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.botao-auren {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 999px;

  background: #6D3436;
  color: #ffffff;

  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.botao-elev {
  display: inline-block;

  padding: 13px 24px;
  border-radius: 999px;

  background: gray;
  color: #ffffff;

  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.div-projetos {
   display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.footer {
    display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}
