* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Poppins, sans-serif;
    color: #222;
    background: #f5f7fb;
    overflow-x: hidden;
}

.logos {
    margin-bottom: 50px;
}
.countdown {
    margin: 40px auto;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 15px 25px;
    width: fit-content;
}

.countdown strong {
    color: #00d4ff;
}
``

.partners{
    text-align:center;
}

.section-intro{
    max-width:900px;
    margin:0 auto;
    font-size:1.1rem;
    line-height:1.8;
    color:#555;
}


.audience-banner{
    background:#003B7A;
    color:white;
    text-align:center;
    padding:45px 20px;
    border-radius:20px;
    max-width:1200px;
    margin:40px auto;
}

.audience-banner h2{
    color:white;
    margin-bottom:15px;
}

.audience-banner p{
    opacity:.9;
}
/* HERO */

.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(
        135deg,
        #003B7A,
        #0066CC,
        #F58220
    );
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: auto;
    padding-top: 120px;
    margin-top: 80px;
    padding: 40px 20px;
    color: #fff;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1.1;
    margin: 20px 0;
}

.hero h2 {
    font-size: clamp(1.3rem, 4vw, 2.2rem);
    margin: 15px 0;
}

.hero p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* LOGOS */

.logos {
    position: absolute;
    top: 20px;
    left: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    z-index: 3;
}

.logos img {
    max-height: 60px;
    max-width: 180px;
    width: auto;
    height: auto;
    background: #fff;
    padding: 8px;
    border-radius: 8px;
}

/* BADGE */

.badge {
    display: inline-block;
    background: rgba(255,255,255,.15);
    padding: 10px 16px;
    border-radius: 30px;
    backdrop-filter: blur(8px);
}

/* BOTÕES */

.btn {
    display: inline-block;
    background: #F58220;
    color: #fff;
    text-decoration: none;
    padding: 18px 32px;
    border-radius: 40px;
    font-weight: 700;
    margin-top: 20px;
    transition: all .3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

/* ESTATÍSTICAS */

.stats {
    display: grid;
    grid-template-columns: repeat(
        auto-fit,
        minmax(180px, 1fr)
    );
    gap: 20px;
    padding: 40px;
    max-width: 1200px;
    margin: -50px auto 0;
}

.stats div {
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    text-align: center;
}

.stats strong {
    display: block;
    font-size: 2rem;
    color: #003B7A;
}

.stats span {
    color: #666;
}

/* SEÇÕES */

.section {
    max-width: 1200px;
    margin: auto;
    padding: 80px 20px;
}

.section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #003B7A;
    font-size: clamp(2rem, 5vw, 3rem);
}

/* CARDS */

.cards {
    display: grid;
    grid-template-columns: repeat(
        auto-fit,
        minmax(250px, 1fr)
    );
    gap: 20px;
}

.card {
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .3s;
}

.card:hover {
    transform: translateY(-5px);
}

/* SEÇÃO ESCURA */

.dark {
    background: #0f172a;
    color: #fff;
    max-width: none;
}

.dark h2 {
    color: #fff;
}

/* TIMELINE */

.timeline {
    display: grid;
    gap: 15px;
    max-width: 1000px;
    margin: auto;
}

.timeline div {
    background: #fff;
    color: #003B7A;
    border-left: 6px solid #F58220;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    font-weight: 600;
    font-size: 1.05rem;
    line-height: 1.6;
}

.timeline div strong {
    display: block;
    color: #F58220;
    font-size: 1.2rem;
    margin-bottom: 6px;
}

/* CALL TO ACTION */

.cta {
    text-align: center;
    background: linear-gradient(
        135deg,
        #003B7A,
        #0066CC
    );
    color: #fff;
    border-radius: 30px;
}

.cta h2 {
    color: #fff;
}

.cta .btn {
    margin-top: 30px;
}

/* FOOTER */

footer {
    text-align: center;
    padding: 30px;
    background: #08111f;
    color: #fff;
}

/* TABLET */

@media (max-width: 768px) {

    .hero {
        min-height: auto;
        padding: 140px 0 60px;
    }

    .hero-content {
        text-align: center;
        padding: 20px;
    }

    .logos {
      position: static;
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 15px;
      width: 100%;
      margin: 0 auto 30px auto;
      padding: 10px 20px;
  }

    .logos img {
        max-width: 120px;
        max-height: 50px;
    }

    .stats {
        margin-top: 20px;
        padding: 20px;
    }

    .section {
        padding: 60px 20px;
    }

    .btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .timeline div {
        padding: 18px;
        font-size: .95rem;
    }
}

/* CELULAR */

@media (max-width: 480px) {

    .hero {
        padding: 120px 0 50px;
    }

    .hero h1 {
        font-size: 2.3rem;
    }

    .hero h2 {
        font-size: 1.2rem;
    }

    .hero p {
        font-size: .95rem;
    }

    .badge {
        display: block;
        font-size: .85rem;
        line-height: 1.5;
    }

    @media (max-width: 480px) {

    .logos {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
        width: 100%;
        margin-bottom: 20px;
    }

    .logos img {
        max-width: 90px;
        max-height: 35px;
        padding: 5px;
    }

}

    .card {
        padding: 18px;
    }

    .timeline div {
        font-size: .9rem;
        padding: 15px;
    }

    .section {
        padding: 50px 15px;
    }

    .stats {
        padding: 15px;
    }
}
