* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    padding-bottom: 100px;
}

/* NOVO HERO COM IMAGEM E LOGO */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px 0;
}

.hero .card {
    color: #333;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('hero-slide.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.box-blue-2 {
    background-color:#26225F;
    padding:3px 10px;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 2rem;
    margin: 3px;
    display: block;
    width: fit-content;
}
.box-blue {
    background-color:#26225F;
    padding: 20px;
    border-radius: 10px;
    max-width: 380px;
    z-index: 1;
    position: relative;
    margin-left: 10px;
}

.box-blue h1 {
    font-size: 3rem;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
}

.box-blue h2 {
    color: #fff;
    font-weight: bold;
}

.box-green {
    z-index: 0;
    margin-top: -10px;
    margin-bottom: 40px;
    background-color:#01752E;
    padding: 20px;
    border-radius: 10px;
    max-width: 440px;
    color: #fff;
}
.box-green h2 {
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
}

.faepen-logo {
    width: 120px;
    height: auto;
    margin: 0 auto 30px;
    animation: fadeInDown 1s ease-out 0.3s both;
}



@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1f6933;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1f6933, #1f6933);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #1f6933, #1f6933);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1f6933, #1f6933);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.5rem;
}

.card h3 {
    color: #1f6933;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.schedule-card {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.schedule-card:nth-child(2) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.schedule-card:nth-child(3) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.schedule-card:nth-child(4) {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.schedule-card h4 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.schedule-card .hours {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 10px 0;
}

.schedule-card .value {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 10px;
}

.requirements-grid,
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #1f6933, #1f6933);
    color: white;
}

.steps {
    counter-reset: step;
    margin-top: 40px;
    display: flex;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    counter-increment: step;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1f6933, #1f6933);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #1f6933, #1f6933);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin: 20px 0;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.4);
}

footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
    padding: 40px 0;
}

#cta-bar {
    background: linear-gradient(135deg, #1f6933, #1f6933);
    color: white;
    text-align: center;
    padding: 20px 20px;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    ;
}

#cta-bar .container {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .box-blue {
        margin-top: 200px;
    }
    .box-blue {
        max-width: 250px;
    }
    .box-green {
        max-width: 300px;
    }
    .box-green h2 {
        font-size: 0.8rem;
    }
    .box-blue-2 {
        font-size: 1.5rem;
    }
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .faepen-logo {
        width: 90px;
    }

    .section-title {
        font-size: 2rem;
    }

    .card-grid,
    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .hero-background {
        background-attachment: scroll;
    }

    .steps {
        flex-direction: column;
    }

    #cta-bar h2 {
        display: none;
    }
}