.hero-about {
    position: relative;
    height: 50vh;
    background-image: url('images/fundo-mar.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-about .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 74, 110, 0.6);
    z-index: 1;
}

.hero-about h1 {
    position: relative;
    z-index: 2;
    font-size: 4rem;
    font-family: "Playwrite AU QLD", cursive;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    word-spacing: 10px;
}

.about-content {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
    color: #333;
    font-size: 1.1rem;
    line-height: 1.7;
}

.story-section {
    text-align: center;
    max-width: 800px;
    margin: auto auto 80px auto;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 60px;
}

.story-section p {
    margin-bottom: 20px;
}

.commitment-section {
    display: flex;
    gap: 50px;
    align-items: center;
}

.commitment-text {
    flex: 1;
    margin-right: 50px;
}

.commitment-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a4a6e;
    font-weight: 600;
}

.commitment-image {
    flex: 1;
}

.commitment-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.community-section {
    text-align: center;
    max-width: 800px;
    margin: 80px auto 0 auto;
    padding-top: 60px;
    border-top: 1px solid #e0e0e0;
}

.community-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a4a6e;
    font-weight: 600;
}

@media (max-width: 900px) {
    .commitment-section {
        flex-direction: column;
    }

    .commitment-image {
        margin-top: 40px;
    }
}

@media (max-width: 600px) {
    .hero-about {
        height: 40vh;
    }

    .hero-about h1 {
        font-size: 2.8rem;
    }

    .about-content {
        margin: 40px auto;
        padding: 0 20px;
        font-size: 1rem;
    }

    .commitment-text h2,
    .community-section h2 {
        font-size: 2rem;
    }
}
