/* Estilos gerais das seções */
section {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

section p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Elementos comuns */
.highlight-text {
    color: #ff7b00;
    font-weight: 700;
}

/* Banner content */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    color: white;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    z-index: 2;
}

.banner-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-description {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.banner-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ff7b00;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.banner-button:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
}