* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #f0faff;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 0.8s ease;
      margin-top: 100px;
}

.header h1 {
    font-size: 3rem;
    color: #ff0084;
    margin-bottom: 20px;
    font-weight: 700;
}

.header .subtitle {
    font-size: 1.3rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 25px;
}

.header .description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.header .description strong {
    color: #ff0084;
    font-weight: 600;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease;
    text-align: center;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(139, 47, 201, 0.2);
}

.icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff0084 0%, #a855f7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: white;
}

.card h2 {
    font-size: 1.8rem;
    color: #ff0084;
    margin-bottom: 20px;
    font-weight: 600;
}

.card p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.card strong {
    color: #333;
    font-weight: 600;
}

.highlight {
    color: #ff0084;
    font-weight: 600;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }

    .header .subtitle {
        font-size: 1.1rem;
    }

    .header .description {
        font-size: 1rem;
    }

    .card {
        padding: 30px 20px;
    }

    .card h2 {
        font-size: 1.5rem;
    }

    .icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}

@media (max-width: 1024px) {
    body {
        padding-top: 100px;
        /* Nav menor em mobile */
    }
}

@media (max-width: 767px) {
    body {
        padding-top: 90px;
    }
}